/* ── Subscription Page Layout ── */
.hb-page-subscription {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  /* Center in remaining viewport (viewport - fixed header - footer) */
  min-height: calc(100vh - var(--hb-header-height) - var(--hb-footer-height));
  margin-top: var(--hb-header-height); /* Push below fixed header */
  display: flex;
  flex-direction: column;
}

/* ── Single Product: Full Width Override ──
   Hello Elementor parent theme wraps main in .site-main with max-width.
   Force full viewport width for product detail page only.
*/
body.single-product .site-main,
body.single-product main.hb-page-subscription,
body.single-product #hb-page-subscription {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}
.hb-page-subscription__no-margin {
  margin-top: 0 !important;
}

/* ── Unified Content Wrapper ──
   Single wrapper for all pages: cart, checkout, account, auth,
   subscription, shop, and generic pages.
   - Centers vertically when content < viewport (via parent justify-content)
   - ~64px padding when content > viewport
*/
.hb-content-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  flex-direction: column;
}

/* ── Content Wrapper Responsive ── */
@media (max-width: 768px) {
  .hb-content-wrap {
    padding: 48px 16px;
  }
}

@media (max-width: 600px) {
  .hb-content-wrap {
    padding: 32px 16px;
  }
}

/* ── Backward-compatible aliases ──
   Legacy class names kept for any remaining direct references.
*/
.hb-cart-wrap,
.hb-checkout-wrap,
.hb-account-wrap,
.hb-auth-wrap,
.hb-shop-wrap,
.hb-page-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .hb-cart-wrap,
  .hb-checkout-wrap,
  .hb-account-wrap,
  .hb-auth-wrap,
  .hb-shop-wrap,
  .hb-page-content {
    padding: 48px 16px;
  }
}

@media (max-width: 600px) {
  .hb-cart-wrap,
  .hb-checkout-wrap,
  .hb-account-wrap,
  .hb-auth-wrap,
  .hb-shop-wrap,
  .hb-page-content {
    padding: 32px 16px;
  }
}

/* ── Video Background Layer ── */
.hb-sub-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hb-sub-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.hb-sub-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom left,
    rgba(216, 31, 41, 0.8) 25%,
    rgba(249, 182, 23, 0.8)
  );
}

/* ── Header ── */
.hb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.hb-header.scrolled {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

/* ── Top Bar ── */
.hb-header__top {
  background-color: black;
  height: var(--hb-header-top-height);
  padding: 0 20px;
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
}

.hb-header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1296px;
  margin: 0 auto;
}

.hb-header__contact {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hb-header__contact li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #fff;
}

.hb-header__contact svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.hb-header__signin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #ba2025;
  text-decoration: none;
  font-weight: 600;
}

.hb-header__signin:hover {
  color: #8b181b;
}

.hb-header__signin svg {
  width: 14px;
  height: 14px;
}

/* ── Main Header ── */
.hb-header__main {
  max-width: 1400px;
  height: var(--hb-header-main-height);
  padding: 0 10px;
  display: flex;
  align-items: center;
  transition: height 0.3s ease;
  margin: 0 auto;
}

/* ── Logo ── */
.hb-header__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.hb-header__logo-img {
  width: 50px;
  height: auto;
}

/* hb-brand defaults from components.css; header needs no size override (default 18px matches) */
.hb-header__logo .hb-brand {
  margin-left: 0;
}

/* ── Divider ── */
.hb-header__divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 15px;
}

/* ── Navigation ── */
.hb-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.hb-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hb-nav .menu-item {
  margin: 0;
}

.hb-nav .menu-item a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: color 0.2s ease;
}

.hb-nav .menu-item a:hover,
.hb-nav .menu-item.current-menu-item a {
  color: #fff;
}

/* ── Navigation Icons ── */
.hb-nav .menu-item a svg,
.hb-nav .menu-item a i {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

.hb-nav .menu-item a span {
  vertical-align: middle;
}

/* ── Cart Badge ── */
.hb-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #d81f29;
  border-radius: 9px;
  vertical-align: middle;
}

