/* =============================================
   Altona Stationers - Custom Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --primary: #1A335D;
  --accent: #D97D3A;
  --accent-light: #f9a057;
  --light-bg: #F5F7FA;
  --text-dark: #444;
  --text-muted: #6b7a8d;
  --border: #e2e8f0;
  --white: #ffffff;
  --card-shadow: 0 2px 12px rgba(26,46,74,0.07);
  --card-shadow-hover: 0 8px 30px rgba(26,46,74,0.14);
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  margin: 0;
}

.container {
  max-width: 1200px;
}
.navcontainer {
  max-width: 100%;
}
.py-7 {
  padding: 4em 0;
}


/* ── TOP BAR ── */
.top-bar {
  background: var(--primary);
  color: #FFFFFF80;
  font-size: 12px;
  padding: 10px 0;
}
.top-bar a { color: #c8d6e8; text-decoration: none; }
.top-bar a:hover { color: var(--white); }
.top-bar .separator { margin: 0 20px; opacity: 0.4; }

.top-bar a i {
  padding-right: 5px;
  display: inline-block;
}

/* ── NAVBAR ── */
.main-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.navbar-brand img { height: 52px; }

.search-bar {
  position: relative;
  flex: 1;
  max-width: 412px;
  margin-left: 14%;
}
.search-bar input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #F5F7FA;
  padding: 8px 44px 8px 16px;
  font-size: 0.80rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}
.search-bar input:focus { border-color: var(--accent); }
.search-bar button {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  background: var(--accent);
  border: none;
  border-radius: 0 6px 6px 0;
  padding: 0 14px;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition);
}
.search-bar button:hover { background: #d0681a; }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 4px 8px;
}
.cart-badge {
  position: absolute;
  top: -2px; right: -4px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  width: 17px; height: 17px;
  display: flex; align-items: center; justify-content: center;
}
.login-btn {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: flex; align-items: center; gap: 5px;
}
.login-btn:hover { color: var(--accent); }

/* ── CATEGORY NAV ── */
.cat-nav {
  background: url(../images/nav-bg.svg) repeat-x left 4px #1A335D;
  padding: 5px 0 6px 0 !important;
}
.cat-nav .navbar-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px !important;
  letter-spacing: 0.02em;
  transition: color var(--transition), background var(--transition);
  margin-right: 5px;
}
.cat-nav .navbar-nav .nav-link:hover,
.cat-nav .navbar-nav .nav-link:focus {
  color: var(--white) !important;
  background: rgba(255,255,255,0.1);
}
/* Nav link + mobile toggle wrapper */
.nav-link-wrap {
  display: flex;
  align-items: center;
}
.nav-link-wrap .nav-link {
  flex: 1;
}

/* Desktop dropdown arrow — CSS-only caret after label */
@media (min-width: 992px) {
  .hover-dropdown > .nav-link-wrap > .nav-link::after {
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 4px solid rgba(255,255,255,0.75);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 0;
    transition: transform 0.2s ease, border-top-color 0.2s ease;
  }
  .hover-dropdown.show > .nav-link-wrap > .nav-link::after,
  .hover-dropdown:hover > .nav-link-wrap > .nav-link::after {
    transform: rotate(-180deg);
    border-top-color: var(--white);
  }
}

/* Mobile + toggle button (hidden on desktop) */
.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  padding: 8px 14px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition), transform 0.2s ease;
}
.mobile-toggle-btn:hover { color: var(--white); }

/* Show + button only on mobile */
@media (max-width: 991px) {
  .mobile-toggle-btn { display: flex; align-items: center; }

  /* Mobile dropdown — flat list, indented */
  .cat-nav .hover-dropdown .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
    border-radius: 0;
    background: rgba(0,0,0,0.18);
    border: none;
    padding: 4px 0;
    margin: 0;
    display: none;
  }
  .cat-nav .hover-dropdown .dropdown-menu.show { display: block; }
  .cat-nav .hover-dropdown .dropdown-item {
    color: rgba(255,255,255,0.8);
    padding-left: 32px;
    font-size: 0.82rem;
  }
  .cat-nav .hover-dropdown .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
  }
  .cat-nav .dropdown-divider { border-color: rgba(255,255,255,0.1); }
}

