/* ════════════════════════════════
   ROOT VARIABLES
════════════════════════════════ */
:root {
  --black:      #111111;
  --white:      #ffffff;
  --accent:     #2d6a4f;
  --badge-hot:  #e63946;
  --badge-new:  #457b9d;
  --badge-best: #555555;
  --badge-sold: #6c757d;
  --gold:       #f4a261;
  --light-bg:   #f8f8f6;
  --border:     #e2e2e0;
  --muted:      #888888;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--black); }
img  { display: block; }
a    { text-decoration: none; }

/* ════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════ */
.announcement-bar {
    background: var(--black);
    color: var(--white);
    font-size: 18px !important;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 14px 18px;
    line-height: 1.6;
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.main-nav{
    min-height:95px !important;
    padding:0 40px !important;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 2px 12px rgba(0,0,0,0.05);
}

.logo{
    height:85px;
    width:auto;
    display:block;
    object-fit:contain;
}

.nav-brand {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--black);
}

.nav-links li a {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.05em;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.nav-links li a:hover { color: var(--accent); }
.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons a { color: var(--black); font-size: 17px; transition: color 0.2s; }
.nav-icons a:hover { color: var(--accent); }
.nav-hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--black); }

/* ════════════════════════════════
   MEGA DROPDOWN & DROPDOWN STYLES
════════════════════════════════ */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.dropdown-trigger:hover {
  color: var(--accent);
}

/* ════════════════════════════════
   MEGA DROPDOWN MENU
════════════════════════════════ */
.mega-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -223px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  width: 1120px;
  max-width: 90vw;
  z-index: 999;
  margin-top: 10px;
  animation: slideDown 0.3s ease;
}

.mega-dropdown.active {
  display: block;
}

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

.mega-dropdown-content {
  display: flex;
  height: 500px;
}

/* Left Sidebar */
.dropdown-sidebar {
  width: 280px;
  background: linear-gradient(135deg, #f8f8f6 0%, #f0f0ed 100%);
  border-right: 1px solid var(--border);
  padding: 20px 0;
  border-radius: 8px 0 0 8px;
  overflow-y: auto;
  max-height: 500px;
}

.dropdown-sidebar::-webkit-scrollbar {
  width: 6px;
}

.dropdown-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-sidebar::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.sidebar-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  border-left: 4px solid transparent;
  position: relative;
  margin: 8px 12px;
  border-radius: 0 30px 30px 0;
}

.sidebar-category:hover {
  background: rgba(45, 106, 79, 0.08);
  border-left-color: var(--accent);
  transform: translateX(4px);
}

.sidebar-category.active {
  background: var(--black);
  color: var(--white);
  border-left-color: var(--accent);
  border-radius: 0 30px 30px 0;
  font-weight: 600;
}

.sidebar-category i {
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}

/* Right Content Area */
.dropdown-content-area {
  flex: 1;
  padding: 30px 40px;
  overflow-y: auto;
  max-height: 500px;
}

.dropdown-content-area::-webkit-scrollbar {
  width: 6px;
}

.dropdown-content-area::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-content-area::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.category-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.category-content.active {
  display: block;
}

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

