:root {
  --bg-color: #ffffff;
  --text-color: #222222;
  --text-muted: #6c757d;
  --heading-color: #111111;
  --primary-color: #2C2C2C;
  --accent-color: #C19A6B; /* Soft Gold/Beige */
  --secondary-bg: #F5F5DC; /* Cream */
  --card-bg: #f8f8f8;
  --border-color: rgba(0, 0, 0, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-theme="dark"] {
  --bg-color: #0f0f0f;
  --text-color: #e6e6e6;
  --text-muted: #adb5bd;
  --heading-color: #ffffff;
  --primary-color: #EAEAEA;
  --accent-color: #D4AF37;
  --secondary-bg: #222222;
  --card-bg: #1a1a1a;
  --border-color: rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(15, 15, 15, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transition: background-color 0.5s ease, color 0.5s ease;
  overflow-x: hidden;
  animation: fadeInPage 0.8s ease-out forwards;
}

@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
  color: var(--heading-color);
}

h1, .h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2, .h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4, .h4 { font-size: clamp(1.25rem, 2.5vw, 2rem); }
h5, .h5 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h6, .h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

/* Bootstrap Overrides for Dark Mode */
.text-muted {
  color: var(--text-muted) !important;
}

.text-dark {
  color: var(--heading-color) !important;
}

.bg-white {
  background-color: var(--card-bg) !important;
}

.bg-light {
  background-color: var(--secondary-bg) !important;
}

[data-theme="dark"] .card {
  background-color: var(--card-bg);
  color: var(--text-color);
}

[data-theme="dark"] .list-group-item {
  background-color: transparent;
  color: var(--text-color);
  border-color: var(--border-color);
}

[data-theme="dark"] .border-bottom {
  border-color: var(--border-color) !important;
}

[data-theme="dark"] .bg-white,
[data-theme="dark"] .bg-light {
  background-color: var(--card-bg) !important;
  color: var(--text-color) !important;
}

[data-theme="dark"] .text-muted {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .text-dark {
  color: var(--text-color) !important;
}

[data-theme="dark"] .nav-pills .nav-link {
  color: var(--text-color);
}

[data-theme="dark"] .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: #000000;
  font-weight: bold;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select,
[data-theme="dark"] textarea {
  background-color: var(--secondary-bg) !important;
  color: var(--text-color) !important;
  border-color: var(--border-color) !important;
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] textarea:focus {
  background-color: var(--secondary-bg) !important;
  color: #ffffff !important;
  border-color: var(--accent-color) !important;
}

[data-theme="dark"] .form-control::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .btn-outline-dark {
  color: var(--text-color);
  border-color: var(--border-color);
}

[data-theme="dark"] .btn-outline-secondary {
  color: var(--text-color);
  border-color: var(--border-color);
}

[data-theme="dark"] .btn-outline-secondary:hover {
  background-color: var(--border-color);
  color: var(--text-color);
}

[data-theme="dark"] .btn-outline-dark:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
}

[data-theme="dark"] .btn-dark {
  background-color: var(--primary-color);
  color: var(--bg-color);
  border-color: var(--primary-color);
}

[data-theme="dark"] .btn-dark:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
}

@media (max-width: 768px) {
  .py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }
  .mb-5 { margin-bottom: 3rem !important; }
  .mt-5 { margin-top: 3rem !important; }
  .pt-5 { padding-top: 3rem !important; }
  .pb-5 { padding-bottom: 3rem !important; }
  .p-5 { padding: 2rem !important; }
  .px-5 { padding-left: 2rem !important; padding-right: 2rem !important; }
  
  .hero-title { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; }
}

/* Splash Screen */
#splash-screen {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.splash-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  animation: splashAnim 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes splashAnim {
  0% { opacity: 0; transform: translateY(20px); }
  50% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Glass Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin: 15px 20px;
  padding: 1rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
}

@media (max-width: 768px) {
  .navbar {
    margin: 10px;
    padding: 0.8rem 1rem;
  }
}