.cat-nav .dropdown-menu {
  background: var(--white);
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  min-width: 220px;
  padding: 8px 0;
  margin-top: 0;
}
.cat-nav .dropdown-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 9px 20px;
  transition: background var(--transition), color var(--transition);
}
.cat-nav .dropdown-item:hover {
  background: var(--light-bg);
  color: var(--accent);
}
.cat-nav .navbar-toggler { border-color: rgba(255,255,255,0.3); }
.cat-nav .navbar-toggler-icon {
  filter: invert(1);
}

/* ── HERO CAROUSEL ── */
.hero-carousel .carousel-item {
  height: 600px;
  background: #1a2636;
  position: relative;
  overflow: hidden;
}
.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}
.hero-carousel .carousel-caption {
  left: 14%;
  right: auto;
  text-align: left;
  bottom: auto;
  top: 48%;
  transform: translateY(-50%);
  padding: 0;
  max-width: 800px;
}
.hero-carousel .carousel-caption .badge-label {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.hero-carousel .carousel-caption h1 {
  font-family: "Outfit", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 14px;
}
.hero-carousel .carousel-caption p {
  color: rgba(255,255,255,0.82);
  font-size: 21px;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 80%;
}
.hero-carousel .btn-hero {
  background: #197EDC;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  padding: 11px 26px;
  text-decoration: none;
  display: inline-block;
  transition: background var(--transition), transform var(--transition);
}
.hero-carousel .btn-hero:hover {
  background: #186FC1;
  transform: translateY(-1px);
}

/* Custom carousel arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background var(--transition);
  opacity: 1;
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev:hover,
.carousel-control-next:hover { background: rgba(255,255,255,0.32); }
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 18px; height: 18px; }

.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 4px;
  transition: background var(--transition), transform var(--transition);
}
.carousel-indicators .active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #EB7215;
  display: block;
  margin-bottom: 6px;
}
.section-title {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0;
}

/* ── CATEGORY CARDS ── */
.cat-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  height: 182px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.cat-card .cat-name {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* ── PRODUCT CARDS ── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}
.product-img-wrap {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 323px;
  overflow: hidden;
}
.product-img-wrap img {
  max-height: 98%;
  max-width: 98%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.35s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6A9ED0;
  margin-bottom: 4px;
}
.product-name {
  font-size: 18px;
  font-weight: 800;
  color: #555;
  margin-bottom: 10px;
  flex: 1;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.price-current {
  font-size: 18px;
  font-weight: 800;
  color: #D97D3A;
}
.price-was {
  font-size: 16px;
  color: #757575;
  text-decoration: line-through;
}
.btn-add {
  background: #1A335D;
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-add:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.view-all-link {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition), gap var(--transition);
}
.view-all-link:hover { color: var(--accent); gap: 8px; }

/* ── PROMO BANNER ── */
.promo-banner {
  background: #D97D3A;
  padding: 36px 0;
}
.promo-banner h2 {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
}
.promo-banner p { color: rgba(255,255,255,0.70); font-size: 16px; margin: 0; }
.btn-promo {
  background: var(--white);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.88rem;
  border: none;
  border-radius: 6px;
  padding: 11px 26px;
  text-decoration: none;
  display: inline-block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  color: var(--accent);
}

/* ── ABOUT SECTION ── */
.about-section { background: var(--white); }
.about-img {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}
.about-img img {
  width: 94%; height: 94%;
  object-fit: cover;
  display: block;
  box-shadow: 1px 1px 20px #497ED640;
  border-radius: 15px;
}
.about-content { padding: 20px 0 20px 20px; }
.about-content h2 {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  line-height: 1.25;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 16px;
}
.about-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.50;
}

/* ── FOOTER ── */
.site-footer {
  background: #1B2940;
  color: #ffffff90;
  padding: 52px 0 0;
}
.footer-brand { margin-bottom: 14px; }
.footer-brand img { height: 44px; filter: brightness(0) invert(1); }
.footer-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.payment-icons img { height: 22px; margin-right: 6px; opacity: 0.8; }
.footer-heading {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  background: url(../images/line.png) no-repeat left bottom;
}
.footer-links { padding: 0; margin: 0 0 0 15px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  margin-top: 40px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.76rem;
  margin: 0;
}

/* ── UTILITY ── */
.section-divider { height: 1px; background: var(--border); }


/* ── Breadcrumb ── */
    .pd-breadcrumb {
      background: #f4f6f9;
      border-bottom: 1px solid var(--border);
      padding: 10px 0;
    }
    .pd-breadcrumb .breadcrumb {
      margin: 0;
      font-size: 0.8rem;
    }
    .pd-breadcrumb .breadcrumb-item a {
      color: var(--text-muted);
      text-decoration: none;
    }
    .pd-breadcrumb .breadcrumb-item a:hover { color: var(--accent); }
    .pd-breadcrumb .breadcrumb-item.active { color: var(--accent); font-weight: 700; }
    .pd-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

    /* ── Gallery wrapper ── */
    .gallery-col {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    /* ── Vertical thumbnails ── */
    .thumb-strip {
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex-shrink: 0;
      width: 72px;
    }
    .thumb-item {
      width: 72px;
      height: 72px;
      border: 2px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      background: #f8f9fb;
      transition: border-color 0.2s, transform 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .thumb-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }
    .thumb-item:hover { border-color: var(--accent); transform: translateY(-2px); }
    .thumb-item.active { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,119,34,0.18); }

    /* ── Main image ── */
    .main-image-wrap {
      flex: 1;
      border: 1.5px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      background: #f8f9fb;
      position: relative;
      aspect-ratio: 1 / 1;
      cursor: zoom-in;
      width: 100%
    }
    .main-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: opacity 0.25s ease, transform 0.35s ease;
      display: block;
    }
    .main-image-wrap:hover img { transform: scale(1.04); }

    /* Zoom icon badge */
    .zoom-hint {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: rgba(26,46,74,0.55);
      color: #fff;
      border-radius: 6px;
      padding: 5px 8px;
      font-size: 0.78rem;
      display: flex;
      align-items: center;
      gap: 4px;
      pointer-events: none;
      backdrop-filter: blur(4px);
    }

    /* ── Product info ── */
    .pd-info { padding-left: 12px; }
   
    .pd-divider { border-top: 1px solid var(--border); margin: 16px 0; }
    .pd-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 0;
    }
    .pd-features { list-style: none; padding: 0; margin: 0; }
    .pd-features li {
      font-size: 0.88rem;
      color: var(--text-dark);
      padding: 6px 0;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }
    .pd-features li:last-child { border-bottom: none; }
    .pd-features li strong { white-space: nowrap; }
    .pd-features li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

    /* ── Price & Add to cart bar ── */
    .pd-buy-bar {
      background: #f8f9fb;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 20px;
    }
    .pd-price-current {
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--accent);
    }
    .pd-price-was {
      font-size: 1rem;
      color: var(--text-muted);
      text-decoration: line-through;
      margin-left: 8px;
    }
    .pd-save-badge {
      background: #eaf7ee;
      color: #1a7a3c;
      font-size: 0.72rem;
      font-weight: 800;
      border-radius: 20px;
      padding: 3px 9px;
      margin-left: 8px;
    }
    .btn-add-to-cart {
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 8px;
      padding: 12px 28px;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-add-to-cart:hover { background: var(--accent); transform: translateY(-1px); }

    /* ═══════════════════════════════════════
       LIGHTBOX OVERLAY
    ═══════════════════════════════════════ */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(10,16,26,0.92);
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
    }
    #lightbox.active { display: flex; }

    .lb-inner {
      position: relative;
      max-width: min(90vw, 820px);
      max-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #lb-img {
      max-width: 100%;
      max-height: 85vh;
      border-radius: 10px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.5);
      object-fit: contain;
      display: block;
      transition: opacity 0.2s;
    }

    /* Close button */
    .lb-close {
      position: fixed;
      top: 18px;
      right: 22px;
      background: rgba(255,255,255,0.12);
      border: none;
      color: #fff;
      font-size: 1.4rem;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
      transition: background 0.2s;
    }
    .lb-close:hover { background: rgba(255,255,255,0.25); }

    /* Prev / Next arrows */
    .lb-prev, .lb-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.14);
      border: 1.5px solid rgba(255,255,255,0.25);
      color: #fff;
      font-size: 1.1rem;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      backdrop-filter: blur(4px);
    }
    .lb-prev { left: -60px; }
    .lb-next { right: -60px; }
    .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.28); }

    /* Counter */
    .lb-counter {
      position: fixed;
      bottom: 22px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.6);
      font-size: 0.8rem;
      letter-spacing: 0.06em;
    }

    /* Thumbnail strip in lightbox */
    .lb-thumbs {
      position: fixed;
      bottom: 44px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }
    .lb-thumb-dot {
      width: 52px;
      height: 52px;
      border-radius: 6px;
      overflow: hidden;
      border: 2px solid rgba(255,255,255,0.25);
      cursor: pointer;
      transition: border-color 0.2s;
      flex-shrink: 0;
    }
    .lb-thumb-dot img { width: 100%; height: 100%; object-fit: cover; }
    .lb-thumb-dot.active { border-color: var(--accent); }

