/* Hero carousel + about image — force visible heights */
.banner { width: 100%; position: relative; }
.banner .swiper.homeHero,
.homeHero.swiper {
  width: 100% !important;
  height: 84vh !important;
}
@media (min-width: 992px) {
  .banner .swiper.homeHero,
  .homeHero.swiper { height: 95vh !important; }
}
@media (min-width: 1280px) {
  .banner .swiper.homeHero,
  .homeHero.swiper { height: 84vh !important; }
}
@media (max-width: 767px) {
  .banner .swiper.homeHero,
  .homeHero.swiper { height: 510px !important; }
}
@media (max-width: 575px) {
  .banner .swiper.homeHero,
  .homeHero.swiper { height: 420px !important; }
}
.banner .homeHero .swiper-wrapper,
.banner .homeHero .swiper-slide {
  height: 100% !important;
}
.banner .homeHero .hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}
.banner .homeHero .hero-bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}
.banner .homeHero .hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(to right, #000000cb, transparent);
}
.banner .homeHero .hero-content-wrap {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
}
.banner .homeHero .swiper-pagination-bullet {
  background: #fff;
  opacity: .6;
}
.banner .homeHero .swiper-pagination-bullet-active {
  background: #FCAB03;
  opacity: 1;
}

.about-image-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}
@media (max-width: 767px) {
  .about-image-box {
    min-height: 50vh;
    height: 50vh;
  }
}
.about-image-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}

/* Next.js policy / about HTML content */
.policy-content {
  line-height: 1.75;
  color: #374151;
}
.policy-content p { margin-bottom: 1rem; }
.policy-content ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.policy-content ol { list-style: decimal; padding-left: 1.25rem; margin-bottom: 1rem; }
.policy-content img { max-width: 100%; height: auto; }
.policy-content h1, .policy-content h2, .policy-content h3 {
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: var(--primary, #00378a);
}

#heroBanner.banner { min-height: 40vh; }

/* ===== Next.js-style navbar dropdowns ===== */
#mainNavbar .nav-dd-trigger {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
}
#mainNavbar .nav-dd-root,
#mainNavbar .nav-dd-panel {
  background: #fff;
  color: #111;
  overflow: visible;
  max-height: none;
}
#mainNavbar .nav-dd-root {
  border-top: 2px solid #FCAB03;
  display: none;
}
#mainNavbar .nav-dd-panel {
  border-top: 2px solid #FCAB03;
}
#mainNavbar .nav-dd-item {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  white-space: nowrap;
}
#mainNavbar .nav-dd-item:last-child {
  border-bottom: 0;
}
#mainNavbar .nav-dd-label,
#mainNavbar .nav-dd-link {
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
}
#mainNavbar .nav-dd-item:hover > .nav-dd-label,
#mainNavbar .nav-dd-item:hover > .nav-dd-link,
#mainNavbar .nav-dd-label:hover,
#mainNavbar .nav-dd-link:hover {
  color: #FCAB03;
}
#mainNavbar .nav-dd-flyout {
  display: none;
  padding-left: 4px;
}
#mainNavbar .nav-has-dd:hover > div > .nav-dd-root {
  display: block;
}
#mainNavbar .nav-dd-item:hover > .nav-dd-flyout {
  display: block;
}
#mainNavbar [data-active='link'].activeLink {
  color: #FCAB03 !important;
}

/* ===== E-shop pill button ===== */
.eshop-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0.35rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe083 0%, #fcb919 42%, #e28c00 100%);
  color: #24170a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -2px 4px rgba(150, 85, 0, 0.35),
    0 4px 12px rgba(252, 171, 3, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

/* Soft glow pooled under the pill, as in the reference design. */
.eshop-btn::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -9px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(252, 171, 3, 0.85) 0%, rgba(252, 171, 3, 0) 72%);
  filter: blur(5px);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.eshop-btn:hover,
.eshop-btn:focus-visible {
  color: #24170a;
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 4px rgba(150, 85, 0, 0.3),
    0 8px 20px rgba(252, 171, 3, 0.55);
}

.eshop-btn:active {
  transform: translateY(0);
}

.eshop-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  font-size: 14px;
  color: #3a2400;
}

.eshop-btn-label {
  text-transform: none;
}

@media (max-width: 1279px) {
  .eshop-btn {
    font-size: 13px;
    padding: 0.35rem 0.8rem 0.35rem 0.4rem;
  }
  .eshop-btn-icon {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
}

/* Inside the mobile drawer the pill sits on its own row. */
.eshop-btn-mobile {
  margin: 0;
  font-size: 15px;
  padding: 0.45rem 1.1rem 0.45rem 0.5rem;
}
.eshop-btn-mobile .eshop-btn-icon {
  width: 26px;
  height: 26px;
  font-size: 14px;
}

/* Desktop Share flyout (Next.js SocialButtons) */
#shareDesktopWrap.share-dd {
  position: relative;
}
#shareDesktopWrap .share-dd-panel {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}
#shareDesktopWrap:hover .share-dd-panel,
#shareDesktopWrap:focus-within .share-dd-panel {
  height: auto;
  padding-top: 2rem;
  padding-bottom: 1.25rem;
  pointer-events: auto;
}
#shareDesktopWrap .share-dd-panel a {
  font-size: 1.125rem;
  line-height: 1;
  transition: transform 0.3s, color 0.2s;
}
#shareDesktopWrap .share-dd-panel a:hover {
  transform: scale(1.1);
  color: #091426;
}

/* Mobile FooterBar padding so content isn't hidden */
@media (max-width: 639px) {
  body {
    padding-bottom: 72px;
  }
  #scrollTop {
    bottom: 5.5rem !important;
  }
}

/* Cart toast + badge */
.cart-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #091426;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 10050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  border: 1px solid #FCAB03;
  white-space: nowrap;
  max-width: 90vw;
}
.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cart-badge {
  line-height: 1;
}

/* Policy content (Next parity) */
.policy-content ul { list-style: disc; padding-left: 1.25rem; margin: 0.75rem 0; }
.policy-content ol { list-style: decimal; padding-left: 1.25rem; margin: 0.75rem 0; }
.policy-content p { margin: 0.75rem 0; line-height: 1.7; }
.policy-content a { color: #2563eb; text-decoration: underline; }
.policy-content h2, .policy-content h3, .policy-content strong { color: #091426; }