[data-theme="dark"] .navbar {
  background: rgba(15, 15, 15, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

[data-theme="dark"] .navbar:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Navbar Scroll Effect */
.navbar.scrolled {
  background: var(--bg-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0.7rem 1.5rem;
  border-radius: 0;
  margin: 0;
  border: none;
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .navbar.scrolled {
    padding: 0.5rem 1rem;
  }
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(15, 15, 15, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-color) !important;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}

.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  margin: 0 10px;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-color);
}

.nav-link:hover {
  color: var(--accent-color) !important;
  transform: translateY(-3px);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-color) !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-icon {
  color: var(--text-color);
  margin-left: 20px;
  cursor: pointer;
  position: relative;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-icon:hover {
  color: var(--accent-color);
  transform: translateY(-3px) scale(1.1);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Mobile Navbar Toggle */
.navbar-toggler {
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
  display: block;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
  left: 0;
}
.navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler-icon::after {
  bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu Dropdown */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-origin: top;
    animation: slideDown 0.3s ease forwards;
  }
  
  [data-theme="dark"] .navbar-collapse {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-link {
    padding: 0.8rem 1rem;
    margin: 0;
    border-radius: 8px;
  }
  
  .nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
  }
  
  [data-theme="dark"] .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .nav-link::after {
    display: none;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0.9);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
.badge-counter {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: var(--accent-color);
  color: var(--heading-color);
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.65rem;
  font-weight: bold;
}

/* 3D Hero Section */
.hero-carousel-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-color);
}

.carousel, .carousel-inner, .carousel-item {
  height: 100%;
}

.carousel-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

.carousel-item.active .carousel-image-wrapper img {
  transform: scale(1);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0;
}

.hero-text-content {
  max-width: 600px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

.hero-actions {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s;
}

.carousel-item.active .hero-title,
.carousel-item.active .hero-subtitle,
.carousel-item.active .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Glass Buttons */
.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-glass::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.5s ease;
}

.btn-glass:hover::before {
  left: 100%;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2), 0 0 15px rgba(212, 175, 55, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-glass {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline-glass:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: floatShape 15s ease-in-out infinite alternate;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: floatShape 20s ease-in-out infinite alternate-reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
  animation: floatShape 12s ease-in-out infinite alternate;
}

@keyframes floatShape {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
  100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 15px;
  position: relative;
  margin-bottom: 5px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

.arrow-down {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: arrowDown 2s infinite;
}

@keyframes arrowDown {
  0% { transform: rotate(45deg) translate(-5px, -5px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: rotate(45deg) translate(5px, 5px); opacity: 0; }
}

/* Product Card Upgrade */
.product-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

[data-theme="dark"] .product-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(31, 38, 135, 0.15);
  background: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .product-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.4);
}

.product-img-wrapper {
  background: transparent;
  padding: 0;
  border-radius: 20px 20px 0 0;
  position: relative;
  aspect-ratio: 4/3;
}

.product-img-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.product-actions-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.product-card:hover .product-actions-overlay {
  opacity: 1;
}

@media (max-width: 767px) {
  .product-actions-overlay {
    opacity: 1;
    top: 10px;
    right: 10px;
    gap: 5px;
  }
  .action-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

.action-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(0.9);
}

.product-card:hover .action-btn {
  transform: scale(1);
}

.action-btn:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
  transform: scale(1.1) !important;
  box-shadow: 0 0 15px var(--accent-color), 0 0 20px rgba(212, 175, 55, 0.4);
}

.action-btn i {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.action-btn:hover i {
  transform: scale(1.1);
}

.add-to-cart-btn {
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 12px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

[data-theme="dark"] .add-to-cart-btn {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
}

.add-to-cart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .add-to-cart-btn:hover {
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2), 0 0 15px rgba(212, 175, 55, 0.1);
  color: #fff;
  border-color: var(--accent-color);
}

/* Ripple Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
}

.ripple:active::after {
  transform: scale(0, 0);
  opacity: .3;
  transition: 0s;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: none;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent-color);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Staggered Animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
  pointer-events: none;
}

/* Buttons */
.btn-gold {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
}
.btn-gold:hover::before {
  left: 100%;
}
.btn-gold:hover {
  background-color: #A88355;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(193, 154, 107, 0.3);
}

.btn-success-custom {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-success-custom:hover {
  background-color: #218838;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.btn-outline-dark-custom {
  border: 1px solid var(--text-color);
  color: var(--text-color);
  background: transparent;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
}
.btn-outline-dark-custom:hover {
  background: var(--text-color);
  color: var(--bg-color);
}

/* Product Info */
.product-info {
  padding: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .product-info {
    padding: 10px;
  }
  .product-title {
    font-size: 1rem;
  }
  .product-price {
    font-size: 0.9rem;
  }
}
.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-color);
}
.product-price {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1.1rem;
}
.product-rating {
  color: var(--accent-color);
  font-size: 0.8rem;
  margin-bottom: 15px;
}

/* Why Choose Us Section */
.why-choose-us-section {
  position: relative;
  z-index: 1;
}

.why-choose-us-section.reveal {
  opacity: 1;
  transform: none;
}

.feature-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
}

