/* --- Splash Screen (Preloader) Full CSS --- */

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #261f07 0%, #000000 75%);
    background-size: 200% 200%;
    animation: bgGradientMove 8s ease infinite alternate;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    overflow: hidden;
    transition: opacity 0.8s ease-out;
}

#splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-logo-img {
    width: 340px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 10;
    animation: logoAppear 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Soft & Balanced Glow Effect */
.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite alternate;
    z-index: 5;
}

/* Background Stars & Floating Particles */
.star {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    animation: starTwinkle 1.8s infinite ease-in-out;
    opacity: 0;
    z-index: 2;
}

.star-1 { top: 15%; left: 12%; width: 3px; height: 3px; animation-delay: 0.2s; }
.star-2 { top: 80%; left: 18%; width: 4px; height: 4px; animation-delay: 0.7s; }
.star-3 { top: 20%; left: 85%; width: 3px; height: 3px; animation-delay: 0.4s; }
.star-4 { top: 75%; left: 82%; width: 5px; height: 5px; animation-delay: 1.1s; }
.star-5 { top: 12%; left: 55%; width: 2px; height: 2px; animation-delay: 0.6s; }
.star-6 { top: 88%; left: 48%; width: 4px; height: 4px; animation-delay: 0.9s; }
.star-7 { top: 45%; left: 8%;  width: 3px; height: 3px; animation-delay: 1.3s; }
.star-8 { top: 35%; left: 90%; width: 4px; height: 4px; animation-delay: 0.5s; }
.star-9 { top: 50%; left: 95%; width: 2px; height: 2px; animation-delay: 1.5s; }
.star-10 { top: 90%; left: 30%; width: 3px; height: 3px; animation-delay: 0.8s; }

/* Background Moving Ambient Lights */
.ambient-light {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatOrb 6s ease-in-out infinite alternate;
}

.orb-1 { top: 10%; left: 20%; animation-delay: 0s; }
.orb-2 { bottom: 15%; right: 15%; animation-delay: 2s; width: 350px; height: 350px; }

/* Animations */
@keyframes bgGradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes floatOrb {
    0% { transform: translateY(0px) scale(1); opacity: 0.5; }
    100% { transform: translateY(-30px) scale(1.15); opacity: 0.9; }
}

@keyframes logoAppear {
    0% { 
        transform: scale(0.8) translateY(20px); 
        opacity: 0;
        filter: blur(5px);
    }
    100% { 
        transform: scale(1) translateY(0); 
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes glowPulse {
    0% { 
        transform: scale(0.9); 
        opacity: 0.2;
    }
    100% { 
        transform: scale(1.1); 
        opacity: 0.45;
    }
}

@keyframes starTwinkle {
    0%, 100% { 
        opacity: 0.2; 
        transform: scale(0.8);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.3);
    }
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .splash-logo-img {
        width: 285px !important;
    }

    .glow-effect {
        width: 350px !important;
        height: 350px !important;
    }
}



:root {
  --bg-color: #FFFFFF;        
  --text-color: #111111;     
  --accent-gold: #D4AF37;     
  --dark-grey: #222222;      
  --card-bg: #F9F9F9;         
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

@keyframes slideDownTopBar {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-grey);
  color: var(--bg-color);
  padding: 18px 20px; 
  width: 100%;
  border-bottom: 2px solid var(--accent-gold);
  animation: slideDownTopBar 0.8s ease forwards;
}

.top-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.top-bar-item i {
  color: var(--accent-gold);
  font-size: 16px;
  transition: filter 0.3s ease;
}

.top-bar-item:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
}

.top-bar-item:hover i {
  filter: drop-shadow(0 0 8px var(--accent-gold));
}

.clicked-up {
  transform: translateY(-5px) !important;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.9) !important;
}

.clicked-up i {
  filter: drop-shadow(0 0 10px var(--accent-gold)) !important;
}



