:root {
  --primary-color: #004177;
  --secondary-color: #00a4a4;
  /* KIVOQ Teal */
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --text-dark: #0f172a;
  --text-light: #ffffff;
  --border-color: #e2e8f0;
  --transition-speed: 0.3s;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --font-family: 'Red Hat Display', sans-serif;
}

/* Mobile components hidden by default for desktop */
.mobile-menu-toggle,
.mobile-menu-header,
.mobile-nav-overlay {
  display: none;
}

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

.hero-text-content {
  font-family: 'Nexa', sans-serif;
  /* Ensure font is loaded */
  color: #ffffff;
  max-width: 800px;
  /* Adjust this to control where the text wraps if needed */
}

.hero-main-title {
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.05em;
  margin-bottom: 25px;
  text-transform: none;
}

.hero-product-label {
  font-size: 1.1rem;
  line-height: 1.4;
  text-transform: none;
}

.hero-product-label strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-product-label span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.9;
}

.hero-main-title span {
  display: block;
}

.hero-product-label span {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

@media (max-width: 992px) {
  .container {
    padding: 0 1rem;
  }
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  color: #004177;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  text-align: center;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

/* .btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
} */

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}


/* .btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
} */

/* Top Bar */
.top-bar {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 0.5rem 0;
  font-weight: 500;
}

header {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 15000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 40px;
  width: auto;
  transition: opacity 0.3s ease;
    transition: opacity 0.3s ease, filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(13%) sepia(91%) saturate(2334%) hue-rotate(187deg) brightness(96%) contrast(105%);
}

.logo img:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  /* Allow wrapping */
  justify-content: center;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .nav-container {
    /* Kept as row for mobile header */
    flex-direction: row;
    height: 70px;
  }
}

.nav-item {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-item.has-dropdown {
  position: static;
}

.nav-links a {
  font-weight: 800;
  font-size: 1rem;
}

/* .nav-links a:hover {
  color: var(--secondary-color);
} */

/* Dropdown Menu / Mega Menu - Desktop Only */
@media (min-width: 1025px) {
  .mega-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20000;
    pointer-events: none;
  }

  .nav-item.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    /* Enables interaction only when visible */
    transition-delay: 0.1s;
    /* Tiny delay prevents accidental triggers */
  }
}

.mega-container {
  display: flex;
  min-height: 450px;
  /* Increased height for better look */
}

/* Sidebar */
.mega-sidebar {
  width: 25%;
  padding: 2rem 1.5rem 2rem 0.5rem;
  /* Increased right padding for scrollbar space */
  /* Reduced horizontal padding */
  border-right: 1px solid var(--border-color);
  background-color: var(--bg-white);
  max-height: 75vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}

/* Custom Scrollbar for Mega Sidebar */
.mega-sidebar::-webkit-scrollbar {
  width: 5px;
}

.mega-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.mega-sidebar::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 10px;
}

.mega-sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #ccc;
}

.mega-sidebar h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.mega-category-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-category-item {
  padding: 8px 14px;
  margin: 0 8px;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  /* Changed from flex to block for nesting */
  transition: all 0.2s ease;
  background: transparent;
}

.mega-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mega-sub-menu {
  margin-top: 8px;
  padding-left: 12px;
  border-left: 1px solid #f0f0f0;
  display: none;
}

.mega-category-item.active .mega-sub-menu {
  display: block;
}

/* .mega-sub-menu.phone-cases-submenu {
  width: 100%;
  max-height: 450px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 15px;
} */

.series-group {
  margin-bottom: 25px;
  list-style: none;
}

.series-trigger {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: color 0.3s ease;
}

.series-group:hover .series-trigger {
  color: var(--secondary-color);
}

.nested-models {
  list-style: none;
  padding-left: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.2s ease;
  opacity: 0;
}

.series-group:hover .nested-models {
  max-height: 1000px;
  /* Allow more space for sub-subcategories */
  opacity: 1;
}

.nested-models li {
  margin: 6px 0;
}

.nested-models a {
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nested-models a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}



/* Blog Carousel Section */
.home-blogs-section {
  padding: 100px 20px;
}

.home-blogs-section .section-header {
  margin-bottom: 50px;
  text-align: center;
}

.home-blogs-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-carousel-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.blog-carousel {
  display: flex;
  overflow-x: hidden;
  /* Changed for JS transform control */
  gap: 30px;
  padding: 20px 0;
}

.blog-carousel::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.blog-card {
  min-width: 320px;
  flex: 0 0 320px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

/* .blog-card:hover { 
    transform: translateY(-10px); 
} */

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
  /* Subtle zoom instead of lift */
}