.why-choose-us-section.reveal.active .col-12:nth-child(1) .feature-card { transition-delay: 0.1s; }
.why-choose-us-section.reveal.active .col-12:nth-child(2) .feature-card { transition-delay: 0.2s; }
.why-choose-us-section.reveal.active .col-12:nth-child(3) .feature-card { transition-delay: 0.3s; }
.why-choose-us-section.reveal.active .col-12:nth-child(4) .feature-card { transition-delay: 0.4s; }

.why-choose-us-section.reveal.active .feature-card {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.2);
  transition-delay: 0s !important;
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
}

.feature-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), transparent);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease;
  filter: blur(8px);
}

.feature-icon {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #333, #666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: translateY(-5px);
}

.feature-card:hover .feature-icon-wrapper::after {
  opacity: 0.5;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-color);
}

/* Dark Mode Support for Features */
[data-theme="dark"] .feature-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

[data-theme="dark"] .feature-icon {
  background: linear-gradient(135deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Reviews Carousel */
.reviews-section {
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.reviews-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  padding: 20px 10px;
}

.review-card {
  flex: 0 0 calc(33.33333% - 13.33333px);
  min-width: calc(33.33333% - 13.33333px);
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

@media (max-width: 991px) {
  .review-card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 767px) {
  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .glass-panel {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.review-card:hover {
  transform: translateY(-10px) scale(1.02) perspective(1000px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .review-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.1), inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.customer-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.customer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 0 0 5px 0;
  color: var(--text-color);
}

.star-rating {
  color: var(--accent-color);
  font-size: 0.9rem;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.star-rating i {
  transition: text-shadow 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.review-card:hover .star-rating i {
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
  transform: scale(1.15) translateY(-2px);
}

.review-card:hover .star-rating i:nth-child(1) { transition-delay: 0.0s; }
.review-card:hover .star-rating i:nth-child(2) { transition-delay: 0.05s; }
.review-card:hover .star-rating i:nth-child(3) { transition-delay: 0.1s; }
.review-card:hover .star-rating i:nth-child(4) { transition-delay: 0.15s; }
.review-card:hover .star-rating i:nth-child(5) { transition-delay: 0.2s; }

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  font-style: italic;
  opacity: 0.9;
}

/* Carousel Nav */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-nav:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent-color);
  transform: scale(1.3);
}

/* Section Titles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 80px 0 40px;
  margin-top: 100px;
}
footer h5 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: #fff;
}
footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}
footer a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Utilities */
.font-playfair {
  font-family: 'Playfair Display', serif;
}
.text-gold {
  color: var(--accent-color) !important;
}
.bg-gold {
  background-color: var(--accent-color) !important;
}
.hover-gold:hover {
  color: var(--accent-color) !important;
}
.transition {
  transition: var(--transition);
}
.social-icon {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-icon:hover {
  transform: translateY(-4px) scale(1.15);
  color: var(--accent-color) !important;
  text-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.max-w-700 {
  max-width: 700px;
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--accent-color);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Hover Glow Effects */
.btn-primary:hover, .btn-gold:hover {
  box-shadow: 0 0 15px var(--accent-color), 0 0 30px rgba(212, 175, 55, 0.3);
}

.btn-outline-dark-custom:hover {
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

[data-theme="dark"] .btn-outline-dark-custom:hover {
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

/* Animated Badges */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.animated-badge {
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Quick View Modal Glassmorphism */
.qv-modal-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

[data-theme="dark"] .qv-modal-content {
  background: rgba(20, 20, 20, 0.85);
  border-color: rgba(255, 255, 255, 0.05);
}

.qv-image-container {
  background: var(--bg-color);
  border-radius: 12px;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.qv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.qv-image-container:hover .qv-image {
  transform: scale(1.1);
}

/* Quick View Modal Animation */
#quickViewModal.fade .modal-dialog {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#quickViewModal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

/* Button Glow Effect */
.btn-glow {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
}

.btn-glow:hover::after {
  opacity: 1;
  transform: scale(1);
}

.btn-glow:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Featured Products Carousel */
.featured-products-section {
  position: relative;
  overflow: hidden;
}

.featured-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.featured-carousel-container {
  position: relative;
  height: 500px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-carousel-item {
  position: absolute;
  width: 320px;
  height: 450px;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  z-index: 0;
  transform: translateX(0) scale(0.8) rotateY(0);
  pointer-events: none;
}

.featured-carousel-item.active {
  opacity: 1;
  z-index: 3;
  transform: translateX(0) scale(1) rotateY(0);
  pointer-events: auto;
}

.featured-carousel-item.prev {
  opacity: 0.6;
  z-index: 2;
  transform: translateX(-60%) scale(0.85) rotateY(10deg);
  pointer-events: auto;
  cursor: pointer;
}

.featured-carousel-item.next {
  opacity: 0.6;
  z-index: 2;
  transform: translateX(60%) scale(0.85) rotateY(-10deg);
  pointer-events: auto;
  cursor: pointer;
}

.featured-carousel-item.hidden {
  opacity: 0;
  z-index: 1;
  transform: translateX(0) scale(0.6) rotateY(0);
}

/* Featured Product Card */
.featured-product-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
}

[data-theme="dark"] .featured-product-card {
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
}

.featured-carousel-item.active .featured-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

[data-theme="dark"] .featured-carousel-item.active .featured-product-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,255,255,0.05);
}

.featured-product-card .product-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.featured-product-card .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-carousel-item.active .featured-product-card:hover .product-img {
  transform: scale(1.08);
}

.glass-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 15px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 10;
}

.featured-carousel-item.active .featured-product-card:hover .glass-actions {
  opacity: 1;
}

.glass-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.featured-carousel-item.active .featured-product-card:hover .glass-btn {
  transform: translateY(0);
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.4) !important;
  transform: scale(1.1) translateY(0) !important;
}

[data-theme="dark"] .glass-btn {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

[data-theme="dark"] .glass-btn:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

.glass-pill-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 10px 25px;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
  width: 80%;
  margin: 0 auto 20px;
}

.glass-pill-btn:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

[data-theme="dark"] .glass-pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .glass-pill-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/* Navigation */
.featured-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

[data-theme="dark"] .featured-nav {
  background: rgba(30, 30, 30, 0.8);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.featured-nav:hover {
  background: var(--accent-color);
  color: #fff;
}

.featured-nav.prev { left: 10px; }
.featured-nav.next { right: 10px; }

/* Dots */
.featured-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.featured-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

[data-theme="dark"] .featured-dot {
  background: #555;
}

.featured-dot.active {
  background: var(--accent-color);
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 991px) {
  .featured-carousel-item.prev { transform: translateX(-50%) scale(0.85) rotateY(10deg); }
  .featured-carousel-item.next { transform: translateX(50%) scale(0.85) rotateY(-10deg); }
}

@media (max-width: 767px) {
  .featured-carousel-item { width: 280px; }
  .featured-carousel-item.prev, .featured-carousel-item.next { opacity: 0; pointer-events: none; }
  .featured-nav.prev { left: 0; }
  .featured-nav.next { right: 0; }
}

/* Sofa Style Inspiration Section */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active .masonry-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal.active .masonry-item:nth-child(1) { transition-delay: 0.1s; }
.reveal.active .masonry-item:nth-child(2) { transition-delay: 0.2s; }
.reveal.active .masonry-item:nth-child(3) { transition-delay: 0.3s; }
.reveal.active .masonry-item:nth-child(4) { transition-delay: 0.4s; }
.reveal.active .masonry-item:nth-child(5) { transition-delay: 0.5s; }
.reveal.active .masonry-item:nth-child(6) { transition-delay: 0.6s; }

.inspiration-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
  background-color: var(--card-bg);
}

.inspiration-card.short { height: 280px; }
.inspiration-card.medium { height: 380px; }
.inspiration-card.tall { height: 480px; }

[data-theme="dark"] .inspiration-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.inspiration-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.inspiration-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 2rem;
  text-align: center;
}

[data-theme="dark"] .inspiration-overlay {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.inspiration-title {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.inspiration-btn {
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: 0.1s;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.inspiration-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Hover Effects */
.inspiration-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .inspiration-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.05);
}

.inspiration-card:hover .inspiration-img {
  transform: scale(1.1);
}

.inspiration-card:hover .inspiration-overlay {
  opacity: 1;
}

.inspiration-card:hover .inspiration-title,
.inspiration-card:hover .inspiration-btn {
  transform: translateY(0);
}

/* Responsive Masonry */
@media (max-width: 991px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 575px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* Trusted Brands Section */
.trusted-brands-section {
  overflow: hidden;
  position: relative;
  background: transparent;
}

.brand-slider-container {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}

/* Fade edges for smooth entry/exit */
.brand-slider-container::before,
.brand-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-slider-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.brand-slider-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.brand-slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-brands 30s linear infinite;
}

.brand-slider-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px)); /* -50% of total width minus half gap */
  }
}

.brand-card {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .brand-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Glass shimmer animation */
.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

[data-theme="dark"] .brand-card::before {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.brand-card:hover::before {
  left: 150%;
}

.brand-card:hover {
  transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 0 15px rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.25);
}

[data-theme="dark"] .brand-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.brand-logo-img {
  max-width: 110px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(100%) contrast(1.2);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-theme="dark"] .brand-logo-img {
  opacity: 0.95;
  filter: grayscale(100%) invert(1) contrast(1.2) brightness(1.1);
  mix-blend-mode: screen;
}

.brand-card:hover .brand-logo-img {
  transform: scale(1.05);
  opacity: 1;
  filter: grayscale(0%) contrast(1.1);
}

[data-theme="dark"] .brand-card:hover .brand-logo-img {
  opacity: 1;
  filter: grayscale(100%) invert(1) contrast(1.2) brightness(1.2) drop-shadow(0 0 8px rgba(255,255,255,0.2));
}

/* Responsive adjustments for brand slider */
@media (max-width: 992px) {
  .brand-card {
    width: 160px;
  }
  .brand-logo-img {
    max-width: 100px;
    max-height: 45px;
  }
}

@media (max-width: 768px) {
  .brand-card {
    width: 140px;
  }
  .brand-slider-container::before,
  .brand-slider-container::after {
    width: 50px;
  }
  .brand-logo-img {
    max-width: 90px;
    max-height: 40px;
  }
}

@media (max-width: 576px) {
  .brand-card {
    width: 130px;
  }
  .brand-logo-img {
    max-width: 80px;
    max-height: 35px;
  }
}

/* Special Offers Section */
.special-offers-section {
  position: relative;
}

.offer-banner {
  padding: 60px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s ease;
}

[data-theme="dark"] .offer-banner {
  background: linear-gradient(135deg, rgba(20,20,20,0.6) 0%, rgba(10,10,10,0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.offer-banner:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .offer-banner:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.offer-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  opacity: 0.8;
}

.offer-highlight {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

/* Floating Shapes */
.shape-offer-1, .shape-offer-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  opacity: 0.5;
  animation: float 8s ease-in-out infinite alternate;
}

.shape-offer-1 {
  width: 200px;
  height: 200px;
  background: rgba(212, 175, 55, 0.15);
  top: -50px;
  left: -50px;
}

.shape-offer-2 {
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.2);
  bottom: -80px;
  right: -50px;
  animation-delay: -4s;
}

[data-theme="dark"] .shape-offer-1 {
  background: rgba(212, 175, 55, 0.1);
}

[data-theme="dark"] .shape-offer-2 {
  background: rgba(255, 255, 255, 0.03);
}

/* Countdown Timer */
.countdown-timer {
  font-family: 'JetBrains Mono', monospace;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 90px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

[data-theme="dark"] .timer-unit {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.timer-unit:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
}

[data-theme="dark"] .timer-unit:hover {
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.timer-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1;
  margin-bottom: 5px;
}

.timer-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color);
  opacity: 0.7;
}

.timer-separator {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  animation: pulse-opacity 1s infinite;
}

@keyframes pulse-opacity {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Number flip animation class */
.flip-animate {
  animation: flip 0.4s ease-in-out;
}

@keyframes flip {
  0% { transform: rotateX(0deg); }
  50% { transform: rotateX(90deg); opacity: 0.5; }
  100% { transform: rotateX(0deg); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .offer-banner {
    padding: 40px 20px;
  }
  .countdown-timer {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .timer-unit {
    width: 65px;
    height: 75px;
  }
  .timer-value {
    font-size: 1.5rem;
  }
  .timer-label {
    font-size: 0.65rem;
  }
  .timer-separator {
    font-size: 1.5rem;
  }
  .offer-highlight {
    font-size: 1.4rem;
  }
}

/* =========================================
   BRANDS PAGE STYLES
   ========================================= */

/* Hero Section */
.brands-hero {
  height: 60vh;
  min-height: 500px;
}

.brands-hero-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url('https://images.unsplash.com/photo-1600210491369-e753d80a41f3?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: 1;
  will-change: transform;
}

.brands-hero-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: var(--text-color);
}

[data-theme="dark"] .brands-hero-glass {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.05);
  color: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 24px;
  animation: bounce 2s infinite;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-15px) translateX(-50%); }
  60% { transform: translateY(-7px) translateX(-50%); }
}

/* Featured Brand Spotlights */
.brand-spotlight-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-theme="dark"] .brand-spotlight-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.02);
}