.cart-container{
    padding:15px 0 60px 0;
}

.glass-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    overflow:hidden;
    transition:.4s;
}

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

.product-image{
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:20px;
}

.qty-control{
    display:flex;
    align-items:center;
    gap:12px;
}

.qty-btn{
    width:25px;
    height:25px;
    border-radius:50%;
    border:none;
    font-size:16px;
    font-weight:bold;
}

.qty-number{
    font-size:18px;
    min-width:25px;
    text-align:center;
    font-weight:bold;
}

.summary-card{
    position:sticky;
    background: #cccccc20;
    top:30px;
    border-radius: 8px;
    border: solid 1px #cccccc70;
}

.price{
    color:#D97D3A;
    font-size:20px;
    font-weight:700;
}

.remove-btn{
    border-radius:20px;
}

.checkout-btn{
    border-radius:8px;
    padding:12px;
    font-size:18px;
    background: #1A335D;
}

.checkout-btn:hover {
  background: #333;
}

    

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-carousel .carousel-item { height: 380px; }
  .hero-carousel .carousel-caption h1 { font-size: 1.9rem; }
  .cat-nav .navbar-collapse { background: var(--primary); padding: 8px 0 12px; }
  .about-content { padding: 24px 0 0; }
}
@media (max-width: 767px) {
  .cta-links {
    display: none;
  }
  .hero-carousel .carousel-item { height: 320px; }
  .hero-carousel .carousel-caption { left: 5%; right: 5%; }
  .hero-carousel .carousel-caption h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.4rem; }
  .promo-banner h2 { font-size: 1.4rem; }
  .promo-banner .text-end { text-align: left !important; margin-top: 16px; }

  .gallery-col { flex-direction: column-reverse; }
      .thumb-strip {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
      }
      .thumb-item { flex-shrink: 0; }
      .pd-info { padding-left: 0; margin-top: 20px; }
      .pd-info h1 { font-size: 1.35rem; }
      .lb-prev { left: -46px; }
      .lb-next { right: -46px; }
      .lb-thumbs { display: none; }

      
}
@media (max-width: 575px) {
  .hero-carousel .carousel-item { height: 260px; }
  .hero-carousel .carousel-caption h1 { font-size: 1.60rem; }
  .hero-carousel .carousel-caption p { display: none; }
  .search-bar { max-width: 100%; margin-left: 0;  }
  .navbar-brand img { margin-bottom: 6px;}
  .cat-nav {
    background-image: none;
  }

  .product-img-wrap {
    height: 200px;
  }
  .mob-thumb {
    margin-bottom: 10px;
  }
}