.blog-card-content {
  padding: 25px;
}

.blog-date {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #004177;
}

.blog-card-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  background: #004177;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-link i {
  font-size: 0.7rem;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.blog-link:hover {
  background: #0d355c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-link:hover i {
  transform: translateX(3px);
}


@media (max-width: 992px) {
  .blog-card {
    min-width: 280px;
    flex: 0 0 280px;
  }
}


/* Custom Scrollbar for Premium Look
.mega-sub-menu.phone-cases-submenu::-webkit-scrollbar {
  width: 4px;
}

.mega-sub-menu.phone-cases-submenu::-webkit-scrollbar-track {
  background: transparent;
}

.mega-sub-menu.phone-cases-submenu::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

.mega-sub-menu.phone-cases-submenu::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
} */



.mega-sub-menu li {
  margin: 8px 0;
  break-inside: avoid;
  /* Prevents splitting a single link across columns */
}

/* Blogs Main Page */
.blogs-header {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.blogs-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -2px;
  color: #0f172a;
}

.blogs-header p {
  color: #64748b;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.blog-card.grid-item {
  min-width: unset;
  flex: unset;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card.grid-item .blog-card-img {
  height: 280px;
}

@media (max-width: 768px) {
  .blogs-header {
    padding: 60px 0 40px;
  }

  .blogs-header h1 {
    font-size: 2.5rem;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-card.grid-item .blog-card-img {
    height: 220px;
  }
}

.mega-sub-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
  transition: all 0.2s ease;
}

.mega-sub-menu a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}


.mega-cat-name {
  color: var(--text-dark) !important;
  font-size: 0.95rem;
  font-weight: 600;
  pointer-events: none;
  /* Prevents text from interfering with li hover */
}

.mega-category-item i {
  font-size: 0.7rem;
  color: var(--secondary-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.2s ease;
}

/* .mega-category-item:hover,
.mega-category-item.active {
  background-color: var(--bg-light);
} */

/* .mega-category-item:hover .mega-cat-name,
.mega-category-item.active .mega-cat-name {
  color: var(--secondary-color) !important;
} */

/* .mega-category-item:hover i,
.mega-category-item.active i {
  opacity: 1;
  transform: translateX(0);
} */

/* Content Area */
.mega-content {
  width: 75%;
  padding: 2.5rem 3rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Horizontal Sub-Tabs */
.mega-tabs-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1px;
  scroll-behavior: smooth;
}

.mega-tabs-scroll-wrap::-webkit-scrollbar {
  display: none;
}

.mega-sub-tabs {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
}

.sub-tab {
  background: none;
  border: none;
  padding: 0.8rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sub-tab:hover {
  color: #111;
}

.sub-tab.active {
  color: #004177;
}

.sub-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #004177;
}

.mega-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  transition: opacity 0.3s ease;
}

.mega-product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.mega-img-wrapper {
  background: #f1f5f9;
  padding: 0; /* Removed padding to maximize space */
  border-radius: 12px;
  margin-bottom: 0.8rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
    overflow: hidden; /* Added to clip scaled image */

}



.mega-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
    padding: 0; /* Removed padding for menu */
  margin: 0;
  transform: scale(1.1); /* Boost scale significantly */
  transition: transform 0.4s ease;
}
.mega-product-card:hover .mega-product-img {
  transform: scale(1.15); /* Hover zoom */
}

.mega-product-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.mega-product-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #555;
  margin-top: auto;
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-icons i {
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition-speed) ease;
}

/* .nav-icons i:hover {
  color: var(--secondary-color);
} */



/* KIVOQ Home Hero Section */
.pdp-main-hero.full-bleed {
  position: relative;
  min-height: 85vh;
  background-color: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
  /* Shift the subject to the right */
  transition: transform 10s ease-out;
}

.pdp-main-hero:hover .hero-bg-wrap img {
  transform: scale(1.05);
}

.hero-overlay-content {
  position: relative;
  z-index: 5;
  pointer-events: none;
  width: 100%;
}

.hero-text-content {
  max-width: 550px;
  padding: 2rem 0;
  /* Remove horizontal padding to align with container edge */
  pointer-events: auto;
  text-align: left;
}

.hero-main-title {
  font-size: 4.5rem;
  font-weight: 100;
  line-height: 1.05;
  color: #fff;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
  margin-bottom: 2.5rem;
  letter-spacing: -2px;
}