.brand-spotlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .brand-spotlight-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.05);
}

.brand-spotlight-img-wrapper {
  height: 400px;
  overflow: hidden;
}

.brand-spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-spotlight-card:hover .brand-spotlight-img {
  transform: scale(1.05);
}

.spotlight-btn {
  transition: all 0.3s ease;
}

.brand-spotlight-card:hover .spotlight-btn {
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Brand Story Cards */
.story-feature-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

[data-theme="dark"] .story-feature-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.story-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .story-feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.03);
}

.feature-icon-wrapper {
  color: var(--gold);
  transition: transform 0.4s ease;
}

.story-feature-card:hover .feature-icon-wrapper {
  transform: translateY(-5px);
}

/* Animations Overrides for Reveal */
.reveal.slide-left {
  transform: translateX(-50px);
}

.reveal.slide-right {
  transform: translateX(50px);
}

.reveal.fade-in {
  transform: translateY(0);
  opacity: 0;
}

.reveal.active.slide-left,
.reveal.active.slide-right,
.reveal.active.fade-in {
  transform: translate(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .brand-spotlight-img-wrapper {
    height: 300px;
  }
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */

/* Hero Section */
.about-hero {
  height: 70vh;
  min-height: 600px;
}

.about-hero-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url('https://images.unsplash.com/photo-1600210491369-e753d80a41f3?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: 1;
  will-change: transform;
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

/* Floating Gradient Shapes */
.about-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: floatShape 15s infinite alternate ease-in-out;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: floatShape 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatShape {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -50px) scale(1.1); }
  100% { transform: translate(-20px, 20px) scale(0.9); }
}

.about-hero-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #fff; /* Always light text on dark gradient */
}

