/* =============================================================
   DASTARKHAN DELIGHTS — Layout
   Navbar, Footer, Grid, Section wrappers
   ============================================================= */

/* ============================================================
   NAVBAR
   ============================================================ */
nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--warm-white);
  height: var(--nav-height);
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(30,74,45,0.08);
  border-bottom: 1px solid rgba(30,74,45,0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

nav.site-nav.nav--transparent {
  background: transparent;
  box-shadow: none;
  border-bottom-color: transparent;
}

nav.site-nav.nav--scrolled {
  background: var(--warm-white);
  box-shadow: 0 2px 12px rgba(30,74,45,0.08);
  border-bottom-color: rgba(30,74,45,0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: var(--space-xl);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo-img {
  height: 44px;
  width: auto;
}
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.navbar__logo-urdu {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
nav.site-nav.nav--transparent .navbar__logo-urdu { color: white; }
.navbar__logo-en {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
}
nav.site-nav.nav--transparent .navbar__logo-en { color: rgba(255,255,255,0.7); }

/* Nav Links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
nav.site-nav.nav--transparent .navbar__link { color: rgba(255,255,255,0.9); }
.navbar__link:hover { color: var(--saffron); }
nav.site-nav.nav--transparent .navbar__link:hover { color: var(--saffron-light); }

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--saffron);
  transition: right 0.25s ease;
}
.navbar__link:hover::after,
.navbar__link--active::after {
  right: 0;
}
.navbar__link--active { color: var(--saffron); }

/* Right Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.navbar__action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  color: var(--forest);
  transition: var(--transition-fast);
  background: transparent;
  border: none;
  cursor: pointer;
}
nav.site-nav.nav--transparent .navbar__action-btn { color: white; }
.navbar__action-btn:hover {
  background: var(--forest-light);
  color: var(--forest);
}
nav.site-nav.nav--transparent .navbar__action-btn:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}
.navbar__action-btn svg { width: 22px; height: 22px; }

.navbar__whatsapp-btn {
  background: var(--whatsapp);
  color: white;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  width: auto;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
}
.navbar__whatsapp-btn svg { width: 18px; height: 18px; }
.navbar__whatsapp-btn:hover {
  background: var(--whatsapp-dark);
  color: white;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-button);
  transition: var(--transition-fast);
}
.navbar__hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
nav.site-nav.nav--transparent .navbar__hamburger-line { background: white; }

.navbar__hamburger--active .navbar__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.navbar__hamburger--active .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger--active .navbar__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: calc(var(--z-sticky) + 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav--active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  background: transparent;
}
.mobile-nav__close:hover { background: rgba(255,255,255,0.1); }

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  width: 100%;
  text-align: center;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: white;
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.2s, opacity 0.4s ease, transform 0.4s ease;
  text-decoration: none;
}
.mobile-nav--active .mobile-nav__link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav--active .mobile-nav__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav--active .mobile-nav__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav--active .mobile-nav__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav--active .mobile-nav__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav--active .mobile-nav__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav__link:hover { color: var(--saffron-light); }

.mobile-nav__bottom {
  position: absolute;
  bottom: var(--space-3xl);
  display: flex;
  gap: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.4s ease, transform 0.4s 0.4s ease;
}
.mobile-nav--active .mobile-nav__bottom {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,0.85);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("../assets/icons/texture-jali.svg");
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
}

.footer__newsletter {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-3xl) 0;
}

.footer__newsletter-inner {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.footer__newsletter-text {
  flex: 1;
  min-width: 240px;
}
.footer__newsletter-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: white;
  margin-bottom: var(--space-sm);
}
.footer__newsletter-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  max-width: none;
}

.footer__newsletter-form {
  display: flex;
  gap: var(--space-sm);
  flex: 1;
  min-width: 280px;
  max-width: 480px;
}
.footer__newsletter-input {
  flex: 1;
  padding: 13px 16px;
  border-radius: var(--radius-button);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-base);
  outline: none;
  transition: border-color 0.2s;
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.footer__newsletter-input:focus { border-color: var(--saffron); }

.footer__main {
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  text-decoration: none;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: white;
}
.footer__brand-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: none;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}
.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-base);
  background: transparent;
}
.footer__social-btn:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: white;
  transform: translateY(-2px);
}
.footer__social-btn svg { width: 18px; height: 18px; }

.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__link:hover { color: var(--saffron-light); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-sm);
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--saffron);
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__copyright {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
}
.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}
.footer__bottom-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__bottom-link:hover { color: var(--saffron-light); }

.footer__halal-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}
.footer__halal-badge svg { width: 18px; height: 18px; color: var(--success-light); }


/* ============================================================
   GRIDS
   ============================================================ */

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

/* Category Tile */
.category-tile {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.category-tile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-tile:hover .category-tile__image {
  transform: scale(1.08);
}
.category-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,33,20,0.9) 0%, transparent 55%);
  transition: opacity 0.3s ease;
}
.category-tile:hover .category-tile__overlay {
  background: linear-gradient(to top, rgba(14,33,20,0.95) 0%, rgba(14,33,20,0.3) 55%);
}
.category-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
}
.category-tile__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: white;
  font-weight: 600;
  line-height: 1.2;
}
.category-tile__count {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}
.category-tile__arrow {
  width: 20px;
  height: 20px;
  color: var(--saffron-light);
  margin-top: var(--space-sm);
  transform: translateX(-4px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.category-tile:hover .category-tile__arrow {
  transform: translateX(0);
  opacity: 1;
}

/* Saffron glow on hover */
.category-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-card);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.category-tile:hover::after {
  border-color: var(--saffron);
  box-shadow: 0 0 20px rgba(232, 150, 58, 0.3);
}

/* Two-column split layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split-layout--img-left { direction: rtl; }
.split-layout--img-left > * { direction: ltr; }

/* 2/3 + 1/3 split */
.split-layout--wide {
  grid-template-columns: 2fr 1fr;
}

/* ============================================================
   SHOP LAYOUT
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
  background: var(--warm-white);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
}

.shop-sidebar__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.shop-filter-group {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(212, 201, 180, 0.4);
}
.shop-filter-group:last-child { border-bottom: none; margin-bottom: 0; }

.shop-filter-checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 5px 0;
  cursor: pointer;
}
.shop-filter-checkbox input[type="checkbox"] {
  accent-color: var(--saffron);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.shop-filter-checkbox-label {
  flex: 1;
  font-size: var(--text-sm);
  color: var(--charcoal);
  cursor: pointer;
}
.shop-filter-count {
  font-size: var(--text-xs);
  color: var(--muted);
  background: var(--forest-light);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.shop-topbar__count {
  font-size: var(--text-sm);
  color: var(--muted);
  white-space: nowrap;
}

.shop-view-toggle {
  display: flex;
  border: 1.5px solid #D4C9B4;
  border-radius: var(--radius-button);
  overflow: hidden;
}
.shop-view-btn {
  padding: 8px 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: var(--transition-fast);
}
.shop-view-btn--active {
  background: var(--forest);
  color: white;
}
.shop-view-btn svg { width: 16px; height: 16px; }


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.how-it-works-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--gold-border) 0,
    var(--gold-border) 8px,
    transparent 8px,
    transparent 16px
  );
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  position: relative;
}

.how-step__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  position: relative;
  flex-shrink: 0;
}
.how-step__icon-wrap svg {
  width: 36px;
  height: 36px;
  color: var(--saffron);
}

.how-step__number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  font-family: var(--font-body);
  border: 2px solid white;
}

.how-step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--forest);
  margin: 0;
}
.how-step__desc {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
  max-width: 26ch;
  margin: 0 auto;
}


/* ============================================================
   GIFT BUILDER PROMO SECTION
   ============================================================ */
.gift-promo-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.gift-promo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("../assets/icons/texture-jali.svg");
  background-repeat: repeat;
  opacity: 0.06;
  pointer-events: none;
}