.hero-product-label {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-product-label small {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Home Product Slider */
.home-product-slider {
  padding: 2rem 0;
  background: #fff;
}

.slider-container {
  display: flex;
  align-items: center;
  position: relative;
  gap: 1rem;
}

.slider-track-wrap {
  flex: 1;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 2rem;
  padding: 30px 0 60px;
  /* Increased padding for the new taller cards */
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
}

.slider-track::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.slider-item {
  flex: 0 0 calc(25% - 1.5rem);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  text-decoration: none;
}

.slider-img-wrap {
  background: #f4f4f4;
  /* Light grey like reference */
  border-radius: 8px;
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  /* Thinner, wider look */
  transition: all 0.4s ease;
  margin-bottom: 1.25rem;
}

.slider-img-wrap img {
  max-width: 80%;
  max-height: 120px;
  /* Smaller image scaling */
  object-fit: contain;
  transition: transform 0.6s ease;
}

.slider-item:hover .slider-img-wrap {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.slider-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.slider-item:hover .slider-img-wrap img {
  transform: scale(1.1);
}

.slider-product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.2px;
  padding: 0 5px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ccc;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-arrow:hover {
  border-color: #004177;
  color: #004177;
}

@media (max-width: 1024px) {
  .hero-main-title {
    font-size: 3rem;
  }

  .slider-item {
    flex: 0 0 calc(33.33% - 1.4rem);
  }
}

@media (max-width: 992px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .hero-text-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-image-side {
    height: 40vh;
    width: 100%;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .slider-item {
    flex: 0 0 calc(50% - 1rem);
  }
}

/* Categories Section */
.categories-section {
  padding: 6rem 0;
}

.categories-section h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #111;
  letter-spacing: -1px;
  margin-bottom: 3rem;
  text-align: center;
}

/* Categories Grid */
.categories-section.container {
  max-width: 1200px;
  /* Aligned with Aukey's compact layout */
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 40px 0;
}

.cat-grid-card {
  text-decoration: none;
  color: #111;
  background-color: #F1F1F1;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  padding: 15px 0 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  /* aspect-ratio: 1 / 1.15; */
  height: 400px;
  overflow: hidden;
  position: relative;
}

.cat-card-label {
  font-size: 1.15rem;
  font-weight: 650;
  color: #111;
  letter-spacing: -0.1px;
  margin-bottom: 5px; /* Extremely tight for maximum image space */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  z-index: 2;
}

.cat-card-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0; /* No side padding to allow edge-to-edge images */
}

.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
   transform: scale(1.0);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cat-grid-card:hover .cat-card-img img {
  transform: scale(1.25);
}

/* Mobile & Tablet Adjustments */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cat-grid-card {
    padding: 1.5rem 1rem;
  }

  .cat-card-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}


/* Featured Split Section */
.featured-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.featured-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-content h2 {
  font-size: 3rem;
}

/* Filtered Products Section */
.products-section {
  padding: 4rem 0 6rem;
  background-color: var(--bg-white);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.products-header h2 {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  transition: 0.3s;
}

.product-image-wrap {
  background-color: var(--bg-light);
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  /* Forces square containers */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.product-image-wrap img,
.product-card img {
  /* Added .product-card img */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* .product-card:hover .product-image-wrap img {
  transform: scale(1.08);
} */

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--secondary-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header Base */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Mega Menu Position - Desktop Only Hover */
@media (min-width: 1025px) {
  .nav-item.has-mega {
    position: static;
  }

  .mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 1px solid #f0f0f0;
    padding: 40px 0;
  }

  .nav-item.has-mega:hover .mega-menu-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* The Grid Layout */
.mega-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  /* Sidebar width vs Content */
  gap: 40px;
}

.mega-cat-list {
  list-style: none;
  border-right: 1px solid #eee;
}

.mega-cat-item a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.mega-cat-item.active a,
.mega-cat-item:hover a {
  color: #004177;
  /* Or Tucano brand color */
}

/* Product Preview Grid */
.products-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mini-product-card {
  text-align: center;
}

.mini-product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 4px;
}

.mini-product-card h4 {
  font-size: 0.9rem;
  margin: 5px 0;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  min-height: 2.8em;
  /* Keeps titles aligned to 2 lines */
  margin-bottom: 0.5rem;
}

.product-price {
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: auto;
  /* Pushes price to the bottom */
}

.products-empty {
  text-align: center;
  padding: 4rem;
  background-color: var(--bg-light);
  border-radius: 12px;
  color: #666;
}


/* ===== Product Detail Page (KIVOQ Reference Style) ===== */

.pdp-main {
  background: #fff;
}

/* TOP: Two-column layout */
.pdp-top {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 4rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  align-items: start;
}

/* ----- Gallery (Left) ----- */
.pdp-gallery {
  position: sticky;
  top: 90px;
}

.pdp-gallery-main {
  background: var(--bg-light);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 2rem;
  margin-bottom: 1rem;
}

.pdp-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.pdp-gallery-main:hover .pdp-gallery-img {
  transform: scale(1.05);
}

.pdp-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pdp-gallery-thumb {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  background: #f5f5f5;
  overflow: hidden;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.pdp-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-gallery-thumb.active,
.pdp-gallery-thumb:hover {
  border-color: #111;
}

/* ----- Info Panel (Right) ----- */
.pdp-info {
  padding-top: 0.5rem;
}

.pdp-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: #004177;
  margin-bottom: 1rem;
}

.pdp-info-badge {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

/* SKU / Spec Box */
.pdp-spec-box {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.pdp-spec-row {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pdp-spec-row:last-child {
  border-bottom: none;
}

.pdp-spec-label {
  font-size: 0.78rem;
  color: #888;
  text-transform: capitalize;
}

.pdp-spec-value {
  font-size: 0.97rem;
  font-weight: 600;
  color: #111;
}

/* Color Selector */
.pdp-color-selector {
  margin-bottom: 2rem;
}

.pdp-color-label {
  display: block;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.8rem;
}

.pdp-color-label strong {
  color: #004177;
  font-weight: 700;
}

.pdp-color-options {
  display: flex;
  gap: 1rem;
}

.pdp-color-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pdp-color-btn.active {
  outline-color: #114376;
  transform: scale(1.1);
}

.pdp-color-btn:hover {
  transform: scale(1.1);
}

/* Key Features */
.pdp-key-features {
  margin-bottom: 1.5rem;
}

.pdp-key-features h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #114376;
  margin-bottom: 0.85rem;
}

.pdp-key-features ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pdp-key-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: #333;
  line-height: 1.4;
}

.pdp-feat-icon {
  color: #114376;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Short description */
.pdp-short-desc {
  font-size: 0.93rem;
  line-height: 1.75;
  color: #555;
}

/* ----- TABS SECTION ----- */
.pdp-tabs-section {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 0;
}

.pdp-tabs-nav {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
  overflow-x: auto;
}

.pdp-tab {
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.pdp-tab:hover {
  color: #111;
}

.pdp-tab.active {
  color: #111;
  border-bottom-color: #111;
}

.pdp-tab-content {
  display: none;
  padding: 2rem 0;
  min-height: 100px;
}

.pdp-tab-content.active {
  display: block;
}
/* Key Features List - Two Columns */
.pdp-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 4rem;
  list-style: disc;
  margin-left: 1.5rem;
  padding: 0;
}

.pdp-features-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pdp-features-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
/* What's in the box list */
.pdp-inbox-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem 2rem;
}

.pdp-inbox-list li {
  font-size: 0.95rem;
  color: #333;
}

/* Specs table */
.pdp-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.pdp-specs-table tr {
  border-bottom: 1px solid #f0f0f0;
}

.pdp-specs-table td {
  padding: 0.75rem 1rem;
  font-size: 0.93rem;
  color: #333;
}

.pdp-specs-table td:first-child {
  font-weight: 600;
  color: #666;
  width: 35%;
}

/* Support box */
.pdp-support-box {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
}

.pdp-support-box p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.pdp-support-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- RELATED PRODUCTS ----- */
.pdp-related {
  padding: 4rem 0 5rem;
}

.pdp-related-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.pdp-related-hdr h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0;
}

.pdp-related-arrows {
  display: flex;
  gap: 0.5rem;
}

.pdp-arr-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.pdp-arr-btn:hover {
  border-color: #114376;
  background: #114376;
  color: #fff;
}

.pdp-related-track-wrap {
  overflow: hidden;
}

.pdp-related-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.pdp-related-track::-webkit-scrollbar {
  display: none;
}

.pdp-related-card {
  flex: 0 0 220px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.pdp-related-card:hover {
  transform: translateY(-4px);
}

.pdp-related-img-wrap {
  background: #f5f5f5;
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.pdp-related-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.pdp-related-card:hover .pdp-related-img-wrap img {
  transform: scale(1.06);
}

.pdp-related-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}


/* ----- OZONE BANNER ----- */
.ozone-banner {
  position: relative;
  height: 500px;
  /* Increased from 350px to show more video content */
  overflow: hidden;
  margin: 0;
  width: 100%;
  background-color: #000;
}

.ozone-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ozone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ozone-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
}

.ozone-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ozone-logo small {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

.ozone-right h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ----- AUDIO FEATURE ----- */
.audio-feature-section {
  padding: 0;
  margin-top: 1rem;
  background: #fff;
}

.audio-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr;
  align-items: center;
  gap: 2rem;
}

.audio-left-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  line-height: 1.1;
  letter-spacing: -1px;
}

.audio-center-img {
  display: flex;
  justify-content: center;
}

.audio-center-img img {
  max-width: 100%;
  height: auto;
  transform: scale(1.1);
}

.audio-right-content {
  padding-left: 2rem;
}

.audio-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 0.5rem;
}

