/* Critical CSS - Prevent Layout Shifts */
.modular-banner-split {
  min-height: 768px;
  height: 768px;
}

/* Prevent FOUC for Linnea TV Unit Collection */
.modular-bottom-banner {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* Linnea TV Unit Collection - Specific Styles to Prevent Conflicts */
.modular-bottom-banner .modular-banner-split {
  display: grid !important;
  grid-template-columns: 1fr 2fr !important;
  min-height: 768px !important;
  height: 768px !important;
  align-items: center;
  overflow: hidden;
}

.modular-bottom-banner .modular-banner-left {
  background: linear-gradient(135deg, rgba(113, 86, 36, 0.95) 0%, rgba(139, 69, 19, 0.95) 100%) !important;
  color: white !important;
  padding: 40px !important;
  min-height: 768px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.modular-bottom-banner .modular-banner-right {
  min-height: 768px !important;
  height: 768px !important;
  overflow: hidden !important;
  position: relative !important;
}

/* Split Hero Section */
.hero-split {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  margin: 0;
  margin-top: 0;
  padding: 0;
  border-bottom: 4px solid var(--primary-gold);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Hero Split Section - Optimized */
.hero-split .hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 20px 40px;
  margin: 0 auto;
  max-width: 1440px;
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Left Content Side */
.hero-content-side {
  padding-right: 40px;
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gradient-warm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
}

.hero-main-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--neutral-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-highlight {
  background: var(--gradient-earth);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #64748B;
  margin-bottom: 24px;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  padding: 24px 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  background: rgba(255, 254, 249, 0.5);
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(212, 175, 55, 0.3);
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 6px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 12px;
  color: var(--neutral-medium);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gradient-warm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-primary:hover {
  background: var(--gradient-earth);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #007BFF;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid rgba(0, 123, 255, 0.3);
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cta-secondary:hover {
  border-color: rgba(0, 86, 179, 0.5);
  background: #0056B3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* WhatsApp Button Style */
.hero-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #25D366;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.hero-cta-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
}

/* Right Showcase Side */
.hero-showcase-side {
  position: relative;
  height: 507px;
  animation: fadeInRight 0.8s ease-out;
  padding: 20px 0;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.showcase-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(226, 232, 240, 0.5);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.showcase-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.showcase-image.active {
  opacity: 1;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
  color: white;
}

.showcase-overlay h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.showcase-overlay p {
  font-size: 16px;
  opacity: 0.9;
}



/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.6);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.badge-1 {
  top: 40px;
  right: -20px;
  animation-delay: 0s;
}

.badge-icon {
  font-size: 24px;
}

.badge-title {
  font-size: 14px;
  font-weight: 700;
  color: #1E293B;
}

.badge-subtitle {
  font-size: 12px;
  color: #94A3B8;
}

/* Shop By Categories Section */
.shop-categories-section {
  background: #FAFAFA;
  padding: 80px 0;
  margin-top: 0;
  position: relative;
}

.shop-categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-earth);
  opacity: 0.6;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #64748B;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
}

/* Category Filters */
.category-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #64748B;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.filter-btn:hover {
  border-color: var(--secondary-beige);
  color: var(--primary-wood);
  background: var(--neutral-white);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15), inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.filter-btn.active {
  background: var(--gradient-warm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: var(--accent-coral);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

/* View All Section */
.view-all-section {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gradient-warm);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(224, 122, 95, 0.3);
}

.view-all-btn:hover {
  background: var(--gradient-earth);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.4);
}

.view-all-text {
  transition: all 0.3s;
}

.product-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 2px solid rgba(226, 232, 240, 0.6);
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-warm);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(224, 122, 95, 0.3);
  border-color: var(--accent-coral);
  background: var(--neutral-white);
}

.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #F8FAFC;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  background: var(--gradient-warm);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(224, 122, 95, 0.3);
}