/* --- Navbar  */
.navbar-header {
  background-color: var(--bg-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  animation: zoomInFromBack 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}

@keyframes zoomInFromBack {
  0% { 
    transform: scale(0.9) translateY(-20px); 
    opacity: 0; 
    filter: blur(5px);
  }
  100% { 
    transform: scale(1) translateY(0); 
    opacity: 1; 
    filter: blur(0);
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px;
  flex-wrap: nowrap !important;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: visible; /* Logo ko container se bahar properly bada dikhane ke liye */
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img.logo-img {
    height: 45px; 
    width: auto;
    object-fit: contain;
    display: block;
    transform: scale(2.6); /* Is number ko 2.2 se badhakar 2.5 ya 2.8 bhi kar sakti ho agar aur bada chahiye */
    transform-origin: left center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  white-space: nowrap !important;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px; 
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease, box-shadow 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent-gold);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); 
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px; 
  flex-shrink: 0;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: var(--card-bg);
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 8px 14px;
  position: relative !important;
  width: 170px !important;
  transition: all 0.3s ease;
}

.search-box:hover, 
.search-box:focus-within, 
.search-box.active {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6) !important;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 120px !important;
  color: var(--text-color);
}

.search-box i {
  cursor: pointer;
  font-size: 15px;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.search-box i:hover {
  color: var(--accent-gold);
}

.search-results-dropdown {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 0 !important;
  width: 100% !important;
  min-width: 180px !important;
  background-color: var(--bg-color, #ffffff) !important;
  border: 1px solid var(--accent-gold, #d4af37) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  display: none !important;
  z-index: 99999 !important;
  padding: 6px 0 !important;
}

.search-results-dropdown.active {
  display: block !important;
}

.search-dropdown-item {
  display: block !important;
  padding: 10px 15px !important;
  color: var(--text-color, #333333) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.search-dropdown-item:last-child {
  border-bottom: none;
}

.search-dropdown-item:hover {
  background-color: rgba(212, 175, 55, 0.15) !important;
  color: var(--accent-gold) !important;
}

.nav-icon-link {
  position: relative;
  font-size: 20px;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.nav-icon-link:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6)); 
}

.nav-icon-link .badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--accent-gold);
  color: var(--bg-color);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 50%;
}

.auth-btn {
  margin-left: 10px; 
  background-color: var(--accent-gold);
  color: var(--bg-color);
  padding: 9px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border: 2px solid var(--accent-gold); 
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.auth-btn:hover {
  transform: translateY(-2px);
  background-color: transparent; 
  color: var(--accent-gold); 
  border-color: var(--accent-gold); 
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.7), 0 4px 15px rgba(212, 175, 55, 0.4); 
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
  margin-left: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  }

  .nav-links.mobile-active {
    display: flex !important;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        padding: 10px 0; 
        z-index: 9999;
    }

    .nav-links.mobile-active {
        display: flex !important;
    }

    .nav-links li {
        text-align: center;
        margin: 0; 
    }

    .nav-links li a {
        display: block;
        padding: 8px 15px; 
        font-size: 16px;
        color: #333;
        text-decoration: none;
    }
}


/* HERO SLIDER  */
.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  animation: sliderZoomIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; 
}