.audio-right-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.audio-right-content h3 small {
  font-size: 1rem;
  font-weight: 600;
  color: #888;
}

.audio-right-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-read-more {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  border: 1px solid #114376;
  border-radius: 50px;
  text-decoration: none;
  color: #114376;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background: #114376;
  color: #fff;
}

/* ----- PHONE STAND SECTION ----- */
.phone-stand-banner {
  padding: 1rem 0 2rem 0;
  background-color: #fff;
}

.phone-stand-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f7f7;
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
}

.phone-stand-text {
  padding: 5rem;
  flex: 1.2;
  text-align: left;
}

.phone-stand-text h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #111;
  line-height: 1.1;
  letter-spacing: -1px;
}

.phone-stand-text p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2.5rem;
  max-width: 450px;
  line-height: 1.6;
}

.btn-shop-stands {
  display: inline-block;
  padding: 14px 35px;
  background-color: #114376;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-shop-stands:hover {
  background-color: #0d355c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.phone-stand-img-wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  background-color: #eaeaea;
  align-self: stretch;
}

.phone-stand-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .phone-stand-content {
    flex-direction: column-reverse;
  }

  .phone-stand-text {
    padding: 3rem;
  }

  .phone-stand-text h2 {
    font-size: 2.5rem;
  }
}