/* Our Story */
.story-img-wrapper {
  position: relative;
}

.story-img {
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.story-img-wrapper:hover .story-img {
  transform: scale(1.05) !important; /* Override parallax slightly on hover */
}

/* Mission & Vision Cards */
.mv-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-theme="dark"] .mv-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .mv-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.03);
}

.mv-icon-wrapper {
  color: var(--gold);
  transition: transform 0.4s ease;
}

.mv-card:hover .mv-icon-wrapper {
  transform: scale(1.1);
}

/* Why Choose Us Cards */
.wcu-card {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

[data-theme="dark"] .wcu-card {
  border-color: rgba(255,255,255,0.05);
}

.wcu-card:hover {
  transform: translateY(-5px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 10px 15px 30px rgba(0,0,0,0.1);
}

[data-theme="dark"] .wcu-card:hover {
  box-shadow: 10px 15px 30px rgba(0,0,0,0.4);
}

.wcu-icon {
  color: var(--gold);
}

/* Team Section */
.team-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}

[data-theme="dark"] .team-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .team-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.03);
}

.team-img-wrapper {
  width: 150px;
  height: 150px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-social {
  opacity: 1;
}

.team-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.team-social a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

/* Mobile Team Carousel */
.team-carousel-container {
  display: none;
}

@media (max-width: 767px) {
  .team-grid-container {
    display: none;
  }
  .team-carousel-container {
    display: block;
  }
  
  .team-carousel-inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    gap: 20px;
  }
  
  .team-carousel-inner::-webkit-scrollbar {
    display: none;
  }
  
  .team-carousel-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

/* =========================================
   GLOBAL MOBILE RESPONSIVENESS IMPROVEMENTS
   ========================================= */

/* Typography Scaling */
h1, .display-3, .display-4, .display-5 {
  font-size: clamp(2rem, 5vw, 4rem) !important;
}
h2, .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
}
p, .lead {
  font-size: clamp(1rem, 2vw, 1.15rem) !important;
}