/* ── Mobile Toggle (hamburger — always pushed to the right) ── */
.hb-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.hb-header__toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hb-header__toggle[aria-expanded="true"] .hb-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hb-header__toggle[aria-expanded="true"] .hb-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.hb-header__toggle[aria-expanded="true"] .hb-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Backdrop ── */
.hb-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hb-menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Mobile Navigation (right-side drawer) ── */
.hb-header__mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: rgba(15, 7, 3, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 200;
  padding: 80px 0 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.hb-header__mobile-nav.active {
  transform: translateX(0);
}

/* ── Mobile nav list — vertical layout ── */
/* Covers both real menu (.hb-mobile-nav) and fallback (.hb-nav) */
.hb-header__mobile-nav .hb-mobile-nav,
.hb-header__mobile-nav .hb-nav {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.hb-header__mobile-nav .hb-mobile-nav .menu-item a,
.hb-header__mobile-nav .hb-nav .menu-item a {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.hb-header__mobile-nav .hb-mobile-nav .menu-item a:hover,
.hb-header__mobile-nav .hb-nav .menu-item a:hover,
.hb-header__mobile-nav .hb-mobile-nav .menu-item.current-menu-item a,
.hb-header__mobile-nav .hb-nav .menu-item.current-menu-item a {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* ── Mobile Nav Icons ── */
.hb-header__mobile-nav .menu-item a svg,
.hb-header__mobile-nav .menu-item a i {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  flex-shrink: 0;
  opacity: 0.7;
}

.hb-header__mobile-nav .menu-item.current-menu-item a svg,
.hb-header__mobile-nav .menu-item a:hover svg,
.hb-header__mobile-nav .menu-item.current-menu-item a i,
.hb-header__mobile-nav .menu-item a:hover i {
  opacity: 1;
}

/* ── Mobile Cart Badge ── */
.hb-header__mobile-nav .hb-cart-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  margin-left: 8px;
  font-size: 11px;
  border-radius: 10px;
}

/* ── Header Responsive ── */
@media (max-width: 1024px) {
  .hb-header__nav {
    display: none;
  }

  .hb-header__toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  /* Header height adjustments for mobile */
  :root {
    --hb-header-top-height: 48px;
    --hb-header-main-height: 72px;
    --hb-header-height: 120px;
  }

  .hb-header__top-inner {
    flex-direction: column;
    gap: 8px;
  }

  .hb-header__contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hb-header__contact li {
    font-size: 9px;
  }

  .hb-header__signin {
    font-size: 9px;
  }

  .hb-header__divider {
    display: none;
  }

  .hb-header__main {
    padding: 0 12px;
    justify-content: space-between;
  }

  .hb-header__logo-img {
    width: 38px;
  }

  .hb-header__logo .hb-brand {
    --hb-brand-base: 15px;
  }

}

@media (max-width: 480px) {
  :root {
    --hb-header-top-height: 56px;
    --hb-header-main-height: 64px;
    --hb-header-height: 120px;
  }

}

/* ============================================================
   Happy Buddha — Footer Styles
   ============================================================ */

/* ── Footer Container ── */
.hb-footer {
  background-color: #3d2b1f;
  height: var(--hb-footer-height);
  padding: 20px 10px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.hb-footer__inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}

/* ── Footer Brand ── */
.hb-footer__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hb-footer__logo {
  width: 50px;
  height: auto;
}

.hb-footer__brand-text {
  display: flex;
  flex-direction: column;
  margin-left: 0;
}

.hb-footer__brand .hb-brand {
  --hb-brand-base: 18px;
  --hb-brand-stroke: 0.3px;
}

.hb-footer__brand-title {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.hb-footer__brand-name {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #aa0000;
  stroke-width: 0.3px;
  stroke: white;
  -webkit-text-stroke-width: 0.3px;
  -webkit-text-stroke-color: white;
  line-height: 1;
}

.hb-footer__reg {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  line-height: 1;
  margin-left: 2px;
  margin-top: -2px;
}

.hb-footer__tagline {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: 10px;
  font-weight: 400;
  color: white;
  line-height: 1.3;
  text-align: center;
}

/* ── Footer Divider ── */
.hb-footer__divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 20px;
}

/* ── Footer Bottom Section ── */
.hb-footer__bottom {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

/* ── Footer Links ── */
.hb-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.hb-footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.hb-footer__link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ── Footer Copyright ── */

.hb-footer__copyright p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.hb-footer__copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.hb-footer__copyright a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ── Footer Responsive ── */
@media (max-width: 768px) {
  :root {
    --hb-header-top-height: 48px;
    --hb-header-main-height: 72px;
    --hb-header-height: 120px;
    --hb-footer-height: 180px;
  }

  .hb-footer {
    height: var(--hb-footer-height);
    padding: 24px 16px;
  }

  .hb-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .hb-footer__brand {
    margin-bottom: 0;
  }

  .hb-footer__divider {
    display: none;
  }

  .hb-footer__bottom {
    gap: 12px;
    align-items: center;
    width: 100%;
  }

  .hb-footer__links {
    justify-content: center;
    gap: 12px;
  }

  .hb-footer__link {
    font-size: 11px;
  }

  .hb-footer__copyright {
    text-align: center;
  }

  .hb-footer__copyright p {
    font-size: 11px;
    line-height: 1.5;
  }

  .hb-footer__brand-text {
    align-items: center;
  }

  .hb-footer__brand-title {
    justify-content: center;
  }

  .hb-footer__brand .hb-brand {
    --hb-brand-base: 16px;
  }

  .hb-footer__brand .hb-brand__tagline {
    font-size: 9px;
  }

  .hb-footer__logo {
    width: 40px;
  }
}

@media (max-width: 480px) {
  :root {
    --hb-header-top-height: 56px;
    --hb-header-main-height: 64px;
    --hb-header-height: 120px;
    --hb-footer-height: 180px;
  }
}

/* ============================================================
   Happy Buddha — Shop Page Styles (Figma: node 48:2)
   ============================================================ */

/* ── Shop Layout ──
   Wrapper CSS unified above in backward-compatible aliases section */

/* ── Hero Banner ── */
.hb-shop-hero {
  position: relative;
  background: linear-gradient(
    to right,
    rgba(61, 43, 31, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  margin-bottom: 32px;
  box-shadow:
    0px 20px 25px -5px rgba(0, 0, 0, 0.1),
    0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.hb-shop-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hb-shop-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hb-shop-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(61, 43, 31, 0.8) 0%,
    rgba(61, 43, 31, 0.5) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hb-shop-hero__content {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 512px;
}

.hb-shop-hero__title {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: 35.2px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.88px;
  margin: 0 0 16px;
}

.hb-shop-hero__subtitle {
  font-family: "Poppins", "Plus Jakarta Sans", sans-serif;
  font-size: 15.2px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0 0 32px;
}

.hb-shop-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #f3b255 0%, #d48a28 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  text-decoration: none;
  box-shadow:
    0px 10px 15px rgba(0, 0, 0, 0.1),
    0px 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.hb-shop-hero__cta:hover {
  color: #fff;
  text-decoration: none;
  transform: scale(1.02);
}

/* ── Feature Badges ── */
.hb-shop-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hb-shop-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  padding: 16px 24px;
  min-width: 140px;
}

.hb-shop-feature__icon {
  width: 20px;
  height: 20px;
}

.hb-shop-feature__text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(61, 43, 31, 0.7);
  text-align: center;
}

/* ── Products Grid ── */
.hb-shop-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

/* ── Product Card ── */
.hb-product-card {
  position: relative;
  background: linear-gradient(137deg, #fff5f0 0%, #ffe8db 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hb-product-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0px 20px 25px -5px rgba(0, 0, 0, 0.15),
    0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.hb-product-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.hb-product-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #4b6b44;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 9999px;
  z-index: 2;
}

.hb-product-card__badge--golden {
  background: linear-gradient(180deg, #f3b255 0%, #d48a28 100%);
}

.hb-product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 256px;
  padding: 40px;
  background: linear-gradient(154deg, #ffe8db 0%, #ffd9c8 100%);
}

.hb-product-card__image img {
  max-width: 123px;
  height: auto;
  object-fit: contain;
}

.hb-product-card__content {
  padding: 24px;
}

/* Rating */
.hb-product-card__rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}

.hb-product-card__rating-count {
  font-size: 12px;
  color: rgba(61, 43, 31, 0.4);
  margin-left: 8px;
}

/* Title */
.hb-product-card__title {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: 18.4px;
  font-weight: 500;
  color: #3d2b1f;
  text-transform: uppercase;
  letter-spacing: 0.46px;
  margin: 0 0 8px;
}
.hb-product-card__title-variant {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.3px;
  color: rgba(61, 43, 31, 0.5);
  margin-top: 4px;
}

/* Variant */
.hb-product-card__variant {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: #d48a28;
  margin: 0 0 12px;
}

/* Description */
.hb-product-card__desc {
  font-size: 14px;
  line-height: 1.63;
  color: rgba(61, 43, 31, 0.6);
  margin: 0 0 20px;
}

/* Footer */
.hb-product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hb-product-card__price {
  display: flex;
  flex-direction: column;
}

.hb-product-card__price-main {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 28.8px;
  font-weight: 400;
  color: #3d2b1f;
}

.hb-product-card__coming-soon {
  display: inline-block;
  background: #b8860b;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 9999px;
}

.hb-product-card__price-sub {
  font-size: 12px;
  color: rgba(61, 43, 31, 0.4);
}

.hb-product-card__price-sub strong {
  color: #4b6b44;
  font-weight: 600;
}

.hb-product-card__view {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #d48a28;
  transition: gap 0.15s ease;
}

.hb-product-card:hover .hb-product-card__view {
  gap: 8px;
}

/* ── Subscription CTA ── */
.hb-shop-cta {
  position: relative;
  background: linear-gradient(164deg, #fff5f0 0%, #ffe8db 100%);
  border-radius: 24px;
  padding: 48px;
  padding-top: 64px;
  text-align: center;
  box-shadow:
    0px 20px 25px rgba(0, 0, 0, 0.1),
    0px 8px 10px rgba(0, 0, 0, 0.1);
  margin-top: 48px;
}

.hb-shop-cta__logo {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: auto;
  z-index: 2;
}

.hb-shop-cta__logo img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hb-shop-cta__logo {
    width: 48px;
    top: -24px;
  }
}

.hb-shop-cta__content {
  max-width: 500px;
  margin: 0 auto;
  padding-top: 16px;
}

.hb-shop-cta__title {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: 22.4px;
  font-weight: 500;
  color: #3d2b1f;
  text-transform: uppercase;
  letter-spacing: 0.56px;
  margin: 0 0 12px;
}

.hb-shop-cta__desc {
  font-family: "Poppins", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(61, 43, 31, 0.6);
  margin: 0 0 32px;
}

.hb-shop-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #f3b255 0%, #d48a28 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  text-decoration: none;
  box-shadow:
    0px 10px 15px rgba(0, 0, 0, 0.1),
    0px 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.hb-shop-cta__btn:hover {
  color: #fff;
  text-decoration: none;
  transform: scale(1.02);
}

/* ── Shop Empty State ── */
.hb-shop-empty {
  text-align: center;
  padding: 48px;
  background: linear-gradient(137deg, #fff5f0 0%, #ffe8db 100%);
  border-radius: 24px;
  font-size: 16px;
  color: rgba(61, 43, 31, 0.6);
}

/* ── Hide Default WooCommerce Elements ── */
.post-type-archive-product .woocommerce-breadcrumb,
.post-type-archive-product .woocommerce-result-count,
.post-type-archive-product .woocommerce-ordering,
.post-type-archive-product .products-header {
  display: none;
}

/* Remove WooCommerce product loop wrapper */
.hb-shop-products .woocommerce-loop-product__link {
  display: none;
}

/* ── Shop Responsive ── */
@media (max-width: 900px) {
  .hb-shop-products {
    grid-template-columns: 1fr;
  }
  .hb-shop-hero__content {
    padding: 32px;
  }
  .hb-shop-hero__title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  /* Wrapper responsive handled by unified section above */
  .hb-shop-hero {
    min-height: 280px;
  }
  .hb-shop-hero__title {
    font-size: 24px;
  }
  .hb-shop-hero__subtitle {
    font-size: 14px;
  }
  .hb-shop-features {
    flex-direction: row;
  }
  .hb-shop-feature {
    flex: 1;
    min-width: 100px;
    padding: 12px 16px;
  }
  .hb-product-card__image {
    min-height: 200px;
    padding: 32px;
  }
  .hb-shop-cta {
    padding: 32px 24px;
  }
  .hb-shop-cta__title {
    font-size: 20px;
  }
}

/* ============================================================
   My Account — Address Form (hb-acct-*)
   ============================================================ */

.hb-acct-form {
  margin: 0;
}

/* Card with Figma gradient */
.hb-acct-card {
  background: linear-gradient(151deg, #fff5f0 0%, #ffe8db 100%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Layout rows */
.hb-acct-row {
  display: grid;
  gap: 16px;
}
.hb-acct-row--2col {
  grid-template-columns: 1fr 1fr;
}
.hb-acct-row--3col {
  grid-template-columns: 1fr 1fr 1fr;
}
.hb-acct-field {
  display: flex;
  flex-direction: column;
}

/* WooCommerce form-row reset inside card (both address and profile forms) */
.hb-acct-card .form-row,
.hb-acct-card .woocommerce-form-row {
  margin: 0;
  padding: 0;
  float: none;
  width: auto !important;
}

/* Labels */
.hb-acct-card .form-row label,
.hb-acct-card .form-row > label,
.hb-acct-card .woocommerce-form-row label,
.hb-acct-card .woocommerce-form-row > label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(61, 43, 31, 0.7);
  margin-bottom: 6px;
  order: unset;
}
.hb-acct-card .form-row .optional,
.hb-acct-card .woocommerce-form-row .optional {
  opacity: 0.5;
  font-weight: 400;
}

/* Inputs & selects — styles live in pages.css */

/* Display name hint text */
.hb-acct-card .woocommerce-form-row em {
  display: block;
  font-size: 12px;
  color: rgba(61, 43, 31, 0.5);
  margin-top: 6px;
  font-style: italic;
}

/* Password fieldset */
.hb-acct-card fieldset {
  border: 1.5px solid rgba(61, 43, 31, 0.12);
  border-radius: 12px;
  padding: 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hb-acct-card fieldset legend {
  font-size: 13px;
  font-weight: 600;
  color: rgba(61, 43, 31, 0.55);
  padding: 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Select2 overrides */
.hb-acct-card .select2-container--default .select2-selection--single {
  border: 2px solid rgba(61, 43, 31, 0.1) !important;
  border-radius: 14px !important;
  height: 48px !important;
  line-height: 44px !important;
  background: #fff !important;
}
.hb-acct-card
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 44px !important;
  padding: 0 32px 0 16px !important;
  color: #3d2b1f !important;
  font-size: 14px;
}
.hb-acct-card
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 46px !important;
  right: 12px !important;
}
.hb-acct-card
  .select2-container--default.select2-container--open
  .select2-selection--single,
.hb-acct-card
  .select2-container--default.select2-container--focus
  .select2-selection--single {
  border-color: #d48a28 !important;
  outline: none;
}

/* Validation error state */
.hb-acct-card .form-row.woocommerce-invalid input,
.hb-acct-card .form-row.woocommerce-invalid select {
  border-color: #bd0916 !important;
}
.hb-acct-card .form-row .woocommerce-error,
.hb-acct-card .form-row em.required {
  color: #bd0916;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

/* Action buttons */
.hb-acct-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.hb-acct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    opacity 0.15s ease,
    box-shadow 0.15s ease;
  text-decoration: none;
}

.hb-acct-btn--save {
  background: linear-gradient(180deg, #f3b255 0%, #d48a28 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(212, 138, 40, 0.35);
}
.hb-acct-btn--save:hover {
  opacity: 0.9;
  box-shadow: 0 6px 16px rgba(212, 138, 40, 0.45);
  color: #fff;
}

.hb-acct-btn--cancel {
  background: transparent;
  color: rgba(61, 43, 31, 0.65);
  border: 2px solid rgba(61, 43, 31, 0.2);
}
.hb-acct-btn--cancel:hover {
  border-color: rgba(61, 43, 31, 0.4);
  color: #3d2b1f;
}

/* Responsive */
@media (max-width: 600px) {
  .hb-acct-row--2col,
  .hb-acct-row--3col {
    grid-template-columns: 1fr;
  }
  .hb-acct-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hb-acct-btn {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════
   Order Confirmation / Thank You Page
   ══════════════════════════════════════════════════ */
.hb-thankyou-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 48px 24px;
}

.hb-thankyou {
  background: linear-gradient(137.5deg, #fff5f0 0%, #ffe8db 100%);
  border-radius: 28px;
  padding: 48px 40px 40px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  box-shadow:
    0 20px 40px rgba(61, 43, 31, 0.12),
    0 4px 12px rgba(61, 43, 31, 0.06);
}

/* Icon */
.hb-thankyou__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
}
.hb-thankyou__icon-wrap.hb-thankyou__icon--success {
  background: linear-gradient(135deg, #d4edda 0%, #a8d5b5 100%);
  color: #2d7a4f;
  box-shadow: 0 8px 20px rgba(45, 122, 79, 0.2);
}
.hb-thankyou__icon-wrap.hb-thankyou__icon--pending {
  background: linear-gradient(135deg, #fff3cd 0%, #f5d78e 100%);
  color: #b07d28;
  box-shadow: 0 8px 20px rgba(176, 125, 40, 0.2);
}

/* Headline */
.hb-thankyou__headline {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #3d2b1f;
  margin: 0 0 8px;
}
.hb-thankyou__subline {
  font-size: 15px;
  color: rgba(61, 43, 31, 0.65);
  margin: 0 0 32px;
  line-height: 1.5;
}

/* Meta pills row */
.hb-thankyou__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.hb-thankyou__meta-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(61, 43, 31, 0.08);
}
.hb-thankyou__meta-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(61, 43, 31, 0.45);
}
.hb-thankyou__meta-value {
  font-size: 13px;
  font-weight: 700;
  color: #3d2b1f;
}
.hb-thankyou__status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 11px;
}
.hb-thankyou__status--processing,
.hb-thankyou__status--on-hold {
  background: rgba(212, 138, 40, 0.15);
  color: #a06a1a;
}
.hb-thankyou__status--completed {
  background: rgba(45, 122, 79, 0.12);
  color: #2d7a4f;
}
.hb-thankyou__status--pending {
  background: rgba(61, 43, 31, 0.08);
  color: rgba(61, 43, 31, 0.6);
}
.hb-thankyou__status--cancelled,
.hb-thankyou__status--failed {
  background: rgba(180, 60, 60, 0.1);
  color: #b43c3c;
}

/* Order items */
.hb-thankyou__items {
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hb-thankyou__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(61, 43, 31, 0.07);
}
.hb-thankyou__item-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(61, 43, 31, 0.05);
}
.hb-thankyou__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hb-thankyou__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hb-thankyou__item-info strong {
  font-size: 13px;
  font-weight: 600;
  color: #3d2b1f;
}
.hb-thankyou__item-info span {
  font-size: 12px;
  color: rgba(61, 43, 31, 0.5);
}
.hb-thankyou__item-price {
  font-size: 14px;
  font-weight: 700;
  color: #3d2b1f;
}

/* Shipping address */
.hb-thankyou__address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 28px;
  border: 1px solid rgba(61, 43, 31, 0.07);
  text-align: left;
}
.hb-thankyou__address-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(61, 43, 31, 0.5);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 1px;
}
.hb-thankyou__address-value {
  font-size: 13px;
  color: #3d2b1f;
  line-height: 1.5;
}

/* CTA buttons */
.hb-thankyou__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hb-thankyou__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}
.hb-thankyou__btn:hover {
  transform: scale(1.03);
  opacity: 0.92;
  text-decoration: none;
}
.hb-thankyou__btn--primary {
  background: linear-gradient(180deg, #f3b255 0%, #d48a28 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(212, 138, 40, 0.35);
}
.hb-thankyou__btn--secondary {
  background: rgba(61, 43, 31, 0.08);
  color: #3d2b1f;
  border: 1px solid rgba(61, 43, 31, 0.15);
}

@media (max-width: 600px) {
  .hb-thankyou {
    padding: 36px 20px 28px;
  }
  .hb-thankyou__meta {
    grid-template-columns: repeat(2, 1fr);
  }
  .hb-thankyou__actions {
    flex-direction: column;
  }
  .hb-thankyou__btn {
    justify-content: center;
  }
}

/* WooCommerce button overrides — defined in pages.css */

/* ============================================================
   Single Product — Add-to-Cart Notice
   ============================================================ */

/* The notice is a <div class="woocommerce-message"> containing text + <a.button> */
.hb-product-wrap .woocommerce-message {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin: 0 0 24px !important;
  padding: 10px 0px 10px 14px !important;
  background: linear-gradient(144.42deg, #fff5f0 0%, #ffe8db 100%) !important;
  border-radius: 24px !important;
  border: none !important;
  border-top: none !important;
  box-shadow:
    0px 10px 15px rgba(0, 0, 0, 0.1),
    0px 4px 6px rgba(0, 0, 0, 0.1) !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 15px !important;
  color: #3d2b1f !important;
  line-height: 1.4 !important;
}

/* Replace WooCommerce's ::before icon with our green check circle */
.hb-product-wrap .woocommerce-message::before {
  content: "" !important;
  display: block !important;
  flex-shrink: 0 !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  border-radius: 50% !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%234b6b44'/%3E%3Cpath d='M7 12.5l3.5 3.5 6.5-7' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  font-family: inherit !important;
  font-size: 0 !important;
  color: transparent !important;
}

/* "View cart" — gold gradient pill, matching .hb-product-add-btn */
.hb-product-wrap .woocommerce-message .button,
.hb-product-wrap .woocommerce-message a.button {
  margin-left: auto !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 12px 28px !important;
  background: linear-gradient(180deg, #f3b255 0%, #d48a28 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 9999px !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  float: none !important;
  box-shadow:
    0px 10px 15px rgba(0, 0, 0, 0.1),
    0px 4px 6px rgba(0, 0, 0, 0.1) !important;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.hb-product-wrap .woocommerce-message .button:hover,
.hb-product-wrap .woocommerce-message a.button:hover {
  transform: scale(1.02) !important;
  opacity: 0.95 !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* ============================================================
   Happy Buddha — Product Detail V2
   Tabs · CTA row · About · Cooking · Better · Shop sections
   ============================================================ */

/* ── Tabs ── */
.hb-product-tabs {
  margin-top: 16px;
}
.hb-product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(61, 43, 31, 0.15);
  margin-bottom: 16px;
}
body.single-product .hb-tab-btn,
body.single-product .hb-tab-btn:hover,
body.single-product .hb-tab-btn:focus,
body.single-product .hb-tab-btn:active,
body.single-product .hb-tab-btn--active,
body.single-product .hb-tab-btn--active:hover,
body.single-product .hb-tab-btn--active:focus {
  background: none !important;
  background-color: transparent !important;
}
body.single-product .hb-tab-btn,
body.single-product .hb-tab-btn:hover,
body.single-product .hb-tab-btn:focus {
  color: rgba(0, 0, 0, 0.5) !important;
}
body.single-product .hb-tab-btn--active,
body.single-product .hb-tab-btn--active:hover,
body.single-product .hb-tab-btn:hover {
  color: #3d2b1f !important;
}
.hb-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 0 10px;
  margin-right: 24px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5) !important;
  cursor: pointer;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}
.hb-tab-btn--active,
.hb-tab-btn:hover {
  color: #3d2b1f !important;
  border-bottom-color: #d48a28;
  font-weight: 600;
}
.hb-tab-pane {
  display: none;
}
.hb-tab-pane--active {
  display: block;
}
.hb-product-tabs__body {
  position: relative;
  overflow: hidden;
  /* height set dynamically by JS */
}
.hb-product-tabs__body.hb-tabs-expanded {
  height: auto !important;
  overflow: visible;
}
.hb-tab-readmore-wrap {
  margin-top: 8px;
}
.hb-tabs-expanded ~ .hb-tab-readmore-wrap,
.hb-tab-readmore-wrap--expanded {
  margin-top: 4px;
  padding-top: 0;
  background: none;
}
.hb-tab-readmore {
  display: block;
  background: none !important;
  background-color: transparent !important;
  border: none;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #d48a28 !important;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hb-tab-readmore:hover {
  color: #b8721f !important;
}
.hb-tab-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.625;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 12px;
}
.hb-tab-text:last-child {
  margin-bottom: 0;
}
.hb-product-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  line-height: 1.625;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 12px;
}

/* ── Free shipping badge (above CTA) ── */
.hb-free-shipping-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
  margin: 12px 0 16px;
}
.hb-free-shipping-badge svg path {
  fill: rgba(61, 43, 31, 0.8);
}

/* ── CTA row: Add to Cart + Find Your Plan ── */
.hb-cart-form {
  margin-bottom: 0;
}
.hb-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hb-cta-row .hb-product-add-btn {
  flex: 1;
  min-width: 140px;
}
.hb-find-plan-btn {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 9999px;
  border: 2px solid #d48a28;
  background: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #d48a28;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.hb-find-plan-btn:hover {
  background: #d48a28;
  color: #fff;
  text-decoration: none;
}

/* ── Shared section styles ── */
.hb-section-heading {
  font-family: "Trajan Pro", "Times New Roman", serif;
  font-size: 28.8px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: #3d2b1f;
  margin: 0 0 40px;
}
.hb-section-heading--white {
  color: #fff;
}

/* ── Section: What is Happy Buddha Rice? ── */
.hb-section-about {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 512px;
}
/* Buddha: absolute, pinned to left edge, full height */
.hb-section-about__buddha-img {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(240px, 50vh, 400px) !important;
  width: auto;
  z-index: 2;
  pointer-events: none;
}
/* Inner row: brand text + star card */
.hb-section-about__inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 40px);
  height: 100%;
  padding: 60px 120px 60px 240px;
}
/* Brand: heading + tagline */
.hb-section-about__brand {
  flex: 0 1 auto;
  padding: 0 32px;
}
.hb-section-about__brand .hb-brand {
  --hb-brand-base: clamp(28px, 3.2vw, 42px);
  --hb-brand-stroke: 1px;
  width: max-content;
  max-width: 100%;
  align-items: flex-start;
}
.hb-section-about__brand .hb-brand__tagline {
  text-align: left;
}
.hb-section-about__heading {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: clamp(22px, 2.6vw, 42px);
  font-weight: 600;
  color: #fff;
  /* -webkit-text-stroke: 0.3px #d48a28; */
  /* text-stroke: 0.3px #d48a28; */
  line-height: 1;
  color: #aa0000;
  stroke-width: 1px;
  stroke: white;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}
.hb-section-about__reg {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: clamp(22px, 2.6vw, 42px);
  font-weight: 600;
  color: white;
  -webkit-text-stroke-width: 0;
  vertical-align: super;
  top: 10px !important;
}
.hb-section-about__tagline {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: clamp(13px, 1.4vw, 22px);
  font-weight: 400;
  color: #fff;
  line-height: 1.45;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
/* Star card: image + overlaid content */
.hb-section-about__star-wrap {
  flex: 0 0 auto;
  width: clamp(280px, 38vw, 560px);
  aspect-ratio: 1764 / 1572;
  background: center / contain no-repeat
    url("/wp-content/uploads/2025/02/Happy_Buddha_Star_Background_1764x1572.png");
  display: flex;
  align-items: center;
  justify-content: center;
}
.hb-section-about__star-img {
  display: block;
  width: 100%;
  height: auto;
}
.hb-section-about__star-content {
  position: static;
  transform: none;
  width: 52%;
  text-align: center;
}
.hb-section-about__coin-img {
  display: block;
  width: 40%;
  min-width: 96px;
  max-width: 220px;
  height: auto;
  margin: 0 auto 10px;
}
.hb-section-about__donation {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(10px, 0.85vw, 14px);
  line-height: 1.45;
  color: #1a0a00;
  margin: 0;
}
.hb-section-about__donation--2 {
  margin-top: 10px;
}
.hb-section-about__donation strong {
  font-weight: 700;
  color: #1a0a00;
}

/* ── Section: How to Cook ── */
.hb-section-cooking {
  position: relative;
  z-index: 1;
  background: linear-gradient(162deg, #fff5f0 0%, #ffe8db 100%);
  padding: 64px 153px;
}
.hb-section-cooking__inner {
  max-width: 1154px;
  margin: 0 auto;
}
.hb-section-cooking .hb-section-heading {
  text-align: center;
}
.hb-cooking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.hb-cooking-col {
  text-align: center;
}
.hb-cooking-col__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3d2b1f;
  margin: 0 0 24px;
}
.hb-ratio-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #d48a28;
  line-height: 1;
  margin-bottom: 2px;
}
.hb-cooking-ratios {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 20px;
}
.hb-cooking-ratio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hb-cooking-ratio--half .hb-cooking-ratio__icon {
  height: auto;
}
.hb-cooking-ratio__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-height: 64px;
  border-radius: 14px;
  padding: 16px;
}
.hb-cooking-ratio__icon--rice {
  background: linear-gradient(
    180deg,
    rgba(243, 178, 85, 0.2) 0%,
    rgba(243, 178, 85, 0.05) 100%
  );
}
.hb-cooking-ratio__icon--water {
  background: linear-gradient(
    180deg,
    rgba(75, 107, 68, 0.2) 0%,
    rgba(75, 107, 68, 0.05) 100%
  );
}
/* Font Awesome cooking icons */
.hb-cook-icon {
  font-size: 28px;
  line-height: 1;
}
.hb-cook-icon--rice {
  color: #d48a28;
}
.hb-cook-icon--water {
  color: #4b6b44;
}
.hb-cooking-ratio__icon--water-half {
  background: linear-gradient(
    180deg,
    rgba(75, 107, 68, 0.2) 0%,
    rgba(75, 107, 68, 0.05) 100%
  );
  position: relative;
  overflow: hidden;
}
/* Bottom-half tint to indicate 0.5 ratio */
.hb-cooking-ratio__icon--water-half::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(75, 107, 68, 0.18);
  border-radius: 0 0 14px 14px;
  pointer-events: none;
}
.hb-cooking-ratio__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(61, 43, 31, 0.6);
  text-align: center;
}
.hb-cooking-col__desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1.625;
  color: rgba(61, 43, 31, 0.6);
  max-width: 320px;
  margin: 0 auto;
}