/* ----- SMART DESIGN SECTION ----- */
.smart-design-section {
  padding: 0;
}

.smart-design-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  align-items: stretch;
  min-height: 500px;
}

.smart-img-col-1 img,
.smart-img-col-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart-text-col {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  padding: 4rem;
}

.smart-content-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.smart-content-box p {
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Responsive fixes */
@media (max-width: 1024px) {
  .audio-feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .audio-right-content {
    padding-left: 0;
  }

  .smart-design-grid {
    grid-template-columns: 1fr;
  }

  .smart-text-col {
    padding: 3rem;
  }
}




/* ----- HELP CTA SECTION ----- */
.help-cta-section {
  padding: 0;
  background-color: #fff;
}

.help-cta-container {
  display: flex;
  min-height: 400px;
  overflow: hidden;
  background-color: #004b87;
  /* Match the blue to hide any potential narrow gaps */
}

.help-cta-blue {
  flex: 1.2;
  background-color: #004b87;
  /* Deep professional blue */
  color: #fff;
  display: flex;
  align-items: center;
  padding: 4rem;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  /* Adds a slight slant */
}

.help-cta-content {
  max-width: 500px;
}

.help-cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}

.help-cta-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-help {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #fff;
  color: #004b87;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-help:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.help-cta-image {
  flex: 1;
  position: relative;
  margin-left: -10%;
  /* Increased overlap to hide potential narrow gaps */
  z-index: 1;
}

.help-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- NEW KIVOQ FOOTER ----- */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 0 2rem;
  border-top: none;
}

.footer-new-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-new-col h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 2rem;
  color: #fff;
}

.footer-new-col p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-new-col ul {
  list-style: none;
}

.footer-new-col ul li {
  margin-bottom: 0.8rem;
}

.footer-new-col ul li a {
  color: #ccc;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-new-col ul li a:hover {
  color: #fff;
}

.new-social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.new-social-icons a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.new-social-icons a:hover {
  color: #ccc;
}

.footer-new-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #777;
}