/* Image Optimization */
img {
  max-width: 100%;
  height: auto;
}
.product-img, .inspiration-img, .story-img, .team-img {
  width: 100%;
  object-fit: cover;
}

/* Button Optimization on Mobile */
@media (max-width: 767px) {
  .btn-gold, .add-to-cart-btn, .btn-outline-dark-custom, .btn-outline-light:not(.inspiration-btn) {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    display: block;
  }
}

/* Spacing & Alignment */
@media (max-width: 767px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}

/* Gallery Section Improvement (Mobile Swipe Slider) */
@media (max-width: 575px) {
  .masonry-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    column-gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .masonry-grid::-webkit-scrollbar {
    display: none;
  }
  .masonry-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
    margin-bottom: 0;
  }
  .inspiration-card {
    height: 350px !important;
  }
  .inspiration-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    justify-content: flex-end;
    padding: 1.5rem;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .inspiration-title {
    transform: translateY(0);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  }
  .inspiration-btn {
    transform: translateY(0);
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    width: auto;
    display: inline-block;
  }
}

/* Product Gallery and Zoom */
.product-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
  height: 500px;
  background-color: var(--card-bg);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-gallery-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.product-gallery-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.product-gallery-thumbnails::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 10px;
}

.thumbnail-item {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.thumbnail-item.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.thumbnail-item.active img,
.thumbnail-item:hover img {
  opacity: 1;
}

#coupon-tabs .nav-link.active {
  color: #000000 !important;
  font-weight: bold;
}