.content-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--black);
  letter-spacing: 0.02em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: var(--light-bg);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.product-item:hover {
  background: #eee;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-item img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

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

.product-item p {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.view-all-products {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--accent);
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-all-products:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* ════════════════════════════════
   SIMPLE DROPDOWN (for Combos)
════════════════════════════════ */
.simple-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 200px;
  z-index: 999;
  margin-top: 8px;
  animation: slideDown 0.3s ease;
}

.simple-dropdown.active {
  display: flex;
  flex-direction: column;
}

.simple-dropdown a {
  padding: 12px 18px;
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.simple-dropdown a:first-child {
  border-radius: 6px 6px 0 0;
}

.simple-dropdown a:last-child {
  border-radius: 0 0 6px 6px;
}

.simple-dropdown a:hover {
  background: var(--light-bg);
  color: var(--accent);
  border-left-color: var(--accent);
  padding-left: 24px;
}

/* ════════════════════════════════
   HERO SLIDER
════════════════════════════════ */
.hero-section { overflow: hidden; position: relative; }
.hero-slide {
  display: none;
  min-height: 360px;
  align-items: center;
  position: relative;
}

.hero-slide.active { display: flex; }
.hero-slide-1 { background: linear-gradient(120deg, #d4e8f7 55%, #b8d8ef 100%); }
.hero-slide-2 { background: linear-gradient(120deg, #e8f4e8 55%, #c8e6c8 100%); }
.hero-slide-3 { background: linear-gradient(120deg, #fdf0e0 55%, #f5dbb0 100%); }

.hero-img-wrap {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 20px 20px 0;
}

.hero-img-wrap img {
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 14px 36px rgba(0,0,0,0.18));
}

.hero-content { flex: 1; padding: 40px 60px 40px 24px; }
.hero-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}

.hero-brand-name {
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 2px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 66px; font-weight: 700; font-style: italic;
  line-height: 1; color: var(--black); margin-bottom: 16px;
}

.hero-sub { font-size: 14px; color: #555; margin-bottom: 26px; max-width: 310px; line-height: 1.65; }
.btn-primary-dark {
  background: var(--black); color: var(--white);
  border: none; padding: 12px 32px;
  font-size: 12px; font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; display: inline-block;
  transition: background 0.22s, transform 0.15s;
}

.btn-primary-dark:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.slider-dots {
  position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px;
}

.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.25); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.dot.active { background: var(--black); transform: scale(1.35); }

/* ════════════════════════════════
   HORIZONTAL SCROLLING COLLECTIONS
════════════════════════════════ */
.collections-section {
  background: var(--white);
  padding: 60px 40px;
}

.collections-heading {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  color: var(--black);
  text-align: center;
}

.collections-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 20px 0;
  scroll-behavior: smooth;
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none;
}

.collections-scroll-container::-webkit-scrollbar {
  display: none;
}

.collection-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 280px;
  height: 480px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: var(--white);
  transition: background 0.3s ease;
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.collection-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  word-spacing: 100vw;
}

.collection-category {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

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

.quick-view-btn {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.quick-view-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.collection-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 6px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(1.1);
}

.scroll-btn.next {
  transform: rotate(180deg);
}

@media (max-width: 1200px) {
  .collection-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 250px;
    height: 420px;
  }

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

@media (max-width: 768px) {
  .collections-section {
    padding: 40px 20px;
  }

  .collections-heading {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .collection-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 200px;
    height: 350px;
  }

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

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

  .collections-scroll-container {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .collections-section {
    padding: 30px 15px;
  }

  .collections-heading {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .collection-card {
    flex: 0 0 calc(85% - 12px);
    min-width: 180px;
    height: 320px;
  }

  .collection-title {
    font-size: 20px;
  }

  .collection-category {
    font-size: 13px;
  }

  .quick-view-btn {
    padding: 6px 12px;
    font-size: 10px;
  }

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

/* ════════════════════════════════
   TOP CATEGORIES SECTION
════════════════════════════════ */
.top-categories-section {
  background: var(--white);
  padding: 60px 40px;
  text-align: center;
}

.top-categories-heading {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  color: var(--black);
}

.categories-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.categories-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
  letter-spacing: 0.02em;
}

.categories-nav a:hover,
.categories-nav a.active {
  border-bottom-color: var(--black);
  color: var(--black);
}

.toothbrush-showcase {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 12px;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.toothbrush-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.toothbrush-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.toothbrush-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  max-height: 500px;
  object-fit: contain;
}

.toothbrush-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.toothbrush-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.toothbrush-description {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
}

.toothbrush-features {
  list-style: none;
  margin-bottom: 28px;
}

.toothbrush-features li {
  font-size: 13px;
  color: var(--black);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toothbrush-features li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  font-size: 16px;
}

.btn-toothbrush {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-toothbrush:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .toothbrush-showcase {
    padding: 30px 15px;
  }

  .toothbrush-container {
    gap: 20px;
  }

  .toothbrush-title {
    font-size: 22px;
  }

  .categories-nav {
    gap: 20px;
  }

  .categories-nav a {
    font-size: 13px;
  }
}

/* ════════════════════════════════
   FEATURE STRIP
════════════════════════════════ */
.feature-strip {
  background: var(--black); color: var(--white);
  display: flex; justify-content: center;
}

.feature-item {
  flex: 1; text-align: center;
  padding: 20px 10px;
  border-right: 1px solid #2a2a2a;
}

.feature-item:last-child { border-right: none; }
.feature-item i { font-size: 22px; margin-bottom: 8px; color: var(--gold); }
.feature-item h6 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px;
}

.feature-item p { font-size: 10px; color: #aaa; }

/* ════════════════════════════════
   SHARED SECTION HELPERS
════════════════════════════════ */
.section-white  { background: var(--white);    padding: 56px 0 64px; }
.section-light  { background: var(--light-bg); padding: 56px 0 64px; }
.section-heading {
  text-align: center; font-size: 26px;
  font-weight: 800; letter-spacing: 0.04em; margin-bottom: 32px;
}

.section-heading span { border-bottom: 3px solid var(--black); padding-bottom: 4px; }
.view-all-wrap { text-align: center; margin-top: 32px; }
.btn-view-all {
  border: 1.5px solid var(--black); background: transparent;
  padding: 10px 32px; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-view-all:hover { background: var(--black); color: var(--white); }

/* ════════════════════════════════
   PRODUCT CARD
════════════════════════════════ */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}

.product-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.badge-label {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 2px; color: var(--white);
}

.badge-hot  { background: var(--badge-hot); }
.badge-new  { background: var(--badge-new); }
.badge-best { background: var(--badge-best); }
.badge-sold { background: var(--badge-sold); }

.product-img-wrap {
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  padding: 28px 20px; height: 200px; overflow: hidden;
}

.product-img-wrap img {
  max-height: 144px; object-fit: contain;
  transition: transform 0.32s;
}

.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-body { padding: 14px 14px 18px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 6px;
}

.price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.price-current { font-size: 13px; font-weight: 700; }
.price-old     { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.star-row { color: var(--gold); font-size: 12px; margin-bottom: 5px; }
.star-count { font-size: 10px; color: var(--muted); margin-left: 3px; }
.color-dots { display: flex; gap: 5px; margin-bottom: 10px; }
.color-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1.5px solid #ccc; cursor: pointer;
}

.product-desc { font-size: 10px; color: var(--muted); margin-bottom: 14px; flex: 1; line-height: 1.5; }
.btn-buy {
  background: var(--black); color: var(--white); border: none;
  width: 100%; padding: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s; margin-top: auto;
}

.btn-buy:hover { background: var(--accent); }
.btn-buy.sold-out { background: #ccc; cursor: not-allowed; color: #666; }
.btn-buy.sold-out:hover { background: #ccc; }

/* ════════════════════════════════
   GRAB LIST
════════════════════════════════ */
.grab-list-section { background: var(--white); padding: 56px 0 64px; }
.grab-tabs {
  display: flex; justify-content: center;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
}

.grab-tab {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 10px 30px;
  border: none; background: transparent; color: var(--muted);
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  cursor: pointer; transition: color 0.2s, border-color 0.2s;
}

.grab-tab.active { color: var(--black); border-bottom-color: var(--black); }
.grab-tab:hover  { color: var(--black); }
.grab-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

.grab-cell { border-radius: 6px; overflow: hidden; position: relative; cursor: pointer; }
.grab-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.36s; }
.grab-cell:hover img { transform: scale(1.05); }
.grab-cell-tall { grid-row: span 2; }
.grab-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 24px 16px 14px; color: #fff;
}

.grab-overlay h5 { font-size: 15px; font-weight: 800; letter-spacing: 0.03em; margin-bottom: 4px; line-height: 1.25; }
.grab-overlay p  { font-size: 10px; color: rgba(255,255,255,0.82); }

/* ════════════════════════════════
   PROMO BANNER
════════════════════════════════ */
.promo-banner {
  background: linear-gradient(105deg, #1a1a2e, #16213e);
  color: var(--white); text-align: center; padding: 52px 20px;
}

.promo-banner .eyebrow {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #aaa; margin-bottom: 8px;
}

.promo-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-style: italic; margin-bottom: 12px;
}

.promo-banner p { font-size: 13px; color: #aaa; margin-bottom: 26px; }

/* ════════════════════════════════
   NEWSLETTER
════════════════════════════════ */
.newsletter-section { background: #f0ede8; text-align: center; padding: 56px 20px; }
.newsletter-section .eyebrow {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #999; margin-bottom: 8px;
}

.newsletter-section h3 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.newsletter-section p  { font-size: 13px; color: #666; margin-bottom: 26px; }
.newsletter-form { display: flex; max-width: 440px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; border: 1.5px solid var(--black); border-right: none;
  padding: 12px 16px; font-size: 13px;
  font-family: 'Montserrat', sans-serif; outline: none;
}

/* ════════════════════════════════
   COMPARE PRODUCTS QUALITY
════════════════════════════════ */
.compare-section {
  background: var(--white);
  padding: 80px 40px;
}

.compare-heading {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 50px;
  color: var(--black);
  text-align: center;
}

.compare-container {
  background: #000;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 60px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.compare-product {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.compare-product img {
  max-width: 60%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(255, 255, 255, 0.1));
}

.compare-label {
  position: absolute;
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.compare-label.left {
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.compare-label.right {
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.compare-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-50%);
}

.compare-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.compare-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-nav button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ════════════════════════════════
   READ WHAT INTERESTS YOU (BLOG)
════════════════════════════════ */
.blog-section {
  background: var(--light-bg);
  padding: 80px 40px;
}

.blog-heading {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
  color: var(--black);
  text-align: center;
}

.blog-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.blog-featured {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-featured-image {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.blog-featured-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-featured-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.4;
}

.blog-featured-subtitle {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
}

.blog-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-item:hover {
  color: var(--accent);
}

.blog-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.blog-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-item:hover .blog-title {
  color: var(--accent);
}

.blog-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--accent);
}

/* ════════════════════════════════
   PRESS & MEDIA
════════════════════════════════ */
.press-section {
  background: var(--white);
  padding: 80px 40px;
}

.press-heading {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
  color: var(--black);
  text-align: center;
}

.press-carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  margin-bottom: 40px;
}

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

.press-item {
  flex: 0 0 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 12px;
  background: var(--light-bg);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.press-item:hover {
  border-color: var(--black);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.press-item img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.press-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.press-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.press-nav button:hover {
  background: var(--black);
  color: var(--white);
}

.press-nav button.next {
  transform: rotate(180deg);
}

.press-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

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

.press-dot.active {
  background: var(--black);
  transform: scale(1.3);
}

/* ════════════════════════════════
   RESPONSIVE ADJUSTMENTS
════════════════════════════════ */
@media (max-width: 1200px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .compare-label {
    font-size: 20px;
  }

  .compare-label.left {
    left: 20px;
  }

  .compare-label.right {
    right: 20px;
  }

  .mega-dropdown {
    width: 95vw;
    left: 50%;
    transform: translateX(-50%);
  }

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

@media (max-width: 1024px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .compare-label {
    font-size: 20px;
  }

  .compare-label.left {
    left: 20px;
  }

  .compare-label.right {
    right: 20px;
  }
}

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

  .compare-heading {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .compare-container {
    padding: 30px 20px;
    min-height: 350px;
  }

  .compare-label {
    font-size: 18px;
    position: static;
    transform: none;
    margin-top: 20px;
    text-align: center;
  }

  .compare-label.left,
  .compare-label.right {
    position: static;
    left: auto;
    right: auto;
  }

  .blog-section {
    padding: 60px 20px;
  }

  .blog-heading {
    font-size: 26px;
  }

  .blog-featured-image {
    height: 250px;
  }

  .blog-featured-title {
    font-size: 18px;
  }

  .press-section {
    padding: 60px 20px;
  }

  .press-heading {
    font-size: 26px;
  }

  .press-item {
    flex: 0 0 160px;
    height: 120px;
  }

  .main-nav {
    padding: 12px 20px;
  }

  .hero-slide {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .hero-img-wrap {
    width: 100%;
    padding: 24px 0 0;
  }

  .hero-content {
    padding: 24px 24px 36px;
  }

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

  .feature-strip {
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 50%;
    border-bottom: 1px solid #2a2a2a;
  }

  .grab-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .grab-cell-tall {
    grid-row: span 1;
  }

  .toothbrush-container {
    flex-direction: column;
  }

  .toothbrush-image,
  .toothbrush-info {
    min-width: 100%;
  }

  .toothbrush-title {
    text-align: center;
  }

  .toothbrush-info {
    text-align: center;
  }

  .btn-toothbrush {
    width: 100%;
  }

  .categories-nav {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .compare-section {
    padding: 40px 15px;
  }

  .compare-heading {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .compare-container {
    padding: 20px 15px;
    min-height: 300px;
  }

  .compare-label {
    font-size: 14px;
  }

  .blog-section {
    padding: 40px 15px;
  }

  .blog-heading {
    font-size: 20px;
  }

  .blog-container {
    gap: 30px;
  }

  .blog-featured-image {
    height: 200px;
  }

  .blog-featured-title {
    font-size: 16px;
  }

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

  .press-section {
    padding: 40px 15px;
  }

  .press-heading {
    font-size: 20px;
  }

  .press-item {
    flex: 0 0 140px;
    height: 100px;
  }

  .grab-mosaic {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 34px;
  }

  .promo-banner h3 {
    font-size: 26px;
  }

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

  .top-categories-section {
    padding: 40px 20px;
  }

  .categories-nav {
    gap: 12px;
  }

  .categories-nav a {
    font-size: 12px;
  }

  .mega-dropdown {
    width: calc(100vw - 20px);
    left: 10px;
    position: fixed;
    max-height: 70vh;
    overflow-y: auto;
    border-radius: 8px;
  }

  .mega-dropdown-content {
    flex-direction: column;
    height: auto;
  }

  .dropdown-sidebar {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    max-height: none;
    border-bottom: 1px solid var(--border);
  }

  .sidebar-category {
    border-bottom: 1px solid #eee;
    border-left: 3px solid transparent;
    border-radius: 0;
    padding: 12px 16px;
    margin: 0;
  }

  .sidebar-category.active {
    border-left-color: var(--accent);
    background: rgba(45, 106, 79, 0.08);
    border-bottom: 1px solid #eee;
  }

  .dropdown-content-area {
    padding: 15px;
    max-height: none;
  }

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

  .product-item {
    padding: 10px;
  }

  .product-item img {
    height: 80px;
  }

  .product-item p {
    font-size: 11px;
  }

  .content-title {
    font-size: 14px;
  }
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer { background: #111; color: #ccc; padding: 54px 40px 24px; }
.footer-brand { font-size: 21px; font-weight: 900; letter-spacing: 0.14em; color: #fff; margin-bottom: 10px; }
.footer-tagline { font-size: 11px; color: #888; margin-bottom: 16px; }
.footer-about { font-size: 12px; color: #888; line-height: 1.75; }
.footer-heading { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links li a { font-size: 12px; color: #888; transition: color 0.2s; }
.footer-links li a:hover { color: #fff; }
.social-icons { display: flex; gap: 14px; margin-top: 18px; }
.social-icons a { color: #888; font-size: 17px; transition: color 0.2s; }
.social-icons a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a2a2a; margin-top: 40px;
  padding-top: 20px; font-size: 11px; color: #555; text-align: center;
}

/* ════════════════════════════════
   RESPONSIVE NAV
════════════════════════════════ */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

@media (max-width: 768px) {
  footer { padding: 40px 20px 20px; }
}