/* Responsive Overrides & Mobile Navigation Fixes */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.2rem;
  }

  .footer-new-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {

  /* Global Horizontal Scroll Fix */
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
  }

  .nav-container {
    height: 70px;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10100;
  }

  .nav-extra {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #114376;
    cursor: pointer;
    padding: 10px;
    margin-right: -10px;
  }

  /* Off-canvas menu structure */
  /* Mobile Drawer from LEFT side */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    /* Standard mobile drawer width */
    max-width: 85%;
    height: 100vh;
    background: #fff;
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    z-index: 10500;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    display: flex !important;
    gap: 0;
  }

  .nav-item {
    display: block !important;
    /* Force children (a and mega-menu) TO STACK */
    width: 100% !important;
    height: auto !important;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }

  .nav-item.has-dropdown.active .mega-menu {
    display: block !important;
  }

  .mega-menu {
    display: none;
    background: #f9f9f9 !important;
    width: 100% !important;
    position: relative !important;
    border-top: 1px solid #f0f0f0;
    border-bottom: 2px solid #114376;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mega-container {
    display: block !important;
  }

  .mega-sidebar {
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
    max-height: none !important;
    background: transparent !important;
  }

  .mega-sidebar h3 {
    display: none;
    /* Hide 'Featured Categories' on mobile */
  }

  .mega-category-list {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .mega-category-item {
    display: block !important;
    padding: 15px 2rem 15px 3.5rem !important;
    /* Indented for sub-menu */
    border-bottom: 1px solid #eee;
    background: transparent !important;
    text-align: left;
  }

  .mega-cat-name {
    color: #000 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
  }

  .mega-cat-header i {
    display: none;
    /* Hide chevron inside mobile items */
  }

  .mega-content {
    display: none !important;
  }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    pointer-events: none;
  }

  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Base protection for horizontal overflow */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Search Overlay Styles */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-top: 5vh;
}

.search-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 2px solid #eee;
  padding: 1rem 0;
  transition: border-color 0.3s ease;
}

.search-input-wrapper:focus-within {
  border-color: #114376;
}

.search-input-wrapper i {
  font-size: 1.8rem;
  color: #666;
}

.search-input-wrapper input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 2.2rem;
  font-weight: 300;
  color: #111;
  outline: none;
}

.search-input-wrapper input::placeholder {
  color: #ccc;
}

.search-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #111;
  cursor: pointer;
  padding: 1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.search-close:hover {
  transform: rotate(90deg);
}

.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  max-height: 65vh;
  overflow-y: auto;
  padding-right: 1.5rem;
}

.search-results::-webkit-scrollbar {
  width: 4px;
}

.search-results::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 10px;
}

.search-result-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.search-result-card:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #eee;
  transform: translateY(-5px);
}

.search-result-img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
}

.search-result-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.search-result-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-result-name {
  font-weight: 600;
  color: #111;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.search-result-category {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.search-result-price {
  font-weight: 700;
  color: #114376;
  font-size: 1rem;
}

.search-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
  color: #888;
}

.search-empty i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.1;
}

@media (max-width: 992px) {
  .search-input-wrapper input {
    font-size: 1.5rem;
  }

  .search-header {
    margin-bottom: 2rem;
  }

  .search-results {
    grid-template-columns: 1fr;
  }
}

/* Premium Showcase Gallery (vertical strips) */
.showcase-slider {
  display: flex;
  height: 550px;
  gap: 12px;
  width: 100%;
  margin-bottom: 80px;
}

.showcase-item {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  cursor: pointer;
}

.showcase-item.active {
  flex: 5.5;
}

.showcase-item:not(.active) {
  filter: brightness(0.85);
}

.showcase-item .showcase-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.showcase-item.active .showcase-bg {
  transform: scale(1.05);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 40px 40px;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease 0.2s;
  pointer-events: none;
  z-index: 2;
}

.showcase-item.active .showcase-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.showcase-content h2 {
  font-size: 3rem;
  font-weight: 400;
  color: white !important;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.showcase-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 450px;
  opacity: 0.9;
  line-height: 1.5;
  color: white;
}