/* ── Section: What Makes Happy Buddha Better? ── */
.hb-section-better {
  position: relative;
  z-index: 1;
  padding: 64px 153px;
}
.hb-section-better__inner {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  border-radius: 24px;
  padding: 40px 24px;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
}
.hb-section-better .hb-section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.hb-better-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hb-better-col {
  text-align: center;
  padding: 0 24px;
}
.hb-better-col + .hb-better-col {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.hb-better-col__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(75, 107, 68, 0.2);
  margin: 0 auto 20px;
  color: white;
}
.hb-better-col > .fa-solid {
  display: block;
  font-size: 64px;
  line-height: 1;
  color: #fff;
  margin: 0 auto 20px;
}
.hb-better-col__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.hb-better-col__desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ── Section: Shop Our Other Product ── */
.hb-section-shop {
  position: relative;
  z-index: 1;
  padding: 64px 153px 80px;
}
.hb-section-shop__inner {
  max-width: 1154px;
  margin: 0 auto;
}
.hb-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.hb-shop-empty {
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.hb-shop-empty__message {
  font-size: 18px;
  margin-bottom: 16px;
}

.hb-shop-empty__link {
  display: inline-block;
  padding: 12px 24px;
  background: #3d2b1f;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.hb-shop-empty__link:hover {
  background: #5a4030;
}

.hb-shop-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(124deg, #fff5f0 0%, #ffe8db 100%);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.hb-shop-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 24px -4px rgba(0, 0, 0, 0.15),
    0 8px 10px -4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}
.hb-shop-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  background: linear-gradient(141deg, #ffe8db 0%, #ffdcc8 100%);
  padding: 20px;
}
.hb-shop-card__image img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}
.hb-shop-card__content {
  padding: 20px 24px 24px;
}
.hb-shop-card__rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}
.hb-shop-card__rating svg {
  width: 14px;
  height: 14px;
}
.hb-shop-card__rating-count {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  color: rgba(61, 43, 31, 0.4);
  margin-left: 4px;
}
.hb-shop-card__title {
  font-family: "Trajan Pro", "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.46px;
  text-transform: uppercase;
  color: #3d2b1f;
  margin: 0 0 8px;
}
.hb-shop-card__desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1.625;
  color: rgba(61, 43, 31, 0.6);
  margin: 0 0 16px;
}
.hb-shop-card__price {
  font-family: "Crimson Pro", serif;
  font-size: 28px;
  color: #3d2b1f;
}
.hb-shop-card__price .woocommerce-Price-amount {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ── Responsive: new sections ── */
@media (max-width: 1300px) {
  .hb-product-wrap {
    padding: 40px 48px 64px;
  }
}
@media (max-width: 1280px) {
  .hb-section-cooking,
  .hb-section-better,
  .hb-section-shop {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 900px) {
  .hb-section-about__buddha-img {
    height: 46%;
  }
  .hb-section-about__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px 48px 36%;
    gap: 24px;
  }
  .hb-section-about__brand {
    padding: 0;
    text-align: left;
  }
  .hb-section-about__star-wrap {
    width: clamp(220px, 70vw, 360px);
  }
  .hb-section-about__coin-img {
    width: 22%;
    min-width: 72px;
    max-width: 140px;
  }
  .hb-section-cooking,
  .hb-section-better,
  .hb-section-shop {
    padding: 48px 24px;
  }
  .hb-cooking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hb-better-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hb-better-col + .hb-better-col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
  }
  .hb-cta-row {
    flex-direction: column;
  }
  .hb-cta-row .hb-product-add-btn,
  .hb-find-plan-btn {
    width: 100%;
    flex: none;
  }
}
/* Override subscription-page min-height on size buttons for product page */
body.single-product .hb-sz-btn {
  min-height: unset !important;
  padding-right: 24px !important;
}

