/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal scrolling on body only */
html, body {
  max-width: 100%;
}

/* Ensure slider elements stay within viewport */
.hero-slider, .slide {
  max-width: 100vw;
}

:root {
  --primary-green: #0B2341;
  --dark-green: #081a30;
  --text-dark: #2c2c2c;
  --text-light: #666;
  --bg-light: #f9f9f9;
  --border-light: #e0e0e0;
  --white: #ffffff;
  --black: #000000;
  --cali-navy: #0B2341;
  --cali-navy-dark: #081a30;
  --cali-navy-light: #2c4a6b;
}

html, body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo svg text,
.navbar.scrolled .nav-actions svg {
  fill: var(--text-dark);
  stroke: var(--text-dark);
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 20px;
  margin-top: 8px;
  gap: 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-self: start;
  position: relative;
  z-index: 1002;
}

.nav-container .logo {
  justify-self: center;
  position: relative;
  z-index: 1001;
}

.nav-container .nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-container .search-container {
  position: static;
  margin: 0;
  max-width: none;
}

.mobile-search-trigger.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

.hamburger.active {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.navbar.scrolled .logo img {
  filter: none;
}





/* Footer logo styling */
.footer-logo img {
  filter: none;
  opacity: 0.9;
}

/* Slider Pagination Indicators */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 150px;
  height: 5px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator.active {
  background: rgba(255, 255, 255, 0.9);
  width: 160px;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Responsive Video Styling */
.hero-slider video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hide all video controls on hero */
.hero-slider video::-webkit-media-controls {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.hero-slider video::-webkit-media-controls-enclosure {
  display: none !important;
  opacity: 0 !important;
}

.hero-slider video::-webkit-media-controls-panel {
  display: none !important;
  opacity: 0 !important;
}

.hero-slider video::-webkit-media-controls-play-button {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.hero-slider video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Additional mobile-specific video control hiding */
@media (max-width: 768px) {
  .hero-slider video::-webkit-media-controls {
    display: none !important;
  }
  
  .hero-slider video::-webkit-media-controls-play-button {
    display: none !important;
  }
  
  .hero-slider video::-webkit-media-controls-start-playback-button {
    display: none !important;
  }
  
  /* Force no controls on mobile */
  .hero-slider video {
    pointer-events: none !important;
  }
  
  .hero-slider .slide-content {
    pointer-events: auto !important;
  }
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 100vh !important;
    max-height: 100vh !important;
    min-height: 100vh !important;
  }
  
  .slide {
    height: 100vh !important;
  }

  .slide-content {
    padding: 2rem 1.5rem;
    max-width: 95% !important;
    width: 95% !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .slide-content h1 {
    font-size: 2.6rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.2rem !important;
    margin-top: 2rem !important;
    width: 100%;
  }

  .slide-content p {
    font-size: 1.2rem !important;
    line-height: 1.5 !important;
    margin: 0 0 0 0 !important;
    width: 100%;
  }
  
  .slide-content .cali-btn {
    margin-top: 3rem !important;
    width: auto;
    align-self: center;
  }
  
  .featured-product {
    bottom: 0 !important;
    right: 15px !important;
    transform: none !important;
    font-size: 13px !important;
    padding: 10px 18px !important;
  }

  .slider-indicators {
    bottom: 20px;
    gap: 8px;
  }

  .indicator {
    width: 60px;
    height: 3px;
  }

  .indicator.active {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 65vh !important;
    min-height: 480px !important;
  }

  .slide-content {
    padding: 1.5rem 1rem;
  }

  .slide-content h1 {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .slide-content p {
    font-size: 0.9rem;
    margin: 0.8rem 0;
  }

  .cali-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
  }

  .slider-nav svg {
    width: 20px;
    height: 20px;
  }

  .indicator {
    width: 40px;
    height: 2px;
  }

  .indicator.active {
    width: 60px;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.account-btn,
.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.account-btn svg,
.cart-btn svg {
  stroke: var(--white);
  transition: stroke 0.3s ease;
}

.account-btn:hover,
.cart-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #0B2341 !important;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  transition: left 0.3s ease;
  padding-top: 80px;
  overflow: hidden;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  left: 0;
}

/* Mobile Menu Level System */
.mobile-menu-level {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  background: var(--white);
}

.mobile-menu-level.active {
  transform: translateX(0);
}

.mobile-menu-level.slide-left {
  transform: translateX(-100%);
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px 20px 30px;
  border-bottom: 1px solid rgba(11, 35, 65, 0.1);
  background: var(--white);
  position: relative;
  z-index: 10;
  min-height: 80px;
}

.mobile-menu-header h3 {
  margin: 0;
  color: var(--cali-navy);
  font-size: 18px;
  font-weight: 600;
  flex: 1;
  text-align: center;
}

.mobile-back-btn {
  background: none;
  border: none;
  color: var(--cali-navy);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  transition: opacity 0.3s ease;
  position: absolute;
  left: 12px;
}

.mobile-back-btn:hover {
  opacity: 0.7;
}

.mobile-menu-content {
  margin-top:20px;
  padding: 40px 30px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Main level content - no header padding needed */
.main-level .mobile-menu-content {
  padding: 40px 30px;
  height: calc(100vh - 80px);
}

/* Sub-level content - account for header */
.sub-level .mobile-menu-content {
  padding: 50px 30px 20px 30px;
  height: calc(100vh - 160px);
}

.mobile-menu-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.mobile-menu-item {
  display: block;
  color: var(--cali-navy);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 20px 0;
  border-bottom: 1px solid rgba(11, 35, 65, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-item:first-child {
  margin-top: 30px;
}

.mobile-menu-item:hover {
  color: var(--cali-navy-light);
  padding-left: 10px;
}

/* Mobile Menu Push Items */
.mobile-menu-push {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-push-arrow {
  color: var(--cali-navy);
  opacity: 0.6;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.mobile-menu-push:hover .mobile-push-arrow {
  transform: translateX(5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hamburger active state styling */
.hamburger.active span {
  background: var(--cali-navy) !important;
}

/* Close button for mobile menu */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--cali-navy);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(180deg);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
  text-align: left;
  color: var(--white);
  z-index: 1;
  max-width: 800px;
  padding: 0 40px;
  margin-left: 0;
}

.hero-icon {
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.4s both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.6s both;
}


.find-store-btn {
  position: absolute;
  bottom: 100px;
  left: 40px;
  transform: none;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 1s both;
  border-radius: 2px;
  z-index: 10;
}

.find-store-btn:hover {
  background: var(--white);
  color: var(--text-dark);
}

/* Categories Grid */
.categories {
  padding: 80px 20px;
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 20px 15px rgb(0, 0, 0);
  transition: all 0.3s ease;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.category-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}

.category-content h3 {
  color: var(--white);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.category-btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.category-btn:hover {
  background: #0B2341;
  color: var(--white);
  transform: translateY(-2px);
}

/* Tones Section */
.tones-section {
  padding: 100px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.tones-section .container {
  max-width: none;
  padding: 0;
}

.section-title {
  font-size: 48px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
  padding: 0 20px;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.tones-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 20px;
  cursor: grab;
  user-select: none;
}

.tones-nav::-webkit-scrollbar {
  display: none;
}

.tones-nav:active {
  cursor: grabbing;
}

.tone-nav-btn {
  background: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-dark);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.tone-nav-btn.active,
.tone-nav-btn:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

.tones-container {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0 0 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.tones-container::-webkit-scrollbar {
  display: none;
}

.tones-container:active {
  cursor: grabbing;
}

.tone-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
  width: 300px;
}

.tone-card:hover {
  transform: translateY(-5px);
}

.tone-card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.tone-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tone-card:hover .tone-card-image img {
  transform: scale(1.05);
}

.tone-card-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}

.tone-card-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.tone-card.large {
  width: 400px;
}

.tone-card.large .tone-card-image {
  height: 400px;
}

.tone-card.large .tone-card-title {
  font-size: 36px;
  font-weight: 300;
}

.tone-card-subtitle {
  font-size: 14px;
  color: var(--white);
  margin: 0;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.tone-divider {
  width: calc(100% - 300px);
  height: 1px;
  background: #0B2341;
  margin: 60px auto 0 auto;
  
  
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: flex;
  gap: 25px;
  margin-top: 60px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 0 5px;
  justify-content: center;
}

.features-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.feature-card {
  position: relative;
  height: 450px;
  width: 280px;
  min-width: 280px;
  flex-shrink: 1;
  overflow: hidden;
  cursor: pointer;
  
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.feature-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}

.feature-content h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Featured Collection */
.featured-collection {
  padding: 100px 0;
  background: var(--bg-light);
}

.featured-collection .container {
  padding: 0 !important;
  max-width: none !important;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: visible !important;
  contain: none !important;
}

.featured-brand {
  margin: 0;
  padding: 0;
  align-self: start;
}

/* Desktop sticky behavior for featured brand */
@media (min-width: 761px) {
  html, body {
    overflow-x: visible !important;
  }
  
  .featured-collection,
  .featured-collection .container,
  .featured-content {
    overflow: visible !important;
    contain: none !important;
  }
  
  .featured-brand {
    position: sticky !important;
    top: 80px !important;
    align-self: flex-start !important;
    height: fit-content !important;
    z-index: 50 !important;
    will-change: auto !important;
  }
}

.brand-image {
  height: 620px;
  background: url('images/vinyl/Windansea High Tide Collection/Bird Rock Ridge/Bird-rock-ridge-2.webp') center center/cover no-repeat;
  background-size: cover;
  position: relative;
  width: 80vw;
  margin-left: calc(-50vw + 50%);
}

.brand-image::before {
  display: none;
}

.brand-overlay {
  position: absolute;
  top: 0;
  left: calc(50vw - 50%);
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  z-index: 2;
  max-width: 50vw;
}

.brand-logo h2 {
  color: white;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 0 0 8px 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.9);
  line-height: 1.2;
  margin-left:200px;
}

.brand-logo .brand-subtitle {
  color: white;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0;
  opacity: 0.9;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}


.featured-products {
  padding: 0 40px 0 60px;
  min-height: 800px;
}

.featured-grid-with-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.featured-title {
  color: #000;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
  align-self: center;
  margin-bottom: 20px;
  text-align: center;
  
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.featured-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.featured-item:hover {
  transform: translateY(-2px);
}

.featured-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-width: 250px;
}

.featured-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 15px;
  margin: 10px !important;
  padding: 0 !important;
}

.featured-info h4 {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  margin: 10 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
}

.featured-info .featured-collection {
  color: #6b7280;
  font-size: 13px;
  margin-top:5px!important;
  
  padding: 0 !important;
  line-height: 1.1 !important;
}

.featured-info .featured-colors {
  color: #6b7280;
  font-size: 13px;
margin-top:10px;
  padding: 0 !important;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1.1 !important;
}

.featured-colors:hover {
  color: var(--navy);
  font-weight: 500;
}

/* Copy color swatches styles from product-detail.css to featured section */
.featured-info .swatch-colors {
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  margin-top: 10px;
  line-height: 1.2;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.featured-info .swatch-colors:hover {
  color: var(--navy);
}

/* Color swatches replace text on hover */
.featured-info .color-swatches-popup {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.featured-info .swatch-colors:hover {
  color: transparent;
  padding-bottom: 70px;
}

.featured-info .swatch-colors:hover .color-swatches-popup {
  opacity: 1;
  visibility: visible;
}

.featured-info .color-swatches-popup .popup-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
}

.featured-info .color-swatches-popup .popup-color-item {
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: 2px solid #ddd;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.featured-info .color-swatches-popup .popup-color-item:hover {
  transform: scale(1.05);
  border-color: #666;
}

.featured-info .color-swatches-popup .popup-color-item.active {
  border-color: #0B2341;
  border-width: 1px;
  padding: 2px;
}

.featured-info .color-swatches-popup .popup-color-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Color name tooltip */
.featured-info .popup-color-item .color-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 26, 48, 0.95);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1001;
  margin-top: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.featured-info .popup-color-item:hover .color-tooltip {
  opacity: 1;
  visibility: visible;
}


/* Best Sellers */
.best-sellers {
  padding: 80px 0 60px 0;
  background: var(--white);
}

.best-sellers .section-title {
  font-size: 32px;
  color: #8e8e93;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: left;
}

.products-carousel {
  position: relative;
  margin-top: 60px;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  cursor: grab;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.product-slide {
  flex: 0 0 400px;
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-slide:hover {
  transform: translateY(-5px);
}

.product-slide img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
}

.product-info {
  padding: 15px 0 0 0;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.product-collection {
  font-size: 14px;
  color: #8e8e93;
  margin: 0 0 3px 0;
  font-weight: 400;
}

.carousel-btn {
  position: absolute;
  top: 200px;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-btn.prev {
  left: -25px;
  transform: translateY(-50%) translateX(-20px);
}

.carousel-btn.next {
  right: -25px;
  transform: translateY(-50%) translateX(20px);
}

.products-carousel:hover .carousel-btn {
  opacity: 1;
  visibility: visible;
}

.products-carousel:hover .carousel-btn.prev {
  transform: translateY(-50%) translateX(0);
}

.products-carousel:hover .carousel-btn.next {
  transform: translateY(-50%) translateX(0);
}

.carousel-btn.prev.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-50%) translateX(-20px) !important;
}

.carousel-btn:hover {
  background: #0B2341;
  color: var(--white);
}

.carousel-btn.prev:hover {
  transform: translateY(-50%) translateX(0) scale(1.1);
}

.carousel-btn.next:hover {
  transform: translateY(-50%) translateX(0) scale(1.1);
}

/* Copy color swatches styles from featured section to best sellers */
.product-info .swatch-colors {
  font-size: 14px;
  color: #8e8e93;
  margin-top: 3px;
  line-height: 1.2;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  font-weight: 400;
}

/* Color swatches replace text on hover - exactly like featured section */
.product-info .color-swatches-popup {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.product-info .swatch-colors:hover {
  color: transparent;
  padding-bottom: 70px;
}

.product-info .swatch-colors:hover .color-swatches-popup {
  opacity: 1;
  visibility: visible;
}

.product-info .color-swatches-popup .popup-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
}

.product-info .color-swatches-popup .popup-color-item {
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: 2px solid #ddd;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-info .color-swatches-popup .popup-color-item:hover {
  transform: scale(1.05);
  border-color: #666;
}

.product-info .color-swatches-popup .popup-color-item.active {
  border-color: #0B2341;
  border-width: 1px;
  padding: 2px;
}

.product-info .color-swatches-popup .popup-color-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Color name tooltip for best sellers */
.product-info .popup-color-item .color-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 26, 48, 0.95);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1001;
  margin-top: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-info .popup-color-item:hover .color-tooltip {
  opacity: 1;
  visibility: visible;
}

.dream-floors-text {
  color: #34C759;
  font-size: 14px;
  margin: 15px 0 0 0;
  font-weight: 400;
  text-align: left;
}

/* Free Samples Section */
.samples-section {
  padding: 0;
  background: var(--white);
}

.samples-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

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

.samples-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: var(--bg-light);
}

.samples-content h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.samples-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.samples-btn {
  background: #0B2341;
  color: var(--white);
  border: none;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.samples-btn:hover {
  background: #081a30;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0B2341;
}

.footer-tagline {
  color: #0B2341;
  font-size: 14px;
  margin-top: 20px;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  color: #ccc;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #0B2341;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #0B2341;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.chat-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0B2341;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(139, 195, 74, 0.4);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(139, 195, 74, 0.6);
}

.chat-button svg {
  stroke: var(--white);
}

.chat-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .tone-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tone-hero {
    height: 300px;
  }

  .samples-container {
    grid-template-columns: 1fr;
  }

  .samples-content {
    padding: 60px 40px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .categories {
    padding: 60px 15px;
  }

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

  .category-card {
    height: 300px;
  }

  .tones-nav {
    gap: 10px;
  }

  .tone-nav-btn {
    font-size: 11px;
    padding: 6px 15px;
  }

  .tones-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 15px;
  }

  .tone-card-image {
    height: 300px;
  }

  .tone-card-content {
    bottom: 20px;
    left: 20px;
  }

  .tone-card-title {
    font-size: 20px;
  }

  .features-grid {
    gap: 20px;
    padding: 0 5px;
  }

  .feature-card {
    height: 350px;
    width: 260px;
    min-width: 260px;
  }

  .carousel-btn {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

  .samples-content h2 {
    font-size: 32px;
  }

  .samples-content {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .find-store-btn {
    bottom: 50px;
    padding: 10px 20px;
    font-size: 12px;
  }

  .category-content,
  .feature-content {
    left: 20px;
    bottom: 20px;
  }

  .category-content h3,
  .feature-content h3 {
    font-size: 20px;
  }

  .tone-card-content {
    padding: 15px;
  }

  .tone-card-title {
    font-size: 16px;
  }

  .tone-card-subtitle {
    font-size: 13px;
  }

  .features-grid {
    gap: 15px;
    padding: 0 5px;
  }

  .feature-card {
    height: 320px;
    width: 220px;
    min-width: 220px;
  }

  .feature-content {
    left: 20px;
    bottom: 20px;
  }

  .feature-content h3 {
    font-size: 20px;
  }

  .featured-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brand-image {
    height: 350px;
    width: 80vw;
    margin-left: calc(-50vw + 50%);
  }

  .brand-overlay {
    padding: clamp(20px, 3vw, 35px);
  }

  .brand-logo h2 {
    font-size: clamp(20px, 5vw, 28px);
    letter-spacing: 1px;
  }

  .brand-logo .brand-subtitle {
    font-size: clamp(8px, 1.8vw, 12px);
  }

  .featured-products {
    padding: 0 20px;
  }

  .featured-grid-with-title {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-title {
    writing-mode: initial;
    text-orientation: initial;
    padding-top: 0;
    margin-bottom: 20px;
  }

  .featured-grid {
    gap: 20px;
  }

  .featured-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
}

/* Featured Collection - Tablet */
@media (max-width: 768px) {
  /* Disable sticky positioning on tablets */
  .featured-brand {
    position: static !important;
    top: auto !important;
  }
  
  .featured-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .featured-collection {
    padding: 80px 0;
  }
  
  .brand-image {
    height: 400px;
    width: 90vw;
    margin-left: calc(-50vw + 50%);
  }
  
  .brand-overlay {
    padding: 25px 30px;
  }
  
  .brand-logo h2 {
    font-size: 28px;
    letter-spacing: 1px;
  }
  
  .brand-logo .brand-subtitle {
    font-size: 10px;
  }
  
  .featured-products {
    padding: 0 30px;
  }

  .featured-grid-with-title {
    gap: 25px;
  }
  
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .featured-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  
  .featured-info h4 {
    font-size: 15px;
  }
  
  .featured-info .featured-collection,
  .featured-info .swatch-colors {
    font-size: 12px;
  }
}

/* Featured Collection - Large screens */
@media (min-width: 1025px) {
  .featured-content {
    gap: 80px;
  }
  
  .brand-image {
    height: 620px;
  }
  
  .brand-overlay {
    padding: clamp(40px, 5vw, 60px);
  }
  
  .brand-logo h2 {
    font-size: clamp(32px, 4vw, 48px);
  }
  
  .brand-logo .brand-subtitle {
    font-size: clamp(12px, 1.5vw, 16px);
  }
  
  
  .featured-products {
    padding: 0 60px 0 80px;
  }

  .featured-grid-with-title {
    gap: 50px;
  }
}

/* Featured Collection - Mobile */
@media (max-width: 480px) {
  .featured-collection {
    padding: 60px 0;
  }
  
  .brand-image {
    height: 280px;
    width: 95vw;
    margin-left: calc(-50vw + 50%);
  }
  
  .brand-overlay {
    padding: 20px;
  }
  
  .brand-logo h2 {
    font-size: 22px;
    letter-spacing: 0.5px;
  }
  
  .brand-logo .brand-subtitle {
    font-size: 8px;
  }
  
  .featured-products {
    padding: 0 20px;
    margin-top: 25px;
  }

  .featured-grid-with-title {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-title {
    writing-mode: initial;
    text-orientation: initial;
    padding-top: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .featured-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  
  .featured-info {
    margin-top: 15px;
    text-align: center;
  }
  
  .featured-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .featured-info .featured-collection,
  .featured-info .swatch-colors {
    font-size: 13px;
  }
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

/* Smooth Scrolling - Removed to fix sticky conflicts
html {
  scroll-behavior: smooth;
} */

/* Focus States for Accessibility */
button:focus,
.social-link:focus,
.footer-links a:focus {
  outline: 2px solid #0B2341;
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .hero-background::after {
    background: rgba(0, 0, 0, 0.7);
  }

  .category-content h3,
  .feature-content h3 {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-background video {
    animation: none;
  }
}

/* Color Collection Pages */

.color-hero {
  background: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.color-hero h1 {
  font-size: 48px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.color-hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.products-section {
  padding: 60px 0 100px;
  background: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.product-content {
  padding: 25px;
  text-align: left;
}

.product-content h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-type {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
  color: #0B2341;
  margin-bottom: 15px;
}

.product-btn {
  background: #0B2341;
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  width: 100%;
}

.product-btn:hover {
  background: #081a30;
  transform: translateY(-1px);
}

/* Individual Product Detail Pages */
.product-hero {
  background: var(--white);
  padding: 100px 0 80px;
}

.product-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.product-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.product-hero-details h1 {
  font-size: 42px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.product-hero-details .product-type {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.product-hero-details .product-price {
  font-size: 32px;
  font-weight: 600;
  color: #0B2341;
  margin-bottom: 25px;
}

.product-description {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 30px;
}

.product-features {
  background: var(--bg-light);
  padding: 80px 0;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-light);
}

/* Page Header */
.page-header {
  background: var(--bg-light);
  padding: 120px 0 60px;
  text-align: center;
}



.page-header h1 {
  font-size: 48px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Product Grid */
.products-section {
  padding: 60px 0 100px;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.collection {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.product-specs {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 15px;
  padding: 8px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #0B2341;
  margin-bottom: 20px;
}

.add-to-cart-btn {
  background: #0B2341;
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  width: 100%;
  letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
  background: #081a30;
  transform: translateY(-2px);
}

/* Cart Page */
.cart-section {
  padding: 60px 0 100px;
  background: var(--bg-light);
}

.cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.cart-items {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item:last-child {
  border-bottom: none;
}

.item-image {
  width: 120px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
}

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

.item-details h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.item-collection {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.item-price {
  font-size: 16px;
  font-weight: 600;
  color: #0B2341;
}

.item-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-light);
  background: var(--white);
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
}

.quantity-controls button:hover {
  background: #0B2341;
  color: var(--white);
  border-color: #0B2341;
}

.quantity-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity {
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.remove-item {
  background: none;
  border: none;
  color: #ff4444;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}

.remove-item:hover {
  color: #cc0000;
}

.cart-summary {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 16px;
}

.summary-row.total {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
  margin-top: 20px;
}

.checkout-btn,
.continue-shopping-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.checkout-btn {
  background: #0B2341;
  color: var(--white);
}

.checkout-btn:hover {
  background: #081a30;
}

.continue-shopping-btn {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--border-light);
}

.continue-shopping-btn:hover {
  border-color: #0B2341;
  color: #0B2341;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart-content {
  max-width: 400px;
  margin: 0 auto;
}

.empty-cart svg {
  stroke: var(--text-light);
  margin-bottom: 30px;
}

.empty-cart h2 {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.empty-cart p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.start-shopping-btn {
  background: #0B2341;
  color: var(--white);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.start-shopping-btn:hover {
  background: #081a30;
  transform: translateY(-2px);
}

/* Login/Auth Page */
.login-section {
  padding: 60px 0 100px;
  background: var(--bg-light);
}

.auth-container {
  max-width: 450px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.auth-tabs {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.auth-tab.active {
  color: #0B2341;
  border-bottom-color: #0B2341;
}

.auth-tab:hover {
  color: #0B2341;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #0B2341;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
}

.checkbox-label input {
  margin-right: 8px;
}

.forgot-link {
  font-size: 14px;
  color: #0B2341;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

.auth-btn {
  width: 100%;
  background: #0B2341;
  color: var(--white);
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.auth-btn:hover {
  background: #081a30;
}

.auth-divider {
  text-align: center;
  position: relative;
  margin: 25px 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-light);
}

.auth-divider span {
  background: var(--white);
  padding: 0 20px;
  color: var(--text-light);
  font-size: 14px;
}

.social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  border: 2px solid var(--border-light);
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-btn:hover {
  border-color: #0B2341;
  background: var(--bg-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  /* Fix all containers for proper mobile layout */
  body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    margin: 0;
    box-sizing: border-box;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .cart-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cart-item {
    grid-template-columns: 100px 1fr;
    gap: 15px;
  }

  .item-controls {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 15px;
  }

  .auth-container {
    margin: 0 20px;
    padding: 30px 25px;
  }

  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}



/* CALI Button Style */
.cali-btn {
  background: #0B2341 !important;
  color: white !important;
  border: 2px solid #0B2341 !important;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
  font-family: inherit;
}

.cali-btn:hover {
  background: #081a30 !important;
  border-color: #081a30 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 35, 65, 0.3);
}

.cali-btn:active {
  background: #081a30 !important;
  border-color: #081a30 !important;
  transform: translateY(0px);
}

.cali-btn.compare-btn {
  margin: 30px 0 50px;
  padding: 16px 32px;
  font-size: 18px;
}

/* Hero Video Slider - SMALL BANNER ONLY - Updated 2025 */
.hero-slider {
  position: relative;
  height: 100vh !important;
  min-height: 450px !important;
  max-height: 800px !important;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
}

.slide-content h1 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
}

.slide-content p {
  font-size: 16px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  font-weight: 300;
}

.featured-product {
  position: absolute;
  bottom: 0;
  right: 20px;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 6px 6px 0 0;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  z-index: 10;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0B2341;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  box-sizing: border-box;
}

.slider-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.05);
  color:#0B2341;
}

.slider-nav:focus {
  outline: none;
}

.slider-nav.prev {
  left: clamp(15px, 3vw, 40px);
}

.slider-nav.next {
  right: clamp(15px, 3vw, 40px);
}

/* Laminate Intro Section */
.laminate-intro {
  padding: 80px 0;
  background: #f9f9f9;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.compare-btn {
  font-size: 18px;
  padding: 16px 32px;
}

/* Collections Section */
.collections-section {
  padding: 80px 0;
  background: white;
  background-image: url('../images/collection-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.collections-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.collections-section .container {
  position: relative;
  z-index: 2;
}

.collection-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  margin-bottom: 120px;
  align-items: stretch;
  min-height: 500px;
  max-height: 500px;
}

.collection-block.reverse .collection-text {
  order: 2;
}

.collection-block.reverse .collection-image {
  order: 1;
}

.collection-text {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.collection-text h2 {
  font-size: 48px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.2;
}

.collection-specs {
  margin-bottom: 40px;
}

.collection-specs p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.collection-specs strong {
  color: #0B2341;
  font-weight: 600;
}

.collection-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 600px;
}

.collection-block:hover .collection-image img {
  transform: scale(1.02);
}

.featured-label {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 100vh !important;
    max-height: 100vh !important;
    min-height: 100vh !important;
  }
  
  .slide {
    height: 100vh !important;
  }

  .slide-content {
    padding: 0 20px;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 18px;
  }

  .slider-nav {
    width: 50px;
    height: 50px;
  }

  .slider-nav.prev {
    left: clamp(10px, 2vw, 20px);
  }

  .slider-nav.next {
    right: clamp(10px, 2vw, 20px);
  }

  .featured-product {
    bottom: 0;
    right: 15px;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 4px 4px 0 0;
  }

  .collections-section {
    padding: 20px 0 40px;
    background-attachment: scroll;
  }
  
  .laminate-intro {
    padding: 40px 0 20px !important;
  }

  .collection-block {
    grid-template-columns: 1fr;
    gap: 0px;
    margin-bottom: 80px;
    min-height: 500px;
  }

  .collection-block.reverse .collection-text,
  .collection-block.reverse .collection-image {
    order: unset;
  }

  .collection-text {
    padding: 40px;
  }

  .collection-text h2 {
    font-size: 32px;
  }

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

  .featured-label {
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-slider {
    height: 88vh !important;
    min-height: 540px !important;
    max-height: 780px !important;
  }

  .slide-content h1 {
    font-size: 36px;
  }

  .slide-content p {
    font-size: 20px;
  }

  .collection-block {
    gap: 60px;
    margin-bottom: 100px;
  }

  .collection-text h2 {
    font-size: 40px;
  }

  .collection-image img {
    height: 400px;
  }
}


/* Logo updated to Cavalieri - 1753976989 */
/* Added Mocha Del Mar video - 1753988086 */
/* Video responsive updates - 1753988332 */
/* Slider fixes and responsive updates - 1753989507 */
/* Fixed responsive video slider - 1753990802 */
/* Fixed featured product positioning and JS errors - 1754002456 */
/* Fixed mobile video height responsiveness - 1754002614 */
/* Full-width collection images - 1754004283 */

/* All Hero Collections - Same styling as others */
.collection-block.mavericks-hero {
  display: block !important;
  position: relative !important;
  min-height: 500px !important;
  max-height: 500px !important;
  margin-bottom: 120px !important;
  overflow: hidden !important;
  grid-template-columns: unset !important;
  gap: unset !important;
  align-items: unset !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  border-radius: 0 !important;
}

.mavericks-hero .collection-background-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-height: 500px !important;
  z-index: 1 !important;
}

.mavericks-hero .collection-background-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center bottom !important;
  min-height: 500px !important;
}

.mavericks-hero .collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}

.mavericks-hero .collection-overlay.text-left {
  justify-content: flex-start;
}

.mavericks-hero .collection-text-overlay {
  max-width: 30%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  margin: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.mavericks-hero .collection-text-overlay h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #0B2341;
}

.mavericks-hero .collection-text-overlay .collection-specs p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.mavericks-hero .collection-text-overlay .collection-specs strong {
  color: #0B2341;
  font-weight: 600;
}

.mavericks-hero .featured-label {
  position: absolute;
  bottom: 2%;
  right: 3%;
  background: transparent;
  color: white;
  padding: 0;
  border-radius: 0;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 500;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Tablet and mobile responsive for Mavericks hero */
@media (max-width: 1200px) {
  .mavericks-hero .collection-text-overlay {
    max-width: 45%;
    padding: 20px;
    margin: 30px;
  }
  
  .mavericks-hero .collection-text-overlay h2 {
    font-size: 36px;
  }
  
  .mavericks-hero .collection-text-overlay .collection-specs p {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .mavericks-hero .collection-text-overlay {
    max-width: 60%;
    padding: 20px;
    margin: 20px;
  }
  
  .mavericks-hero .collection-text-overlay h2 {
    font-size: 32px;
  }
  
  .mavericks-hero .collection-text-overlay .collection-specs p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .collection-block.mavericks-hero {
    min-height: 500px;
  }
  
  .mavericks-hero .collection-text-overlay {
    max-width: 90%;
    padding: 20px;
    margin: 15px;
  }
  
  .mavericks-hero .collection-text-overlay h2 {
    font-size: 28px;
  }
  
  .mavericks-hero .collection-text-overlay .collection-specs p {
    font-size: 14px;
  }
  
  .mavericks-hero .collection-overlay {
    background: transparent;
  }
  
  .cali-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
}
/* All Hero Collections - Same styling as Mavericks */
.collection-block.santacruz-hero,
.collection-block.shorebreak-hero,
.collection-block.pacifica-hero {
  display: block !important;
  position: relative !important;
  min-height: 500px !important;
  max-height: 500px !important;
  margin-bottom: 120px !important;
  overflow: hidden !important;
  grid-template-columns: unset !important;
  gap: unset !important;
  align-items: unset !important;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  border-radius: 0 !important;
}

.santacruz-hero .collection-background-image,
.shorebreak-hero .collection-background-image,
.pacifica-hero .collection-background-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

.santacruz-hero .collection-background-image img,
.shorebreak-hero .collection-background-image img,
.pacifica-hero .collection-background-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  min-height: 500px !important;
}

.santacruz-hero .collection-overlay,
.shorebreak-hero .collection-overlay,
.pacifica-hero .collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}

.santacruz-hero .collection-overlay.text-right,
.pacifica-hero .collection-overlay.text-right {
  justify-content: flex-end;
}

.shorebreak-hero .collection-overlay.text-left {
  justify-content: flex-start;
}

.santacruz-hero .collection-text-overlay,
.shorebreak-hero .collection-text-overlay,
.pacifica-hero .collection-text-overlay {
  max-width: 30%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  margin: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.santacruz-hero .collection-text-overlay h2,
.shorebreak-hero .collection-text-overlay h2,
.pacifica-hero .collection-text-overlay h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #0B2341;
}

.santacruz-hero .collection-text-overlay .collection-specs p,
.shorebreak-hero .collection-text-overlay .collection-specs p,
.pacifica-hero .collection-text-overlay .collection-specs p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.santacruz-hero .collection-text-overlay .collection-specs strong,
.shorebreak-hero .collection-text-overlay .collection-specs strong,
.pacifica-hero .collection-text-overlay .collection-specs strong {
  color: #0B2341;
  font-weight: 600;
}

.santacruz-hero .featured-label {
  position: absolute;
  bottom: 2%;
  left: 3%;
  background: transparent;
  color: white;
  padding: 0;
  border-radius: 0;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 500;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.shorebreak-hero .featured-label {
  position: absolute;
  bottom: 2%;
  right: 3%;
  background: transparent;
  color: white;
  padding: 0;
  border-radius: 0;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 500;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.pacifica-hero .featured-label {
  position: absolute;
  bottom: 2%;
  left: 3%;
  background: transparent;
  color: white;
  padding: 0;
  border-radius: 0;
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 500;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Tablet responsive for all hero collections */
@media (max-width: 1200px) {
  .santacruz-hero .collection-text-overlay,
  .shorebreak-hero .collection-text-overlay,
  .pacifica-hero .collection-text-overlay {
    max-width: 45%;
    padding: 20px;
    margin: 30px;
  }
  
  .santacruz-hero .collection-text-overlay h2,
  .shorebreak-hero .collection-text-overlay h2,
  .pacifica-hero .collection-text-overlay h2 {
    font-size: 36px;
  }
  
  .santacruz-hero .collection-text-overlay .collection-specs p,
  .shorebreak-hero .collection-text-overlay .collection-specs p,
  .pacifica-hero .collection-text-overlay .collection-specs p {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .santacruz-hero .collection-text-overlay,
  .shorebreak-hero .collection-text-overlay,
  .pacifica-hero .collection-text-overlay {
    max-width: 60%;
    padding: 20px;
    margin: 20px;
  }
  
  .santacruz-hero .collection-text-overlay h2,
  .shorebreak-hero .collection-text-overlay h2,
  .pacifica-hero .collection-text-overlay h2 {
    font-size: 32px;
  }
  
  .santacruz-hero .collection-text-overlay .collection-specs p,
  .shorebreak-hero .collection-text-overlay .collection-specs p,
  .pacifica-hero .collection-text-overlay .collection-specs p {
    font-size: 14px;
  }
}

/* Mobile responsive for all hero collections - White Background Layout */
@media (max-width: 768px) {
  .collection-block.santacruz-hero,
  .collection-block.shorebreak-hero,
  .collection-block.pacifica-hero,
  .collection-block.mavericks-hero {
    min-height: auto !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    margin-bottom: 40px !important;
    background: #f8f9fa !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden !important;
  }
  
  .santacruz-hero .collection-overlay,
  .shorebreak-hero .collection-overlay,
  .pacifica-hero .collection-overlay,
  .mavericks-hero .collection-overlay {
    position: static !important;
    order: 1 !important;
    background: #f8f9fa !important;
    padding: 30px 10px 10px 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    box-sizing: border-box !important;
  }
  
  .santacruz-hero .collection-text-overlay,
  .shorebreak-hero .collection-text-overlay,
  .pacifica-hero .collection-text-overlay,
  .mavericks-hero .collection-text-overlay {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 5px !important;
    margin: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  
  .santacruz-hero .collection-text-overlay h2,
  .shorebreak-hero .collection-text-overlay h2,
  .pacifica-hero .collection-text-overlay h2,
  .mavericks-hero .collection-text-overlay h2 {
    font-size: 36px !important;
    color: #0B2341 !important;
    margin-bottom: 20px !important;
    display: block !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }
  
  .santacruz-hero .collection-text-overlay .collection-specs,
  .shorebreak-hero .collection-text-overlay .collection-specs,
  .pacifica-hero .collection-text-overlay .collection-specs,
  .mavericks-hero .collection-text-overlay .collection-specs {
    display: block !important;
    margin-bottom: 0 !important;
    text-align: center !important;
  }
  
  .santacruz-hero .collection-text-overlay .collection-specs p,
  .shorebreak-hero .collection-text-overlay .collection-specs p,
  .pacifica-hero .collection-text-overlay .collection-specs p,
  .mavericks-hero .collection-text-overlay .collection-specs p {
    color: #333 !important;
    font-size: 19px !important;
    line-height: 1.7 !important;
    margin-bottom: 14px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
    padding: 0 !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  .santacruz-hero .collection-text-overlay .collection-specs strong,
  .shorebreak-hero .collection-text-overlay .collection-specs strong,
  .pacifica-hero .collection-text-overlay .collection-specs strong,
  .mavericks-hero .collection-text-overlay .collection-specs strong {
    color: #0B2341 !important;
    font-weight: 700 !important;
  }
  
  .santacruz-hero .collection-background-image,
  .shorebreak-hero .collection-background-image,
  .pacifica-hero .collection-background-image,
  .mavericks-hero .collection-background-image {
    position: relative !important;
    order: 2 !important;
    height: 350px !important;
    max-height: 350px !important;
    min-height: 350px !important;
    overflow: visible !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  .santacruz-hero .collection-background-image img,
  .shorebreak-hero .collection-background-image img,
  .pacifica-hero .collection-background-image img,
  .mavericks-hero .collection-background-image img {
    height: 350px !important;
    max-height: 350px !important;
    min-height: 350px !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  
  /* Button positioned INSIDE the image at the VERY bottom */
  .santacruz-hero .collection-text-overlay .cali-btn,
  .shorebreak-hero .collection-text-overlay .cali-btn,
  .pacifica-hero .collection-text-overlay .cali-btn,
  .mavericks-hero .collection-text-overlay .cali-btn {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    background: #0B2341 !important;
    color: white !important;
    border: none !important;
    width: 100% !important;
    max-width: none !important;
    padding: 18px 30px !important;
    font-size: 18px !important;
    margin: 0 !important;
    display: block !important;
    font-weight: 600 !important;
    z-index: 100 !important;
    box-shadow: none !important;
    pointer-events: auto !important;
  }
  
  /* Featured label positioned ABOVE button on the left side */
  .santacruz-hero .featured-label,
  .pacifica-hero .featured-label {
    position: absolute !important;
    bottom: 75px !important;
    left: 15px !important;
    right: auto !important;
    top: auto !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    z-index: 101 !important;
    display: block !important;
  }
  
  /* Featured label positioned ABOVE button on the right side */
  .shorebreak-hero .featured-label,
  .mavericks-hero .featured-label {
    position: absolute !important;
    bottom: 75px !important;
    right: 15px !important;
    left: auto !important;
    top: auto !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    z-index: 101 !important;
    display: block !important;
  }
}

/* Alternating text positioning for hero sections */
.text-left {
  justify-content: flex-start !important;
}

.text-right {
  justify-content: flex-end !important;
}

.text-right .collection-text-overlay {
  margin-left: auto !important;
  margin-right: 40px !important;
}

.text-left .collection-text-overlay {
  margin-left: 40px !important;
  margin-right: auto !important;
}

@media (max-width: 768px) {
  .text-right .collection-text-overlay,
  .text-left .collection-text-overlay {
    margin: 20px !important;
  }
}

/* Blog Section Styles */
.blog-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.blog-header h2 {
  font-size: 48px;
  font-weight: 300;
  color: #0B2341;
  margin-bottom: 20px;
}

.blog-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
}

.blog-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0B2341;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-link {
  display: inline-block;
  color: #0B2341;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #0B2341;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.blog-link:hover {
  color: #164a73;
  border-color: #164a73;
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }
  
  .blog-header h2 {
    font-size: 36px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .blog-content {
    padding: 25px;
  }
  
  .blog-content h3 {
    font-size: 20px;
  }
}

/* Instagram Section Styles */
.instagram-section {
  padding: 80px 0;
  background: white;
}

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

.instagram-header h2 {
  font-size: 48px;
  font-weight: 300;
  color: #0B2341;
  margin-bottom: 20px;
}

.instagram-header p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.instagram-link {
  color: #0B2341;
  text-decoration: underline;
  font-weight: 500;
}

.instagram-link:hover {
  color: #0a1f38;
}

.instagram-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.instagram-item:hover {
  transform: scale(1.05);
}

.instagram-item img,
.instagram-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-item {
  position: relative;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
  opacity: 1;
}

.play-button {
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
  .instagram-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .instagram-section {
    padding: 60px 0;
  }
  
  .instagram-header h2 {
    font-size: 36px;
  }
  
  .instagram-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .instagram-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Blog Article Styles */
.blog-article {
  padding: 40px 0 80px;
  background: white;
}



.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-header h1 {
  font-size: 42px;
  font-weight: 300;
  color: #0B2341;
  margin-bottom: 20px;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #666;
  font-size: 14px;
}

.article-image {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.article-body {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.article-body .lead {
  font-size: 22px;
  font-weight: 300;
  color: #0B2341;
  margin-bottom: 40px;
  line-height: 1.6;
}

.article-body h2 {
  font-size: 32px;
  font-weight: 400;
  color: #0B2341;
  margin: 40px 0 20px;
}

.article-body h3 {
  font-size: 24px;
  font-weight: 500;
  color: #0B2341;
  margin: 30px 0 15px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body strong {
  color: #0B2341;
  font-weight: 600;
}

.article-cta {
  text-align: center;
  padding: 40px 30px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-top: 50px;
}

.article-cta h3 {
  font-size: 28px;
  color: #0B2341;
  margin-bottom: 15px;
}

.article-cta p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 32px;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .article-body {
    font-size: 16px;
  }
  
  .article-body .lead {
    font-size: 18px;
  }
  
  .article-body h2 {
    font-size: 28px;
  }
  
  .article-body h3 {
    font-size: 22px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Mavericks hero layout fixed - 1754075209 */

/* Blog Page Styles */
.blog-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a1e35 100%);
  color: white;
  padding: 100px 0 60px;
  text-align: center;
}

.blog-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.blog-hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.blog-categories {
  padding: 80px 0;
  background: #f8f9fa;
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-category-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-category-header {
  display: flex;
  align-items: center;
  padding: 30px;
}

.blog-category-image {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 25px;
  flex-shrink: 0;
}

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

.blog-category-content {
  flex: 1;
}

.blog-category-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.blog-category-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-dropdown {
  position: relative;
}

.blog-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  border: none;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-dropdown-btn:hover {
  background: #0a1e35;
  transform: translateY(-2px);
}

.dropdown-arrow {
  font-size: 14px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.blog-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.blog-dropdown-content.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.blog-dropdown-content a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.blog-dropdown-content a:last-child {
  border-bottom: none;
}

.blog-dropdown-content a:hover {
  background: #f8f9fa;
  color: var(--primary-color);
  padding-left: 25px;
}

.blog-dropdown-content a.coming-soon {
  color: #999;
  font-style: italic;
  cursor: not-allowed;
}

.blog-dropdown-content a.coming-soon:hover {
  background: none;
  padding-left: 20px;
  color: #999;
}

.featured-articles {
  padding: 80px 0;
  background: white;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

.featured-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-article-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.featured-article-image {
  height: 220px;
  overflow: hidden;
}

.featured-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-article-card:hover .featured-article-image img {
  transform: scale(1.05);
}

.featured-article-content {
  padding: 30px;
}

.featured-article-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  line-height: 1.3;
}

.featured-article-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.article-link:hover {
  color: #0a1e35;
  border-bottom-color: #0a1e35;
}

@media (max-width: 768px) {
  .blog-hero-content h1 {
    font-size: 2.5rem;
  }

  .blog-category-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-category-header {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .blog-category-image {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .featured-articles-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile Menu Dropdown Styles */
.mobile-menu-item-wrapper {
  position: relative;
}

.mobile-menu-dropdown {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.mobile-dropdown-arrow {
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
  color: #fff;
}

.mobile-menu-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  background: rgba(0, 0, 0, 0.9);
  border-left: 3px solid #0B2341;
  margin-left: 0;
  margin-top: 5px;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}

.mobile-submenu.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.mobile-submenu-item {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-submenu-item:last-child {
  border-bottom: none;
}

.mobile-submenu-item:hover {
  background: rgba(11, 35, 65, 0.8);
  padding-left: 25px;
  color: #fff;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.filter-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    background-image: url('../../images/icon/funnel-tool.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Mini Cart Styles */
.mini-cart-container {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  margin-top: 10px;
}

.mini-cart {
  width: 350px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  animation: slideDown 0.3s ease-out;
  max-height: 500px;
  overflow: hidden;
}

.mini-cart.show {
  display: block;
}

.mini-cart-header {
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
}

.mini-cart-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #081a30;
  font-weight: 600;
}

.mini-cart-items {
  max-height: 300px;
  overflow-y: auto;
  padding: 10px 0;
}

.mini-cart-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
}

.mini-cart-item:hover {
  background-color: #f8f9fa;
}

.mini-cart-item:last-child {
  border-bottom: none;
}

.mini-cart-image {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 12px;
  flex-shrink: 0;
  background: #f5f5f5;
}

.mini-cart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-cart-details {
  flex: 1;
  min-width: 0;
  margin-right: 10px;
}

.mini-cart-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
  line-height: 1.3;
}

.mini-cart-collection {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 2px;
}

.mini-cart-qty {
  font-size: 0.8rem;
  color: #666;
}

.mini-cart-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #081a30;
  flex-shrink: 0;
}

.mini-cart-remove {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
  border-radius: 3px;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.mini-cart-remove:hover {
  background-color: #dc3545;
  color: white;
}

.mini-cart-empty {
  padding: 40px 20px;
  text-align: center;
  color: #666;
  font-style: italic;
}

.mini-cart-footer {
  padding: 15px 20px;
  border-top: 1px solid #e0e0e0;
  background: #f8f9fa;
  border-radius: 0 0 8px 8px;
}

.mini-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #081a30;
}

.mini-cart-actions {
  display: flex;
  gap: 10px;
}

.mini-cart-actions .btn {
  flex: 1;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.mini-cart-actions .btn-secondary {
  background: #f8f9fa;
  color: #081a30;
  border: 1px solid #081a30;
}

.mini-cart-actions .btn-secondary:hover {
  background: #081a30;
  color: white;
}

.mini-cart-actions .btn-primary {
  background: #081a30;
  color: white;
}

.mini-cart-actions .btn-primary:hover {
  background: #1a3009;
}





/* ===== FIX: Explore By Features (works with your original HTML) ===== */
.features-section {
  padding: 48px 0 56px;
  background: #fff;
}

.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* headings */
.features-section .section-title {
  text-align: center;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  margin: 0 0 8px;
}

.features-section .section-subtitle {
  text-align: center;
  color: #6b6b6b;
  font-size: 14px;
  max-width: 760px;
  margin: 0 auto 28px;
}

/* horizontal scroll */
.features-section .features-grid {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  margin-top: 60px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
  cursor: grab;
}

.features-section .features-grid:active {
  cursor: grabbing;
}

.features-section .features-grid::-webkit-scrollbar {
  display: none;
}

/* card */
.features-section .feature-card {
  position: relative;
  overflow: hidden;
  background: #f6f6f6;
  border: 1px solid #eee;
  cursor: pointer;
  isolation: isolate;
  height: 450px;
  width: 280px;
  min-width: 280px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-section .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* fallback if aspect-ratio isn’t supported */
@supports not (aspect-ratio: 1 / 1) {
  .features-section .feature-card::before {
    content: "";
    display: block;
    padding-top: 75%; /* 4:3 */
  }
}

/* make image truly fill the card regardless of any global img styles */
.features-section .feature-card > img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1.001);
  transition: transform .35s ease;
}

.features-section .feature-card:hover > img { transform: scale(1.05); }

/* overlay + title */
.features-section .feature-content {
  position: absolute !important;
  inset: 0 !important;
  display: grid;
  align-content: end;
  padding: 18px;
  color: #fff;
  z-index: 1;
  pointer-events: none; /* clicks go to the card */
}

.features-section .feature-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 55%);
  z-index: -1;
}

.features-section .feature-content h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
  font-size: 20px;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

/* responsive */
@media (max-width: 768px) {
  .features-section .features-grid {
    gap: 20px;
    padding: 15px 0;
  }
  
  .features-section .feature-card {
    height: 350px;
    width: 260px;
    min-width: 260px;
  }
}

@media (max-width: 520px) {
  .features-section .features-grid {
    gap: 15px;
    padding: 10px 0;
  }
  
  .features-section .feature-card {
    height: 320px;
    width: 220px;
    min-width: 220px;
  }
  
  .features-section .feature-content h3 { 
    font-size: 18px; 
  }
}

/* Shop by Style Section */
.style-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.style-section .container {
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
}

.style-carousel-wrapper {
  position: relative;
  margin-top: 60px;
}

.style-carousel {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  cursor: grab;
}

.style-carousel:active {
  cursor: grabbing;
}

.style-carousel::-webkit-scrollbar {
  display: none;
}

.style-card {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.style-card:hover {
  transform: translateY(-5px);
}

.style-samples {
  width: 100%;
}

.style-samples img {
  width: 300px;
  height: 500px;
  object-fit: cover;
  
}

.style-hero {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

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

.style-card:hover .style-hero img {
  transform: scale(1.05);
}

.style-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.style-overlay h3 {
  color: white;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin: 0;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .style-section {
    padding: 60px 0;
  }

  .style-card {
    flex: 0 0 360px;
  }

  .style-samples {
    height: 80px;
  }

  .style-hero {
    height: 280px;
  }

  .style-overlay h3 {
    font-size: 32px;
  }

  .style-overlay {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .style-section {
    padding: 40px 0;
  }

  .style-card {
    flex: 0 0 300px;
  }

  .style-samples {
    height: 70px;
    gap: 3px;
  }

  .style-hero {
    height: 240px;
  }

  .style-overlay h3 {
    font-size: 28px;
    padding: 15px;
  }
}