.btn-showcase {
  display: inline-block;
  padding: 14px 35px;
  background-color: #114376;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-showcase:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .showcase-slider {
    height: 450px;
  }

  .showcase-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .showcase-slider {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .showcase-item {
    height: 350px;
    flex: none !important;
    filter: none;
  }

  .showcase-content {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   BLOG DETAIL PAGE
   ========================================================================== */
.blog-detail-page {
  padding-bottom: 100px;
  background: #fff;
}

.blog-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.blog-hero-meta {
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #114376;
  text-transform: uppercase;
}

.blog-main-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  max-width: 1000px;
  margin: 0 auto 32px;
  letter-spacing: -2px;
}

.blog-lead {
  font-size: 1.25rem;
  color: #475569;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

.blog-media-wrap {
  margin-bottom: 80px;
  margin-top: -20px;
}

.blog-featured-image {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 21/9;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured-image:hover img {
  transform: scale(1.03);
}

.blog-content-container {
  max-width: 850px;
  margin: 0 auto;
}

.blog-post-body {
  font-size: 1.25rem;
  line-height: 1.9;
  color: #334155;
  margin-bottom: 80px;
}

.blog-post-body p {
  margin-bottom: 2rem;
}

.blog-share-box {
  padding: 60px 0;
  border-top: 1px solid #f1f5f9;
  text-align: center;
}

.blog-share-box h4 {
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #94a3b8;
}

.blog-share-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.blog-share-links a {
  width: 50px;
  height: 50px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-share-links a:hover {
  background: #114376;
  color: #fff;
  border-color: #114376;
  transform: scale(1.1) translateY(-5px);
}

.blog-nav-bottom {
  margin-top: 40px;
  text-align: center;
}

.btn-back-blogs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #114376;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 30px;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-back-blogs:hover {
  background: #114376;
  color: #fff;
  border-color: #114376;
  transform: translateX(-5px);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-page {
  background: #fff;
  padding-bottom: 100px;
}

.contact-hero {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #114376 0%, #001a35 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  animation: contactPulse 10s infinite alternate;
}

@keyframes contactPulse {
  from {
    transform: scale(1);
    opacity: 0.3;
  }

  to {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.contact-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -3px;
  color: #fff;
}

.contact-subtitle {
  font-size: 1.4rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 100px;
  padding: 100px 0;
}

.contact-form-wrap {
  background: #ffffff;
  padding: 60px;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.contact-form-wrap h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0f172a;
  letter-spacing: -1px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-form .form-group {
  margin-bottom: 30px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #f1f5f9;
  background: #f8fafc;
  border-radius: 16px;
  font-family: inherit;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #1e293b;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #114376;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 67, 118, 0.08);
}

.btn-submit {
  background: #114376;
  color: #fff;
  border: none;
  padding: 20px 50px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: auto;
}

.btn-submit:hover {
  background: #001a35;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(17, 67, 118, 0.25);
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 20px;
}

.info-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.info-icon {
  width: 64px;
  height: 64px;
  background: #f8fafc;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #114376;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.info-card:hover .info-icon {
  background: #114376;
  color: #fff;
  transform: rotate(-10deg) scale(1.1);
}

.info-text h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.info-text p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.1rem;
}

.contact-social h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #0f172a;
}

.contact-social .social-links {
  display: flex;
  gap: 20px;
}

.contact-social .social-links a {
  width: 56px;
  height: 56px;
  background: #114376;
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1.2rem;
}

.contact-social .social-links a:hover {
  background: #001a35;
  transform: translateY(-8px) rotate(10deg);
  box-shadow: 0 15px 30px rgba(17, 67, 118, 0.2);
}

@media (max-width: 1200px) {
  .contact-grid {
    gap: 60px;
  }

  .contact-form-wrap {
    padding: 40px;
  }
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-title {
    font-size: 3.5rem;
  }

  .blog-main-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 80px 0 60px;
  }

  .contact-title {
    font-size: 2.8rem;
  }
}

/* Home Products Filter Section (General) */
.home-products-section,
.products-filter-section {
  padding: 100px 0;
  scroll-margin-top: 100px;
}

.products-page .products-hero {
  background: linear-gradient(135deg, #114376 0%, #001a35 100%);
  padding: 120px 0;
  text-align: center;
  color: white;
  border-radius: 0 0 60px 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
}

.pagination-link:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: translateY(-3px);
  border-color: #cbd5e1;
}

.pagination-link.active {
  background: #114376;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(17, 67, 118, 0.3);
}

.pagination-arrow {
  background: none;
  border: none;
  color: #114376;
  font-size: 1.1rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-arrow:hover {
  color: #001a35;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .pagination-link {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}


.products-page .products-hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -2px;
  color: #fff;
}

.products-page .products-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.filter-header,
.home-products-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  gap: 24px;
}

.filter-header h2,
.home-products-section .section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
}

/* Category Pills Filter */
.category-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-pills .pill {
  padding: 10px 24px;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.category-pills .pill:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: translateY(-2px);
}

.category-pills .pill.active {
  background: #114376;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(17, 67, 118, 0.3);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }
}

/* Product Card Implementation */
.product-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  transition: all 0.4s ease;
  border: none;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
}

.p-card-img {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  /* Forces exact square relative to width */
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
  /* The 'box' background */
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  margin-bottom: 1rem;
}

.p-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  /* Restored elegant padding */
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.p-card-img .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .main-img {
  opacity: 0;
  transform: scale(0.9);
}

.product-card:hover .hover-img {
  opacity: 1;
}

.p-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #114376;
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
}