.product-name {
  padding: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1E293B;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* Product Tooltip Styles */
.product-tooltip {
  position: absolute;
  top: 0;
  left: 100%;
  width: 300px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(224, 122, 95, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  pointer-events: none;
}

.product-card:hover .product-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(10px);
}

/* Adjust tooltip position for cards on the right side */
.product-card:nth-child(3n) .product-tooltip,
.product-card:nth-child(3n+3) .product-tooltip {
  left: -310px;
  transform: translateX(10px);
}

.product-card:nth-child(3n):hover .product-tooltip,
.product-card:nth-child(3n+3):hover .product-tooltip {
  transform: translateX(-10px);
}

.tooltip-content {
  color: #333;
}

.tooltip-title {
  font-size: 18px;
  font-weight: 700;
  color: #1E293B;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tooltip-category {
  font-size: 14px;
  color: var(--accent-coral);
  font-weight: 600;
  margin: 0 0 12px 0;
  text-transform: capitalize;
}

.tooltip-description {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.tooltip-detail {
  font-size: 13px;
  color: #475569;
  line-height: 1.4;
  margin: 0 0 8px 0;
}

.tooltip-detail strong {
  color: #1E293B;
  font-weight: 600;
}

/* Responsive tooltip adjustments */
@media (max-width: 1024px) {
  .product-tooltip {
    width: 280px;
  }
  
  .product-card:nth-child(3n) .product-tooltip,
  .product-card:nth-child(3n+3) .product-tooltip {
    left: -290px;
  }
}

@media (max-width: 768px) {
  .product-tooltip {
    display: none; /* Hide tooltips on mobile for better UX */
  }
}

/* Featured Collection Banner - Optimized */
.featured-banner-section {
  padding: 40px 0;
  margin-top: 0;
  border-bottom: 4px solid var(--primary-gold);
}

.featured-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 40px;
}

.banner-content {
  max-width: 500px;
  color: white;
  z-index: 2;
}

.banner-subtitle {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.banner-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.banner-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.9;
}

.banner-cta {
  padding: 16px 40px;
  background: white;
  color: #1E293B;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  display: inline-block;
}

.banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

/* New Collection Section - Optimized */
.new-collection-section {
  background: #FFFFFF;
  padding: 12px 0;
  margin-top: 0;
  position: relative;
  border-bottom: 4px solid var(--primary-gold);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.collection-large {
  grid-row: span 2;
}

.collection-cards-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.collection-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
  position: relative;
  border: 2px solid var(--secondary-beige);
  text-decoration: none;
  color: inherit;
  display: block;
}

.collection-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(224, 122, 95, 0.3);
  border-color: var(--accent-coral);
}

.collection-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 254, 249, 0.98) 0%, rgba(244, 241, 222, 0.98) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--primary-gold);
}

.label-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.collection-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gradient-warm);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(224, 122, 95, 0.3);
}

.collection-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-dark);
  margin: 0;
}

.collection-small .collection-name {
  font-size: 14px;
}

.collection-arrow {
  color: var(--accent-coral);
  transition: transform 0.3s;
}

.collection-card:hover .collection-arrow {
  transform: translateX(6px);
  color: var(--primary-gold);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-large img {
  min-height: 600px;
}

.collection-small img {
  min-height: 290px;
}

/* Style the more-card to fit within collection grid */
.collection-cards-right .brand-category-card {
  height: auto;
  min-height: 290px;
  border-radius: 16px;
}

.collection-cards-right .brand-category-card img {
  min-height: 290px;
}

/* Modular Section - Optimized */
.modular-section {
  padding: 10px 0;
  background: #FFFFFF;
  border-bottom: 4px solid var(--primary-gold);
  position: relative;
}

.modular-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.modular-bottom-banner {
  grid-column: 1 / -1;
  margin-top: 32px;
}

.modular-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 500px;
  border: 3px solid var(--secondary-beige);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.modular-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(224, 122, 95, 0.25);
  border-color: var(--accent-coral);
}

.modular-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modular-banner-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  color: white;
  opacity: 0;
  transition: all 0.4s ease;
}

/* Desktop hover behavior */
@media (min-width: 1025px) {
  .modular-banner:hover .modular-banner-content {
    opacity: 1;
  }
}