@keyframes sliderZoomIn {
  0% {
    transform: scale(0.92);
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-content {
  max-width: 1050px;
  padding: 0 20px;
  color: #FFFFFF;
  perspective: 1000px;
}

.hero-content .sub-title {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 18px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.6), 0 2px 10px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(30px) translateZ(-50px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-content h1.single-line-heading {
  font-size: 48px; 
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  white-space: nowrap; 
  letter-spacing: -0.5px;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8), 
               0 8px 25px rgba(0, 0, 0, 0.9), 
               0 0 20px rgba(212, 175, 55, 0.4); 
  opacity: 0;
  transform: translateY(40px) rotateX(15deg);
  transition: opacity 0.9s ease 0.4s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.hero-content p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 35px;
  color: #F5F5F5;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--accent-gold);
  color: var(--dark-grey);
  border: 2px solid var(--accent-gold);
  padding: 15px 38px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5), 0 0 15px rgba(212, 175, 55, 0.3);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s, background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.hero-btn i {
  transition: transform 0.3s ease;
}

.slide.active .sub-title,
.slide.active h1.single-line-heading,
.slide.active p,
.slide.active .hero-btn {
  opacity: 1;
  transform: translateY(0) rotateX(0deg) translateZ(0);
}

.hero-btn:hover {
  background-color: #FFFFFF;
  color: #111111;
  border-color: #FFFFFF;
  box-shadow: 0 10px 35px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

.hero-btn:hover i {
  transform: translateX(6px);
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 35px;
  z-index: 10;
}

.slider-nav i {
  background: rgba(17, 17, 17, 0.6);
  color: #FFFFFF;
  font-size: 18px;
  padding: 16px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.slider-nav i:hover {
  background: var(--accent-gold);
  color: var(--dark-grey);
  transform: scale(1.15);
  box-shadow: 0 0 15px var(--accent-gold);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
}

.dot.active {
  background: var(--accent-gold);
  width: 30px;
  border-radius: 6px;
  box-shadow: 0 0 10px var(--accent-gold);
}


/* RESPONSIVE  */
@media screen and (max-width: 1100px) {
  .hero-content h1.single-line-heading {
    font-size: 38px; 
    white-space: normal; 
  }
}

@media screen and (max-width: 992px) {
  .hero-content p {
    font-size: 15px;
  }
}

@media screen and (max-width: 576px) {
  .hero-slider {
    height: 75vh;
  }
  .hero-content h1.single-line-heading {
    font-size: 26px; 
    white-space: normal;
  }
  .hero-content p {
    font-size: 13px;
    margin-bottom: 25px;
  }
  .hero-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  .slider-nav {
    padding: 0 15px;
  }
  .slider-nav i {
    padding: 12px;
    font-size: 14px;
  }
}



/* FEATURED CATEGORIES SECTION  */
.categories-section {
  padding: 80px 0 30px 0; 
  background-color: var(--bg-color);
  overflow: hidden;
  width: 100%;
}

.categories-container {
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;   
  padding: 0 15px;   
}


.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.section-header .underline {
  width: 0px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 15px auto 0 auto;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

.section-header.animate-show .section-subtitle,
.section-header.animate-show h2 {
  opacity: 1;
  transform: translateY(0);
}

.section-header.animate-show .underline {
  width: 70px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; 
  width: 100%;
}

.category-card {
    position: relative;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    opacity: 0;
    transform: translateY(50px) scale(0.92);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    transition-delay: var(--card-delay);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.category-card.animate-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* Wishlist Icon Styling */
.wishlist-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  background-color: var(--accent-gold);
  color: #000000;
  border-color: var(--accent-gold);
  transform: scale(1.1);
}

.wishlist-btn.active {
  background-color: var(--accent-gold);
  color: #ff0000;
}

.wishlist-btn.active i {
  font-weight: 900; 
}


.category-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}

.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.2) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  z-index: 2;
}

.category-content {
  color: #FFFFFF;
  width: 100%;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.category-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.category-content p {
  font-size: 13px;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #111111;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.category-card:hover .category-img {
  transform: scale(1.08);
}

.category-card:hover::after {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.4) 0%, rgba(0,0,0,0.4) 100%);
}

.category-card:hover .category-content {
  transform: translateY(0);
}

.category-card:hover .explore-btn {
  background-color: var(--accent-gold);
  color: #000000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

@media screen and (max-width: 1024px) {
  .categories-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
  }
}

@media screen and (max-width: 576px) {
  .categories-grid { 
    grid-template-columns: 1fr; 
    gap: 20px;
  }
  .categories-section { 
    padding: 50px 0; 
  }
  .categories-container {
    padding: 0 15px;
  }
  .section-header h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 576px) {
  .category-card {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  
  
  .category-card:hover .category-img {
    transform: scale(1.03); 
  }
  
  .category-card:hover .category-content {
    transform: none !important;
  }
}



/* TRENDING & BEST SELLERS SECTION */
.products-section {
  padding: 80px 0;
  background-color: var(--bg-color);
  overflow: hidden;
  width: 100%;
}

.products-container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 15px;
}

.products-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.products-section .section-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}

.products-section .section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.products-section .section-header .underline {
  width: 0px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 15px auto 0 auto;
  transition: width 1s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
}

.products-section .section-header.animate-show .section-subtitle,
.products-section .section-header.animate-show h2 {
  opacity: 1;
  transform: translateY(0);
}

.products-section .section-header.animate-show .underline {
  width: 70px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 22px;
  row-gap: 35px;
  width: 100%;
}