.p-card-info {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.p-card-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.85rem;
  line-height: 1.35;
  min-height: 3rem; /* Height for ~2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
    line-clamp: 2;

  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-card-info p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 2.8rem; /* Height for ~2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.btn-learn {
  display: inline-block;
  padding: 10px 24px;
  background: #114376;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: fit-content;
  margin: 0 auto;
}

.btn-learn:hover {
  background: #001a35;
  transform: scale(1.02);
}

/* No Products State */
.no-products {
  text-align: center;
  padding: 60px;
  font-size: 1.2rem;
  color: #64748b;
  background: #f8fafc;
  border-radius: 20px;
}

/* Smart Design Page Styles */
.smart-design-page .page-header {
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  padding: 120px 0;
  margin-bottom: 80px;
  border-radius: 0 0 60px 60px;
}

.design-detail-section {
  padding: 80px 0;
}

.design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.design-grid.reverse {
  direction: rtl;
}

.design-grid.reverse .design-text {
  direction: ltr;
}

.design-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.design-image:hover img {
  transform: scale(1.02);
}

.design-text h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #0f172a;
}

.design-text p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.philosophy-section {
  background: #f8fafc;
  padding: 100px 0;
  margin: 60px 0;
  text-align: center;
}

.design-quote {
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: #114376;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  position: relative;
}

.design-quote::before,
.design-quote::after {
  content: '"';
  font-size: 5rem;
  opacity: 0.1;
  position: absolute;
}

.design-quote::before {
  left: -40px;
  top: -20px;
}

.design-quote::after {
  right: -40px;
  bottom: -60px;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #0f172a;
}

.bullet-item i {
  color: #114376;
  font-size: 1.1rem;
}

@media (max-width: 991px) {

  .design-grid,
  .design-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .design-text h2 {
    font-size: 2rem;
  }

  .design-quote {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {

  .home-products-section,
  .products-filter-section {
    padding: 60px 0;
  }

  .home-products-section .section-header h2,
  .filter-header h2 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .p-card-img img {
    padding: 20px;
  }

  /* Product Detail Page Gallery Fixes */
  .pdp-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 20px;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-gallery-main {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .pdp-gallery-thumbs {
    justify-content: center;
    gap: 0.5rem;
  }

  .pdp-gallery-thumb {
    width: 70px;
    height: 70px;
  }

  .pdp-info {
    padding-top: 0;
  }
}


/* ----- HOME HERO CAROUSEL ----- */
.home-hero-carousel {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

.hero-carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-wrap img,
.hero-bg-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide[data-index="0"] img {
  object-position: 80% center;
}

.hero-slide[data-index="1"] img {
  object-position: center;
}

.hero-slide[data-index="2"] img {
  object-position: 50% center;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

.hero-overlay-content {
  position: relative;
  z-index: 10;
  color: #fff;
  pointer-events: none;
}

.hero-text-content {
  max-width: 600px;
  pointer-events: auto;
  transform: translateY(30px);
  transition: transform 0.8s ease-out 0.4s, opacity 0.8s ease-out 0.4s;
  opacity: 0;
}

.hero-slide.active .hero-text-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-main-title {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -2px;
}

.hero-main-title span {
  display: block;
}

.hero-product-label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 2px solid #fff;
  padding-left: 1.5rem;
}

.hero-product-label strong {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-product-label span {
  font-size: 1rem;
  opacity: 0.8;
  text-transform: uppercase;
}


.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
  .hero-main-title {
    font-size: 3.5rem;
  }

  .hero-nav-btn {
    width: 45px;
    height: 45px;
  }

  .hero-nav-btn.prev {
    left: 20px;
  }

  .hero-nav-btn.next {
    right: 20px;
  }
}

@media (max-width: 576px) {
  .hero-main-title {
    font-size: 2.8rem;
  }

  .hero-nav-btn {
    display: none;
  }
}

.announcement-bar {
  background-color: #004177;
  padding: 10px 0;
  text-align: center;
  position: relative;
}

.announcement-carousel {
  position: relative;
  min-height: 18px;
  /* approx height of text to prevent jump */
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  font-family: var(--font-family);
}

.announcement-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Remove bottom gap of phone stand */
.phone-stand-banner {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Remove top gap of blogs section */
.home-blogs-section {
  padding-top: 2rem !important;
  margin-top: 0 !important;
}