/* Mobile/Tablet tap behavior */
@media (max-width: 1024px) {
  .modular-banner-content {
    opacity: 0;
    pointer-events: none;
  }
  
  .modular-banner.mobile-active .modular-banner-content {
    opacity: 1;
    pointer-events: all;
  }
  
  .modular-banner.mobile-active .modular-banner-content .modular-cta {
    pointer-events: all;
    cursor: pointer;
  }
  
  /* Add tap indicator for mobile */
  .modular-banner::after {
    content: '👆 Tap to explore';
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--neutral-dark);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.8;
    animation: pulse 2s infinite;
    z-index: 5;
  }
  
  .modular-banner.mobile-active::after {
    display: none;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }
}

.modular-badge {
  display: inline-block;
  padding: 6px 12px;
  background: transparent;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

/* Desktop hover behavior */
@media (min-width: 1025px) {
  .modular-banner:hover .modular-badge {
    transform: translateY(0);
  }
}

/* Mobile/Tablet tap behavior */
@media (max-width: 1024px) {
  .modular-banner.mobile-active .modular-badge {
    transform: translateY(0);
  }
}

.modular-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  max-width: 400px;
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
}

/* Desktop hover behavior */
@media (min-width: 1025px) {
  .modular-banner:hover .modular-title {
    transform: translateY(0);
  }
}

/* Mobile/Tablet tap behavior */
@media (max-width: 1024px) {
  .modular-banner.mobile-active .modular-title {
    transform: translateY(0);
  }
}

.modular-cta {
  padding: 12px 24px;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: all 0.4s ease 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-top: auto;
  transform: translateY(20px);
}

/* Desktop hover behavior */
@media (min-width: 1025px) {
  .modular-banner:hover .modular-cta {
    transform: translateY(0);
  }
}

/* Mobile/Tablet tap behavior */
@media (max-width: 1024px) {
  .modular-banner.mobile-active .modular-cta {
    transform: translateY(0);
  }
}

.modular-cta:hover {
  transform: translateY(-2px);
  background: white;
  color: var(--neutral-dark);
  border-color: white;
}

.modular-cta-button {
  padding: 12px 24px;
  background: var(--accent-coral);
  color: white;
  border: 2px solid var(--accent-coral);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-top: 16px;
}

.modular-cta-button:hover {
  transform: translateY(-2px);
  background: white;
  color: var(--accent-coral);
  border-color: var(--accent-coral);
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
}

.modular-bottom-banner {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-brown) 0%, var(--secondary-olive) 100%);
  border: 3px solid var(--primary-gold);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.2);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s;
}

.modular-bottom-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(224, 122, 95, 0.25);
}

.modular-banner-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 768px;
  overflow: hidden;
}

.modular-banner-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  color: white;
  min-height: 768px;
}

.modular-product-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.modular-product-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.modular-banner-right {
  position: relative;
  min-height: 768px;
  overflow: hidden;
}

.modular-banner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* India's Finest Section */
/* India's Finest Section - Optimized */
.finest-section {
  background: #FFFFFF;
  padding: 60px 0;
  margin-top: 0;
  position: relative;
  border-bottom: 4px solid var(--primary-gold);
}