/* ── Coming Soon ── */
.hb-coming-soon-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(160deg, #fff5f0 0%, #ffe8db 100%);
  border: 2px dashed #d48a28;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #d48a28;
  margin-top: 8px;
}
.hb-coming-soon-notice i {
  font-size: 16px;
}
.hb-coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(212, 138, 40, 0.1);
  border: 1.5px dashed #d48a28;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #d48a28;
  pointer-events: none;
}

/* Coming Soon card badge (archive page) */

/* Coming Soon card badge (archive page) */

/* ============================================================
/* ============================================================
   Happy Buddha — 404 Page  (Figma: node 42:270)
   Uses same video background layout as subscription/cart pages.
   ============================================================ */

/* ── 404 Wrapper (centered in video background) ── */
.hb-404-wrap {
  position: relative !important;
  z-index: 10 !important;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 156px 32px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* ── 404 Card ── */
.hb-404-card {
  position: relative;
  z-index: 10;
  background: linear-gradient(147deg, #fff5f0 0%, #fff2d9 50%, #ffe4d9 100%);
  border-radius: 24px;
  padding: 60px 48px 50px;
  box-shadow:
    0 20px 25px rgba(0, 0, 0, 0.1),
    0 8px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
}

/* ── 404 Number ── */
.hb-404-number {
  font-family: "Crimson Pro", Georgia, serif;
  font-size: 80px;
  font-weight: 400;
  color: #d48a28;
  line-height: 1;
  margin-bottom: 8px;
}

/* ── 404 Title ── */
.hb-404-title {
  font-family: "Trajan Pro", "Crimson Pro", Georgia, serif;
  font-size: 25.6px;
  font-weight: 500;
  color: #3d2b1f;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  margin-bottom: 24px;
}

/* ── 404 Message ── */
.hb-404-message {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: rgba(61, 43, 31, 0.6);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
}

/* ── 404 Buttons ── */
.hb-404-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.hb-404-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(180deg, #f3b255 0%, #d48a28 100%);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-radius: 9999px;
  box-shadow:
    0 10px 15px rgba(0, 0, 0, 0.1),
    0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hb-404-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 20px rgba(0, 0, 0, 0.15),
    0 6px 8px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.hb-404-btn-primary i {
  font-size: 16px;
}

.hb-404-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: rgba(61, 43, 31, 0.7);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border: 2px solid rgba(61, 43, 31, 0.15);
  border-radius: 9999px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.hb-404-btn-secondary:hover {
  border-color: rgba(61, 43, 31, 0.3);
  color: #3d2b1f;
}

.hb-404-btn-secondary i {
  font-size: 16px;
}

/* ── Mobile Responsive ── */
@media (max-width: 768px) {
  .hb-404-wrap {
    position: relative !important;
    z-index: 10 !important;
    padding: 24px 16px;
  }

  .hb-404-card {
    padding: 40px 24px 32px;
  }

  .hb-404-number {
    font-size: 60px;
  }

  .hb-404-title {
    font-size: 20px;
  }

  .hb-404-message {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .hb-404-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hb-404-btn-primary,
  .hb-404-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ── Checkout Step Navigation ── */
.hb-checkout-step--hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.hb-checkout-step {
  position: relative;
  width: 100%;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* ── Validation Message ── */
.hb-validation-message {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  font-size: 14px;
  font-weight: 500;
}

.hb-validation-message svg {
  color: #dc2626;
}

.hb-checkout-form .woocommerce-invalid input,
.hb-checkout-form .woocommerce-invalid select {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}

/* Express payment methods — defined in pages.css */


.hb-checkout-continue {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(61, 43, 31, 0.1);
}

.hb-checkout-continue__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(180deg, #f3b255 0%, #d48a28 100%);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow:
    0px 10px 15px rgba(0, 0, 0, 0.1),
    0px 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hb-checkout-continue__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0px 12px 18px rgba(0, 0, 0, 0.15),
    0px 5px 8px rgba(0, 0, 0, 0.15);
}

.hb-checkout-continue__btn svg {
  transition: transform 0.2s ease;
}

.hb-checkout-continue__btn:hover svg {
  transform: translateX(4px);
}

.hb-checkout-back-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin-bottom: 24px;
  background: none !important;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(61, 43, 31, 0.5);
  cursor: pointer;
  transition: color 0.2s ease;
  outline: none;
  box-shadow: none;
}

.hb-checkout-back-step:hover {
  color: rgba(61, 43, 31, 0.8);
  background: none !important;
  outline: none;
  box-shadow: none;
}

.hb-checkout-back-step svg {
  transition: transform 0.2s ease;
}

.hb-checkout-back-step:hover svg {
  transform: translateX(-4px);
}

/* ── Delivery Fee Display ── */
.hb-summary-pending {
  color: rgba(61, 43, 31, 0.5);
  font-size: 13px;
}

.hb-summary-row--delivery .hb-summary-free {
  color: #22c55e;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hb-checkout-continue__btn {
    padding: 14px 20px;
    font-size: 15px;
  }

  .hb-checkout-back-step {
    margin-bottom: 16px;
  }
}
.hb-footer {
  background-color: #3d2b1f;
  height: var(--hb-footer-height);
  padding: 20px 10px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.hb-footer__inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}

.hb-footer__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hb-footer__logo {
  width: 50px;
  height: auto;
}

.hb-footer__brand-text {
  display: flex;
  flex-direction: column;
  margin-left: 0;
}

.hb-footer__brand-title {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.hb-footer__brand-name {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #aa0000;
  stroke-width: 0.3px;
  stroke: white;
  -webkit-text-stroke-width: 0.3px;
  -webkit-text-stroke-color: white;
  line-height: 1;
}

.hb-footer__reg {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  line-height: 1;
  margin-left: 2px;
  margin-top: -2px;
}

.hb-footer__tagline {
  font-family: "Trajan Pro", "Trajan Pro 3", Georgia, serif;
  font-size: 10px;
  font-weight: 400;
  color: white;
  line-height: 1.3;
  text-align: center;
}

.hb-footer__divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 20px;
}

.hb-footer__bottom {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.hb-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.hb-footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}