.gift-promo-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-xl) 0;
}
.gift-promo-check {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
}
.gift-promo-check svg {
  width: 18px;
  height: 18px;
  color: var(--saffron-light);
  flex-shrink: 0;
}


/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  min-width: calc(33.333% - var(--space-lg) * 2 / 3);
  margin-right: var(--space-lg);
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4C9B4;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  padding: 0;
}
.carousel-dot--active {
  background: var(--saffron);
  width: 24px;
  border-radius: var(--radius-pill);
}
.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #D4C9B4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--warm-white);
  color: var(--forest);
  transition: var(--transition-base);
}
.carousel-arrow:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
}
.carousel-arrow svg { width: 18px; height: 18px; }


/* ============================================================
   INSTAGRAM GRID
   ============================================================ */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}
.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-item:hover img { transform: scale(1.08); }
.instagram-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,74,45,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram-item:hover .instagram-item__overlay { opacity: 1; }
.instagram-item__overlay svg { width: 28px; height: 28px; color: white; }


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large desktop */
@media (max-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
  }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
  .shop-layout {
    grid-template-columns: 220px 1fr;
    gap: var(--space-xl);
  }
  .how-it-works-grid::before { display: none; }
  .split-layout { gap: var(--space-2xl); }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__whatsapp-btn span { display: none; }
  .navbar__hamburger { display: flex; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .split-layout--img-left { direction: ltr; }
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
  .footer__newsletter-inner {
    flex-direction: column;
    gap: var(--space-xl);
  }
  .footer__newsletter-form { max-width: 100%; width: 100%; }
  .testimonial-slide { min-width: 100%; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }

  .section { padding: var(--space-3xl) 0; }
  .section--lg { padding: var(--space-4xl) 0; }
}

/* Mobile */
@media (max-width: 480px) {
  :root { --nav-height: 64px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .step-indicator__label { display: none; }
  .navbar__whatsapp-btn { display: none; }
}