.section-description {
  font-size: 16px;
  color: var(--neutral-medium);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.highlight {
  color: var(--accent-coral);
  font-weight: 600;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

.highlight:hover {
  color: var(--primary-gold);
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-warm);
  opacity: 0.5;
}

.more-link {
  color: var(--accent-coral);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.more-link:hover {
  color: var(--primary-gold);
  gap: 8px;
}

.more-link::after {
  content: '→';
  transition: transform 0.3s;
}

.more-link:hover::after {
  transform: translateX(4px);
}

/* Room Categories */
.room-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.room-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(226, 232, 240, 0.6);
  text-decoration: none;
  color: inherit;
  display: block;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(224, 122, 95, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-color: var(--accent-coral);
  background: var(--neutral-white);
}

.room-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #F8FAFC;
  position: relative;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.room-card:hover .room-image img {
  transform: scale(1.08);
}

.room-name {
  padding: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--neutral-dark);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* No Products State */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #64748B;
}

.no-products p {
  font-size: 18px;
  font-weight: 600;
  color: #475569;
}

/* Responsive */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .room-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .hero-split .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px 24px;
  }

  .hero-content-side {
    padding-right: 0;
    text-align: center;
    order: 2; /* Show content after carousel on mobile */
  }

  .hero-showcase-side {
    order: 1; /* Show carousel first on mobile */
  }

  .hero-main-title {
    font-size: 42px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  /* Hide call and WhatsApp buttons on mobile */
  .hero-cta-secondary,
  .hero-cta-whatsapp {
    display: none;
  }

  .hero-showcase-side {
    height: 400px;
  }

  .floating-badge {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .room-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-large {
    grid-row: span 1;
  }

  .collection-large img {
    min-height: 400px;
  }

  .modular-grid {
    grid-template-columns: 1fr;
  }

  .modular-banner {
    height: 450px;
  }

  .modular-title {
    font-size: 28px;
  }

  .modular-banner-split {
    grid-template-columns: 1fr;
    min-height: 768px;
    overflow: hidden;
  }

  .modular-product-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-split {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 50%, #F8FAFC 100%);
  }

  .hero-split .hero-container {
    padding: 20px 20px 25px 20px;
    gap: 30px;
  }

  .hero-content-side {
    order: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
  }

  .hero-showcase-side {
    order: 1;
    height: 350px;
  }

  .hero-main-title {
    font-size: 32px;
    font-weight: 800;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
    background: rgba(255, 254, 249, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
  }

  .stat-number {
    font-size: 24px;
    color: var(--primary-gold);
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .category-filters {
    margin-bottom: 24px;
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
  
  .view-all-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-name {
    padding: 12px;
    font-size: 12px;
  }

  .room-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .room-name {
    padding: 12px;
    font-size: 12px;
  }

  /* Mobile paragraph font size increases - 10% more */
  .hero-description {
    font-size: 17.6px; /* 16px + 10% */
  }

  .section-subtitle {
    font-size: 19.8px; /* 18px + 10% */
  }

  .section-description {
    font-size: 17.6px; /* 16px + 10% */
  }

  .modular-product-description {
    font-size: 17.6px; /* 16px + 10% */
  }

  .banner-description {
    font-size: 19.8px; /* 18px + 10% */
  }

  .showcase-overlay p {
    font-size: 17.6px; /* 16px + 10% */
  }

  .collection-cards-right {
    grid-template-columns: 1fr;
  }

  .collection-small img {
    min-height: 250px;
  }

  .collection-cards-right .brand-category-card {
    min-height: 250px;
  }

  .collection-cards-right .brand-category-card img {
    min-height: 250px;
  }

  .featured-banner {
    height: 350px;
  }

  .banner-overlay {
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 60%);
    align-items: flex-end;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-description {
    font-size: 14px;
  }

  .modular-banner {
    height: 400px;
  }

  /* Fix for Linnea TV Unit Collection Mobile View */
  .modular-bottom-banner {
    min-height: auto !important;
    height: auto !important;
  }

  .modular-bottom-banner .modular-banner-split {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
  }

  .modular-bottom-banner .modular-banner-left {
    min-height: auto !important;
    padding: 24px !important;
    order: 1 !important;
    background: rgba(113, 86, 36, 0.95) !important;
    color: white !important;
  }

  .modular-bottom-banner .modular-banner-right {
    min-height: 300px !important;
    height: 300px !important;
    order: 2 !important;
    overflow: hidden !important;
    margin: 0 -20px !important;
    width: calc(100% + 40px) !important;
  }

  .modular-banner-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .modular-banner-content {
    padding: 24px;
  }

  .modular-title {
    font-size: 24px;
  }

  .modular-product-title {
    font-size: 28px;
  }

  /* Optimized Mobile Spacing */
  .featured-banner-section {
    padding: 30px 0;
    margin-top: 0;
  }

  .new-collection-section {
    padding: 30px 0;
    margin-top: 0;
  }

  .modular-section {
    padding: 30px 0;
  }

  .finest-section {
    padding: 40px 0;
    margin-top: 0;
  }
}

/* Extra Small Mobile - Full Width Image */
@media (max-width: 480px) {
  .modular-bottom-banner .modular-banner-right {
    margin: 0 -16px !important;
    width: calc(100% + 32px) !important;
  }
}
/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .hero-split {
    min-height: 85vh;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
  }

  .hero-split .hero-container {
    padding: 15px 16px 20px 16px;
    gap: 5px;
    min-height: 85vh;
  }

  .hero-container {
    padding: 0 16px;
  }

  .hero-content-side {
    padding: 20px 0;
    order: 2;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
  }

  .hero-showcase-side {
    order: 1;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 16px;
    margin-bottom: 16px;
  }

  .hero-main-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 800;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 16px;
    background: rgba(255, 254, 249, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
  }

  .stat-item {
    text-align: center;
    padding: 8px;
  }

  .stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-gold);
  }

  .stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--neutral-medium);
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .hero-cta-primary,
  .hero-cta-secondary,
  .hero-cta-whatsapp {
    padding: 16px 24px;
    font-size: 15px;
    justify-content: center;
    font-weight: 700;
    border-radius: 12px;
  }

  /* Hide call and WhatsApp buttons on mobile */
  .hero-cta-secondary,
  .hero-cta-whatsapp {
    display: none;
  }

  .hero-cta-primary {
    background: var(--gradient-warm);
    box-shadow: 0 6px 20px rgba(224, 122, 95, 0.4);
  }

  .hero-cta-whatsapp {
    background: #25D366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .category-filters {
    gap: 6px;
    margin-bottom: 24px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
    min-width: auto;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card {
    max-width: none;
  }

  .product-image {
    height: 200px;
  }

  .product-name {
    padding: 16px;
    font-size: 14px;
  }

  .room-categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .room-card {
    max-width: none;
  }

  .room-image {
    height: 200px;
  }

  .room-name {
    padding: 16px;
    font-size: 14px;
  }

  .showcase-main {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
  }

  .showcase-overlay {
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.3) 70%, transparent);
  }

  .showcase-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .showcase-overlay p {
    font-size: 13px;
    opacity: 0.95;
  }

  .floating-badge {
    padding: 12px 16px;
    border-radius: 12px;
  }

  .badge-1 {
    top: 20px;
    right: -10px;
  }

  .badge-title {
    font-size: 12px;
  }

  .badge-subtitle {
    font-size: 12px;
  }

  .collection-cards-right {
    gap: 16px;
  }

  .collection-small {
    border-radius: 12px;
  }

  .collection-small img {
    min-height: 200px;
  }

  .collection-cards-right .brand-category-card {
    min-height: 200px;
  }

  .collection-cards-right .brand-category-card img {
    min-height: 200px;
  }

  /* Modular Banner Split Mobile Styles - Consolidated */

  .product-features {
    gap: 6px;
    margin-top: 12px;
  }

  .feature-tag {
    padding: 3px 6px;
    font-size: 10px;
  }
  }

  .collection-label {
    padding: 16px;
  }

  .collection-name {
    font-size: 14px;
  }

  .featured-banner {
    height: 280px;
    border-radius: 12px;
  }

  .banner-overlay {
    padding: 20px;
  }

  .banner-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .banner-description {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .banner-cta {
    padding: 12px 20px;
    font-size: 13px;
  }

  .modular-banner {
    height: 350px;
    border-radius: 12px;
  }

  .modular-banner-content {
    padding: 20px;
  }

  .modular-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .modular-subtitle {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .modular-product-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .modular-cta {
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .modular-cta-button {
    padding: 10px 16px;
    font-size: 12px;
    margin-top: 12px;
  }

  .view-all-btn {
    padding: 12px 20px;
    font-size: 13px;
    margin-top: 24px;
  }

  /* Touch-friendly improvements */
  .indicator {
    width: 32px;
    height: 4px;
  }

  .indicator.active {
    width: 48px;
  }

  /* Hide carousel navigation controls on mobile (keep only dot indicators) */
  .showcase-nav,
  .carousel-controls,
  .carousel-nav,
  .showcase-controls,
  .carousel-arrows,
  .showcase-arrows,
  .prev-btn,
  .next-btn,
  .carousel-prev,
  .carousel-next {
    display: none !important;
  }

  /* Hide carousel dot indicators on mobile as requested */
  .showcase-indicators {
    display: none !important;
  }

  /* Improve tap targets */
  .product-card,
  .room-card,
  .collection-card {
    min-height: 44px;
  }

  /* Better spacing for mobile */
  .shop-categories-section {
    padding: 30px 0 20px 0;
    margin-top: 0;
  }

  .hero-showcase-section {
    padding: 30px 0;
  }

  /* Optimized Small Mobile Spacing */
  .featured-banner-section {
    padding: 25px 0;
    margin-top: 0;
  }

  .new-collection-section {
    padding: 25px 0;
    margin-top: 0;
  }

  .modular-section {
    padding: 25px 0;
  }

  .finest-section {
    padding: 30px 0;
    margin-top: 0;
  }



/* Why Choose Wooden Furniture Section - Optimized */
.why-wooden-section {
  background: #FFFFFF;
  padding: 60px 0;
  position: relative;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.why-wooden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

/* Content and Image Wrappers - Equal Height */
.content-wrapper,
.image-wrapper {
  height: 600px;
  display: flex;
  align-items: center;
}

/* .content-wrapper {
  padding-left: 40px;
} */

.why-wooden-content {
  width: 100%;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gradient-warm);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
  transition: all 0.3s;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(224, 122, 95, 0.4);
}

.benefit-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 8px;
}

.benefit-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-medium);
}