.product-card {
  background: #1a1a1a;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.05);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, box-shadow 0.3s ease;
  transition-delay: var(--card-delay);
  display: flex;
  flex-direction: column;
}

.product-card.animate-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-img-box {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: #2a2a2a;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.product-img-box .watchlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.product-img-box .watchlist-btn i {
  font-size: 16px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.product-img-box .watchlist-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.product-img-box .watchlist-btn:hover i {
  color: var(--accent-gold);
}

.product-img-box .watchlist-btn.active {
  background: var(--accent-gold);
}

.product-img-box .watchlist-btn.active i {
  color: #ff3b30 !important;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-gold);
  color: #111111;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.badge.best-seller {
  background-color: #FFFFFF;
  color: #111111;
}

.product-details {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.category-tag {
  font-size: 12px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.product-details h3 {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
}

.old-price {
  font-size: 14px;
  color: #777777;
  text-decoration: line-through;
}

.card-action-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.qty-selector-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111111;
  border: 1px solid #333333;
  border-radius: 30px;
  padding: 6px 16px;
}

.qty-label {
  font-size: 12px;
  font-weight: 700;
  color: #888888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--accent-gold);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.qty-btn:hover {
  transform: scale(1.2);
}

.qty-display {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  min-width: 15px;
  text-align: center;
}

/* --- ADD TO CART BUTTON STYLING --- */
.add-to-cart-btn {
  width: 100%;
  background-color: #111111;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.add-to-cart-btn i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-14px) scale(1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.3);
  transition: transform 0.25s ease !important;
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-card:hover .add-to-cart-btn {
  background-color: var(--accent-gold);
  color: #111111;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.product-card:hover .add-to-cart-btn i {
  transform: scale(1.2);
}

@media screen and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 25px;
  }
}

@media screen and (max-width: 576px) {
  .products-section {
    padding: 50px 0;
  }
  .products-container {
    padding: 0 15px;
  }
  .products-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .product-img-box {
    height: 350px;
  }
}


/*  PROMOTIONAL BANNER SECTION */
.promo-banner {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
                url(images/contact-hero.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-banner.animate-show {
    opacity: 1;
    transform: scale(1);
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.promo-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.promo-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 12px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.promo-title {
    font-size: 60px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 1px 0 #ccc, 
                 0 2px 0 #c9c9c9, 
                 0 3px 0 #bbb, 
                 0 4px 0 #b2b2b2, 
                 0 5px 0 rgba(0, 0, 0, 0.1), 
                 0 6px 1px rgba(0, 0, 0, 0.1), 
                 0 0 20px rgba(212, 175, 55, 0.6), 
                 0 10px 30px rgba(0, 0, 0, 0.5);
}

.promo-discount {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* 3D Gold Glow Text Effect */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8), 
                 0 0 20px rgba(212, 175, 55, 0.8), 
                 0 0 40px rgba(212, 175, 55, 0.4);
}

.promo-desc {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.shop-now-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-gold);
    color: #111111;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.shop-now-btn:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* FULLY RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .promo-banner {
        height: 400px;
    }
    .promo-title {
        font-size: 48px;
    }
    .promo-discount {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .promo-banner {
        height: 360px;
        background-attachment: scroll; 
    }
    .promo-title {
        font-size: 36px;
        letter-spacing: 1px;
    }
    .promo-discount {
        font-size: 28px;
    }
    .promo-desc {
        font-size: 14px;
        padding: 0 10px;
    }
    .shop-now-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .promo-banner {
        height: 320px;
    }
    .promo-title {
        font-size: 30px;
    }
    .promo-discount {
        font-size: 24px;
    }
    .promo-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }
}


/* NEW ARRIVALS SECTION */
.new-arrivals-section {
    position: relative;
    padding: 90px 0 70px 0;
    background: #ffffff;
    width: 100%;
    overflow: hidden;
}

.bg-glow-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, rgba(255, 255, 255, 0) 75%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.glow-1 { top: -80px; left: -80px; }
.glow-2 { bottom: -80px; right: -80px; }

.arrivals-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.new-arrivals-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.new-arrivals-section .section-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b8860b;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.new-arrivals-section h2 {
    font-size: 34px;
    color: #111111;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.new-arrivals-section .underline {
    width: 0px;
    height: 3px;
    background: #b8860b;
    margin: 12px auto 0;
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

.new-arrivals-section .section-header.animate-show .section-subtitle,
.new-arrivals-section .section-header.animate-show h2 {
    opacity: 1;
    transform: translateY(0);
}

.new-arrivals-section .section-header.animate-show .underline {
    width: 60px;
}

.arrivals-masonry {
    column-count: 4;
    column-gap: 25px;
    width: 100%;
    margin-bottom: 55px;
}

.arrival-card {
    break-inside: avoid;
    margin-bottom: 25px;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18), 0 8px 25px rgba(184, 134, 11, 0.25);
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, box-shadow 0.3s ease;
    transition-delay: var(--card-delay);
}

.arrival-card.animate-show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.arrival-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.arrival-card .watchlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.arrival-card .watchlist-btn i {
    font-size: 16px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.arrival-card .watchlist-btn:hover {
    background: rgba(184, 134, 11, 0.8);
    transform: scale(1.1);
}

.arrival-card .watchlist-btn:hover i {
    color: #ffffff;
}

/* Active State: Yellow Circle background + Red Heart */
.arrival-card .watchlist-btn.active {
    background: #b8860b !important;
}

.arrival-card .watchlist-btn.active i {
    color: #ff3b30 !important;
}

.arrival-card:hover {
    transform: translateY(-10px) scale(1) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28), 0 12px 35px rgba(184, 134, 11, 0.4);
    transition: transform 0.25s ease !important;
}

.arrival-card:hover img {
    transform: scale(1.08);
}

.arrivals-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.arrivals-btn-container.animate-show {
    opacity: 1;
    transform: translateY(0);
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #111111;
    color: #ffffff;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 0px #000000, 
                0 15px 25px rgba(0, 0, 0, 0.2), 
                0 4px 12px rgba(184, 134, 11, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.explore-btn svg {
    transition: transform 0.3s ease;
}

.explore-btn:hover {
    background: #b8860b; 
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 0px #8b6508, 
                0 20px 35px rgba(184, 134, 11, 0.4), 
                0 6px 15px rgba(0, 0, 0, 0.15);
}

.explore-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0px #8b6508, 0 5px 10px rgba(184, 134, 11, 0.4);
}

.explore-btn:hover svg {
    transform: translateX(6px);
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .arrivals-masonry {
        column-count: 2;
    }
}

@media screen and (max-width: 576px) {
    .arrivals-masonry {
        column-count: 1;
    }
    .explore-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    .new-arrivals-section h2 {
        font-size: 26px;
    }
}




/* why choose us */
.why-choose-section {
    position: relative;
    padding: 100px 0;
    background: #0d0c0a;
    color: #ffffff;
    overflow: hidden;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    width: 100%;
}

.why-glow-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.glow-1 { top: -100px; left: -50px; }
.glow-2 { bottom: -100px; right: -50px; }

.why-container {
    position: relative;
    z-index: 5;
    max-width: 1440px; 
    margin: 0 auto;
    padding: 0 15px;
}

.why-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.anim-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(25px);
    filter: blur(5px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    transition-delay: calc(0.1s * var(--i));
}

.why-sub-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b8860b;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.8);
}