.why-wooden-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  border: 3px solid var(--secondary-beige);
  width: 100%;
  height: 100%;
}

.why-wooden-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.why-wooden-image:hover img {
  transform: scale(1.05);
}

/* Adishakti Excellence Section - Merged Professional Section */
.adishakti-excellence-section {
  background: #FFFFFF;
  padding: 80px 0;
  position: relative;
  border-bottom: 4px solid var(--primary-gold);
}

.excellence-header {
  text-align: center;
  margin-bottom: 60px;
}

.excellence-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.subsection-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 32px;
  text-align: center;
}

/* Differentiators Section */
.differentiators-section {
  background: rgba(255, 254, 249, 0.5);
  border-radius: 24px;
  padding: 60px 40px;
  border: 2px solid rgba(212, 175, 55, 0.1);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.difference-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 32px rgba(139, 69, 19, 0.12);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.difference-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-warm);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.difference-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(224, 122, 95, 0.25);
  border-color: var(--accent-coral);
}

.difference-card:hover::before {
  transform: scaleY(1);
}

.difference-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-earth);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

.difference-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 12px;
}

.difference-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-medium);
}

/* Lifestyle Section */
.lifestyle-section {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  border: 2px solid rgba(226, 232, 240, 0.3);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.lifestyle-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.lifestyle-text {
  max-width: none;
}

.lifestyle-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--neutral-medium);
  margin-bottom: 32px;
}