.why-main-heading {
    font-size: 40px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 25px rgba(184, 134, 11, 0.6);
}

.why-heading-line {
    width: 0px;
    height: 3px;
    background: #b8860b;
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.9);
    transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.7s;
}

.why-choose-section.in-view .anim-word {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.why-choose-section.in-view .why-heading-line {
    width: 70px;
}

.why-unique-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-unique-card {
    position: relative;
    background: linear-gradient(135deg, rgba(22, 20, 17, 0.9) 0%, rgba(12, 11, 10, 0.95) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(184, 134, 11, 0.35);
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(184, 134, 11, 0.08);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s ease, border-color 0.3s ease;
    transition-delay: var(--card-delay);
}

.why-choose-section.in-view .why-unique-card {
    opacity: 1;
    transform: translateY(0);
}

.card-inner {
    position: relative;
    z-index: 2;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(184, 134, 11, 0.35), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.unique-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8860b;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 20px;
    font-weight: 700;
    color: rgba(184, 134, 11, 0.25);
    transition: color 0.3s ease;
}

.why-unique-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.why-unique-card p {
    font-size: 14px;
    color: #b5b5b5;
    line-height: 1.6;
}

.why-unique-card:hover, 
.why-unique-card:active {
    transform: translateY(-14px) scale(1.02);
    border-color: rgba(184, 134, 11, 0.9);
    box-shadow: 0 35px 65px rgba(0, 0, 0, 0.9), 0 0 45px rgba(184, 134, 11, 0.5);
}

.why-unique-card:hover .card-glow-bg,
.why-unique-card:active .card-glow-bg {
    opacity: 1;
}

.why-unique-card:hover .unique-icon-box,
.why-unique-card:active .unique-icon-box {
    background: #b8860b;
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(184, 134, 11, 0.9);
}

.why-unique-card:hover h3,
.why-unique-card:active h3 {
    color: #b8860b;
    text-shadow: 0 0 12px rgba(184, 134, 11, 0.7);
}

.why-unique-card:hover .card-badge,
.why-unique-card:active .card-badge {
    color: rgba(184, 134, 11, 0.7);
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 1024px) {
    .why-unique-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 600px) {
    .why-unique-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-main-heading {
        font-size: 28px;
    }
    .why-choose-section {
        padding: 60px 0;
    }
}



/* ========================================== */
/* 2. CSS CODE (Apni style.css ke last me paste karein) */
/* ========================================== */
.luxury-review-section {
    position: relative;
    padding: 80px 0 120px 0;
    background: linear-gradient(rgba(13, 12, 10, 0.75), rgba(13, 12, 10, 0.75)), 
                url(images/contact-hero.jpg) no-repeat center center/cover;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.review-glow-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.review-glow-1 { top: -100px; right: -50px; }
.review-glow-2 { bottom: -100px; left: -50px; }

.review-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

.rev-custom-header {
    width: 100%;
    text-align: center;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rev-anim-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(25px);
    filter: blur(5px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    transition-delay: calc(0.08s * var(--i));
}

.luxury-review-section.in-view .rev-anim-word {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.rev-custom-header .review-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b8860b;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.8);
}

.rev-custom-header .review-title {
    font-size: 38px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 25px rgba(184, 134, 11, 0.7);
}

.rev-custom-header .review-underline {
    width: 0px;
    height: 3px;
    background: #b8860b;
    margin: 12px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.9);
    transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
}

.luxury-review-section.in-view .review-underline {
    width: 70px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    background: rgba(18, 17, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(184, 134, 11, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(184, 134, 11, 0.05);
    overflow: hidden;
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s ease, border-color 0.4s ease;
    transition-delay: 0.5s;
}

.luxury-review-section.in-view .carousel-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.carousel-track-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    position: relative;
    width: 100%;
    display: flex;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide.current-slide {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-content-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 70px;
    gap: 45px;
    box-sizing: border-box;
}

.slide-image-box {
    flex: 0 0 260px;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(184, 134, 11, 0.3);
    flex-shrink: 0;
}

.slide-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-image-box:hover img {
    transform: scale(1.08);
}

.slide-text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.star-rating {
    color: #b8860b;
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.review-desc {
    font-size: 16px;
    color: #dedede;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.client-name {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 4px;
}

.client-role {
    font-size: 12.5px;
    color: #b8860b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(17, 16, 14, 0.9);
    color: #b8860b;
    border: 1px solid rgba(184, 134, 11, 0.4);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #b8860b;
    color: #000000;
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.8);
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 25px;
    position: relative;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #b8860b;
    width: 25px;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .luxury-review-section { padding: 50px 10px; }
    .rev-custom-header .review-title { font-size: 24px !important; }
    .slide-content-card { flex-direction: column !important; padding: 25px 15px !important; gap: 15px !important; text-align: center; }
    .slide-image-box { width: 180px !important; height: 180px !important; margin: 0 auto; }
    .slide-text-box { align-items: center; text-align: center; }
    .carousel-btn { width: 35px; height: 35px; }
}


/*LUXURY FOOTER SECTION */
.luxury-footer {
    position: relative;
    background: #0d0c0a;
    color: #ffffff;
    padding: 80px 0 35px 0;
    overflow: hidden;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    width: 100%;
}

.footer-glow-shape {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.footer-glow-1 { top: -100px; left: -50px; }
.footer-glow-2 { bottom: -100px; right: -50px; }

.footer-container {
    position: relative;
    z-index: 5;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 35px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.8), 0 0 25px rgba(184, 134, 11, 0.4);
}

.footer-logo:hover {
    color: #b8860b;
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(184, 134, 11, 1), 0 0 35px rgba(184, 134, 11, 0.7);
}

.interactive-text {
    font-size: 14.5px;
    color: #b5b5b5;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.interactive-text:hover {
    color: #dcdcdc;
}


.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    background: rgba(18, 17, 15, 0.9);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: #b8860b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.social-icon-btn:hover {
    background: #b8860b;
    color: #000000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.9);
    border-color: #ffffff;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
    cursor: default;
    transition: color 0.3s ease;
    text-shadow: 0 0 12px rgba(184, 134, 11, 0.6);
}

.footer-heading:hover {
    color: #b8860b;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: #b8860b;
    box-shadow: 0 0 8px rgba(184, 134, 11, 0.8);
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 50px;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-interactive-link {
    color: #b5b5b5;
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-interactive-link span {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.footer-interactive-link:hover {
    color: #b8860b;
}

.footer-interactive-link:hover span {
    transform: translateX(8px);
    text-shadow: 0 0 12px rgba(184, 134, 11, 0.8);
}

.contact-links-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    font-size: 14.5px;
    color: #b5b5b5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-item span {
    transition: transform 0.3s ease;
}

.contact-item i {
    color: #b8860b;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-item:hover {
    color: #b8860b;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.6);
}

.contact-item:hover span {
    transform: translateX(6px);
}

.contact-item:hover i {
    transform: scale(1.25) rotate(10deg);
    filter: drop-shadow(0 0 8px rgba(184, 134, 11, 0.9));
}

.newsletter-form {
    display: flex;
    position: relative;
    width: 100%;
}

.footer-input-effect {
    width: 100%;
    padding: 12px 15px;
    background: rgba(18, 17, 15, 0.9);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-input-effect:focus {
    border-color: #b8860b;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(184, 134, 11, 0.6);
}

.footer-btn-effect {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: #b8860b;
    color: #000000;
    border: none;
    padding: 0 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.footer-input-effect:focus ~ .footer-btn-effect {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(184, 134, 11, 0.5);
}

.footer-btn-effect:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    cursor: default;
}

.copyright-text {
    font-size: 15.5px;
    font-weight: 500;
    color: #a0a0a0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-bottom:hover .copyright-text {
    color: #b8860b;
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.9);
}

.luxury-footer .footer-animate-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-footer.animate-footer .footer-animate-item {
    opacity: 1;
    transform: translateY(0);
}

.luxury-footer.animate-footer .footer-col:nth-child(1) { transition-delay: 0.1s; }
.luxury-footer.animate-footer .footer-col:nth-child(2) { transition-delay: 0.25s; }
.luxury-footer.animate-footer .footer-col:nth-child(3) { transition-delay: 0.4s; }
.luxury-footer.animate-footer .footer-col:nth-child(4) { transition-delay: 0.55s; }
.luxury-footer.animate-footer .footer-bottom { transition-delay: 0.7s; }

/* Responsive Design */
@media screen and (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .footer-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .luxury-footer {
        padding: 50px 0 20px 0;
    }
}




/*LUXURY RIGHT-SIDE FLOATING BAR CSS */
.luxury-floating-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-action-btn {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(18, 17, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: #b8860b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(184, 134, 11, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.float-action-btn:hover {
    background: #b8860b;
    color: #000000;
    transform: translateY(-5px) scale(1.1);
    border-color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(184, 134, 11, 0.9);
}

.float-action-btn i {
    transition: transform 0.3s ease;
}

.float-action-btn:hover i {
    transform: scale(1.15);
}

.float-tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(18, 17, 15, 0.95);
    color: #ffffff;
    border: 1px solid rgba(184, 134, 11, 0.5);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(184, 134, 11, 0.8);
}

.float-action-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
    .luxury-floating-sidebar {
        right: 12px;
        gap: 10px;
    }
    .float-action-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .float-tooltip {
        display: none;
    }
}