.lifestyle-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.lifestyle-benefit {
  font-size: 15px;
  color: var(--neutral-medium);
  padding: 16px 20px;
  background: rgba(255, 254, 249, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s;
}

.lifestyle-benefit:hover {
  background: rgba(255, 254, 249, 1);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.benefit-highlight {
  font-weight: 700;
  color: var(--primary-gold);
}

.excellence-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-warm);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.excellence-cta:hover {
  background: var(--gradient-earth);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.excellence-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.stat-card {
  background: rgba(255, 254, 249, 0.8);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(139, 69, 19, 0.08);
}

.stat-card:hover {
  background: rgba(255, 254, 249, 1);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.2);
  border-color: var(--primary-gold);
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.stat-info .stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 6px;
}

.stat-info .stat-label {
  font-size: 12px;
  color: var(--neutral-medium);
  font-weight: 500;
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
  .why-wooden-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-wrapper,
  .image-wrapper {
    height: auto;
  }

  .content-wrapper {
    padding-right: 0;
  }

  .why-wooden-image img {
    min-height: auto;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lifestyle-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lifestyle-benefits {
    grid-template-columns: 1fr;
  }

  .excellence-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .why-wooden-section,
  .adishakti-excellence-section {
    padding: 60px 0;
  }

  .excellence-content {
    gap: 50px;
  }

  .differentiators-section,
  .lifestyle-section {
    padding: 40px 24px;
  }

  .subsection-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .benefits-list {
    gap: 24px;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
  }

  .benefit-text h4 {
    font-size: 16px;
  }

  .benefit-text p {
    font-size: 15.4px; /* 14px + 10% for mobile */
  }

  .why-wooden-image img {
    min-height: auto;
  }

  .difference-card {
    padding: 32px 24px;
  }

  .difference-number {
    font-size: 40px;
  }

  .difference-content h4 {
    font-size: 18px;
  }

  .difference-content p {
    font-size: 15.4px; /* 14px + 10% for mobile */
  }

  .lifestyle-description {
    font-size: 16.5px; /* 15px + 10% for mobile */
  }

  .lifestyle-benefit {
    font-size: 15.4px; /* 14px + 10% for mobile */
    padding: 12px 16px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-icon {
    font-size: 28px;
  }

  .stat-info .stat-number {
    font-size: 20px;
  }

  .excellence-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .why-wooden-section,
  .adishakti-excellence-section {
    padding: 48px 0;
  }

  .excellence-content {
    gap: 40px;
  }

  .differentiators-section,
  .lifestyle-section {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .subsection-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 15.4px; /* 14px + 10% for mobile */
    margin-bottom: 32px;
  }

  .benefits-list {
    gap: 20px;
    margin-top: 32px;
  }

  .benefit-item {
    gap: 16px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
  }

  .benefit-text h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .benefit-text p {
    font-size: 14.3px; /* 13px + 10% for mobile */
  }

  .content-wrapper,
  .image-wrapper {
    height: auto;
  }

  .why-wooden-image {
    border-radius: 12px;
  }

  .why-wooden-image img {
    min-height: auto;
  }

  .difference-card {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .difference-number {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .difference-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .difference-content p {
    font-size: 14.3px; /* 13px + 10% for mobile */
  }

  .lifestyle-description {
    font-size: 15.4px; /* 14px + 10% for mobile */
    margin-bottom: 24px;
  }

  .lifestyle-benefit {
    font-size: 14.3px; /* 13px + 10% for mobile */
    padding: 12px 16px;
  }

  .excellence-cta {
    padding: 14px 28px;
    font-size: 15px;
  }

  .stat-card {
    padding: 16px 12px;
    border-radius: 12px;
  }

  .stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .stat-info .stat-number {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .stat-info .stat-label {
    font-size: 11px;
  }
}

/* Enhanced Collection Cards */
.collection-description {
  font-size: 13px;
  color: var(--neutral-medium);
  margin-top: 8px;
  line-height: 1.4;
  opacity: 0.9;
}

.collection-large .collection-description {
  font-size: 14px;
  margin-top: 12px;
}

/* Enhanced Banner Features */
.banner-features {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-icon {
  font-size: 16px;
}

.feature-text {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

/* Enhanced Modular Section */
.modular-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 1);
  margin: 16px 0 24px 0;
  line-height: 1.6;
}

.modular-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.3s;
}

.modular-banner:hover .modular-banner-overlay {
  opacity: 1;
}

/* Mobile: Show overlay by default */
@media (max-width: 768px) {
  .modular-banner-overlay {
    opacity: 1;
  }
  
  .modular-banner:hover .modular-banner-overlay {
    opacity: 1;
  }
}

.modular-overlay-content {
  color: white;
}

.overlay-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.overlay-description {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.product-features {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.feature-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--gradient-warm);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(224, 122, 95, 0.3);
}

/* Enhanced Room Cards */
.room-content {
  padding: 16px 20px;
  text-align: center;
}

.room-description {
  font-size: 12px;
  color: var(--neutral-medium);
  margin-top: 6px;
  line-height: 1.4;
  opacity: 0.8;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .collection-description {
    font-size: 13.2px; /* 12px + 10% for mobile */
    margin-top: 6px;
  }

  .banner-features {
    gap: 16px;
    margin: 16px 0;
  }

  .feature-item {
    padding: 6px 12px;
  }

  .feature-text {
    font-size: 12px;
  }

  .modular-description {
    font-size: 14px;
    margin: 12px 0 16px 0;
  }

  .product-features {
    gap: 8px;
    margin-top: 16px;
  }

  .feature-tag {
    padding: 4px 8px;
    font-size: 11px;
  }

  .overlay-title {
    font-size: 18px;
  }

  .overlay-description {
    font-size: 13px;
  }

  .room-content {
    padding: 12px 16px;
  }

  .room-description {
    font-size: 11px;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .collection-description {
    font-size: 12.1px; /* 11px + 10% for mobile */
    margin-top: 4px;
  }

  .banner-features {
    gap: 12px;
    margin: 12px 0;
  }

  .feature-item {
    padding: 4px 8px;
  }

  .feature-text {
    font-size: 11px;
  }

  .modular-description {
    font-size: 13px;
    margin: 8px 0 12px 0;
  }

  .product-features {
    gap: 6px;
    margin-top: 12px;
  }

  .feature-tag {
    padding: 3px 6px;
    font-size: 10px;
  }

  .overlay-title {
    font-size: 16px;
  }

  .overlay-description {
    font-size: 12px;
  }

  .room-content {
    padding: 10px 12px;
  }

  .room-description {
    font-size: 10px;
  }
}

/* Simple Image Slider Section */
.image-slider-section {
  background: #FFFFFF;
  padding: 60px 0;
  position: relative;
}

/* Slider Container */
.image-slider-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* Navigation Buttons - Hidden by default, show on hover */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
}

.slider-btn:hover {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
  transform: translateY(-50%) scale(1.1);
}

/* Show buttons on container hover */
.image-slider-container:hover .slider-btn {
  opacity: 1;
  visibility: visible;
}

.slider-btn-prev {
  left: 10px; /* Position over the leftmost image */
}

.slider-btn-next {
  right: 10px; /* Position over the rightmost image */
}

/* Slider Wrapper */
.image-slider-wrapper {
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
}

/* Slider Track */
.image-slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Image Slide */
.image-slide {
  flex: 0 0 16%; /* Increased width - fewer slides visible */
  padding: 0 12px; /* Increased spacing between cards */
  box-sizing: border-box;
}

.image-slide img {
  width: 100%;
  height: 280px; /* Increased height */
  object-fit: cover;
  border-radius: 12px; /* Slightly larger border radius */
  transition: all 0.3s ease;
  cursor: pointer;
}

.image-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .image-slide {
    flex: 0 0 22%; /* Wider cards - 4-5 slides */
    padding: 0 10px;
  }
  
  .image-slide img {
    height: 260px;
  }
  
  .slider-btn-prev {
    left: 10px;
  }
  
  .slider-btn-next {
    right: 10px;
  }
}

@media (max-width: 992px) {
  .image-slide {
    flex: 0 0 28%; /* Wider cards - 3-4 slides */
    padding: 0 10px;
  }
  
  .image-slide img {
    height: 240px;
  }
  
  .slider-btn-prev {
    left: 10px;
  }
  
  .slider-btn-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .image-slider-section {
    padding: 40px 0;
  }
  
  .image-slide {
    flex: 0 0 45%; /* Wider cards - 2 slides */
    padding: 0 8px;
  }
  
  .image-slide img {
    height: 200px;
  }
  
  .slider-btn {
    width: 45px;
    height: 45px;
  }
  
  .slider-btn-prev {
    left: 10px;
  }
  
  .slider-btn-next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .image-slide {
    flex: 0 0 70%; /* Much wider cards - 1 main slide */
    padding: 0 8px;
  }
  
  .image-slide img {
    height: 180px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  
  .slider-btn-prev {
    left: 10px;
  }
  
  .slider-btn-next {
    right: 10px;
  }
}