/*
 Theme Name:   Hiboo Child
 Theme URI:    https://hiboo.co.id
 Description:  GeneratePress child theme for Hiboo Baby Skincare
 Author:       PT Hiboo Indonesia
 Author URI:   https://hiboo.co.id
 Template:     generatepress
 Version:      1.3.7
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hiboo-child
*/

/* ═══════════════════════════════════════════════════
   HIBOO BABY SKINCARE — Complete Styles
   ═══════════════════════════════════════════════════ */

/* ── CUSTOM FONTS ── */
@font-face {
  font-family: "VisbyRoundCF";
  src: url("assets/fonts/VISBYROUND/VisbyRoundCF-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VisbyRoundCF";
  src: url("assets/fonts/VISBYROUND/VisbyRoundCF-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VisbyRoundCF";
  src: url("assets/fonts/VISBYROUND/VisbyRoundCF-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VisbyRoundCF";
  src: url("assets/fonts/VISBYROUND/VisbyRoundCF-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VisbyRoundCF";
  src: url("assets/fonts/VISBYROUND/VisbyRoundCF-DemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VisbyRoundCF";
  src: url("assets/fonts/VISBYROUND/VisbyRoundCF-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VisbyRoundCF";
  src: url("assets/fonts/VISBYROUND/VisbyRoundCF-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VisbyRoundCF";
  src: url("assets/fonts/VISBYROUND/VisbyRoundCF-Heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --hb-sky: #c8e3f4;
  --hb-blue: #6bbae5;
  --hb-deep: #2a7ab5;
  --hb-navy: #1b4d6e;
  --hb-cream: #fff9f4;
  --hb-warm: #fff1e6;
  --hb-peach: #ffd8be;
  --hb-blush: #f9e4d4;
  --hb-white: #ffffff;
  --hb-snow: #fafbfc;
  --hb-text: #1e2d3d;
  --hb-muted: #7a8b99;
  --hb-light: #b8c5cf;
  --hb-gold: #d4a04a;
  --hb-sage: #a7c4a0;
  --hb-pink: #f2c4c4;
  --hb-radius: 16px;
  --hb-radius-lg: 24px;
  --hb-radius-xl: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "VisbyRoundCF", sans-serif;
  background: var(--hb-cream);
  color: var(--hb-text);
  -webkit-font-smoothing: antialiased;
}


nav {
  overflow: visible !important;
}

.playfair {
  font-family: "VisbyRoundCF", sans-serif;
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--hb-navy);
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.announce-bar span {
  background: var(--hb-gold);
  color: var(--hb-navy);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── NAV ── */
nav {
  background: rgba(255, 249, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  /* truly center regardless of left/right widths */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--hb-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--hb-deep);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hb-blue);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-award {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
  margin-left: 16px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-award-logo {
  height: 52px !important;
  width: auto !important;
  max-width: 80px !important;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-award-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--hb-text);
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--hb-text);
  transition: background 0.25s ease;
}

.nav-icon:hover {
  background: rgba(107, 186, 229, 0.1);
}

.nav-icon svg {
  width: 20px;
  height: 20px;
}

/* Login button in nav */
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--hb-deep);
  color: white !important;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(42, 122, 181, 0.2);
}

.nav-login-btn svg {
  width: 18px;
  height: 18px;
}

.nav-login-btn:hover {
  background: var(--hb-navy);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(27, 77, 110, 0.3);
}

.nav-account-btn {
  position: relative;
}

.nav-account-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #27ae60;
  border-radius: 50%;
  border: 2px solid white;
}

.nav-cart-btn {
  position: relative;
}


.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: var(--hb-deep);
  color: white;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── MOBILE MENU ── */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hb-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 110px);
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  position: relative;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(200, 227, 244, 0.4) 0%,
      transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hb-deep);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.7s ease both;
}

.hero-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--hb-blue);
  border-radius: 2px;
}

.hero h1 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--hb-text);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

.hero h1 .jp-text {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 0.5em;
  font-weight: 300;
  color: var(--hb-muted);
  display: block;
  margin-top: 6px;
  letter-spacing: 0.08em;
}

.hero h1 em {
  font-style: italic;
  color: var(--hb-deep);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--hb-muted);
  max-width: 440px;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hb-deep);
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--hb-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 122, 181, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--hb-text);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--hb-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--hb-deep);
  color: var(--hb-deep);
}

.hero-trust {
  display: flex;
  gap: 14px;
  animation: fadeSlideUp 0.7s 0.4s ease both;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid rgba(42, 122, 181, 0.12);
  border-radius: 100px;
  padding: 10px 20px 10px 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(42, 122, 181, 0.06);
}

.trust-item:hover {
  border-color: var(--hb-blue);
  box-shadow: 0 4px 16px rgba(42, 122, 181, 0.12);
  transform: translateY(-2px);
}

.trust-item.cert-bpom {
  background: linear-gradient(135deg, #eff8ff, #dbeefe);
  border-color: rgba(42, 122, 181, 0.2);
}

.trust-item.cert-halal {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-color: rgba(16, 185, 129, 0.2);
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cert-bpom .trust-icon {
  background: rgba(42, 122, 181, 0.15);
}

.cert-halal .trust-icon {
  background: rgba(16, 185, 129, 0.15);
}

.trust-item:not(.cert-bpom):not(.cert-halal) .trust-icon {
  background: var(--hb-warm);
}

.trust-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--hb-text);
  line-height: 1.3;
}

.trust-text small {
  display: block;
  font-weight: 500;
  color: var(--hb-muted);
  font-size: 11px;
}

.hero-right {
  background: linear-gradient(150deg,
      var(--hb-sky) 0%,
      #d5edfa 40%,
      var(--hb-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Mochi blob top-left */
.hero-right::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;
  background: rgba(255, 255, 255, 0.25);
  top: -60px;
  left: -40px;
  animation: morphBlob 8s ease-in-out infinite;
}

/* Mochi blob bottom-right */
.hero-right::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 42% 58% 35% 65% / 55% 45% 55% 45%;
  background: rgba(255, 255, 255, 0.18);
  bottom: -40px;
  right: -30px;
  animation: morphBlob 8s 2s ease-in-out infinite reverse;
}

@keyframes morphBlob {

  0%,
  100% {
    border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;
    transform: scale(1) rotate(0deg);
  }

  25% {
    border-radius: 42% 58% 45% 55% / 55% 42% 58% 48%;
    transform: scale(1.04) rotate(3deg);
  }

  50% {
    border-radius: 52% 48% 38% 62% / 48% 62% 38% 52%;
    transform: scale(1.06) rotate(-2deg);
  }

  75% {
    border-radius: 45% 55% 58% 42% / 62% 38% 52% 48%;
    transform: scale(1.02) rotate(1deg);
  }
}

/* ── DECORATIVE CLOUDS ── */
.cloud {
  position: absolute;
  background: white;
  border-radius: 100px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: white;
  border-radius: 50%;
}

.cloud-1 {
  width: 120px;
  height: 40px;
  top: 12%;
  left: 5%;
  animation: cloudDrift 20s linear infinite;
}

.cloud-1::before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 20px;
}

.cloud-1::after {
  width: 36px;
  height: 36px;
  top: -18px;
  left: 60px;
}

.cloud-2 {
  width: 90px;
  height: 30px;
  top: 70%;
  right: 8%;
  opacity: 0.35;
  animation: cloudDrift 25s 5s linear infinite;
}

.cloud-2::before {
  width: 38px;
  height: 38px;
  top: -20px;
  left: 15px;
}

.cloud-2::after {
  width: 28px;
  height: 28px;
  top: -14px;
  left: 45px;
}

.cloud-3 {
  width: 70px;
  height: 24px;
  top: 35%;
  left: 60%;
  opacity: 0.3;
  animation: cloudDrift 30s 10s linear infinite reverse;
}

.cloud-3::before {
  width: 30px;
  height: 30px;
  top: -16px;
  left: 10px;
}

.cloud-3::after {
  width: 22px;
  height: 22px;
  top: -12px;
  left: 35px;
}

@keyframes cloudDrift {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0);
  }
}

/* ── MOCHI SHAPES (decorative blobs) ── */
.mochi-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.mochi-1 {
  width: 60px;
  height: 56px;
  background: rgba(107, 186, 229, 0.12);
  border-radius: 52% 48% 44% 56% / 46% 60% 40% 54%;
  top: 8%;
  right: 15%;
  animation: mochiWobble 6s ease-in-out infinite;
}

.mochi-2 {
  width: 44px;
  height: 40px;
  background: rgba(255, 216, 190, 0.2);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  bottom: 12%;
  left: 12%;
  animation: mochiWobble 7s 1.5s ease-in-out infinite;
}

.mochi-3 {
  width: 32px;
  height: 30px;
  background: rgba(167, 196, 160, 0.15);
  border-radius: 54% 46% 42% 58% / 48% 56% 44% 52%;
  top: 55%;
  right: 5%;
  animation: mochiWobble 5s 3s ease-in-out infinite;
}

@keyframes mochiWobble {

  0%,
  100% {
    border-radius: 52% 48% 44% 56% / 46% 60% 40% 54%;
    transform: translateY(0) rotate(0deg);
  }

  33% {
    border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
    transform: translateY(-8px) rotate(5deg);
  }

  66% {
    border-radius: 58% 42% 48% 52% / 40% 54% 46% 60%;
    transform: translateY(4px) rotate(-3deg);
  }
}

/* ── SECTION DECORATIVE CLOUDS ── */
.section-cloud {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.section-cloud svg {
  opacity: 0.06;
  fill: var(--hb-blue);
}

@keyframes breathe {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

.hero-product-display {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-product-img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(42, 122, 181, 0.2));
  animation: floatUp 4s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-floating-badge {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hb-text);
  z-index: 2;
  animation: floatBadge 5s ease-in-out infinite;
}

.fb-top {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.fb-bottom {
  bottom: 18%;
  left: 8%;
  animation-delay: 1.5s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-floating-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.badge-green {
  background: #e8f5e4;
}

.badge-gold {
  background: #fff3dc;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── TRUST RIBBON ── */
.trust-ribbon {
  background: var(--hb-white);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  overflow: hidden;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--hb-muted);
  font-size: 13px;
  font-weight: 500;
}

.ribbon-item .ri-icon {
  font-size: 20px;
}

.ribbon-item strong {
  color: var(--hb-text);
  font-weight: 600;
}

.ribbon-item-award {
  gap: 8px;
}

.ribbon-award-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* ── SECTION UTILITY ── */
.section-pad {
  padding: 100px 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .sh-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hb-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sh-tag::before,
.sh-tag::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--hb-blue);
}

.section-header h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--hb-text);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 15px;
  color: var(--hb-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BESTSELLER PRODUCTS ── */
.products-section {
  background: var(--hb-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--hb-snow);
  border-radius: var(--hb-radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(42, 122, 181, 0.1);
  border-color: var(--hb-sky);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--hb-deep);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

.product-card-badge.new {
  background: var(--hb-sage);
}

.product-card-badge.hot {
  background: #e8845a;
}

.product-card-badge.disc {
  background: #dc2626;
  left: auto;
  right: 16px;
  font-size: 12px;
  padding: 4px 10px;
  letter-spacing: 0;
}

.product-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--hb-radius-lg) var(--hb-radius-lg) 0 0;
}

.product-img-bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--hb-radius-lg) var(--hb-radius-lg) 0 0;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-bg {
  transform: scale(1.03);
}

.pc-blue {
  background: linear-gradient(160deg, #e8f4fc, #d0e8f7);
}

.pc-peach {
  background: linear-gradient(160deg, #fff3ea, #ffe6d3);
}

.pc-lavender {
  background: linear-gradient(160deg, #ede7f6, #ddd3f0);
}

.pc-mint {
  background: linear-gradient(160deg, #e8f5e4, #d3eacc);
}

.pc-gold {
  background: linear-gradient(160deg, #fff8e8, #ffefc0);
}

.product-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Combo card — same full-frame treatment as other cards */

.product-quick-links {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  transform: translateY(20px);
  opacity: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  transition: all 0.35s ease;
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
}

.product-quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: white;
  border: none;
  padding: 9px 16px;
  border-radius: 100px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-quick-links a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.product-quick-links a svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.product-quick-links .pql-beli {
  background: var(--hb-navy, #1e3a5f);
}

.product-quick-links .pql-shopee {
  background: #ee4d2d;
}

.product-quick-links .pql-tiktok {
  background: #1a1a2e;
}

.product-quick-links .pql-wc {
  background: #96588a;
}

.product-card:hover .product-quick-links {
  opacity: 1;
  transform: translateY(0);
}

/* Legacy single button fallback */
.product-quick-add {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: var(--hb-text);
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 100px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  white-space: nowrap;
  text-decoration: none;
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-info {
  padding: 24px;
}

.product-info .p-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hb-muted);
  margin-bottom: 6px;
}

.product-info h3 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-info .p-desc {
  font-size: 13px;
  color: var(--hb-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-price .current {
  font-size: 18px;
  font-weight: 700;
  color: #dc2626;
}

.product-price .original {
  font-size: 13px;
  font-weight: 400;
  color: var(--hb-light);
  text-decoration: line-through;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--hb-gold);
  font-weight: 600;
}

.product-rating span {
  color: var(--hb-muted);
  font-weight: 400;
}

.products-more {
  text-align: center;
  margin-top: 48px;
}

/* ── WHY HIBOO ── */
.why-section {
  background: var(--hb-cream);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 180px;
  top: 30px;
  right: -40px;
  background: rgba(107, 186, 229, 0.06);
  border-radius: 52% 48% 44% 56% / 46% 60% 40% 54%;
  animation: mochiWobble 10s ease-in-out infinite;
  pointer-events: none;
}

.why-section::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 130px;
  bottom: 20px;
  left: -30px;
  background: rgba(255, 216, 190, 0.1);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  animation: mochiWobble 12s 3s ease-in-out infinite;
  pointer-events: none;
}

/* ── PRODUCTS SECTION DECORATION ── */
.products-section {
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 160px;
  top: 60px;
  left: -50px;
  background: rgba(200, 227, 244, 0.08);
  border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;
  animation: mochiWobble 9s ease-in-out infinite;
  pointer-events: none;
}

.products-section::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 110px;
  bottom: 80px;
  right: -30px;
  background: rgba(167, 196, 160, 0.08);
  border-radius: 46% 54% 42% 58% / 55% 42% 58% 45%;
  animation: mochiWobble 11s 2s ease-in-out infinite;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--hb-radius-xl);
  background: var(--hb-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
}

.why-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--hb-blue), var(--hb-sky));
}

.why-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--hb-sage), #c8e4c0);
}

.why-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--hb-peach), var(--hb-pink));
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.why-card:nth-child(1) .why-icon {
  background: linear-gradient(135deg, #e8f4fc, #d0e8f7);
}

.why-card:nth-child(2) .why-icon {
  background: linear-gradient(135deg, #e8f5e4, #d3eacc);
}

.why-card:nth-child(3) .why-icon {
  background: linear-gradient(135deg, #fff3ea, #ffe6d3);
}

.why-jp {
  font-size: 14px;
  color: var(--hb-light);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.why-card h3 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hb-muted);
}

/* ── SOCIAL PROOF / TESTIMONIALS ── */
.proof-section {
  background: var(--hb-navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.proof-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(107, 186, 229, 0.12),
      transparent 70%);
  top: -200px;
  right: -200px;
}

.proof-section .section-header .sh-tag {
  color: var(--hb-sky);
}

.proof-section .section-header .sh-tag::before,
.proof-section .section-header .sh-tag::after {
  background: var(--hb-sky);
}

.proof-section .section-header h2 {
  color: white;
}

.proof-section .section-header p {
  color: rgba(255, 255, 255, 0.55);
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.proof-stat {
  text-align: center;
}

.proof-stat-num {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--hb-sky);
  line-height: 1;
}

.proof-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--hb-radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--hb-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-card blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hb-blue), var(--hb-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
}

.testi-detail {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── INGREDIENTS / SCIENCE ── */
.science-section {
  background: var(--hb-white);
}

.science-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.science-visual {
  background: linear-gradient(150deg, var(--hb-warm) 0%, var(--hb-sky) 100%);
  border-radius: var(--hb-radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.science-visual::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 110px;
  top: -20px;
  right: -20px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 52% 48% 44% 56% / 46% 60% 40% 54%;
  animation: mochiWobble 8s ease-in-out infinite;
  pointer-events: none;
}

.science-visual::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 74px;
  bottom: -10px;
  left: -10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  animation: mochiWobble 10s 2s ease-in-out infinite;
  pointer-events: none;
}

.science-visual img {
  max-height: 200px;
  width: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.ingredient-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.ing-pill {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--hb-navy);
}

.science-content .sc-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--hb-deep);
  margin-bottom: 12px;
}

.science-content h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.science-content>p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--hb-muted);
  margin-bottom: 32px;
}

.science-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sci-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sci-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--hb-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sci-feat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--hb-deep);
}

.sci-feat h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.sci-feat p {
  font-size: 13px;
  color: var(--hb-muted);
  line-height: 1.5;
}

/* ── SKIN CONCERNS ── */
.concerns-section {
  background: var(--hb-cream);
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.concern-card {
  background: var(--hb-white);
  border-radius: var(--hb-radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  cursor: pointer;
}

.concern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-color: var(--hb-blue);
}

.concern-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--hb-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.concern-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.concern-card p {
  font-size: 12px;
  color: var(--hb-muted);
  line-height: 1.5;
}

.concern-card .concern-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--hb-deep);
  margin-top: 12px;
  text-decoration: none;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg,
      var(--hb-sky) 0%,
      #d5edfa 50%,
      var(--hb-warm) 100%);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 240px;
  border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;
  background: rgba(255, 255, 255, 0.2);
  top: -60px;
  left: -60px;
  animation: morphBlob 10s ease-in-out infinite;
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 180px;
  border-radius: 42% 58% 35% 65% / 55% 45% 55% 45%;
  background: rgba(255, 255, 255, 0.15);
  bottom: -50px;
  right: -40px;
  animation: morphBlob 12s 3s ease-in-out infinite reverse;
  pointer-events: none;
}

.cta-banner h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 15px;
  color: var(--hb-muted);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 1;
}

/* ── INSTAGRAM FEED ── */
.insta-section {
  background: var(--hb-white);
}

.insta-section .section-header p a {
  color: var(--hb-deep);
  text-decoration: none;
  font-weight: 600;
}

.insta-feed {
  max-width: 1200px;
  margin: 0 auto;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  max-width: 100%;
}

.insta-tile {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--hb-snow);
}

.insta-tile a {
  display: block;
  width: 100%;
  height: 100%;
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-tile:hover img {
  transform: scale(1.05);
}

.insta-tile .insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 77, 110, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-tile:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.insta-overlay-stat svg {
  width: 18px;
  height: 18px;
}

.insta-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--hb-muted);
  font-size: 14px;
}

.insta-loading .spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--hb-sky);
  border-top-color: var(--hb-deep);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Smash Balloon (@instagram-feed) layout overrides ── */
.insta-sbi-wrap {
  width: 100%;
}

/* Reset plugin container */
.insta-sbi-wrap .sbi,
.insta-sbi-wrap .sbi_no_js_check {
  padding: 0 !important;
  background: transparent !important;
}

/* Grid layout */
.insta-sbi-wrap #sbi_images {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 6px !important;
  float: none !important;
  width: 100% !important;
}

/* Each tile */
.insta-sbi-wrap .sbi_item {
  aspect-ratio: 1 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  float: none !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  background: var(--hb-snow) !important;
  position: relative !important;
}

/* Photo wrapper fills tile */
.insta-sbi-wrap .sbi_photo_wrap {
  height: 100% !important;
  display: block !important;
}

/* Link fills tile */
.insta-sbi-wrap a.sbi_photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Background-image based tiles need a pseudo element for aspect-ratio */
.insta-sbi-wrap .sbi_photo_img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}

.insta-sbi-wrap .sbi_item:hover .sbi_photo_img,
.insta-sbi-wrap .sbi_item:hover a.sbi_photo {
  transform: scale(1.05) !important;
}

/* Hide Smash Balloon built-in chrome we don't need */
.insta-sbi-wrap .sbi_follow_btn,
.insta-sbi-wrap .sbi_header,
.insta-sbi-wrap .sbi_powered_by,
.insta-sbi-wrap .sbi_lb_close,
.insta-sbi-wrap .sbi_load_btn_wrap {
  display: none !important;
}

/* Hover overlay on real feed tiles */
.insta-sbi-wrap .sbi_item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 77, 110, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  pointer-events: none;
}

.insta-sbi-wrap .sbi_item:hover::after {
  opacity: 1;
}

/* Responsive overrides */
@media (max-width: 900px) {
  .insta-sbi-wrap #sbi_images {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .insta-sbi-wrap #sbi_images {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4px !important;
  }
}

.insta-follow-bar {
  text-align: center;
  margin-top: 32px;
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-float-label {
  background: white;
  color: var(--hb-text);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}

.wa-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.wa-float-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ── MARKETPLACE BUTTONS ── */
.marketplace-btns {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.mp-btn svg,
.mp-btn img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mp-btn-shopee {
  background: #ee4d2d;
  color: white;
}

.mp-btn-shopee:hover {
  background: #d94425;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 77, 45, 0.3);
}

.mp-btn-tiktok {
  background: #010101;
  color: white;
}

.mp-btn-tiktok:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mp-btn-wc {
  background: #96588a;
  color: white;
}

.mp-btn-wc:hover {
  background: #7d4872;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(150, 88, 138, 0.3);
}

.mp-btn-outline {
  background: transparent;
  color: var(--hb-text);
  border: 1.5px solid var(--hb-light);
}

.mp-btn-outline:hover {
  border-color: var(--hb-deep);
  color: var(--hb-deep);
}

@media (max-width: 640px) {
  .wa-float {
    bottom: 20px;
    right: 20px;
  }

  .wa-float-btn {
    width: 52px;
    height: 52px;
  }

  .wa-float-btn svg {
    width: 28px;
    height: 28px;
  }

  .wa-float-label {
    display: none;
  }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--hb-text);
  color: white;
  padding: 80px 48px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .fb-logo {
  margin-bottom: 14px;
}

.footer-brand .fb-logo img {
  height: 44px;
  width: auto;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social:hover {
  background: var(--hb-deep);
  color: white;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col ul a:hover {
  color: var(--hb-sky);
}

.tiktok-disclaimer {
  background: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 14px 24px;
}

.tiktok-disclaimer p {
  font-size: 11px;
  color: var(--hb-muted);
  margin: 0;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-badges {
  display: flex;
  gap: 12px;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    min-height: 350px;
  }

  .hero-left {
    padding: 60px 40px;
  }

  /* ── NAV ── */
  nav {
    padding: 0 16px;
    height: 68px;
  }

  .nav-logo img {
    height: 44px;
  }

  .nav-links {
    display: none;
    transform: none !important;
  }

  .nav-award {
    display: none;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .mobile-menu-btn span {
    display: block !important;
    background: var(--hb-text, #1e2d3d) !important;
  }

  .nav-icon {
    width: 36px;
    height: 36px;
  }

  .nav-icon svg {
    width: 18px;
    height: 18px;
  }

  .nav-right {
    gap: 6px;
  }

  .cart-count {
    width: 14px;
    height: 14px;
    font-size: 8px;
    top: 1px;
    right: 1px;
  }

  .nav-login-btn span {
    display: none;
  }

  .nav-login-btn {
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    justify-content: center;
  }

  .section-pad {
    padding: 72px 24px;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .science-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .proof-stats {
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* .insta-grid replaced by Smash Balloon overrides above */
  .trust-ribbon {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 24px;
  }

  .concerns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  /* ── ANNOUNCEMENT BAR ── */
  .announce-bar {
    font-size: 11px;
    padding: 8px 12px;
    gap: 6px;
  }

  .announce-bar span {
    font-size: 9px;
    padding: 2px 6px;
  }

  /* ── HERO ── */
  .hero-left {
    padding: 32px 20px;
  }

  .hero h1 {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .hero h1 .jp-text {
    font-size: 13px;
  }

  .hero-tag {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 13px 24px;
    font-size: 14px;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }

  .trust-item {
    padding: 8px 14px 8px 10px;
  }

  .trust-icon {
    width: 32px;
    height: 32px;
  }

  .trust-icon svg {
    width: 16px;
    height: 16px;
  }

  .trust-text {
    font-size: 12px;
  }

  .trust-text small {
    font-size: 10px;
  }

  .hero-right {
    min-height: 280px;
  }

  .hero-product-img {
    max-height: 240px;
  }

  .hero-floating-badge {
    display: none;
  }

  .cloud,
  .mochi-shape {
    display: none;
  }

  /* ── SECTIONS ── */
  .section-pad {
    padding: 56px 20px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header p {
    font-size: 14px;
  }

  .sh-tag {
    font-size: 10px;
  }

  /* ── TRUST RIBBON ── */
  .trust-ribbon {
    gap: 12px;
    padding: 16px 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ribbon-item {
    font-size: 11px;
    gap: 6px;
  }

  .ribbon-item .ri-icon {
    font-size: 16px;
  }

  /* ── PRODUCTS ── */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 100%;
  }

  .product-img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-quick-links {
    position: absolute !important;
    bottom: 8px !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 0 6px !important;
    pointer-events: auto !important;
    z-index: 3 !important;
  }

  .product-quick-links a {
    padding: 5px 8px !important;
    font-size: 9px !important;
    border-radius: 30px !important;
    gap: 3px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    flex: 1 !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .product-quick-links a svg {
    width: 10px !important;
    height: 10px !important;
  }

  .product-img-bg {
    padding: 0;
  }

  .product-img-bg img {
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-info {
    padding: 14px;
  }

  .product-info h3 {
    font-size: 15px;
  }

  .product-info .p-category {
    font-size: 10px;
  }

  .product-info .p-desc {
    font-size: 12px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-price .current {
    font-size: 15px;
  }

  .product-price .original {
    font-size: 11px;
  }

  .product-rating {
    font-size: 11px;
  }

  .product-card-badge {
    font-size: 9px;
    padding: 3px 8px;
    top: 10px;
    left: 10px;
  }

  .product-card-badge.disc {
    font-size: 10px;
    padding: 3px 7px;
    top: 10px;
    right: 10px;
  }

  .product-quick-add {
    display: none;
  }

  .products-more {
    margin-top: 32px;
  }

  /* ── WHY SECTION ── */
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 16px;
  }

  .why-card {
    padding: 32px 24px;
  }

  .why-icon {
    width: 56px;
    height: 56px;
  }

  .why-icon svg {
    width: 26px;
    height: 26px;
  }

  .why-card h3 {
    font-size: 19px;
  }

  .why-card p {
    font-size: 13px;
  }

  /* ── PROOF / TESTIMONIALS ── */
  .proof-stats {
    gap: 20px;
    justify-content: center;
  }

  .proof-stat-num {
    font-size: 32px;
  }

  .proof-stat-label {
    font-size: 11px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .testi-card {
    padding: 24px;
  }

  .testi-card blockquote {
    font-size: 13px;
  }

  /* ── SCIENCE ── */
  .science-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .science-visual {
    padding: 40px 24px;
    min-height: 280px;
  }

  .science-content h2 {
    font-size: 26px;
  }

  /* ── CONCERNS ── */
  .concerns-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 14px;
  }

  .concern-card {
    padding: 24px 20px;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    padding: 48px 20px;
  }

  .cta-banner h2 {
    font-size: 24px;
  }

  .cta-banner p {
    font-size: 14px;
  }

  .insta-follow-bar {
    margin-top: 24px;
  }

  /* ── FOOTER ── */
  .site-footer {
    padding: 48px 20px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-col ul {
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* ── MARKETPLACE BUTTONS ── */
  .marketplace-btns {
    flex-direction: column;
  }

  .mp-btn {
    justify-content: center;
    font-size: 14px;
    padding: 14px 20px;
  }
}

/* ── EXTRA SMALL (< 380px) ── */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 28px;
  }

  .proof-stats {
    flex-direction: column;
    gap: 16px;
  }

  .trust-ribbon {
    flex-direction: column;
    align-items: center;
  }
}

/* ── PAGE-SPECIFIC: produk.html ── */
/* ── PAGE HERO ── */
.page-hero {
  background: var(--hb-white);
  padding: 48px 48px 56px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--hb-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--hb-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--hb-deep);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  stroke: var(--hb-light);
}

.page-hero h1 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 10px;
  line-height: 1.2;
}

.page-hero p {
  font-size: 15px;
  color: var(--hb-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FILTER & SORT BAR ── */
.filter-sort-section {
  padding: 32px 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-pill {
  background: var(--hb-white);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  padding: 10px 24px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--hb-text);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--hb-deep);
  color: white;
  border-color: var(--hb-deep);
}

@media (max-width: 768px) {
  .filter-bar,
  .sort-bar {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 4px 0 12px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
  
  .filter-bar::-webkit-scrollbar,
  .sort-bar::-webkit-scrollbar {
    display: none !important;
  }

  .filter-pill,
  .sort-pill {
    flex: 0 0 auto !important;
    padding: 8px 18px !important;
    font-size: 12px !important;
  }

  .sort-label {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    font-size: 12px !important;
    align-self: center !important;
  }
}

.sort-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.sort-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--hb-muted);
  margin-right: 4px;
}

.sort-pill {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--hb-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.sort-pill:hover,
.sort-pill.active {
  background: var(--hb-navy);
  color: white;
  border-color: var(--hb-navy);
}

/* ── PRODUCTS LISTING ── */
.products-listing {
  padding: 40px 48px 100px;
}

/* ── PRODUCT SEARCH BAR ── */
.filter-sort-section .search-bar-container {
  max-width: 480px;
  margin: 0 auto 28px;
}

.filter-sort-section .search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-sort-section .search-input-wrap input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 13.5px;
  color: var(--hb-text);
  background: var(--hb-white);
  outline: none;
  transition: all 0.25s ease;
}

.filter-sort-section .search-input-wrap input:focus {
  border-color: var(--hb-blue);
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.15);
}

.filter-sort-section .search-input-wrap .search-icon {
  position: absolute;
  left: 15px;
  width: 16px;
  height: 16px;
  color: var(--hb-light);
  pointer-events: none;
}

.products-listing .products-grid {
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

a.product-card {
  text-decoration: none;
  color: inherit;
}

.products-listing .product-card {
  background: var(--hb-white);
}

.products-listing .product-info {
  padding: 12px;
}

.products-listing .product-info .p-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hb-muted);
  margin-bottom: 4px;
}

.products-listing .product-info h3 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em; /* 1.3em * 2 lines */
}

.products-listing .product-info .p-desc {
  display: none;
}

.products-listing .product-price {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.products-listing .product-price .current {
  font-size: 15px;
  font-weight: 700;
  color: #dc2626;
}

.products-listing .product-price .original {
  font-size: 11px;
  font-weight: 400;
  color: var(--hb-light);
  text-decoration: line-through;
}

.products-listing .product-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  color: var(--hb-gold);
  font-weight: 600;
}

.products-listing .product-rating span {
  color: var(--hb-muted);
  font-weight: 400;
}

.products-listing .product-card-badge {
  font-size: 9px;
  padding: 3px 8px;
}

.products-listing .product-card-badge.disc {
  font-size: 10px;
  padding: 3px 7px;
}

.products-listing .product-card:hover .product-img-bg img {
  transform: scale(1.06) translateY(-4px);
}

.products-listing .product-img-bg img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.products-listing .product-cat-section {
  scroll-margin-top: 100px;
}

/* ── RESULT COUNT ── */
.result-count {
  text-align: center;
  font-size: 13px;
  color: var(--hb-muted);
  margin-bottom: 28px;
}

.result-count strong {
  color: var(--hb-text);
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-listing .products-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 32px 24px 40px;
  }

  .filter-sort-section {
    padding: 24px 24px 0;
  }

  .products-listing {
    padding: 32px 24px 80px;
  }

  .products-listing .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .filter-pill {
    padding: 8px 18px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .products-listing .products-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ── NAV ACTIVE STATE ── */
.nav-links a.active {
  color: var(--hb-deep);
}

.nav-links a.active::after {
  width: 100%;
}

/* ── PAGE-SPECIFIC: tentang-kami.html ── */
/* ── ABOUT PAGE HERO ── */
.about-hero {
  background: linear-gradient(135deg,
      var(--hb-sky) 0%,
      #d5edfa 40%,
      var(--hb-warm) 100%);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: 480px;
}

.about-hero-text {
  position: relative;
  z-index: 1;
}

.about-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hb-deep);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.7s ease both;
}

.about-hero-tag::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--hb-blue);
  border-radius: 2px;
}

.about-hero h1 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--hb-text);
  margin-bottom: 16px;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

.about-hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--hb-muted);
  max-width: 480px;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

.about-hero-image {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}

.about-hero-image img {
  max-height: 380px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(42, 122, 181, 0.18));
  animation: floatUp 4s ease-in-out infinite;
}

/* Decorative mochi blobs for hero */
.about-hero .mochi-shape.mh-1 {
  width: 200px;
  height: 180px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;
  top: -40px;
  right: 10%;
  animation: morphBlob 10s ease-in-out infinite;
}

.about-hero .mochi-shape.mh-2 {
  width: 150px;
  height: 140px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 42% 58% 35% 65% / 55% 45% 55% 45%;
  bottom: -30px;
  left: 5%;
  animation: morphBlob 12s 3s ease-in-out infinite reverse;
}

.about-hero .mochi-shape.mh-3 {
  width: 80px;
  height: 74px;
  background: rgba(107, 186, 229, 0.12);
  border-radius: 52% 48% 44% 56% / 46% 60% 40% 54%;
  top: 20%;
  left: 45%;
  animation: mochiWobble 7s 1s ease-in-out infinite;
}

/* ── BRAND STORY SECTION ── */
.story-section {
  background: var(--hb-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.story-text h3 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 24px;
  line-height: 1.25;
}

.story-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--hb-muted);
  margin-bottom: 18px;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image-container {
  background: linear-gradient(150deg,
      var(--hb-sky) 0%,
      #d5edfa 50%,
      var(--hb-warm) 100%);
  border-radius: var(--hb-radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.story-image-container::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;
  background: rgba(255, 255, 255, 0.2);
  top: -40px;
  right: -30px;
  animation: morphBlob 8s ease-in-out infinite;
  pointer-events: none;
}

.story-image-container img {
  max-height: 320px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(42, 122, 181, 0.15));
  display: block;
  margin: 0 auto;
}

/* ── CERTIFICATIONS SECTION ── */
.cert-section {
  background: var(--hb-cream);
  position: relative;
  overflow: hidden;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cert-card {
  border-radius: var(--hb-radius-xl);
  padding: 48px 36px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cert-card.cert-bpom-card {
  background: linear-gradient(160deg, #eff8ff, #dbeefe);
  border-color: rgba(42, 122, 181, 0.15);
}

.cert-card.cert-halal-card {
  background: linear-gradient(160deg, #ecfdf5, #d1fae5);
  border-color: rgba(16, 185, 129, 0.15);
}

.cert-card.cert-derma-card {
  background: linear-gradient(160deg, #fff9f4, #eef4ff);
  border-color: rgba(212, 160, 74, 0.15);
}

.cert-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.cert-bpom-card .cert-icon {
  background: rgba(42, 122, 181, 0.12);
}

.cert-halal-card .cert-icon {
  background: rgba(16, 185, 129, 0.12);
}

.cert-derma-card .cert-icon {
  background: rgba(212, 160, 74, 0.12);
}

.cert-card h3 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--hb-text);
}

.cert-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--hb-muted);
}

/* Decorative mochi for cert section */
.cert-section .mochi-shape.cm-1 {
  width: 120px;
  height: 110px;
  background: rgba(107, 186, 229, 0.08);
  border-radius: 52% 48% 44% 56% / 46% 60% 40% 54%;
  top: 10%;
  right: 3%;
  animation: mochiWobble 8s ease-in-out infinite;
}

.cert-section .mochi-shape.cm-2 {
  width: 90px;
  height: 80px;
  background: rgba(167, 196, 160, 0.1);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  bottom: 8%;
  left: 4%;
  animation: mochiWobble 7s 2s ease-in-out infinite;
}

/* ── PHILOSOPHY / WHY SECTION OVERRIDES ── */
.philosophy-section {
  background: var(--hb-white);
}

/* ── STATS SECTION ── */
.stats-section {
  background: var(--hb-navy);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}

.stats-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(107, 186, 229, 0.12),
      transparent 70%);
  top: -200px;
  right: -200px;
}

.stats-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(107, 186, 229, 0.08),
      transparent 70%);
  bottom: -150px;
  left: -150px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 600;
  color: var(--hb-sky);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* ── TEAM SECTION ── */
.team-section {
  background: var(--hb-cream);
}

.team-desc {
  font-size: 15px;
  color: var(--hb-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--hb-radius-xl);
  background: var(--hb-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.team-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.team-card:nth-child(1) .team-icon {
  background: linear-gradient(135deg, #e8f4fc, #d0e8f7);
}

.team-card:nth-child(2) .team-icon {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.team-card:nth-child(3) .team-icon {
  background: linear-gradient(135deg, #fff3ea, #ffe6d3);
}

.team-card h3 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--hb-text);
}

.team-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hb-muted);
}

/* ── NAV ACTIVE STATE ── */
.nav-links a.active {
  color: var(--hb-deep);
}

.nav-links a.active::after {
  width: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    text-align: center;
  }

  .about-hero-subtitle {
    margin: 0 auto;
  }

  .about-hero-image img {
    max-height: 280px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image {
    order: -1;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .stats-section {
    padding: 60px 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 40px 24px;
    min-height: auto;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-hero-image img {
    max-height: 220px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .stats-section {
    padding: 48px 24px;
  }
}

/* ── PAGE-SPECIFIC: bahan-kami.html ── */
/* ── INGREDIENTS HERO ── */
.ing-hero {
  position: relative;
  padding: 100px 48px 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg,
      var(--hb-cream) 0%,
      var(--hb-warm) 50%,
      var(--hb-cream) 100%);
}

.ing-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;
  background: rgba(200, 227, 244, 0.25);
  top: -120px;
  left: -80px;
  animation: morphBlob 8s ease-in-out infinite;
  pointer-events: none;
}

.ing-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 42% 58% 35% 65% / 55% 45% 55% 45%;
  background: rgba(255, 216, 190, 0.2);
  bottom: -100px;
  right: -60px;
  animation: morphBlob 8s 2s ease-in-out infinite reverse;
  pointer-events: none;
}

.ing-hero .mochi-deco {
  position: absolute;
  pointer-events: none;
  border-radius: 52% 48% 44% 56% / 46% 60% 40% 54%;
}

.ing-hero .mochi-deco-1 {
  width: 80px;
  height: 74px;
  background: rgba(107, 186, 229, 0.1);
  top: 15%;
  right: 12%;
  animation: mochiWobble 6s ease-in-out infinite;
}

.ing-hero .mochi-deco-2 {
  width: 50px;
  height: 46px;
  background: rgba(167, 196, 160, 0.12);
  bottom: 20%;
  left: 8%;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  animation: mochiWobble 7s 1.5s ease-in-out infinite;
}

.ing-hero .mochi-deco-3 {
  width: 36px;
  height: 34px;
  background: rgba(242, 196, 196, 0.15);
  top: 30%;
  left: 15%;
  border-radius: 54% 46% 42% 58% / 48% 56% 44% 52%;
  animation: mochiWobble 5s 3s ease-in-out infinite;
}

@keyframes mochiWobble {

  0%,
  100% {
    border-radius: 52% 48% 44% 56% / 46% 60% 40% 54%;
    transform: scale(1);
  }

  50% {
    border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
    transform: scale(1.06);
  }
}

.ing-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.ing-hero .sh-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hb-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: fadeSlideUp 0.7s ease both;
}

.ing-hero .sh-tag::before,
.ing-hero .sh-tag::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--hb-blue);
}

.ing-hero h1 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--hb-text);
  margin-bottom: 18px;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

.ing-hero h1 em {
  font-style: italic;
  color: var(--hb-deep);
}

.ing-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--hb-muted);
  max-width: 560px;
  margin: 0 auto;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

/* ── PHILOSOPHY SECTION ── */
.philosophy-section {
  background: var(--hb-white);
  padding: 80px 48px;
  text-align: center;
}

.philosophy-content {
  max-width: 720px;
  margin: 0 auto;
}

.philosophy-content .sh-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hb-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.philosophy-content .sh-tag::before,
.philosophy-content .sh-tag::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--hb-blue);
}

.philosophy-content h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 16px;
}

.philosophy-content p {
  font-size: 15px;
  color: var(--hb-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ── HERO INGREDIENTS GRID ── */
.ingredients-section {
  padding: 100px 48px;
  background: var(--hb-cream);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.ing-card {
  background: var(--hb-white);
  border-radius: var(--hb-radius-lg);
  padding: 36px 28px 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--hb-radius-lg) var(--hb-radius-lg) 0 0;
}

.ing-card:nth-child(1)::before {
  background: linear-gradient(90deg, #ff6b6b, #ffb4b4);
}

.ing-card:nth-child(2)::before {
  background: linear-gradient(90deg, #6bbae5, #a8d8f0);
}

.ing-card:nth-child(3)::before {
  background: linear-gradient(90deg, #d4a04a, #f0d48a);
}

.ing-card:nth-child(4)::before {
  background: linear-gradient(90deg, #a7c4a0, #c8dfc4);
}

.ing-card:nth-child(5)::before {
  background: linear-gradient(90deg, #f0c060, #f8dfa0);
}

.ing-card:nth-child(6)::before {
  background: linear-gradient(90deg, #e88b8b, #f4bfbf);
}

.ing-card:nth-child(7)::before {
  background: linear-gradient(90deg, #c4a882, #dfc8a8);
}

.ing-card:nth-child(8)::before {
  background: linear-gradient(90deg, #b8a0d8, #d4c4ec);
}

.ing-card:nth-child(9)::before {
  background: linear-gradient(90deg, #6bc5b8, #a0ded4);
}

.ing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(107, 186, 229, 0.15);
}

.ing-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ing-card:nth-child(1) .ing-icon {
  background: #fff0f0;
}

.ing-card:nth-child(2) .ing-icon {
  background: #eff8ff;
}

.ing-card:nth-child(3) .ing-icon {
  background: #fff8ec;
}

.ing-card:nth-child(4) .ing-icon {
  background: #f0f7ef;
}

.ing-card:nth-child(5) .ing-icon {
  background: #fff6e0;
}

.ing-card:nth-child(6) .ing-icon {
  background: #fff0ee;
}

.ing-card:nth-child(7) .ing-icon {
  background: #fdf6ee;
}

.ing-card:nth-child(8) .ing-icon {
  background: #f5f0ff;
}

.ing-card:nth-child(9) .ing-icon {
  background: #eefaf7;
}

.ing-icon svg {
  width: 30px;
  height: 30px;
}

.ing-card h3 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 4px;
}

.ing-card .ing-subtitle {
  font-size: 12px;
  color: var(--hb-light);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.ing-card .ing-desc {
  font-size: 14px;
  color: var(--hb-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.ing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ing-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--hb-deep);
  background: rgba(107, 186, 229, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

.ing-tags-label {
  font-size: 11px;
  color: var(--hb-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* ── FREE FROM SECTION ── */
.freefrom-section {
  background: var(--hb-navy);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.freefrom-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(107, 186, 229, 0.12),
      transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.freefrom-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 216, 190, 0.06),
      transparent 70%);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

.freefrom-section .section-header .sh-tag {
  color: var(--hb-sky);
}

.freefrom-section .section-header .sh-tag::before,
.freefrom-section .section-header .sh-tag::after {
  background: var(--hb-sky);
}

.freefrom-section .section-header h2 {
  color: white;
}

.freefrom-section .section-header p {
  color: rgba(255, 255, 255, 0.55);
}

.freefrom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.freefrom-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--hb-radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.freefrom-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.freefrom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.freefrom-icon svg {
  width: 22px;
  height: 22px;
  color: #ef4444;
}

.freefrom-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.01em;
}

/* ── SOURCING SECTION ── */
.sourcing-section {
  padding: 80px 48px;
  background: var(--hb-white);
  text-align: center;
}

.sourcing-content {
  max-width: 720px;
  margin: 0 auto;
}

.sourcing-content h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 16px;
}

.sourcing-content p {
  font-size: 15px;
  color: var(--hb-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 24px;
}

.sourcing-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.sourcing-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--hb-cream);
  border: 1.5px solid rgba(42, 122, 181, 0.1);
  border-radius: 100px;
  padding: 12px 24px 12px 16px;
  transition: all 0.3s ease;
}

.sourcing-badge:hover {
  border-color: var(--hb-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(42, 122, 181, 0.1);
}

.sourcing-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(42, 122, 181, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sourcing-badge-icon svg {
  width: 18px;
  height: 18px;
  color: var(--hb-deep);
}

.sourcing-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--hb-text);
}

/* ── CTA SECTION ── */
.ing-cta {
  padding: 80px 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--hb-cream) 0%, var(--hb-warm) 100%);
  position: relative;
  overflow: hidden;
}

.ing-cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 52% 48% 44% 56% / 46% 60% 40% 54%;
  background: rgba(200, 227, 244, 0.15);
  top: -100px;
  right: -80px;
  animation: morphBlob 8s ease-in-out infinite;
  pointer-events: none;
}

.ing-cta h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.ing-cta p {
  font-size: 15px;
  color: var(--hb-muted);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── NAV ACTIVE STATE ── */
.nav-links a.active {
  color: var(--hb-deep);
}

.nav-links a.active::after {
  width: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .freefrom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ing-hero,
  .philosophy-section,
  .ingredients-section,
  .freefrom-section,
  .sourcing-section,
  .ing-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .freefrom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .freefrom-card {
    padding: 20px 14px;
  }

  .sourcing-badges {
    flex-direction: column;
    align-items: center;
  }

  .ing-hero {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

/* ── PAGE-SPECIFIC: panduan-kulit.html ── */
/* ── PAGE-SPECIFIC: PANDUAN KULIT ── */

.guide-hero {
  background: linear-gradient(135deg,
      var(--hb-sky) 0%,
      #d5edfa 40%,
      var(--hb-warm) 100%);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guide-hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;
  background: rgba(255, 255, 255, 0.2);
  top: -120px;
  left: -80px;
  animation: morphBlob 8s ease-in-out infinite;
}

.guide-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 42% 58% 35% 65% / 55% 45% 55% 45%;
  background: rgba(255, 255, 255, 0.15);
  bottom: -80px;
  right: -60px;
  animation: morphBlob 8s 2s ease-in-out infinite reverse;
}

@keyframes morphBlob {

  0%,
  100% {
    border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;
    transform: scale(1) rotate(0deg);
  }

  25% {
    border-radius: 42% 58% 45% 55% / 55% 42% 58% 48%;
    transform: scale(1.04) rotate(3deg);
  }

  50% {
    border-radius: 52% 48% 38% 62% / 48% 62% 38% 52%;
    transform: scale(1.06) rotate(-2deg);
  }

  75% {
    border-radius: 45% 55% 58% 42% / 62% 38% 52% 48%;
    transform: scale(1.02) rotate(1deg);
  }
}

.guide-hero h1 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.guide-hero p {
  font-size: 18px;
  color: var(--hb-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── CONCERN SECTIONS ── */
.concern-section {
  padding: 72px 48px;
  max-width: 960px;
  margin: 0 auto;
}

.concern-section:nth-child(odd) {
  background: var(--hb-white);
}

.concern-section:nth-child(even) {
  background: var(--hb-cream);
}

.concern-wrapper:nth-child(odd) .concern-section {
  background: var(--hb-white);
}

.concern-wrapper:nth-child(even) .concern-section {
  background: var(--hb-cream);
}

.concern-alt-bg {
  background: var(--hb-cream);
}

.concern-white-bg {
  background: var(--hb-white);
}

.concern-block {
  padding: 72px 48px;
}

.concern-inner {
  max-width: 880px;
  margin: 0 auto;
}

.concern-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.concern-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
  margin: 0;
}

.concern-icon.eczema {
  background: linear-gradient(135deg, #fecaca, #fde8e8);
}

.concern-icon.ruam {
  background: linear-gradient(135deg, #fde68a, #fef3c7);
}

.concern-icon.keringat {
  background: linear-gradient(135deg, #a7f3d0, #d1fae5);
}

.concern-icon.serangga {
  background: linear-gradient(135deg, #c4b5fd, #ede9fe);
}

.concern-icon.tidur {
  background: linear-gradient(135deg, #c7d2fe, #e0e7ff);
}

.concern-icon.kering {
  background: linear-gradient(135deg, #fbcfe8, #fce7f3);
}

.concern-header h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--hb-text);
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.concern-body p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--hb-muted);
  margin-bottom: 16px;
}

.concern-body strong {
  color: var(--hb-text);
  font-weight: 600;
}

.concern-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--hb-text);
  margin: 24px 0 12px;
}

.concern-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.concern-body ul li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--hb-muted);
}

.concern-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hb-blue);
  opacity: 0.6;
}

/* ── PRODUCT RECOMMENDATION CARD ── */
.reco-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--hb-snow);
  border: 1.5px solid rgba(107, 186, 229, 0.15);
  border-radius: var(--hb-radius);
  padding: 20px 24px;
  margin-top: 28px;
  transition: all 0.3s ease;
}

.reco-card:hover {
  border-color: var(--hb-blue);
  box-shadow: 0 6px 20px rgba(42, 122, 181, 0.1);
  transform: translateY(-2px);
}

.reco-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--hb-warm);
}

.reco-info {
  flex: 1;
}

.reco-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hb-deep);
  margin-bottom: 4px;
}

.reco-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 2px;
}

.reco-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--hb-deep);
}

.reco-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hb-deep);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--hb-blue);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.reco-link:hover {
  background: var(--hb-deep);
  color: white;
  border-color: var(--hb-deep);
}

/* ── PANDUAN KULIT — NEW CONCERN LAYOUT ── */
.concern-icon.kusam {
  background: linear-gradient(135deg, #fde68a, #fffbeb);
}

.concern-intro {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--hb-muted);
  margin: 0 0 28px;
  padding: 0;
}

.concern-products-label,
.concern-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hb-primary);
  margin-bottom: 14px;
}

.concern-products-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.concern-prod-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 14px 16px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  min-width: 180px;
}

.concern-prod-card:hover {
  border-color: var(--hb-blue);
  box-shadow: 0 4px 16px rgba(42, 122, 181, 0.1);
  transform: translateY(-2px);
}

.concern-prod-img img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
}

.concern-prod-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--hb-text);
  line-height: 1.3;
  margin-bottom: 4px;
}

.concern-prod-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--hb-primary);
}

.concern-ingredients {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 32px;
}

.concern-ing-group {
  margin-bottom: 20px;
}

.concern-ing-group:last-child {
  margin-bottom: 0;
}

.concern-ing-product {
  font-size: 13px;
  font-weight: 700;
  color: var(--hb-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.concern-ing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.concern-ing-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hb-muted);
  padding-left: 16px;
  position: relative;
}

.concern-ing-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--hb-primary);
  font-weight: 700;
}

.concern-ing-list li strong {
  color: var(--hb-text);
  font-weight: 600;
}

.concern-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.concern-facts-list,
.concern-saran-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.concern-facts-list li,
.concern-saran-list li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--hb-muted);
  padding-left: 20px;
  position: relative;
}

.concern-facts-list li::before {
  content: "💡";
  position: absolute;
  left: 0;
  font-size: 13px;
}

.concern-saran-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.concern-usage {
  background: linear-gradient(135deg, #eff6ff, #f0fff4);
  border-radius: 16px;
  padding: 24px 28px;
}

.concern-usage-steps {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.concern-usage-steps li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--hb-text);
}

/* ── DOCTOR WARNING SECTION ── */
.doctor-section {
  padding: 72px 48px;
  background: linear-gradient(135deg, #fef2f2, #fff7ed);
}

.doctor-inner {
  max-width: 880px;
  margin: 0 auto;
}

.doctor-section h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.doctor-section>.doctor-inner>p {
  font-size: 15.5px;
  color: var(--hb-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.warning-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--hb-text);
  border-left: 3px solid #ef4444;
}

.warning-list li .w-icon {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.5;
}

/* ── FAQ ACCORDION ── */
.faq-section {
  padding: 72px 48px;
  background: var(--hb-white);
}

.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}

.faq-section h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--hb-text);
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--hb-blue);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--hb-text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--hb-deep);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--hb-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--hb-deep);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--hb-muted);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ── CTA SECTION ── */
.guide-cta {
  padding: 72px 48px;
  background: linear-gradient(135deg,
      var(--hb-sky) 0%,
      #d5edfa 50%,
      var(--hb-warm) 100%);
  text-align: center;
}

.guide-cta h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 12px;
}

.guide-cta p {
  font-size: 16px;
  color: var(--hb-muted);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.guide-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── NAV ACTIVE STATE ── */
.nav-links a.active {
  color: var(--hb-deep);
}

.nav-links a.active::after {
  width: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .guide-hero {
    padding: 56px 24px;
  }

  .concern-block {
    padding: 48px 24px;
  }

  .doctor-section {
    padding: 48px 24px;
  }

  .faq-section {
    padding: 48px 24px;
  }

  .guide-cta {
    padding: 48px 24px;
  }

  .reco-card {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .reco-link {
    margin-top: 8px;
  }

  .concern-header h2 {
    font-size: 22px;
  }

  .concern-products-row {
    gap: 10px;
  }

  .concern-prod-card {
    min-width: 140px;
  }

  .concern-two-col {
    grid-template-columns: 1fr;
  }

  .concern-ingredients {
    padding: 18px 20px;
  }

  .concern-usage {
    padding: 18px 20px;
  }
}

/* ── PAGE-SPECIFIC: blog.html ── */
/* ── NAV ACTIVE STATE ── */
.nav-links a.active {
  color: var(--hb-deep);
}

.nav-links a.active::after {
  width: 100%;
}

/* ── BLOG HERO ── */
.blog-hero {
  text-align: center;
  padding: 72px 48px 48px;
  position: relative;
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(200, 227, 244, 0.3) 0%,
      transparent 70%);
  pointer-events: none;
}

.blog-hero .sh-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hb-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-hero .sh-tag::before,
.blog-hero .sh-tag::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--hb-blue);
}

.blog-hero h1 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--hb-text);
  margin-bottom: 16px;
}

.blog-hero p {
  font-size: 16px;
  color: var(--hb-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FEATURED POST ── */
.featured-post {
  display: block;
  text-decoration: none;
  color: white;
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 0 48px;
}

.featured-inner {
  background: linear-gradient(135deg,
      var(--hb-navy) 0%,
      var(--hb-deep) 50%,
      #4a9bd9 100%);
  border-radius: var(--hb-radius-xl);
  padding: 64px 72px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.featured-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(27, 77, 110, 0.3);
}

.featured-inner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 70%);
  pointer-events: none;
}

.featured-inner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: 5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(107, 186, 229, 0.15) 0%,
      transparent 70%);
  pointer-events: none;
}

.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.featured-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hb-gold);
}

.featured-cat {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.featured-inner h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 600px;
  position: relative;
}

.featured-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 24px;
  position: relative;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

.featured-meta .fm-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.featured-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  position: relative;
}

.featured-readmore svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.featured-inner:hover .featured-readmore svg {
  transform: translateX(4px);
}

/* ── CATEGORY FILTERS ── */
.category-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 48px 48px;
  flex-wrap: wrap;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--hb-text);
  background: var(--hb-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cat-pill:hover {
  border-color: var(--hb-blue);
  color: var(--hb-deep);
  background: rgba(107, 186, 229, 0.06);
}

.cat-pill.active {
  background: var(--hb-deep);
  color: white;
  border-color: var(--hb-deep);
}

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.blog-card {
  background: var(--hb-white);
  border-radius: var(--hb-radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(42, 122, 181, 0.1);
  border-color: var(--hb-sky);
}

.blog-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-thumb-icon {
  font-size: 48px;
  opacity: 0.3;
}

.blog-thumb .cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hb-deep);
}

.blog-thumb.grad-1 {
  background: linear-gradient(135deg, #c8e3f4 0%, #e8f4fc 50%, #f0f8ff 100%);
}

.blog-thumb.grad-2 {
  background: linear-gradient(135deg, #eef4ff 0%, #ffe4d0 50%, #ffdbc4 100%);
}

.blog-thumb.grad-3 {
  background: linear-gradient(135deg, #e8f5e4 0%, #d4edcf 50%, #c5e8be 100%);
}

.blog-thumb.grad-4 {
  background: linear-gradient(135deg, #fff3dc 0%, #ffe8c0 50%, #ffdfa8 100%);
}

.blog-thumb.grad-5 {
  background: linear-gradient(135deg, #f2e4f7 0%, #e8d4f0 50%, #ddc4e8 100%);
}

.blog-thumb.grad-6 {
  background: linear-gradient(135deg, #f9e4d4 0%, #f2d4c0 50%, #ebc5ad 100%);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--hb-text);
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--hb-muted);
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--hb-light);
  margin-top: auto;
}

.blog-meta .author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hb-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--hb-deep);
  flex-shrink: 0;
}

.blog-meta .meta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.blog-meta .author-name {
  font-weight: 600;
  color: var(--hb-text);
  font-size: 12px;
}

.blog-meta .meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta .meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--hb-light);
}

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, #e8f4fc 0%, #fff1e6 50%, #f0f8ff 100%);
  padding: 80px 48px;
  text-align: center;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--hb-text);
  margin-bottom: 12px;
}

.newsletter p {
  font-size: 15px;
  color: var(--hb-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 14px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--hb-white);
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 14px;
  color: var(--hb-text);
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
  color: var(--hb-light);
}

.newsletter-form input:focus {
  border-color: var(--hb-blue);
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hb-deep);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--hb-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 122, 181, 0.25);
}

.newsletter-hint {
  font-size: 12.5px;
  color: var(--hb-muted);
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 48px 80px;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--hb-text);
  background: var(--hb-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-btn:hover {
  border-color: var(--hb-blue);
  color: var(--hb-deep);
}

.page-btn.active {
  background: var(--hb-deep);
  color: white;
  border-color: var(--hb-deep);
}

.page-btn.page-next {
  width: auto;
  padding: 0 20px;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
}

.page-ellipsis {
  font-size: 14px;
  color: var(--hb-light);
  padding: 0 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .blog-hero {
    padding: 48px 20px 32px;
  }

  .featured-post {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .featured-inner {
    padding: 40px 28px;
  }

  .featured-inner h2 {
    font-size: 22px;
  }

  .category-filters {
    padding: 0 20px 32px;
    gap: 8px;
  }

  .cat-pill {
    padding: 7px 16px;
    font-size: 12px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 48px;
    gap: 20px;
  }

  .newsletter {
    padding: 56px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    justify-content: center;
  }

  .pagination {
    padding: 0 20px 56px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 32px 64px;
  }

  .featured-post {
    padding: 0 32px;
  }

  .category-filters {
    padding: 0 32px 40px;
  }
}

/* ── PAGE-SPECIFIC: blog-post.html ── */
/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--hb-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--hb-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--hb-deep);
}

.breadcrumb .sep {
  font-size: 10px;
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--hb-text);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 260px;
}

/* ── ARTICLE HEADER ── */
.article-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 32px;
  text-align: center;
}

.article-category {
  display: inline-block;
  background: var(--hb-sky);
  color: var(--hb-navy);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-header h1 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--hb-text);
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13.5px;
  color: var(--hb-muted);
  flex-wrap: wrap;
}

.article-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-meta svg {
  width: 15px;
  height: 15px;
  opacity: 0.6;
}

.article-meta .meta-sep {
  width: 4px;
  height: 4px;
  background: var(--hb-light);
  border-radius: 50%;
}

/* ── SHARE BUTTONS ── */
.share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.share-buttons span {
  font-size: 13px;
  color: var(--hb-muted);
  font-weight: 500;
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: var(--hb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--hb-text);
}

.share-btn:hover {
  border-color: var(--hb-blue);
  background: rgba(107, 186, 229, 0.08);
  color: var(--hb-deep);
}

.share-btn svg {
  width: 16px;
  height: 16px;
}

/* ── ARTICLE BODY ── */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 60px;
  font-size: 17.5px;
  line-height: 1.82;
  color: #2c3e50;
}

.article-body p {
  margin-bottom: 22px;
}

.article-body h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--hb-text);
  margin: 48px 0 20px;
  padding-left: 18px;
  border-left: 4px solid var(--hb-blue);
  line-height: 1.3;
}

.article-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--hb-navy);
  margin: 36px 0 12px;
  line-height: 1.35;
}

.article-body ul,
.article-body ol {
  margin: 16px 0 22px 24px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--hb-text);
  font-weight: 600;
}

.article-body em {
  font-style: italic;
}

/* ── INLINE PRODUCT BOX ── */
.product-inline-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--hb-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--hb-radius);
  padding: 20px 24px;
  margin: 32px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}

.product-inline-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-inline-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--hb-snow);
  padding: 8px;
  flex-shrink: 0;
}

.product-inline-info {
  flex: 1;
  min-width: 0;
}

.product-inline-info .pil-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--hb-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-inline-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 4px;
}

.product-inline-info .pil-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--hb-deep);
}

.product-inline-cta {
  flex-shrink: 0;
}

.product-inline-cta a {
  display: inline-block;
  background: var(--hb-deep);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s;
}

.product-inline-cta a:hover {
  background: var(--hb-navy);
}

/* ── AUTHOR BOX ── */
.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--hb-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--hb-radius);
  padding: 28px;
  max-width: 720px;
  margin: 0 auto 60px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hb-sky), var(--hb-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  color: white;
  font-weight: 600;
  font-family: "VisbyRoundCF", sans-serif;
}

.author-info h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 2px;
}

.author-info .author-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--hb-deep);
  margin-bottom: 6px;
}

.author-info p {
  font-size: 14px;
  color: var(--hb-muted);
  line-height: 1.6;
}

/* ── RELATED POSTS ── */
.related-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.related-section h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 36px;
  color: var(--hb-text);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--hb-white);
  border-radius: var(--hb-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.related-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--hb-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.related-card-body {
  padding: 20px;
}

.related-card-body .rc-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--hb-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.related-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--hb-text);
  line-height: 1.4;
  margin-bottom: 8px;
}

.related-card-body .rc-meta {
  font-size: 12.5px;
  color: var(--hb-muted);
}

/* ── CTA BANNER ── */
.blog-cta-banner {
  max-width: 1080px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.blog-cta-inner {
  background: linear-gradient(135deg, var(--hb-navy) 0%, var(--hb-deep) 100%);
  border-radius: var(--hb-radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: white;
}

.blog-cta-inner h2 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-cta-inner p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.blog-cta-inner a {
  display: inline-block;
  background: white;
  color: var(--hb-navy);
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.blog-cta-inner a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .article-header h1 {
    font-size: 28px;
  }

  .article-header {
    padding: 28px 20px 24px;
  }

  .article-body {
    font-size: 16px;
    padding: 0 20px 48px;
  }

  .article-body h2 {
    font-size: 23px;
  }

  .article-body h3 {
    font-size: 18px;
  }

  .product-inline-box {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }

  .product-inline-box img {
    width: 80px;
    height: 80px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .blog-cta-inner {
    padding: 40px 24px;
  }

  .blog-cta-inner h2 {
    font-size: 24px;
  }

  .share-buttons {
    flex-wrap: wrap;
  }

  .breadcrumb {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .article-header h1 {
    font-size: 24px;
  }

  .article-meta {
    gap: 12px;
  }

  .article-meta .meta-sep {
    display: none;
  }
}

/* ── PAGE-SPECIFIC: produk-detail.html ── */
/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--hb-muted);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--hb-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--hb-deep);
}

.breadcrumb .sep {
  font-size: 11px;
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--hb-text);
  font-weight: 500;
}

/* ── PDP TAGLINE & MARKETPLACE BUTTONS ── */
.pdp-tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--hb-muted);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.pdp-cert-nos {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pdp-cert-nos .cert-no {
  font-size: 11px;
  font-weight: 500;
  color: var(--hb-muted);
  background: rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 3px 8px;
  letter-spacing: 0.03em;
}

.pdp-cert-nos .cert-no strong {
  color: var(--hb-primary);
  font-weight: 700;
  margin-right: 3px;
}

.pdp-cert-nos .cert-sep {
  color: var(--hb-muted);
  opacity: 0.4;
  font-size: 13px;
}

.pdp-marketplace-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pdp-marketplace-btns .mp-btn {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  justify-content: center;
}

.pdp-marketplace-btns .mp-btn svg {
  width: 20px;
  height: 20px;
}

/* ── PDP GRID ── */
.pdp-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── GALLERY ── */
.pdp-gallery {
  position: sticky;
  top: 110px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.pdp-main-img {
  background: linear-gradient(160deg, #e8f4fc, #d0e8f7);
  border-radius: var(--hb-radius-xl);
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 12px;
}

.pdp-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.pdp-main-img:hover img {
  transform: scale(1.04);
}

/* Description image thumbnails grid — 2 columns */
.desc-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.desc-thumbs img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Thumbnail strip wrapper — allows arrow nav buttons */
.pdp-thumbs-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Strip scroll container — clips the sliding inner row */
.pdp-thumbs {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 4px 2px;
  /* room for active ring */
}

/* Inner row that slides via JS transform */
.pdp-thumbs-inner {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* Thumb strip arrow buttons */
.pdp-thumb-arrow {
  flex-shrink: 0;
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  transition:
    background 0.2s,
    transform 0.15s;
  color: #444;
  padding: 0;
}

.pdp-thumb-arrow:hover {
  background: #f5f5f5;
  transform: scale(1.08);
}

.pdp-thumbs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 12px;
  width: 100%;
  padding: 5px 2px;

  -ms-overflow-style: none;
  scrollbar-width: none;
  flex: 0 0 auto;
  cursor: pointer;
}

.pdp-thumbs::-webkit-scrollbar {
  display: none;
}

.pdp-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--hb-radius);
  background: linear-gradient(160deg, #f0f6fa, #e4eff7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.pdp-thumb:hover {
  border-color: var(--hb-blue);
}

.pdp-thumb.active {
  border-color: var(--hb-deep);
  box-shadow: 0 4px 12px rgba(42, 122, 181, 0.15);
}

.pdp-thumb img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

/* ── Gallery carousel arrows ── */
.pdp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  color: #222;
  padding: 0;
}

.pdp-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.pdp-arrow-prev {
  left: 12px;
}

.pdp-arrow-next {
  right: 12px;
}

/* ── PRODUCT INFO ── */
.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pdp-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hb-deep);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pdp-category::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--hb-blue);
  border-radius: 2px;
}

.pdp-name {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--hb-text);
  margin-bottom: 12px;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pdp-stars {
  color: var(--hb-gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.pdp-rating-text {
  font-size: 14px;
  color: var(--hb-muted);
  font-weight: 500;
}

.pdp-rating-text strong {
  color: var(--hb-text);
  font-weight: 700;
}

/* ── PRICE ── */
.pdp-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pdp-price .original {
  font-size: 16px;
  color: var(--hb-light);
  text-decoration: line-through;
  font-weight: 400;
}

.pdp-price .current {
  font-size: 32px;
  font-weight: 700;
  color: #dc2626;
}

.pdp-price .disc-badge {
  background: #fee2e2;
  color: #dc2626;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── SHORT DESC ── */
.pdp-short-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hb-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── SIZE SELECTOR ── */
.pdp-option-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 10px;
}

.size-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.size-btn {
  padding: 10px 28px;
  border: 1.5px solid var(--hb-light);
  border-radius: 100px;
  background: transparent;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--hb-text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.size-btn:hover {
  border-color: var(--hb-blue);
  color: var(--hb-deep);
}

.size-btn.active {
  background: var(--hb-deep);
  color: white;
  border-color: var(--hb-deep);
}

/* ── QUANTITY ── */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  border: 1.5px solid var(--hb-light);
  border-radius: 100px;
  width: fit-content;
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--hb-text);
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: "VisbyRoundCF", sans-serif;
}

.qty-btn:hover {
  background: rgba(107, 186, 229, 0.1);
}

.qty-value {
  width: 48px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--hb-text);
  border-left: 1.5px solid var(--hb-light);
  border-right: 1.5px solid var(--hb-light);
  height: 44px;
  line-height: 44px;
}

/* ── ADD TO CART ── */
.pdp-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--hb-deep);
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 28px;
}

.pdp-add-cart:hover {
  background: var(--hb-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 122, 181, 0.25);
}

.pdp-add-cart svg {
  width: 20px;
  height: 20px;
}

/* ── TRUST BADGES (PDP) ── */
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pdp-trust .trust-item {
  padding: 12px 10px;
  border-radius: 14px;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: 6px;
}

.pdp-trust .trust-icon {
  width: 36px;
  height: 36px;
  font-size: 18px;
}

.pdp-trust .trust-text {
  font-size: 13px;
  font-weight: 700;
}

.pdp-trust .trust-text small {
  font-size: 11px;
  font-weight: 500;
}

/* ── PDP MARKETPLACE BUTTONS ── */
.pdp-info .marketplace-btns .mp-btn {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  justify-content: center;
}

.pdp-info .marketplace-btns .mp-btn svg {
  width: 20px;
  height: 20px;
}

/* ── MARKETPLACE LINKS ── */
.pdp-marketplace {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--hb-muted);
}

.pdp-marketplace a {
  color: var(--hb-deep);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pdp-marketplace a:hover {
  color: var(--hb-navy);
  text-decoration: underline;
}

/* ── TABS ── */
.pdp-tabs-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.pdp-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
  overflow-x: auto;
}

.tab-btn {
  padding: 14px 28px;
  background: transparent !important;
  border: none;
  border-radius: 0;
  box-shadow: none !important;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--hb-muted);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.tab-btn:hover,
.tab-btn:focus,
.tab-btn:active,
.tab-btn:focus-visible {
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
  color: var(--hb-text);
}

.tab-btn.active {
  background: transparent !important;
  color: var(--hb-deep);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--hb-deep);
  border-radius: 2px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── TAB: DESKRIPSI ── */
.tab-desc h3 {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 16px;
}

.tab-desc p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--hb-muted);
  margin-bottom: 20px;
  max-width: 760px;
}

.tab-desc .highlights-list {
  margin-bottom: 24px;
}

.tab-desc .highlights-list p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--hb-text);
  margin-bottom: 4px;
}

.tab-desc .benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 24px;
}

.tab-desc .benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--hb-text);
}

.tab-desc .benefits-list .b-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f4fc, #d0e8f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

/* ── TAB: BAHAN ── */
.tab-bahan .ingredients-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--hb-muted);
  margin-bottom: 32px;
  max-width: 760px;
}

.free-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #065f46;
}

.free-badge::before {
  content: "\2713";
  font-weight: 700;
  font-size: 12px;
}

/* ── TAB: CARA PAKAI ── */
.tab-usage .usage-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
  margin-left: 0;
  padding-left: 0;
}

.usage-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.usage-step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hb-sky), var(--hb-blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.usage-step-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--hb-text);
  margin-bottom: 4px;
}

.usage-step-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hb-muted);
}

.usage-disclaimer {
  margin-top: 16px;
  font-size: 13px;
  color: var(--hb-muted);
  font-style: italic;
}

/* ── TAB: ULASAN ── */
.tab-reviews .reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.reviews-big-score {
  text-align: center;
}

.reviews-big-score .score {
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--hb-text);
  line-height: 1;
}

.reviews-big-score .stars {
  color: var(--hb-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin: 6px 0 4px;
}

.reviews-big-score .count {
  font-size: 13px;
  color: var(--hb-muted);
}

.review-card {
  background: var(--hb-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--hb-radius-lg);
  padding: 28px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hb-sky), var(--hb-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 15px;
}

.review-meta {
  flex: 1;
}

.review-meta .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--hb-text);
}

.review-meta .date {
  font-size: 12px;
  color: var(--hb-muted);
}

.review-stars {
  color: var(--hb-gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hb-muted);
  font-style: italic;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  margin-top: 10px;
}

/* ── RELATED PRODUCTS ── */
.related-section {
  background: var(--hb-white);
  padding: 80px 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-main-img {
    aspect-ratio: 1/1;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pdp-section {
    padding: 20px 16px 48px;
  }

  .pdp-main-img {
    border-radius: var(--hb-radius-lg);
  }

  .pdp-thumb {
    width: 60px;
    height: 60px;
  }

  .pdp-name {
    font-size: 26px;
  }

  .pdp-price .current {
    font-size: 26px;
  }

  .pdp-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .pdp-trust .trust-item {
    padding: 10px 8px;
  }

  .pdp-trust .trust-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .pdp-trust .trust-text {
    font-size: 12px;
  }

  .pdp-tabs-nav {
    gap: 0;
  }

  .tab-btn {
    padding: 12px 16px;
    font-size: 13px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .breadcrumb {
    font-size: 12px;
  }
}

/* ============================================================
   MASCOT SYSTEM — Bubu & Mumu
   ============================================================ */

/* ── Keyframe animations ── */
@keyframes bubu-float {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  30% {
    transform: translateY(-14px) rotate(2deg);
  }

  70% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

@keyframes bubu-bounce {

  0%,
  100% {
    transform: translateY(0) scaleY(1) rotate(0deg);
  }

  20% {
    transform: translateY(-28px) scaleY(1.06) rotate(-4deg);
  }

  50% {
    transform: translateY(-18px) scaleY(1.03) rotate(3deg);
  }

  70% {
    transform: translateY(-6px) scaleY(0.97) rotate(-1deg);
  }
}

@keyframes bubu-wiggle {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  15% {
    transform: rotate(-12deg) scale(1.04);
  }

  35% {
    transform: rotate(10deg) scale(1.04);
  }

  55% {
    transform: rotate(-7deg) scale(1.02);
  }

  75% {
    transform: rotate(7deg) scale(1.02);
  }
}

@keyframes mascot-click-bounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  30% {
    transform: translateY(-22px) scale(1.1) rotate(-5deg);
  }

  60% {
    transform: translateY(-10px) scale(1.05) rotate(3deg);
  }
}

@keyframes bubble-pop {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.6) translateY(6px);
  }

  60% {
    transform: translateX(-50%) scale(1.08) translateY(-2px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
  }
}

/* ── Base mascot ── */
.mascot {
  position: absolute;
  z-index: 20;
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.14));
  transition: filter 0.2s ease;
  will-change: transform;
}

.mascot img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
}

.mascot:hover {
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.22));
}

.mascot.clicked {
  animation: mascot-click-bounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* ── Speech bubble ── */
.mascot-bubble {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.7);
  background: #fff;
  border-radius: 18px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
  opacity: 0;
  pointer-events: none;
  z-index: 21;
  font-family: "VisbyRoundCF", sans-serif;
}

.mascot-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
  border-bottom: none;
}

.mascot:hover .mascot-bubble {
  animation: bubble-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ── 1. Hero Bubu (bottom-right, breaks below hero) ── */
.hero {
  overflow: visible;
}

.mascot-hero {
  bottom: -45px;
  right: -10px;
  width: 190px;
  animation: bubu-float 4.2s ease-in-out infinite;
  transform-origin: bottom center;
}

/* ── 2. Products Bubu (love, right side breaks grid) ── */
.products-section {
  overflow: visible;
}

.mascot-products {
  right: -24px;
  bottom: 80px;
  width: 155px;
  opacity: 0;
  transform: translateX(110%);
  transition:
    opacity 0.6s ease,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mascot-products.visible {
  opacity: 1;
  transform: translateX(0);
  animation: bubu-float 5s ease-in-out infinite 0.3s;
}

/* ── 3. Why Hiboo Mumu (peeks from left) ── */
.why-section {
  overflow: visible;
}

.mascot-why {
  left: -44px;
  top: 50%;
  transform: translateX(-110%) translateY(-50%);
  width: 148px;
  opacity: 0;
  transition:
    opacity 0.5s ease,
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mascot-why.visible {
  opacity: 1;
  transform: translateX(0) translateY(-50%);
  animation: bubu-float 4.8s ease-in-out infinite 0.8s;
}

/* ── 4. Proof/Testimonials Bubu (kagum, top-right) ── */
.proof-section {
  overflow: visible;
}

.mascot-proof {
  right: -16px;
  top: -56px;
  width: 150px;
  opacity: 0;
  transform: translateX(110%);
  transition:
    opacity 0.6s ease,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mascot-proof.visible {
  opacity: 1;
  transform: translateX(0);
  animation: bubu-wiggle 4s ease-in-out infinite 1s;
}

/* ── 5. CTA Banner Bubu (jumps above banner, breaks top) ── */
.cta-banner {
  overflow: visible;
}

.mascot-cta {
  top: -95px;
  right: 12%;
  width: 175px;
  opacity: 0;
  transform: translateY(-80px) scale(0.6);
  transition:
    opacity 0.5s ease,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mascot-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: bubu-bounce 2.8s ease-in-out infinite 0.4s;
}

/* ── 6. Science Mumu (right side) ── */
.science-section {
  overflow: visible;
}

.mascot-science {
  right: -30px;
  bottom: 30px;
  width: 135px;
  opacity: 0;
  transform: translateX(110%);
  transition:
    opacity 0.5s ease,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mascot-science.visible {
  opacity: 1;
  transform: translateX(0);
  animation: bubu-float 5.5s ease-in-out infinite 1.2s;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .mascot-hero {
    width: 120px;
    right: -6px;
    bottom: -28px;
  }

  .mascot-why {
    display: none;
  }

  .mascot-science {
    display: none;
  }

  .mascot-products {
    width: 110px;
    right: -12px;
  }

  .mascot-proof {
    width: 110px;
    right: -10px;
    top: -42px;
  }

  .mascot-cta {
    width: 120px;
    right: 6%;
    top: -68px;
  }
}

@media (max-width: 600px) {
  .mascot-hero {
    display: none;
  }

  .mascot-products {
    display: none;
  }

  .mascot-proof {
    display: none;
  }

  .mascot-cta {
    width: 95px;
    top: -55px;
    right: 4%;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT CATEGORY SECTIONS (page-produk.php)
   ═══════════════════════════════════════════════════════════════════════════ */
.product-cat-section {
  margin-bottom: 56px;
}

.product-cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--hiboo-cream, #fff0e8);
}

.pch-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.pch-sub {
  font-size: 14px;
  color: #888;
  margin: 0;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════════════
   KEY INGREDIENTS TABLE (PDP Bahan tab)
   ═══════════════════════════════════════════════════════════════════════════ */
.key-ing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 15px;
}

.key-ing-table thead th {
  background: var(--hiboo-cream, #fff5f0);
  color: var(--hiboo-peach, #ff7a4a);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #f0e0d8;
}

.key-ing-table tbody tr {
  border-bottom: 1px solid #f0e0d8;
}

.key-ing-table tbody tr:hover {
  background: #fffaf8;
}

.ki-name {
  padding: 12px 16px;
  font-weight: 600;
  color: var(--hiboo-dark, #1a1a2e);
  width: 35%;
  border: 1px solid #f0e0d8;
}

.ki-benefit {
  padding: 12px 16px;
  color: #555;
  border: 1px solid #f0e0d8;
}

.ki-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--hb-muted);
  font-style: italic;
}

@media (max-width: 600px) {

  .key-ing-table,
  .key-ing-table thead,
  .key-ing-table tbody,
  .key-ing-table th,
  .key-ing-table td,
  .key-ing-table tr {
    display: block;
  }

  .key-ing-table thead {
    display: none;
  }

  .key-ing-table tbody tr {
    margin-bottom: 12px;
    border: 1px solid #f0e0d8;
    border-radius: 8px;
    overflow: hidden;
  }

  .ki-name {
    background: #fff5f0;
    width: auto;
    border: none;
    border-bottom: 1px solid #f0e0d8;
  }

  .ki-benefit {
    border: none;
  }

  .product-cat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ── WOOCOMMERCE CUSTOM STYLING ── */

.hb-wc-wrapper {
  background: var(--hb-cream);
  min-height: 100vh;
  padding: 40px 0 100px;
}

.hb-wc-wrapper .hb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hb-wc-wrapper .hb-page-header {
  margin-bottom: 32px;
  text-align: center;
}

.hb-wc-wrapper .hb-page-header h1 {
  font-size: 36px;
  color: var(--hb-navy);
  margin-bottom: 8px;
}

.hb-wc-wrapper .hb-page-header p {
  color: var(--hb-muted);
  font-size: 15px;
}

/* Account page header handled by premium overrides at end of file */

/* Free Shipping Progress Bar */
.hb-shipping-bar-container {
  background: var(--hb-white);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hb-shipping-text {
  font-size: 14.5px;
  color: var(--hb-text);
  margin-bottom: 12px;
  font-family: "VisbyRoundCF", sans-serif;
  text-align: center;
}

.hb-shipping-text .hb-accent {
  color: var(--hb-gold);
}

.hb-shipping-text .hb-success {
  color: var(--hb-sage);
}

.hb-progress-wrapper {
  height: 8px;
  background: #f0e6df;
  border-radius: 100px;
  overflow: hidden;
}

.hb-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--hb-blue), var(--hb-deep));
  border-radius: 100px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Savings Notice */
.hb-cart-savings-notice {
  background: #f0f7eb;
  border: 1.5px dashed var(--hb-sage);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hb-savings-badge {
  background: var(--hb-sage);
  color: white;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.hb-savings-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hb-savings-title {
  font-weight: 700;
  color: #2b5125;
  font-size: 14px;
}

.hb-savings-sub {
  font-size: 12px;
  color: #4b6b45;
}

/* ═══════════════════════════════════════════════════════════════════════
   CART PAGE — PREMIUM REDESIGN
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Layout Grid ── */
.hb-cart-wrapper .woocommerce {
  display: grid !important;
  grid-template-columns: 1fr 380px !important;
  gap: 28px !important;
  align-items: start !important;
}

.hb-cart-wrapper .woocommerce .woocommerce-notices-wrapper,
.hb-cart-wrapper .woocommerce .hb-shipping-bar-container,
.hb-cart-wrapper .woocommerce .hb-cart-savings-notice {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  float: none !important;
  display: flex !important;
}

.hb-cart-wrapper .woocommerce > *:not(.woocommerce-cart-form):not(.cart-collaterals) {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

/* KiriminAja Template compatibility */
.hb-cart-wrapper .kj-block-components-sidebar-layout-cart {
  display: grid !important;
  grid-template-columns: 1fr 380px !important;
  gap: 28px !important;
  align-items: start !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

.hb-cart-wrapper .kj-cart-main {
  grid-column: 1 !important;
  width: 100% !important;
}

.hb-cart-wrapper .kj-cart-sidebar {
  grid-column: 2 !important;
  width: 100% !important;
}

.hb-cart-wrapper .woocommerce-cart-form {
  grid-column: 1 !important;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.hb-cart-wrapper .cart-collaterals {
  grid-column: 2 !important;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

/* ── Free Shipping Bar on Cart ── */
.hb-shipping-bar-container {
  grid-column: span 2;
  background: #e8f4fc;
  border: 1.5px solid #b8def3;
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 0;
  box-shadow: none;
}

.hb-shipping-text {
  font-size: 13.5px;
  color: var(--hb-navy);
  margin-bottom: 10px;
  font-family: "VisbyRoundCF", sans-serif;
  text-align: center;
  font-weight: 500;
}

.hb-progress-wrapper {
  height: 6px;
  background: rgba(107, 186, 229, 0.15);
  border-radius: 100px;
  overflow: hidden;
}

.hb-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--hb-blue), var(--hb-deep));
  border-radius: 100px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Savings Notice ── */
.hb-cart-savings-notice {
  background: linear-gradient(135deg, #f0f7eb, #e8f5e0);
  border: 1.5px solid rgba(167, 196, 160, 0.4);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ── Main Cart Form Card ── */
.woocommerce-cart-form {
  background: var(--hb-white);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden; /* so table header bg clips inside radius */
}

/* ── Cart Table Structure ── */
.shop_table.cart,
.shop_table.shop_table_responsive.cart {
  width: 100% !important;
  border-collapse: collapse !important;
  table-layout: fixed !important;
}

/* Column widths directly on cells for table-layout: fixed */
.shop_table.cart th.product-remove,
.shop_table.cart td.product-remove { width: 50px !important; }
.shop_table.cart th.product-thumbnail,
.shop_table.cart td.product-thumbnail { width: 90px !important; }
.shop_table.cart th.product-name,
.shop_table.cart td.product-name { width: auto !important; }
.shop_table.cart th.product-price,
.shop_table.cart td.product-price { width: 110px !important; text-align: right !important; }
.shop_table.cart th.product-quantity,
.shop_table.cart td.product-quantity { width: 160px !important; text-align: center !important; }
.shop_table.cart th.product-subtotal,
.shop_table.cart td.product-subtotal { width: 155px !important; text-align: right !important; padding-right: 24px !important; }

/* Header row */
.shop_table.cart thead tr {
  background: linear-gradient(135deg, rgba(107, 186, 229, 0.06), rgba(42, 122, 181, 0.03));
}

.shop_table.cart th {
  padding: 14px 16px;
  text-align: left;
  font-size: 11px;
  color: var(--hb-muted);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(107, 186, 229, 0.12);
  white-space: nowrap;
}

.shop_table.cart th.product-remove,
.shop_table.cart th.product-thumbnail {
  text-align: center;
}

.shop_table.cart th.product-price,
.shop_table.cart th.product-subtotal {
  text-align: right;
}

.shop_table.cart th.product-quantity {
  text-align: center;
}

/* Body rows */
.shop_table.cart tbody tr {
  transition: background 0.2s ease;
}

.shop_table.cart tbody tr:hover {
  background: rgba(107, 186, 229, 0.02);
}

.shop_table.cart td {
  padding: 16px 14px !important;
  vertical-align: middle !important;
  border-bottom: 1px solid rgba(107, 186, 229, 0.08) !important;
  font-size: 13.5px;
}

/* Remove button (×) */
.shop_table.cart td.product-remove {
  text-align: center;
  width: 48px;
  padding: 18px 8px;
}

.shop_table.cart td.product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(224, 85, 85, 0.08);
  color: #e05555 !important;
  font-size: 16px;
  line-height: 1;
  text-decoration: none !important;
  transition: all 0.2s ease;
  font-weight: 400;
}

.shop_table.cart td.product-remove a.remove:hover {
  background: rgba(224, 85, 85, 0.15);
  transform: scale(1.1);
}

/* Product thumbnail */
.shop_table.cart td.product-thumbnail {
  text-align: center;
  width: 80px;
  padding: 18px 8px;
}

.shop_table.cart .product-thumbnail img {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--hb-cream);
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Product name */
.shop_table.cart td.product-name {
  font-weight: 600;
  color: var(--hb-text);
}

.shop_table.cart .product-name a {
  font-family: "VisbyRoundCF", sans-serif !important;
  font-weight: 700 !important;
  color: var(--hb-navy) !important;
  text-decoration: none !important;
  font-size: 14.5px !important;
  line-height: 1.4 !important;
  transition: color 0.2s;
  display: block;
}

.shop_table.cart .product-name a:hover {
  color: var(--hb-blue) !important;
}

.shop_table.cart .product-name dl.variation {
  margin: 6px 0 0;
  padding: 0;
}

.shop_table.cart .product-name dl.variation dt,
.shop_table.cart .product-name dl.variation dd {
  display: inline;
  font-size: 11.5px;
  color: var(--hb-muted);
  margin: 0;
  padding: 0;
}

/* Price columns (Desktop only) */
@media (min-width: 769px) {
  body.woocommerce-cart table.shop_table.cart td.product-price {
    text-align: right !important;
    vertical-align: middle !important;
    display: table-cell !important;
    padding: 16px 14px !important;
    width: 110px !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-price .woocommerce-Price-amount,
  body.woocommerce-cart table.shop_table.cart td.product-price bdi {
    color: var(--hb-muted) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    font-family: "VisbyRoundCF", sans-serif !important;
    line-height: 1.5 !important;
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-subtotal {
    text-align: right !important;
    vertical-align: middle !important;
    display: table-cell !important;
    padding: 16px 24px 16px 14px !important;
    width: 155px !important;
  }

  body.woocommerce-cart table.shop_table.cart td.product-subtotal .woocommerce-Price-amount,
  body.woocommerce-cart table.shop_table.cart td.product-subtotal bdi {
    font-weight: 700 !important;
    color: var(--hb-deep) !important;
    font-size: 14.5px !important;
    font-family: "VisbyRoundCF", sans-serif !important;
    line-height: 1.5 !important;
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Quantity cell */
.shop_table.cart td.product-quantity {
  text-align: center;
}

/* ── Quantity +/- Buttons ── */
.hb-qty-wrapper {
  display: inline-flex;
  align-items: center;
  background: #f3f5f7;
  border-radius: 100px;
  padding: 3px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s;
}

.hb-qty-wrapper:focus-within {
  border-color: var(--hb-blue);
  background: white;
}

.hb-qty-btn {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 700;
  color: var(--hb-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  outline: none;
  border-radius: 50%;
  line-height: 1;
}

.hb-qty-btn:hover {
  color: var(--hb-navy);
  background: var(--hb-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hb-qty-btn:active {
  transform: scale(0.92);
}

.hb-qty-wrapper input.qty {
  display: inline-block !important;
  width: 36px !important;
  height: 30px !important;
  line-height: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center !important;
  background: transparent !important;
  border: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--hb-navy) !important;
  outline: none !important;
  pointer-events: none !important;
  -moz-appearance: textfield !important;
  font-family: "VisbyRoundCF", sans-serif !important;
}

.hb-qty-wrapper input.qty::-webkit-outer-spin-button,
.hb-qty-wrapper input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Actions Row (Coupon + Update Cart) ── */
.woocommerce-cart-form .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  gap: 12px;
  background: rgba(107, 186, 229, 0.02);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
}

.woocommerce-cart-form .coupon {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}

.woocommerce-cart-form .coupon label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hb-muted);
  white-space: nowrap;
}

.woocommerce-cart-form input#coupon_code {
  background: var(--hb-white) !important;
  border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
  padding: 10px 16px 10px 42px !important;
  border-radius: 100px !important;
  font-family: "VisbyRoundCF", sans-serif !important;
  font-size: 13.5px !important;
  outline: none !important;
  width: 220px !important;
  max-width: 60% !important;
  height: 44px !important;
  transition: all 0.25s !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--hb-text) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a7ab5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z'/%3E%3Cpath d='M13 5v14'/%3E%3Cpath d='M9 9h.01'/%3E%3Cpath d='M9 15h.01'/%3E%3Cpath d='M17 9h.01'/%3E%3Cpath d='M17 15h.01'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 15px center !important;
  background-size: 17px 17px !important;
}

.woocommerce-cart-form input#coupon_code::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: var(--hb-light);
}

.woocommerce-cart-form input#coupon_code:focus {
  border-color: var(--hb-blue) !important;
  background-color: white !important;
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.1) !important;
}

/* Apply coupon button */
.woocommerce-cart-form .coupon .button {
  height: 44px;
  padding: 0 24px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  cursor: pointer !important;
  border: none !important;
  background: linear-gradient(135deg, var(--hb-blue), var(--hb-deep)) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(42, 122, 181, 0.15) !important;
  transition: all 0.25s ease !important;
}

.woocommerce-cart-form .coupon .button:hover {
  background: linear-gradient(135deg, var(--hb-deep), var(--hb-navy)) !important;
  color: white !important;
  box-shadow: 0 6px 16px rgba(27, 77, 110, 0.25) !important;
  transform: translateY(-1px) !important;
}

/* Sidebar Coupon Layout and Styling */
.cart_totals .coupon {
  display: flex !important;
  flex-wrap: wrap !important;
  background: rgba(107, 186, 229, 0.05) !important;
  border: 1px dashed rgba(107, 186, 229, 0.4) !important;
  border-radius: 14px !important;
  padding: 16px !important;
  margin: 24px 0 16px 0 !important;
  width: 100% !important;
  gap: 10px 8px !important;
  box-sizing: border-box !important;
}

.cart_totals .coupon .hb-coupon-title {
  width: 100% !important;
  font-family: "VisbyRoundCF", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--hb-deep) !important;
  margin-bottom: 2px !important;
  letter-spacing: 0.01em !important;
  text-align: left !important;
}

.cart_totals .coupon label {
  display: none !important;
}

.cart_totals .coupon input#coupon_code {
  flex: 1 !important;
  min-width: 120px !important;
  width: auto !important;
  max-width: 100% !important;
  background-color: var(--hb-white) !important;
  border: 1.5px solid rgba(107, 186, 229, 0.15) !important;
}

.cart_totals .coupon input#coupon_code:focus {
  border-color: var(--hb-blue) !important;
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.15) !important;
}

.cart_totals .coupon .button {
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

.woocommerce-cart-form button[name="update_cart"] {
  display: none !important;
}

/* ── Cart Totals Sidebar ── */
body.woocommerce-cart .cart_totals,
body.woocommerce-cart .cart_totals.calculated_shipping {
  width: 100% !important;
  float: none !important;
  background: var(--hb-white) !important;
  border-radius: 20px !important;
  padding: 24px !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03) !important;
  position: sticky !important;
  /* align with header offset used elsewhere */
  top: 160px !important;
  box-sizing: border-box !important;
}

/* Add subtle rounding to table header corners inside card */
.woocommerce-cart-form thead tr th:first-child { border-top-left-radius: 12px; }
.woocommerce-cart-form thead tr th:last-child { border-top-right-radius: 12px; }

/* Prevent large empty bottom spacing in cart table */
.woocommerce-cart-form table { margin-bottom: 0; }

.cart_totals h2 {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--hb-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart_totals h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: linear-gradient(to bottom, var(--hb-blue), var(--hb-deep));
  border-radius: 2px;
}

/* Totals table */
.woocommerce-page .cart_totals table.shop_table_responsive {
  width: 100% !important;
  margin-bottom: 20px !important;
  border-collapse: collapse !important;
}

.woocommerce-page .cart_totals table.shop_table_responsive tbody tr td::before {
  display: none !important;
  content: "" !important;
}

.woocommerce-page .cart_totals table.shop_table_responsive tr {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.woocommerce-page .cart_totals table.shop_table_responsive tr:last-child {
  border-bottom: none !important;
}

.woocommerce-page .cart_totals table.shop_table_responsive th {
  display: block !important;
  font-weight: 500 !important;
  color: var(--hb-muted) !important;
  font-size: 13px !important;
  text-align: left !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
}

.woocommerce-page .cart_totals table.shop_table_responsive td {
  display: block !important;
  font-weight: 700 !important;
  color: var(--hb-navy) !important;
  font-size: 13.5px !important;
  text-align: right !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
}

/* Order total row — bigger */
.shop_table.shop_table_responsive tr.order-total {
  border-top: 2px solid rgba(107, 186, 229, 0.2);
  padding-top: 16px;
  margin-top: 4px;
}

.shop_table.shop_table_responsive tr.order-total th {
  font-size: 15px;
  font-weight: 700;
  color: var(--hb-navy);
}

.shop_table.shop_table_responsive tr.order-total td {
  font-size: 20px;
  font-weight: 900;
  color: var(--hb-deep);
}

/* Shipping in totals */
.shop_table.shop_table_responsive .shipping td {
  text-align: right;
}

.shop_table.shop_table_responsive .shipping ul#shipping_method {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.shop_table.shop_table_responsive .shipping ul#shipping_method li {
  font-size: 13px;
  color: var(--hb-sage);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
}

.shop_table.shop_table_responsive .shipping ul#shipping_method li::before {
  content: '✓';
  font-size: 10px;
  width: 16px;
  height: 16px;
  background: var(--hb-sage);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shop_table.shop_table_responsive .shipping ul#shipping_method label {
  font-size: 12.5px;
  color: var(--hb-sage);
  font-weight: 700;
}

/* Shipping destination text */
.woocommerce-shipping-destination {
  font-size: 11.5px;
  color: var(--hb-muted);
  margin: 4px 0 0;
  text-align: right;
}

/* Change address link */
.shipping-calculator-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--hb-deep);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed var(--hb-blue);
  transition: all 0.2s;
  margin-top: 6px;
  float: right;
}

.shipping-calculator-button:hover {
  color: var(--hb-navy);
}

/* Shipping calculator form (hidden by default) */
.shipping-calculator-form {
  margin-top: 16px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid rgba(107, 186, 229, 0.15);
}

.shipping-calculator-form .form-row {
  margin-bottom: 12px;
}

.shipping-calculator-form .form-row label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--hb-muted);
  display: block;
  margin-bottom: 5px;
}

.shipping-calculator-form .form-row input,
.shipping-calculator-form .form-row select {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 13px;
  outline: none;
  background: white;
  color: var(--hb-text);
  transition: all 0.2s;
}

.shipping-calculator-form .form-row input:focus,
.shipping-calculator-form .form-row select:focus {
  border-color: var(--hb-blue);
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.1);
}

.shipping-calculator-form button[type="submit"] {
  width: 100%;
  height: 42px !important;
  border-radius: 100px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  margin-top: 4px;
  background: var(--hb-deep) !important;
}

/* ── Proceed to Checkout Button ── */
.wc-proceed-to-checkout {
  margin-top: 20px;
}

.wc-proceed-to-checkout .checkout-button,
a.checkout-button.button.alt.wc-forward {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--hb-blue), var(--hb-deep)) !important;
  color: white !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  padding: 16px 28px !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(42, 122, 181, 0.25) !important;
  text-align: center;
  letter-spacing: 0.01em;
}

.wc-proceed-to-checkout .checkout-button::after,
a.checkout-button.button.alt.wc-forward::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.wc-proceed-to-checkout .checkout-button:hover,
a.checkout-button.button.alt.wc-forward:hover {
  background: linear-gradient(135deg, var(--hb-deep), var(--hb-navy)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(27, 77, 110, 0.3) !important;
}

.wc-proceed-to-checkout .checkout-button:hover::after,
a.checkout-button.button.alt.wc-forward:hover::after {
  transform: translateX(4px);
}

/* ── Continue Shopping Link ── */
.return-to-shop {
  text-align: center;
  padding: 24px;
}

.return-to-shop a.button {
  background: transparent !important;
  color: var(--hb-deep) !important;
  border: 1.5px solid rgba(107, 186, 229, 0.4) !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 12px 28px !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: all 0.25s !important;
}

.return-to-shop a.button:hover {
  background: rgba(107, 186, 229, 0.08) !important;
  border-color: var(--hb-blue) !important;
  transform: none !important;
}

/* ── Empty Cart State ── */
.woocommerce-cart .cart-empty {
  text-align: center;
  padding: 40px 20px;
  font-size: 15px;
  color: var(--hb-muted);
}

.cart-empty.woocommerce-info {
  background: rgba(107, 186, 229, 0.06) !important;
  border-left-color: var(--hb-blue) !important;
  border-radius: 16px !important;
  text-align: center;
  padding: 20px 24px !important;
  color: var(--hb-navy) !important;
  font-weight: 600 !important;
}

/* ── Cart Security Badges (mini) ── */
.hb-cart-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hb-cart-trust span {
  font-size: 11px;
  color: var(--hb-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

/* ── Responsive: Cart ── */
@media (max-width: 768px) {
  .hb-cart-wrapper .woocommerce,
  .hb-cart-wrapper .kj-block-components-sidebar-layout-cart {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .hb-cart-wrapper .woocommerce-cart-form,
  .hb-cart-wrapper .cart-collaterals,
  .hb-cart-wrapper .kj-cart-main,
  .hb-cart-wrapper .kj-cart-sidebar {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  .cart_totals {
    position: static;
  }

  .woocommerce-cart-form .actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .woocommerce-cart-form .coupon {
    width: 100%;
    flex-wrap: wrap;
  }

  .woocommerce-cart-form input#coupon_code {
    flex: 1;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Responsive table: hide labels, stack on mobile */
  body.woocommerce-cart table.shop_table_responsive thead {
    display: none !important;
  }

  body.woocommerce-cart table.shop_table_responsive {
    border: none !important;
    background: transparent !important;
    display: block !important;
    width: 100% !important;
  }

  body.woocommerce-cart table.shop_table_responsive tbody {
    display: block !important;
    width: 100% !important;
  }

  body.woocommerce-cart table.shop_table_responsive tbody tr.cart_item {
    display: grid !important;
    grid-template-columns: 80px 1fr !important;
    gap: 8px 16px !important;
    padding: 16px !important;
    background: var(--hb-white) !important;
    border: 1.5px solid #f0f2f5 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
    margin-bottom: 16px !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Hide WooCommerce responsive pseudo-labels */
  body.woocommerce-cart table.shop_table_responsive tbody tr.cart_item td::before {
    display: none !important;
    content: "" !important;
  }

  body.woocommerce-cart table.shop_table_responsive td {
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    width: auto !important;
    display: block !important;
  }

  body.woocommerce-cart table.shop_table_responsive td.product-remove {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: auto !important;
    padding: 0 !important;
    z-index: 20 !important;
    display: block !important;
  }

  body.woocommerce-cart table.shop_table_responsive td.product-remove a.remove {
    width: 24px !important;
    height: 24px !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f1f3f5 !important;
    color: #868e96 !important;
    border-radius: 50% !important;
    text-decoration: none !important;
  }

  body.woocommerce-cart table.shop_table_responsive td.product-thumbnail {
    grid-column: 1 !important;
    grid-row: 1 / span 3 !important;
    padding: 0 !important;
    width: 80px !important;
    height: 80px !important;
    margin: 0 !important;
    display: block !important;
  }

  body.woocommerce-cart table.shop_table_responsive td.product-thumbnail img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 12px !important;
    object-fit: cover !important;
    display: block !important;
  }

  body.woocommerce-cart table.shop_table_responsive td.product-name {
    grid-column: 2 !important;
    grid-row: 1 !important;
    padding-right: 36px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    display: block !important;
    color: var(--hb-navy) !important;
  }

  body.woocommerce-cart table.shop_table_responsive td.product-name a {
    color: var(--hb-navy) !important;
    text-decoration: none !important;
  }

  body.woocommerce-cart table.shop_table_responsive td.product-quantity {
    grid-column: 2 !important;
    grid-row: 3 !important;
    justify-self: start !important;
    align-self: center !important;
    margin-top: 6px !important;
    display: flex !important;
    position: relative !important;
    z-index: 30 !important;
  }

  body.woocommerce-cart .hb-qty-wrapper {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    width: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
    padding: 2px !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .hb-qty-btn {
    width: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    height: 24px !important;
    font-size: 12px !important;
    flex: none !important;
  }

  body.woocommerce-cart .hb-qty-wrapper input.qty {
    width: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    height: 24px !important;
    line-height: 24px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    display: inline-block !important;
    flex: none !important;
  }

  body.woocommerce-cart table.shop_table_responsive td.product-price {
    display: none !important;
  }

  body.woocommerce-cart table.shop_table_responsive td.product-subtotal {
    grid-column: 2 !important;
    grid-row: 2 !important;
    justify-self: start !important;
    align-self: center !important;
    font-size: 14.5px !important;
    font-weight: 800 !important;
    color: #ff7a4a !important;
    display: block !important;
    margin-top: 2px !important;
  }

  /* Actions Row Style */
  body.woocommerce-cart table.shop_table_responsive tbody tr.actions,
  body.woocommerce-cart table.shop_table_responsive tbody tr.actions td.actions {
    display: block !important;
    width: 100% !important;
    padding: 16px !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart table.shop_table_responsive tbody tr.actions td.actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    border: none !important;
    background: transparent !important;
  }

  body.woocommerce-cart .woocommerce-cart-form .coupon {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  body.woocommerce-cart .woocommerce-cart-form input#coupon_code {
    width: 100% !important;
    margin: 0 !important;
    height: 44px !important;
    text-align: center !important;
    box-sizing: border-box !important;
    border-radius: 100px !important;
    border: 1.5px solid #e9ecef !important;
  }

  body.woocommerce-cart .woocommerce-cart-form .coupon .button {
    width: 100% !important;
    margin: 0 !important;
    white-space: nowrap !important;
    height: 44px !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    border-radius: 100px !important;
    background-color: var(--hb-blue) !important;
    color: white !important;
    font-weight: bold !important;
  }

  body.woocommerce-cart .woocommerce-cart-form button[name="update_cart"] {
    display: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   CHECKOUT PAGE — MATERIAL DESIGN 3 PREMIUM REDESIGN
   Palette: primary #006492, tertiary #006d41, surface #f7f9ff
   ═══════════════════════════════════════════════════════════════════════ */

/* MD3 Color Tokens — Mapped to Hiboo Brand Palette */
.hb-checkout-wrapper,
.hb-checkout-content-area {
  --md-primary:              var(--hb-deep);
  --md-on-primary:           var(--hb-white);
  --md-primary-container:    var(--hb-sky);
  --md-on-primary-container: var(--hb-navy);
  --md-primary-fixed:        var(--hb-sky);
  --md-primary-fixed-dim:    var(--hb-sky);
  --md-secondary:            var(--hb-muted);
  --md-secondary-container:  var(--hb-snow);
  --md-tertiary:             var(--hb-sage);
  --md-tertiary-container:   var(--hb-sage);
  --md-tertiary-fixed:       var(--hb-sage);
  --md-on-tertiary-fixed:    var(--hb-navy);
  --md-surface:              var(--hb-cream);
  --md-surface-low:          var(--hb-warm);
  --md-surface-container:    var(--hb-blush);
  --md-surface-high:         var(--hb-peach);
  --md-surface-highest:      var(--hb-blush);
  --md-surface-white:        var(--hb-white);
  --md-outline:              var(--hb-light);
  --md-outline-variant:      rgba(27, 77, 110, 0.15);
  --md-on-surface:           var(--hb-navy);
  --md-on-surface-variant:   var(--hb-text);
  --md-error:                #ba1a1a;
  --md-error-container:      #ffdad6;
  --md-inverse-surface:      var(--hb-navy);
  font-family: 'VisbyRoundCF', sans-serif;
  background: var(--hb-snow);
}

.hb-checkout-wrapper,
.hb-checkout-content-area,
.hb-checkout-wrapper *,
.hb-checkout-content-area * {
  font-family: 'VisbyRoundCF', sans-serif !important;
}

/* ── Page Header for Checkout ── */
.hb-checkout-wrapper .hb-page-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 0;
}

.hb-checkout-wrapper .hb-page-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--md-on-surface);
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

.hb-checkout-wrapper .hb-page-header p {
  font-size: 16px;
  color: var(--md-on-surface-variant);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Step Indicator (Checkout Page) ── */
.hb-checkout-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hb-checkout-step {
  display: flex;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
}

.hb-checkout-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: var(--md-surface-highest);
  color: var(--md-on-surface-variant);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.25s;
  flex-shrink: 0;
}

.hb-checkout-step.active .hb-checkout-step-num {
  background: var(--md-primary) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(0, 100, 146, 0.3) !important;
}

.hb-checkout-step.done .hb-checkout-step-num {
  background: #4ca5d8 !important;
  color: white !important;
}

.hb-checkout-step-label {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--md-outline) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  white-space: nowrap !important;
}

.hb-checkout-step.active .hb-checkout-step-label {
  color: var(--md-primary) !important;
}

.hb-checkout-step.done .hb-checkout-step-label {
  color: var(--md-outline) !important;
}

.hb-checkout-step-line {
  flex: 1;
  height: 2px;
  background: var(--md-outline-variant);
  min-width: 48px;
  max-width: 80px;
  align-self: flex-start !important;
  margin-top: 19px !important;
}

.hb-checkout-step-line.done {
  background: #4ca5d8 !important;
}

/* ── Shipping Bar on Checkout ── */
.hb-checkout-content-area .hb-shipping-bar-container {
  background: #e8f4fc;
  border: 1px solid #b8def3;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 20px;
}

.hb-checkout-content-area .hb-success {
  color: var(--md-tertiary);
  font-weight: 700;
}

/* ── Notices (WC info, success, error) ── */
.hb-checkout-content-area .woocommerce-notices-wrapper .woocommerce-message {
  background: var(--md-tertiary-fixed) !important;
  color: var(--md-on-tertiary-fixed) !important;
  border: 1px solid rgba(116, 218, 160, 0.4) !important;
  border-radius: 10px !important;
  padding: 14px 20px !important;
  font-size: 14px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-left: none !important;
  margin-bottom: 12px;
}

.hb-checkout-content-area .woocommerce-notices-wrapper .woocommerce-message a.button {
  background: var(--md-primary-container) !important;
  color: var(--md-on-primary-container) !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  white-space: nowrap;
  box-shadow: none !important;
  border: none !important;
  transition: background 0.2s;
}

.hb-checkout-content-area .woocommerce-notices-wrapper .woocommerce-message a.button:hover {
  background: var(--md-primary) !important;
  color: white !important;
  transform: none !important;
}

.hb-checkout-content-area .woocommerce-info {
  background: var(--md-surface-low) !important;
  border: 1px solid rgba(0, 100, 146, 0.15) !important;
  border-left: none !important;
  border-radius: 10px !important;
  color: var(--md-primary) !important;
  font-size: 14px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  padding: 14px 20px 14px 55px !important;
  margin-bottom: 12px;
  position: relative !important;
}

.hb-checkout-content-area .woocommerce-info::before {
  position: absolute !important;
  left: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
}

.hb-checkout-content-area .woocommerce-error {
  background: var(--md-error-container) !important;
  border: 1px solid rgba(186, 26, 26, 0.2) !important;
  border-left: none !important;
  border-radius: 10px !important;
  color: var(--md-error) !important;
  font-size: 14px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  padding: 14px 20px 14px 55px !important;
  margin-bottom: 12px;
  list-style: none;
  position: relative !important;
}

.hb-checkout-content-area .woocommerce-error::before {
  position: absolute !important;
  left: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
}

/* Toggle links (login, coupon) */
.woocommerce-form-login-toggle .woocommerce-info,
.woocommerce-form-coupon-toggle .woocommerce-info {
  font-size: 13px !important;
}

.woocommerce-form-login-toggle a,
.woocommerce-form-coupon-toggle a {
  color: var(--md-primary) !important;
  font-weight: 600;
}

/* Login / Coupon inline forms */
.woocommerce-form-login,
.checkout_coupon {
  background: var(--md-surface-low);
  border: 1px solid rgba(0, 100, 146, 0.12);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

/* ── Main Layout ── */
.hb-checkout-content-area .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
}

.hb-checkout-content-area form.checkout {
  display: grid !important;
  grid-template-columns: 1fr 420px !important;
  gap: 28px !important;
  align-items: start !important;
}

@media (min-width: 992px) {
  .hb-checkout-left-col {
    grid-column: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }

  .hb-checkout-right-col {
    grid-column: 2 !important;
    position: sticky !important;
    top: 100px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
}

/* ── Left Column: Billing Section ── */
.col-1 {
  background: var(--md-surface-white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid rgba(192, 199, 208, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.col-1 h3 {
  font-size: 22px;
  margin-bottom: 28px;
  font-weight: 700;
  color: var(--md-on-surface);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Address Field Grid ── */
.woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.woocommerce-billing-fields__field-wrapper .form-row-wide {
  grid-column: span 2;
}

.woocommerce-billing-fields__field-wrapper p {
  margin-bottom: 0;
}

.woocommerce-billing-fields__field-wrapper label,
.woocommerce-additional-fields__field-wrapper label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--md-on-surface-variant);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.woocommerce-billing-fields__field-wrapper input[type="text"],
.woocommerce-billing-fields__field-wrapper input[type="email"],
.woocommerce-billing-fields__field-wrapper input[type="tel"],
.woocommerce-billing-fields__field-wrapper input[type="password"],
.woocommerce-billing-fields__field-wrapper select,
.woocommerce-additional-fields__field-wrapper textarea,
.woocommerce-additional-fields__field-wrapper input,
.woocommerce-checkout select,
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout textarea,
.hb-address-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', 'VisbyRoundCF', sans-serif;
  font-size: 14px;
  color: var(--md-on-surface);
  background: #fffcf9 !important;
  outline: none;
  transition: all 0.2s ease;
  height: 48px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.woocommerce-checkout select,
.woocommerce-billing-fields__field-wrapper select,
.hb-address-select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23585f66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  padding-right: 40px !important;
}

.woocommerce-billing-fields__field-wrapper textarea {
  height: auto !important;
  min-height: 90px;
  resize: vertical;
  padding: 12px 14px;
}

.woocommerce-billing-fields__field-wrapper input:focus,
.woocommerce-billing-fields__field-wrapper select:focus,
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus,
.hb-address-select:focus {
  border-color: var(--md-primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 100, 146, 0.1) !important;
  background: white !important;
}

.woocommerce-billing-fields__field-wrapper input.input-error,
.woocommerce-billing-fields__field-wrapper select.input-error,
.woocommerce-checkout input.input-error,
.woocommerce-checkout select.input-error {
  border-color: var(--md-error) !important;
}

.woocommerce-billing-fields__field-wrapper .required {
  color: var(--md-error);
}

/* Select arrow */
.woocommerce-billing-fields__field-wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2340484f' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19 9-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

/* Dynamic address fields */
.hb-dynamic-address-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

/* ── Map Geotagging ── */
.hb-checkout-map-wrapper {
  grid-column: span 2;
  background: #e8f4fc;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #b8def3;
  margin-bottom: 8px;
}

.hb-map-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--md-on-surface-variant) !important;
  margin-bottom: 10px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

#hb-map {
  height: 280px !important;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--md-outline-variant);
}

.hb-map-search-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.hb-map-search-row input {
  flex-grow: 1;
  height: 42px !important;
  border-radius: 10px !important;
  border-color: var(--md-outline-variant) !important;
  font-size: 13px !important;
}

#hb-map-locate-btn {
  background: white !important;
  border: 1.5px solid #b8def3 !important;
  border-radius: 10px !important;
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--hb-deep, #2a7ab5) !important;
  transition: all 0.2s !important;
  flex-shrink: 0 !important;
  box-shadow: none !important;
}

#hb-map-locate-btn svg {
  width: 20px !important;
  height: 20px !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

#hb-map-locate-btn svg path,
#hb-map-locate-btn svg circle {
  stroke: var(--hb-deep, #2a7ab5) !important;
  stroke-width: 2px !important;
  fill: none !important;
}

#hb-map-locate-btn:hover {
  background: #e8f4fc !important;
  border-color: var(--hb-deep, #2a7ab5) !important;
}

.hb-map-hint {
  font-size: 11px;
  color: var(--md-on-surface-variant);
  display: block;
  margin-top: 8px;
  font-style: italic;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Order Notes (Additional Fields) ── */
.woocommerce-additional-fields {
  background: var(--md-surface-white) !important;
  border-radius: 16px !important;
  padding: 36px !important;
  border: 1px solid rgba(192, 199, 208, 0.4) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  margin-top: 12px !important;
  display: block !important;
}

#ship-to-different-address {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
  border-bottom: 1px solid rgba(192, 199, 208, 0.3) !important;
  padding-bottom: 16px !important;
}

#ship-to-different-address label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--md-on-surface) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  margin: 0 !important;
}

#ship-to-different-address input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  accent-color: var(--md-primary) !important;
  border-radius: 4px !important;
  border: 1.5px solid var(--md-outline-variant) !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.woocommerce-additional-fields h3 {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--md-on-surface-variant) !important;
  margin-bottom: 12px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.woocommerce-additional-fields__field-wrapper textarea {
  border: 1.5px solid var(--md-outline-variant);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', 'VisbyRoundCF', sans-serif;
  font-size: 14px;
  color: var(--md-on-surface);
  background: white;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  padding: 12px 14px;
  height: 90px;
  width: 100%;
}

.woocommerce-additional-fields__field-wrapper textarea:focus {
  border-color: var(--md-primary);
  box-shadow: 0 0 0 3px rgba(0, 100, 146, 0.1);
}

/* ── Right Column: Order Summary (Sticky) ── */
@media (min-width: 992px) {
  .hb-checkout-content-area form.checkout #order_review {
    position: sticky;
    top: 100px;
  }
}

.hb-checkout-content-area #order_review {
  background: var(--md-surface-white);
  border-radius: 16px;
  border: 1px solid rgba(192, 199, 208, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

#order_review_heading {
  display: block;
  background: #e8f4fc;
  border-bottom: 1px solid #b8def3;
  padding: 18px 28px;
  font-size: 17px;
  font-weight: 700;
  color: var(--hb-navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
}

/* ── Order Review Table ── */
.woocommerce-checkout-review-order {
  padding: 0;
}

.shop_table.woocommerce-checkout-review-order-table {
  width: 100%;
  padding: 20px 28px;
  border-collapse: collapse;
}

.shop_table.woocommerce-checkout-review-order-table thead tr {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(192, 199, 208, 0.3);
}

.shop_table.woocommerce-checkout-review-order-table thead th {
  font-size: 11px;
  font-weight: 700;
  color: var(--md-on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.shop_table.woocommerce-checkout-review-order-table tr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(192, 199, 208, 0.12);
}

.shop_table.woocommerce-checkout-review-order-table tr:last-child {
  border-bottom: none;
}

.shop_table.woocommerce-checkout-review-order-table tr th,
.shop_table.woocommerce-checkout-review-order-table tr td {
  border: none;
  padding: 0;
}

/* Product name in order table */
.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  padding: 16px 0 !important;
  border-bottom: 1px dashed rgba(192, 199, 208, 0.4) !important;
  gap: 16px !important;
}

.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

.shop_table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name {
  flex: 1 !important;
  display: flex !important;
}

.hb-checkout-item-details {
  display: flex !important;
  gap: 14px !important;
  align-items: flex-start !important;
}

.hb-checkout-item-thumb {
  width: 60px !important;
  height: 60px !important;
  flex-shrink: 0 !important;
  background: var(--hb-cream) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.hb-checkout-item-thumb img {
  width: 60px !important;
  height: 60px !important;
  object-fit: cover !important;
  display: block !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.hb-checkout-item-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.hb-checkout-item-title {
  font-weight: 700 !important;
  font-size: 13.5px !important;
  color: var(--md-on-surface) !important;
  line-height: 1.4 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.hb-checkout-item-qty {
  font-size: 12px !important;
  color: var(--hb-muted) !important;
  font-weight: 500 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.shop_table.woocommerce-checkout-review-order-table .cart_item td.product-name strong.product-quantity {
  display: none !important;
}

.shop_table.woocommerce-checkout-review-order-table .cart_item td.product-total {
  align-self: center !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  color: var(--hb-deep) !important;
  white-space: nowrap !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  text-align: right !important;
}

/* Cart subtotal row */
.shop_table.woocommerce-checkout-review-order-table .cart-subtotal {
  border-top: 1px solid rgba(192, 199, 208, 0.3);
  margin-top: 8px;
  padding-top: 14px;
}

.shop_table.woocommerce-checkout-review-order-table .cart-subtotal th {
  font-size: 13px;
  color: var(--md-on-surface-variant);
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.shop_table.woocommerce-checkout-review-order-table .cart-subtotal td {
  font-size: 13px;
  color: var(--md-on-surface-variant);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Shipping row in order review */
.shop_table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals {
  display: block !important;
  border-bottom: 1px solid rgba(192, 199, 208, 0.12) !important;
  padding: 16px 0 !important;
}

.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals th {
  display: block !important;
  width: 100% !important;
  font-size: 14px !important;
  color: var(--hb-navy) !important;
  font-weight: 700 !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 8px !important;
  text-align: left !important;
}

.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td {
  display: block !important;
  width: 100% !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Free shipping badge */
.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td .woocommerce-Price-amount,
.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td ul {
  display: inline-flex;
}

.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td .shipping_method_label,
.shop_table.woocommerce-checkout-review-order-table .shipping-free-badge {
  background: var(--md-tertiary-fixed);
  color: var(--md-on-tertiary-fixed);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td label.shipping-free-badge,
.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals td .shipping_method_label,
.shop_table.woocommerce-checkout-review-order-table .shipping-free-badge {
  display: inline-block !important;
  background: #e6f7ed !important;
  color: #008a3e !important;
  padding: 4px 10px !important;
  border-radius: 100px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals ul.shipping_method {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 220px; /* Batasi tinggi jika kurir sangat banyak */
  overflow-y: auto;
  padding-right: 6px;
}

/* Custom scrollbar untuk list kurir */
.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals ul.shipping_method::-webkit-scrollbar {
  width: 4px;
}
.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals ul.shipping_method::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
}
.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals ul.shipping_method::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals ul.shipping_method li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  margin: 0;
}

.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals ul.shipping_method li input[type="radio"] {
  margin: 3px 0 0 0;
  flex-shrink: 0;
}

.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals ul.shipping_method li label {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--hb-navy) !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  cursor: pointer;
  display: inline !important;
  line-height: 1.4 !important;
}

.shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals ul.shipping_method li label span.amount {
  font-weight: 700;
  color: var(--hb-deep);
  margin-left: 2px;
}

/* Order total row */
.shop_table.woocommerce-checkout-review-order-table .order-total {
  border-top: 2px solid rgba(192, 199, 208, 0.5);
  padding-top: 16px;
  margin-top: 4px;
}

.shop_table.woocommerce-checkout-review-order-table .order-total th {
  font-size: 16px;
  font-weight: 700;
  color: var(--md-on-surface);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.shop_table.woocommerce-checkout-review-order-table .order-total td {
  font-size: 22px;
  font-weight: 800;
  color: var(--md-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

#payment {
  background: var(--hb-white) !important;
  border-top: 1px solid rgba(192, 199, 208, 0.3);
  border-radius: 0 0 16px 16px;
  padding: 24px 28px;
  margin-top: 0;
}

#payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

#payment ul.payment_methods li {
  margin-bottom: 10px;
  background: white;
  border-radius: 10px;
  padding: 14px 18px;
  border: 1.5px solid var(--md-outline-variant);
  transition: border-color 0.2s;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 6px 12px !important;
}

#payment ul.payment_methods li:has(input:checked) {
  border-color: var(--md-primary);
  background: var(--md-surface-low);
}

#payment ul.payment_methods li input[type="radio"] {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 18px;
  height: 18px;
  accent-color: var(--md-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

#payment ul.payment_methods li label {
  grid-column: 2 !important;
  grid-row: 1 !important;
  font-weight: 700;
  color: var(--md-on-surface);
  font-size: 14px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.4;
}

#payment .payment_box {
  grid-column: 2 !important;
  grid-row: 2 !important;
  font-size: 12.5px;
  color: var(--md-on-surface-variant);
  margin-top: 4px !important;
  padding-left: 0 !important;
  line-height: 1.6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* No payment methods notice */
#payment .woocommerce-info {
  background: white !important;
  border: 1px solid var(--md-outline-variant) !important;
  border-radius: 10px !important;
  padding: 16px 18px !important;
  color: var(--md-on-surface-variant) !important;
  font-size: 13.5px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Privacy text & Terms Checkbox */
.woocommerce-terms-and-conditions-wrapper,
#payment .terms {
  font-size: 12.5px;
  color: var(--md-on-surface-variant);
  line-height: 1.6;
  text-align: left !important;
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.woocommerce-terms-and-conditions-wrapper a,
#payment .terms a {
  color: var(--md-primary);
  text-decoration: underline;
}

.woocommerce-terms-and-conditions-wrapper label.checkbox,
#payment .terms label.checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  cursor: pointer;
}

.woocommerce-terms-and-conditions-wrapper label.checkbox input[type="checkbox"],
#payment .terms label.checkbox input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin-top: 2px !important;
  accent-color: var(--md-primary) !important;
  border-radius: 4px !important;
  border: 1.5px solid var(--md-outline-variant) !important;
  flex-shrink: 0 !important;
}

/* ── Place Order Button ── */
#place_order {
  width: 100%;
  background: var(--md-primary);
  color: white;
  border: none;
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 100, 146, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

#place_order:hover {
  background: rgba(0, 75, 111, 1);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 100, 146, 0.3);
}

#place_order:active {
  transform: scale(0.98);
}

/* ── Checkout Responsive ── */
@media (max-width: 991px) {
  .hb-checkout-content-area form.checkout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .hb-checkout-left-col,
  .hb-checkout-right-col {
    grid-column: 1 / -1 !important;
    position: static !important;
    width: 100% !important;
  }

  .hb-checkout-left-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .hb-checkout-right-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin-top: 24px !important;
  }

  .col-1,
  .woocommerce-additional-fields {
    padding: 24px 20px !important;
  }

  .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .woocommerce-billing-fields__field-wrapper .form-row-wide,
  .hb-checkout-map-wrapper {
    grid-column: span 1;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   MY ACCOUNT STYLES — All rules consolidated at end of file
   (search: "MY ACCOUNT PAGE — CLEAN REDESIGN")
   ═══════════════════════════════════════════════════════════════════ */

/* Riwayat Order & Tracking Timeline */
.hb-order-timeline {
  display: flex;
  align-items: center;
  margin: 16px 0 8px;
  padding: 10px;
  background: #fbf8f5;
  border-radius: 12px;
  gap: 4px;
}

.hb-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 0 0 64px;
}

.hb-timeline-step .hb-step-icon {
  font-size: 16px;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.3s;
}

.hb-timeline-step .hb-step-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--hb-muted);
}

.hb-timeline-step.active .hb-step-icon {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

.hb-timeline-step.active .hb-step-label {
  color: var(--hb-navy);
}

.hb-timeline-line {
  height: 3px;
  flex-grow: 1;
  background: #e5e9ec;
  border-radius: 10px;
}

.hb-timeline-line.active {
  background: var(--hb-blue);
}

.hb-reorder-btn {
  background: var(--hb-sky) !important;
  color: var(--hb-navy) !important;
  font-weight: 600 !important;
  font-size: 11.5px !important;
  padding: 6px 12px !important;
  border-radius: 100px !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.2s !important;
  margin-left: 8px;
}

.hb-reorder-btn:hover {
  background: var(--hb-blue) !important;
  color: white !important;
}

/* Account form, table, nav styles — consolidated at end of file */

/* Smaller devices: tighten paddings and stack timeline */
@media (max-width: 640px) {
  .hb-order-timeline {
    display: block;
  }

  .hb-timeline-step {
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
  }

  .hb-timeline-step .hb-step-label {
    font-size: 12px;
  }

  /* account content padding handled in clean redesign */
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 991px) {
  body.woocommerce-cart .woocommerce,
  .hb-checkout-content-area form.checkout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* my-account responsive handled by premium overrides */
}

/* ────────────────────────────────────────────────────────────────────────
   WOOCOMMERCE CONSISTENCY & OVERRIDES
   ──────────────────────────────────────────────────────────────────────── */

/* Override WooCommerce default purple with Hiboo blue palette */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
  background: var(--hb-blue) !important;
  color: #fff !important;
  border-radius: 100px !important;
  font-family: "VisbyRoundCF", sans-serif !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  padding: 10px 24px !important;
  border: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(107, 186, 229, 0.2) !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover {
  background: var(--hb-deep) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(42, 122, 181, 0.3) !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce-page a.button.alt,
.woocommerce-page button.button.alt {
  background: var(--hb-deep) !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 14px !important;
  border-left-width: 4px !important;
  font-family: "VisbyRoundCF", sans-serif !important;
  font-size: 13.5px !important;
  padding: 14px 20px 14px 55px !important;
  margin-bottom: 20px !important;
  position: relative !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  position: absolute !important;
  left: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce-message {
  background: #edf7f0 !important;
  border-left-color: var(--hb-sage) !important;
  color: #1d5c35 !important;
}

.woocommerce-info {
  background: #edf3fa !important;
  border-left-color: var(--hb-blue) !important;
  color: var(--hb-navy) !important;
}

.woocommerce-error {
  background: #fdeeed !important;
  border-left-color: #e05555 !important;
  color: #8a2020 !important;
}

/* WooCommerce Login form on checkout (guest/account toggle) */
.woocommerce-checkout .woocommerce-form-login {
  background: var(--hb-white);
  border-radius: 16px;
  border: 1px solid rgba(107, 186, 229, 0.2);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.woocommerce-checkout .woocommerce-form-login h3 {
  font-size: 17px;
  color: var(--hb-navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.woocommerce-checkout .woocommerce-form-login p {
  color: var(--hb-muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.woocommerce-checkout .woocommerce-form-login .form-row {
  margin-bottom: 16px;
}

.woocommerce-checkout .woocommerce-form-login input[type="text"],
.woocommerce-checkout .woocommerce-form-login input[type="email"],
.woocommerce-checkout .woocommerce-form-login input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: all 0.25s;
  color: var(--hb-text);
  height: 48px;
}

.woocommerce-checkout .woocommerce-form-login input:focus {
  border-color: var(--hb-blue);
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.12);
}

.woocommerce-checkout .woocommerce-form-login .button {
  background: var(--hb-deep) !important;
  color: white !important;
  border-radius: 100px !important;
  padding: 12px 28px !important;
  font-weight: 700 !important;
}

/* Checkout "returning customer" collapsible */
.woocommerce-checkout .woocommerce-checkout-login,
.woocommerce-checkout .woocommerce-checkout-coupon {
  background: var(--hb-white);
  border-radius: 14px;
  border: 1px solid rgba(107, 186, 229, 0.15);
  padding: 0;
  margin-bottom: 20px;
  overflow: hidden;
}

.woocommerce-checkout .woocommerce-checkout-login > p,
.woocommerce-checkout .woocommerce-checkout-coupon > p {
  padding: 16px 20px;
  margin: 0;
  font-size: 13.5px;
  color: var(--hb-text);
  background: linear-gradient(135deg, rgba(107, 186, 229, 0.06), rgba(42, 122, 181, 0.03));
  border-bottom: 1px solid rgba(107, 186, 229, 0.1);
}

.woocommerce-checkout .showcoupon,
.woocommerce-checkout .showlogin {
  color: var(--hb-deep) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-bottom: 1px dashed var(--hb-blue) !important;
}

/* Shipping Method Radio Buttons */
#shipping_method li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--hb-white);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin-bottom: 8px;
  transition: all 0.2s;
}

#shipping_method li:hover {
  border-color: var(--hb-blue);
  background: rgba(107, 186, 229, 0.04);
}

#shipping_method li input[type="radio"] {
  accent-color: var(--hb-deep);
  width: 16px;
  height: 16px;
}

#shipping_method li label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--hb-text);
  cursor: pointer;
  margin: 0;
}

/* WC Coupon form on Checkout */
.checkout_coupon {
  background: var(--hb-white) !important;
  border: none !important;
  padding: 20px !important;
  border-radius: 0 !important;
}

.checkout_coupon .form-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.checkout_coupon input#coupon_code {
  flex: 1;
  height: 46px !important;
  border-radius: 12px !important;
  border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
  padding: 10px 16px !important;
  font-family: "VisbyRoundCF", sans-serif !important;
  font-size: 13px !important;
  outline: none !important;
  transition: all 0.25s !important;
}

.checkout_coupon input#coupon_code:focus {
  border-color: var(--hb-blue) !important;
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.12) !important;
}

/* Order Review table in Checkout */
.woocommerce-checkout-review-order-table thead th {
  background: rgba(107, 186, 229, 0.08) !important;
  color: var(--hb-navy) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  padding: 12px 16px !important;
}

.woocommerce-checkout-review-order-table .cart_item td {
  padding: 14px 16px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
  font-size: 13px !important;
  color: var(--hb-text) !important;
}

.woocommerce-checkout-review-order-table tfoot tr th,
.woocommerce-checkout-review-order-table tfoot tr td {
  padding: 12px 16px !important;
  font-size: 13px !important;
  color: var(--hb-text) !important;
}

.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--hb-navy) !important;
  border-top: 2px solid rgba(107, 186, 229, 0.2) !important;
  padding-top: 16px !important;
}

/* ────────────────────────────────────────────────────────────────────────
   CUSTOM AUTH PAGE (LOGIN / REGISTER)
   ──────────────────────────────────────────────────────────────────────── */

/* Hide Navigation, Footer, and Floating WhatsApp button on Login & Register page template */
.page-template-page-login nav,
.page-template-page-login .site-footer,
.page-template-page-login .wa-float {
  display: none !important;
}

.hb-auth-wrapper {
  min-height: 100vh;
  background: var(--hb-cream);
  display: flex;
  align-items: stretch;
}

.hb-auth-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* Left Decorative Panel */
.hb-auth-left {
  width: 420px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--hb-navy) 0%, var(--hb-deep) 50%, #1c6ba5 100%);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hb-auth-brand {
  margin-bottom: auto;
}

.hb-auth-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* If white logo doesn't exist, fallback gracefully */
.hb-auth-logo[src*="white"]::before {
  display: none;
}

.hb-auth-left-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 40px;
}

.hb-auth-left-content h2 {
  color: white;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hb-auth-left-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hb-auth-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hb-auth-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  font-weight: 500;
}

.hb-auth-feature-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  color: #aee4ff;
}

/* Decorative circles */
.hb-auth-deco-circles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hb-auth-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.hb-auth-circle-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -80px;
}

.hb-auth-circle-2 {
  width: 200px;
  height: 200px;
  bottom: 40px;
  right: -60px;
  background: rgba(255, 255, 255, 0.06);
}

.hb-auth-circle-3 {
  width: 150px;
  height: 150px;
  bottom: -40px;
  left: 20px;
  background: rgba(107, 186, 229, 0.1);
}

/* Right Form Panel */
.hb-auth-right {
  flex: 1;
  background: var(--hb-white);
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.hb-auth-back {
  margin-bottom: 32px;
}

.hb-auth-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hb-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.hb-auth-back-btn:hover {
  color: var(--hb-deep);
}

.hb-auth-back-btn svg {
  width: 16px;
  height: 16px;
}

/* Tabs */
.hb-auth-tabs {
  display: flex;
  position: relative;
  background: #f3f5f7;
  border-radius: 14px;
  padding: 4px;
  gap: 2px;
  margin-bottom: 36px;
  max-width: 340px;
}

.hb-auth-tab {
  flex: 1;
  padding: 11px 20px;
  border: none;
  background: transparent;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--hb-muted);
  cursor: pointer;
  border-radius: 10px;
  transition: color 0.25s;
  position: relative;
  z-index: 2;
}

.hb-auth-tab.active {
  color: var(--hb-navy);
}

.hb-auth-tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: var(--hb-white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  width: 50%;
}

/* Panels */
.hb-auth-panel {
  display: none;
  animation: hb-auth-fade-in 0.3s ease;
}

.hb-auth-panel.active {
  display: block;
}

@keyframes hb-auth-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hb-auth-panel-header {
  margin-bottom: 32px;
}

.hb-auth-panel-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--hb-navy);
  margin-bottom: 8px;
}

.hb-auth-panel-header p {
  color: var(--hb-muted);
  font-size: 13.5px;
}

.hb-auth-switch-btn {
  background: none;
  border: none;
  color: var(--hb-deep);
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.hb-auth-switch-btn:hover {
  color: var(--hb-navy);
  background: transparent !important;
}

/* Notice alerts */
.hb-auth-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hb-auth-notice svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hb-auth-error {
  background: #fdeeed;
  color: #8a2020;
  border: 1px solid rgba(224, 85, 85, 0.2);
}

.hb-auth-success {
  background: #edf7f0;
  color: #1d5c35;
  border: 1px solid rgba(107, 175, 107, 0.2);
}

/* Form Fields */
.hb-auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}

.hb-auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hb-auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hb-auth-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hb-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hb-auth-field label abbr {
  color: #e05555;
  text-decoration: none;
}

.hb-auth-forgot {
  font-size: 12px;
  color: var(--hb-deep);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.hb-auth-forgot:hover {
  color: var(--hb-navy);
}

.hb-auth-pw-hint {
  font-size: 11px;
  font-weight: 400;
  color: var(--hb-light);
  font-style: italic;
}

.hb-auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.hb-auth-field-icon {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  color: var(--hb-light);
  pointer-events: none;
  flex-shrink: 0;
}

.hb-auth-input-wrap input {
  width: 100%;
  height: 50px;
  padding: 0 48px 0 44px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 13.5px;
  color: var(--hb-text);
  outline: none;
  background: var(--hb-white);
  transition: all 0.25s ease;
}

.hb-auth-input-wrap input:focus {
  border-color: var(--hb-blue);
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.12);
}

.hb-auth-input-wrap input::placeholder {
  color: var(--hb-light);
}

.hb-auth-toggle-pw {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--hb-light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.hb-auth-toggle-pw:hover,
.hb-auth-toggle-pw.active {
  color: var(--hb-deep);
}

.hb-auth-toggle-pw .hb-eye-icon {
  width: 17px;
  height: 17px;
}

/* Password strength bar */
.hb-pw-strength-bar {
  height: 4px;
  background: #f0f0f0;
  border-radius: 100px;
  overflow: hidden;
  margin-top: 6px;
}

.hb-pw-strength-fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  transition: width 0.4s ease, background 0.4s ease;
}

/* Remember me + TnC checkboxes */
.hb-auth-remember label,
.hb-auth-tnc label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--hb-muted);
  font-weight: 500;
  user-select: none;
}

.hb-auth-remember input[type="checkbox"],
.hb-auth-tnc input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.hb-auth-check-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  background: var(--hb-white);
  transition: all 0.2s;
  flex-shrink: 0;
}

.hb-auth-remember input:checked ~ .hb-auth-check-custom,
.hb-auth-tnc input:checked ~ .hb-auth-check-custom {
  background: var(--hb-deep);
  border-color: var(--hb-deep);
}

.hb-auth-remember input:checked ~ .hb-auth-check-custom::after,
.hb-auth-tnc input:checked ~ .hb-auth-check-custom::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.hb-auth-tnc a {
  color: var(--hb-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--hb-blue);
}

/* Submit Button */
.hb-auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--hb-blue), var(--hb-deep));
  color: white;
  border: none;
  border-radius: 100px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(42, 122, 181, 0.25);
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.hb-auth-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hb-auth-submit:hover {
  background: linear-gradient(135deg, var(--hb-deep), var(--hb-navy));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(27, 77, 110, 0.3);
}

.hb-auth-submit:hover svg {
  transform: translateX(4px);
}

.hb-auth-submit:active {
  transform: translateY(0);
}

/* ─── Responsive: Auth Page ─── */
@media (max-width: 1024px) {
  .hb-auth-left {
    width: 340px;
    padding: 40px 28px;
  }
  .hb-auth-right {
    padding: 40px 40px;
  }
}

@media (max-width: 768px) {
  .hb-auth-container {
    flex-direction: column;
    min-height: unset;
  }
  .hb-auth-left {
    width: 100%;
    padding: 36px 24px;
    min-height: unset;
  }
  .hb-auth-left-content {
    padding: 28px 0 0;
  }
  .hb-auth-left-content h2 {
    font-size: 22px;
  }
  .hb-auth-features {
    display: none;
  }
  .hb-auth-right {
    padding: 32px 24px;
  }
  .hb-auth-row {
    grid-template-columns: 1fr;
  }
  .hb-auth-tabs {
    max-width: 100%;
  }
  .hb-auth-panel-header h1 {
    font-size: 22px;
  }
}

/* ─── WooCommerce Login on checkout (improved) ─── */
.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  padding: 14px 20px 14px 55px !important;
  margin: 0 0 12px 0 !important;
  font-size: 13.5px !important;
  background: #e8f4fc !important;
  border-radius: 14px !important;
  color: var(--hb-text) !important;
  border: 1px solid #b8def3 !important;
  border-left: 1px solid #b8def3 !important;
}

.woocommerce-checkout .woocommerce-form-login-toggle .showlogin,
.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon {
  color: var(--hb-deep) !important;
  font-weight: 700 !important;
  border-bottom: none !important;
}

/* My Account login form — styled */
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
  background: var(--hb-white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 6px 24px rgba(0,0,0,0.03);
}

.woocommerce-account .u-column1 h2,
.woocommerce-account .u-column2 h2 {
  font-size: 22px;
  color: var(--hb-navy);
  margin-bottom: 24px;
  font-weight: 700;
}

.woocommerce-account form.login .form-row,
.woocommerce-account form.register .form-row {
  margin-bottom: 16px;
}

.woocommerce-account form.login input[type="text"],
.woocommerce-account form.login input[type="email"],
.woocommerce-account form.login input[type="password"],
.woocommerce-account form.register input[type="text"],
.woocommerce-account form.register input[type="email"],
.woocommerce-account form.register input[type="password"] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 13.5px;
  color: var(--hb-text);
  outline: none;
  transition: all 0.25s;
}

.woocommerce-account form.login input:focus,
.woocommerce-account form.register input:focus {
  border-color: var(--hb-blue);
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.12);
}

.woocommerce-account form.login label,
.woocommerce-account form.register label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hb-muted);
  margin-bottom: 6px;
}

.woocommerce-account form.login .button,
.woocommerce-account form.register .button {
  height: 50px;
  padding: 0 32px !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--hb-blue), var(--hb-deep)) !important;
  box-shadow: 0 4px 16px rgba(42, 122, 181, 0.2) !important;
}

.woocommerce-account form.login .button:hover,
.woocommerce-account form.register .button:hover {
  background: linear-gradient(135deg, var(--hb-deep), var(--hb-navy)) !important;
  transform: translateY(-2px) !important;
}

.woocommerce-account .woocommerce-LostPassword a,
.woocommerce-account form.login .lost_password a {
  color: var(--hb-deep);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--hb-blue);
}

/* WP Default Login Page Override */
body.login {
  background: linear-gradient(145deg, var(--hb-navy), var(--hb-deep)) !important;
  font-family: "VisbyRoundCF", sans-serif !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100vh !important;
}

body.login #login {
  background: white !important;
  border-radius: 24px !important;
  padding: 40px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
  width: 100% !important;
  max-width: 360px !important;
  margin: 0 auto !important;
}

body.login #login h1 a {
  background-image: url('assets/images/logo/hiboo-logo-color.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  width: 150px !important;
  height: 50px !important;
  margin: 0 auto 28px !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  display: block !important;
}

body.login #loginform {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
}

body.login #loginform label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--hb-navy) !important;
  margin-bottom: 8px !important;
}

body.login #loginform input[type="text"],
body.login #loginform input[type="password"] {
  border-radius: 12px !important;
  border: 1.5px solid rgba(0,0,0,0.08) !important;
  height: 48px !important;
  padding: 0 14px !important;
  font-family: "VisbyRoundCF", sans-serif !important;
  box-shadow: none !important;
  outline: none !important;
  margin-top: 4px !important;
  margin-bottom: 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.login #loginform input:focus {
  border-color: var(--hb-blue) !important;
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.12) !important;
}

body.login #wp-submit {
  background: linear-gradient(135deg, var(--hb-blue), var(--hb-deep)) !important;
  border-radius: 100px !important;
  height: 48px !important;
  font-family: "VisbyRoundCF", sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  box-shadow: 0 4px 16px rgba(42, 122, 181, 0.25) !important;
  border: none !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: all 0.25s !important;
  margin-top: 8px !important;
}

body.login #wp-submit:hover {
  background: linear-gradient(135deg, var(--hb-deep), var(--hb-navy)) !important;
  transform: translateY(-2px) !important;
}

body.login .privacy-policy-page-link,
body.login #nav a,
body.login #backtoblog a {
  color: #5a6b82 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
}

body.login .privacy-policy-page-link:hover,
body.login #nav a:hover,
body.login #backtoblog a:hover {
  color: var(--hb-blue, #6bbad1) !important;
}

body.login #nav,
body.login #backtoblog {
  margin: 16px 0 0 !important;
  padding: 0 !important;
  text-align: center !important;
}

/* Language selector contrast styling */
body.login .language-switcher {
  margin-top: 28px !important;
  text-align: center !important;
}

body.login .language-switcher label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 12px !important;
}

body.login .language-switcher select {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  outline: none !important;
  font-size: 12px !important;
}

body.login .language-switcher select option {
  color: var(--hb-navy) !important;
  background: white !important;
}

body.login .language-switcher .button {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  font-size: 12px !important;
  transition: all 0.2s !important;
  cursor: pointer !important;
  box-shadow: none !important;
  height: auto !important;
}

body.login .language-switcher .button:hover {
  background: white !important;
  color: var(--hb-navy) !important;
}


/* Checkout page: improve breadcrumb */
.hb-wc-wrapper .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 12.5px;
  color: var(--hb-muted);
  margin-bottom: 16px;
}

.hb-wc-wrapper .breadcrumb a {
  color: var(--hb-deep);
  text-decoration: none;
  font-weight: 600;
}

.hb-wc-wrapper .breadcrumb a:hover {
  color: var(--hb-navy);
}

.hb-wc-wrapper .breadcrumb svg {
  width: 12px;
  height: 12px;
  color: var(--hb-light);
}

/* Checkout step indicator */
.hb-checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.hb-checkout-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.hb-checkout-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f2f5 !important;
  color: var(--hb-muted) !important;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.hb-checkout-step.active .hb-checkout-step-num {
  background: var(--hb-deep) !important;
  color: white !important;
  border-color: var(--hb-blue) !important;
  box-shadow: 0 4px 12px rgba(42, 122, 181, 0.3) !important;
}

.hb-checkout-step.done .hb-checkout-step-num {
  background: var(--hb-sage) !important;
  color: white !important;
}

.hb-checkout-step-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--hb-muted);
  white-space: nowrap;
}

.hb-checkout-step.active .hb-checkout-step-label {
  color: var(--hb-navy);
}

.hb-checkout-step-line {
  flex: 1;
  height: 2px;
  background: #e8eaed;
  min-width: 60px;
  margin-bottom: 18px;
}

.hb-checkout-step-line.done {
  background: var(--hb-blue);
}

/* Voucher input area */
.hb-voucher-section {
  background: linear-gradient(135deg, rgba(107, 186, 229, 0.06), rgba(42, 122, 181, 0.03));
  border: 1.5px dashed rgba(107, 186, 229, 0.4);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 20px;
}

.hb-voucher-section label {
  font-size: 13px;
  font-weight: 700;
  color: var(--hb-navy);
  display: block;
  margin-bottom: 10px;
}

.hb-voucher-section .form-row {
  display: flex;
  gap: 10px;
}

.hb-voucher-section input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border: 1.5px solid rgba(107, 186, 229, 0.3);
  border-radius: 12px;
  font-family: "VisbyRoundCF", sans-serif;
  font-size: 13px;
  background: white;
  outline: none;
  transition: all 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hb-voucher-section input:focus {
  border-color: var(--hb-blue);
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.12);
}

/* Order summary total highlight */
.woocommerce-checkout-review-order-table tfoot .order-total td .woocommerce-Price-amount {
  color: var(--hb-deep) !important;
  font-size: 20px !important;
}

/* ────────────────────────────────────────────────────────────────────────
   HIBOO CUSTOM PREMIUM CHECKOUT ALIGNMENT OVERRIDES
   ──────────────────────────────────────────────────────────────────────── */

/* Hide breadcrumb on checkout */
.hb-checkout-wrapper .breadcrumb {
  display: none !important;
}

/* Align Billing and Shipping details as full-width stacked cards */
#customer_details {
  display: block !important;
  width: 100% !important;
  float: none !important;
}

.woocommerce-checkout .col2-set {
  width: 100% !important;
  display: block !important;
  float: none !important;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  width: 100% !important;
  float: none !important;
  display: block !important;
  box-sizing: border-box !important;
  padding: 36px !important;
  background: var(--md-surface-white) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(192, 199, 208, 0.4) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 28px !important;
}

/* Hide col-2 card if it doesn't contain any input fields or headers (e.g. empty shipping fields) */
.woocommerce-checkout .col2-set .col-2:not(:has(input, select, textarea, h3)) {
  display: none !important;
}

.woocommerce-checkout .col2-set .col-1 h3,
.woocommerce-checkout .col2-set .col-2 h3 {
  font-size: 22px !important;
  margin-bottom: 28px !important;
  font-weight: 700 !important;
  color: var(--md-on-surface) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Force Geotagging Map to span full-width inside the card wrapper */
.hb-checkout-map-wrapper {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 20px !important;
}

/* WooCommerce Notices Styling */
.hb-checkout-content-area .woocommerce-message {
  background-color: #e8f7f0 !important;
  border: 1px solid #a3e2c9 !important;
  border-left: 4px solid #2ecc71 !important;
  border-radius: 8px !important;
  color: #2c3e50 !important;
  padding: 14px 20px 14px 55px!important;
  font-size: 13.5px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 20px !important;
}

.hb-checkout-content-area .woocommerce-message::before {
  color: #2ecc71 !important;
  font-size: 18px !important;
}

.hb-checkout-content-area .woocommerce-message a.button {
  background: transparent !important;
  color: #2ecc71 !important;
  border: none !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 13px !important;
  box-shadow: none !important;
  text-transform: none !important;
  height: auto !important;
  line-height: inherit !important;
}

.hb-checkout-content-area .woocommerce-message a.button:hover {
  color: #27ae60 !important;
  background: transparent !important;
}

/* Payment Methods Area Box Styling */
.woocommerce-checkout #payment ul.payment_methods {
  border: none !important;
  padding: 0 !important;
  list-style: none !important;
  margin: 0 0 20px 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
  border: 1.5px solid rgba(192, 199, 208, 0.4) !important;
  border-radius: 12px !important;
  padding: 18px 20px !important;
  margin-bottom: 12px !important;
  background: white !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:has(input[type="radio"]:checked) {
  border-color: var(--md-primary) !important;
  background: #f4fafd !important;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method input[type="radio"] {
  accent-color: var(--md-primary) !important;
  margin-right: 12px !important;
  transform: scale(1.15) !important;
  cursor: pointer !important;
}

.woocommerce-checkout #payment div.payment_box {
  background: #f7f9fa !important;
  border: 1px solid rgba(192, 199, 208, 0.3) !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  margin-top: 12px !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: var(--md-on-surface-variant) !important;
  position: relative !important;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none !important;
}

.woocommerce-checkout #payment div.payment_box::after {
  content: "" !important;
  position: absolute !important;
  top: -6px !important;
  left: 20px !important;
  border-width: 0 6px 6px 6px !important;
  border-style: solid !important;
  border-color: transparent transparent #f7f9fa transparent !important;
  display: block !important;
}

/* Hide duplicate payment methods inside KiriminAja order review table */
.woocommerce-checkout-review-order-table tr.kj-payment-checkout {
  display: none !important;
}

/* Sidebar Order review price styling */
.shop_table.woocommerce-checkout-review-order-table .cart_item td.product-total,
.shop_table.woocommerce-checkout-review-order-table .cart_item td.product-total span.woocommerce-Price-amount {
  color: var(--md-primary) !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
}

.woocommerce-checkout-review-order-table tfoot .order-total td .woocommerce-Price-amount,
.woocommerce-checkout-review-order-table tfoot .order-total td strong {
  color: var(--md-primary) !important;
  font-weight: 800 !important;
  font-size: 22px !important;
}

.woocommerce-checkout-review-order-table tr.shipping td span.free-shipping-badge,
.woocommerce-checkout-review-order-table tr.shipping td .free-shipping,
.woocommerce-checkout-review-order-table tr.shipping td mark {
  background: #e8f7f0 !important;
  color: #2ecc71 !important;
  border: 1px solid #a3e2c9 !important;
  padding: 4px 8px !important;
  border-radius: 40px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  display: inline-block !important;
}

/* Checkbox alignment for Terms and Conditions */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 20px !important;
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  cursor: pointer !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  color: var(--md-on-surface-variant) !important;
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox input[type="checkbox"] {
  margin-top: 3px !important;
  flex-shrink: 0 !important;
  accent-color: var(--md-primary) !important;
}

/* ────────────────────────────────────────────────────────────────────────
   HIBOO CART PAGE — BORDER & LINE CLEANUP OVERRIDES
   ──────────────────────────────────────────────────────────────────────── */

/* Remove ALL default WooCommerce table borders */
body.woocommerce-cart .shop_table,
body.woocommerce-cart .shop_table.cart,
body.woocommerce-cart .shop_table.shop_table_responsive {
  border: none !important;
  border-collapse: collapse !important;
}

/* Remove table outer border + cell borders */
body.woocommerce-cart .shop_table.cart td,
body.woocommerce-cart .shop_table.cart th {
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}

/* Only add a very subtle separator between rows */
body.woocommerce-cart .shop_table.cart tbody tr.cart_item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

body.woocommerce-cart .shop_table.cart tbody tr.cart_item:last-child {
  border-bottom: none !important;
}

/* Remove header bottom border (keep subtle blue gradient bg instead) */
body.woocommerce-cart .shop_table.cart thead tr {
  border: none !important;
}

body.woocommerce-cart .shop_table.cart thead th {
  border: none !important;
  border-bottom: 1px solid rgba(107, 186, 229, 0.1) !important;
}

/* Actions row: make cleaner */
body.woocommerce-cart .woocommerce-cart-form .actions {
  border: none !important;
  border-top: 1px solid rgba(0, 0, 0, 0.04) !important;
}

/* Remove WooCommerce default border on actions td */
body.woocommerce-cart .woocommerce-cart-form .actions td {
  border: none !important;
}

/* Cart totals sidebar: clean up inner table borders */
body.woocommerce-cart .cart_totals table,
body.woocommerce-cart .cart_totals table th,
body.woocommerce-cart .cart_totals table td {
  border: none !important;
}

/* Remove WC responsive table default border */
.woocommerce-page body.woocommerce-cart table.shop_table_responsive {
  border: none !important;
}

.woocommerce-page body.woocommerce-cart table.shop_table_responsive td,
.woocommerce-page body.woocommerce-cart table.shop_table_responsive th {
  border: none !important;
}

/* Cart totals: keep only subtle row separators */
.woocommerce-page .cart_totals table.shop_table_responsive tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.woocommerce-page .cart_totals table.shop_table_responsive tr:last-child {
  border-bottom: none !important;
}

/* Order total row - keep accent top border */
.woocommerce-page .cart_totals table.shop_table_responsive tr.order-total {
  border-top: 2px solid rgba(107, 186, 229, 0.15) !important;
  border-bottom: none !important;
}

/* Shipping method items: remove stray lines */
.woocommerce-page .cart_totals .shipping ul#shipping_method li {
  border: none !important;
}

.woocommerce-page .cart_totals .shipping ul#shipping_method li label {
  border: none !important;
}

/* Hide any hidden WC radio/checkbox borders in cart */
.woocommerce-page .cart_totals input[type="radio"],
.woocommerce-page .cart_totals input[type="checkbox"] {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Fix shipping calculator form borders */
.woocommerce-page .cart_totals .shipping-calculator-form {
  border: 1px solid rgba(107, 186, 229, 0.12) !important;
}

/* Remove cross-sell bottom border if present */
body.woocommerce-cart .cross-sells {
  border: none !important;
}

/* ════════════════════════════════════════════════════════════════════════
   MY ACCOUNT PAGE — CLEAN REDESIGN
   Single consolidated block. No other my-account rules should exist above.
   ════════════════════════════════════════════════════════════════════════ */

/* ── Page Wrapper ── */
.hb-my-account-wrapper {
  background: var(--hb-cream) !important;
  padding-top: 20px !important;
  padding-bottom: 60px !important;
}

/* ── Page Header ── */
.hb-my-account-wrapper .hb-page-header {
  text-align: center !important;
  margin-left: 0 !important;
  max-width: 100% !important;
  margin-bottom: 8px !important;
  padding: 24px 20px 12px !important;
}

.hb-my-account-wrapper .hb-page-header h1 {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--hb-navy) !important;
  margin-bottom: 4px !important;
}

.hb-my-account-wrapper .hb-page-header p {
  color: var(--hb-muted) !important;
  font-size: 13.5px !important;
  max-width: 480px !important;
  margin: 0 auto !important;
  line-height: 1.5 !important;
}

/* ── Content Area (default: block for login state) ── */
.hb-my-account-content-area {
  margin-top: 0 !important;
  padding: 0 !important;
}

.hb-my-account-content-area > .woocommerce {
  display: block !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Constrain login form width specifically when logged out and single column login form is active */
body.logged-out .hb-my-account-content-area > .woocommerce {
  max-width: 440px !important;
}

/* If registration is enabled, let it be wider for the columns */
body.logged-out .hb-my-account-content-area > .woocommerce:has(.u-columns) {
  max-width: 820px !important;
}

/* When logged in, let the grid occupy more space up to 1200px */
body.logged-in .hb-my-account-content-area > .woocommerce {
  max-width: 1200px !important;
}

/* ────────────────────────────────────────────────────
   LOGIN STATE
   ──────────────────────────────────────────────────── */

/* Login heading */
.hb-my-account-content-area > .woocommerce > h2 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--hb-navy) !important;
  text-align: center !important;
  margin: 0 0 20px 0 !important;
  font-family: 'VisbyRoundCF', sans-serif !important;
}

/* Login form card */
.hb-my-account-content-area > .woocommerce > form.login {
  background: var(--hb-white) !important;
  border-radius: 20px !important;
  padding: 32px !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Form rows */
.hb-my-account-content-area > .woocommerce > form.login .form-row {
  margin-bottom: 16px !important;
}

/* Labels */
.hb-my-account-content-area > .woocommerce > form.login label {
  display: block !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--hb-muted) !important;
  margin-bottom: 6px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

/* Text inputs */
.hb-my-account-content-area > .woocommerce > form.login input.input-text {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 10px !important;
  height: 48px !important;
  font-size: 14px !important;
  background: #faf9f7 !important;
  font-family: 'VisbyRoundCF', sans-serif !important;
  box-sizing: border-box !important;
  outline: none !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  color: var(--hb-text) !important;
}

.hb-my-account-content-area > .woocommerce > form.login input.input-text:focus {
  border-color: var(--hb-blue) !important;
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.12) !important;
  background: white !important;
}

/* Remember me */
.hb-my-account-content-area .woocommerce-form-login__rememberme {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13px !important;
  color: var(--hb-muted) !important;
  cursor: pointer !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
  margin-bottom: 4px !important;
}

.hb-my-account-content-area .woocommerce-form-login__rememberme input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--hb-blue) !important;
}

/* Login button */
.hb-my-account-content-area > .woocommerce > form.login button.woocommerce-form-login__submit {
  width: 100% !important;
  background: linear-gradient(135deg, var(--hb-blue), var(--hb-deep)) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 100px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(42, 122, 181, 0.2) !important;
  font-size: 15px !important;
  font-family: 'VisbyRoundCF', sans-serif !important;
  height: auto !important;
  margin-top: 8px !important;
  display: block !important;
}

.hb-my-account-content-area > .woocommerce > form.login button.woocommerce-form-login__submit:hover {
  background: linear-gradient(135deg, var(--hb-deep), var(--hb-navy)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(42, 122, 181, 0.3) !important;
}

/* Lost password */
.hb-my-account-content-area .woocommerce-LostPassword {
  text-align: center !important;
  margin-top: 16px !important;
}

.hb-my-account-content-area .woocommerce-LostPassword a {
  color: var(--hb-deep) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-bottom: 1px dashed rgba(42, 122, 181, 0.3) !important;
}

.hb-my-account-content-area .woocommerce-LostPassword a:hover {
  border-bottom-color: var(--hb-deep) !important;
}

/* ── Login/Register u-columns ── */
.hb-my-account-content-area .woocommerce .u-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  max-width: 820px !important;
  margin: 0 auto !important;
}

.hb-my-account-content-area .woocommerce .u-columns .col-1,
.hb-my-account-content-area .woocommerce .u-columns .col-2 {
  width: 100% !important;
  float: none !important;
  background: var(--hb-white) !important;
  border-radius: 20px !important;
  padding: 32px !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03) !important;
  box-sizing: border-box !important;
}

/* ────────────────────────────────────────────────────
   LOGGED-IN STATE
   Template: woocommerce/myaccount/my-account.php
   outputs .hb-account-grid > .hb-account-nav + .hb-account-main
   ──────────────────────────────────────────────────── */

/* When logged in, the .woocommerce div contains .hb-account-grid,
   so remove the login-state max-width constraint */
body.logged-in .hb-my-account-content-area > .woocommerce {
  max-width: 1200px !important;
}

/* The actual 2-column grid */
body.woocommerce-account .hb-my-account-content-area .woocommerce .hb-account-grid {
  display: grid !important;
  grid-template-columns: 240px 1fr !important;
  gap: 24px !important;
  align-items: start !important;
  align-content: start !important;
  width: 100% !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.woocommerce-account .hb-my-account-content-area .woocommerce .hb-account-grid > *:not(.hb-account-nav):not(.hb-account-main) {
  display: none !important;
}

body.woocommerce-account .hb-my-account-content-area .woocommerce .hb-account-grid .hb-account-nav {
  grid-column: 1 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-account .hb-my-account-content-area .woocommerce .hb-account-grid .hb-account-main {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── Sidebar Navigation ── */
.hb-my-account-content-area .woocommerce-MyAccount-navigation {
  background: var(--hb-white) !important;
  border-radius: 18px !important;
  padding: 16px !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04) !important;
  width: 100% !important;
  float: none !important;
  box-sizing: border-box !important;
  display: block !important;
  height: auto !important;
  position: relative !important;
  z-index: 10 !important; /* Prevents overlapping the site's sticky header (z-index: 100) */
  top: auto !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  align-items: stretch !important;
  justify-content: stretch !important;
}

body.woocommerce-account .hb-my-account-content-area .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: block !important;
  float: none !important;
  position: relative !important;
  height: auto !important;
}

.hb-my-account-content-area .woocommerce-MyAccount-navigation li {
  margin: 0 !important;
  display: block !important;
  float: none !important;
  position: relative !important;
  height: auto !important;
}

.hb-my-account-content-area .woocommerce-MyAccount-navigation li + li {
  margin-top: 2px !important;
}

.hb-my-account-content-area .woocommerce-MyAccount-navigation a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 11px 14px !important;
  border-radius: 12px !important;
  color: var(--hb-text) !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.hb-my-account-content-area .woocommerce-MyAccount-navigation a:hover {
  background: rgba(107, 186, 229, 0.08) !important;
  color: var(--hb-navy) !important;
  transform: translateX(3px) !important;
}

.hb-my-account-content-area .woocommerce-MyAccount-navigation li.is-active a {
  background: linear-gradient(135deg, var(--hb-blue), var(--hb-deep)) !important;
  color: white !important;
  box-shadow: 0 4px 14px rgba(42, 122, 181, 0.2) !important;
}

/* Nav emoji icons */
.hb-my-account-content-area .woocommerce-MyAccount-navigation li a::before {
  font-size: 15px !important;
  width: 22px !important;
  text-align: center !important;
  flex-shrink: 0 !important;
}
.hb-my-account-content-area .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard a::before { content: "\1F3E0"; }
.hb-my-account-content-area .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--orders a::before { content: "\1F4E6"; }
.hb-my-account-content-area .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--downloads a::before { content: "\1F4E5"; }
.hb-my-account-content-area .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-address a::before { content: "\1F4CD"; }
.hb-my-account-content-area .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-account a::before { content: "\1F464"; }
.hb-my-account-content-area .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a::before { content: "\1F6AA"; }
.hb-my-account-content-area .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--payment-methods a::before { content: "\1F4B3"; }

/* Separator before logout */
.hb-my-account-content-area .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 6px !important;
  padding-top: 8px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* Logout: subtle red */
.hb-my-account-content-area .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #b33a3a !important;
  opacity: 0.7 !important;
}
.hb-my-account-content-area .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: rgba(179, 58, 58, 0.06) !important;
  color: #b33a3a !important;
  opacity: 1 !important;
}

/* ── Main Content Card ── */
body.woocommerce-account .hb-my-account-content-area .woocommerce-MyAccount-content {
  background: var(--hb-white) !important;
  border-radius: 18px !important;
  padding: 32px !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04) !important;
  min-height: 200px !important;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}

/* Dashboard welcome */
.hb-my-account-content-area .woocommerce-MyAccount-content > p:first-of-type {
  background: linear-gradient(135deg, rgba(107, 186, 229, 0.06), rgba(42, 122, 181, 0.02)) !important;
  border: 1px solid rgba(107, 186, 229, 0.1) !important;
  border-radius: 12px !important;
  padding: 18px 22px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--hb-navy) !important;
  margin-bottom: 18px !important;
}

.hb-my-account-content-area .woocommerce-MyAccount-content > p:first-of-type a {
  color: var(--hb-deep) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-bottom: 1.5px solid rgba(42, 122, 181, 0.25) !important;
}

/* ── Orders Table ── */
.hb-my-account-content-area table.shop_table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 13.5px !important;
  border: none !important;
}

.hb-my-account-content-area table.shop_table thead {
  background: linear-gradient(135deg, rgba(107, 186, 229, 0.05), rgba(42, 122, 181, 0.02)) !important;
}

.hb-my-account-content-area table.shop_table thead th {
  padding: 11px 14px !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  color: var(--hb-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  border: none !important;
  border-bottom: 1px solid rgba(107, 186, 229, 0.08) !important;
  white-space: nowrap !important;
}

.hb-my-account-content-area table.shop_table td {
  padding: 12px 14px !important;
  border: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
  vertical-align: middle !important;
  color: var(--hb-text) !important;
}

.hb-my-account-content-area table.shop_table tr:last-child td {
  border-bottom: none !important;
}

.hb-my-account-content-area table.shop_table tbody tr:hover {
  background: rgba(107, 186, 229, 0.02) !important;
}

.hb-my-account-content-area table.shop_table td:first-child a {
  color: var(--hb-deep) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.hb-my-account-content-area table.shop_table a.button {
  font-size: 12px !important;
  padding: 7px 14px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

/* ── Address Cards ── */
body.woocommerce-account .woocommerce-Addresses {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  width: 100% !important;
}

body.woocommerce-account .woocommerce-Addresses::before,
body.woocommerce-account .woocommerce-Addresses::after {
  content: none !important;
  display: none !important;
}

body.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
  background: #fbfcfd !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 14px !important;
  padding: 22px !important;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  margin-top: 0 !important;
  box-sizing: border-box !important;
  display: block !important;
  position: relative !important;
  top: 0 !important;
}

body.woocommerce-account .woocommerce-Address header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 12px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

body.woocommerce-account .woocommerce-Address header h2,
body.woocommerce-account .woocommerce-Address header h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--hb-navy) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

body.woocommerce-account .woocommerce-Address header a.edit {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: var(--hb-deep) !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

body.woocommerce-account .woocommerce-Address header a.edit:hover {
  color: var(--hb-navy) !important;
  opacity: 0.8 !important;
}

body.woocommerce-account .woocommerce-Address address {
  font-style: normal !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--hb-text) !important;
}

/* ── Forms (Edit Account / Edit Address) ── */
body.woocommerce-account .woocommerce-MyAccount-content form {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
}

/* Hide clearing divs so they do not break grid column mapping */
body.woocommerce-account .woocommerce-MyAccount-content form div.clear {
  display: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content form .form-row-wide,
body.woocommerce-account .woocommerce-MyAccount-content form fieldset,
body.woocommerce-account .woocommerce-MyAccount-content form > p:last-child {
  grid-column: 1 / -1 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content form .form-row-first {
  grid-column: 1 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content form .form-row-last {
  grid-column: 2 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content form .form-row {
  margin-bottom: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content label {
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--hb-muted) !important;
  margin-bottom: 6px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
body.woocommerce-account .woocommerce-MyAccount-content select,
body.woocommerce-account .woocommerce-MyAccount-content textarea {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 10px !important;
  outline: none !important;
  height: 48px !important;
  font-family: 'VisbyRoundCF', sans-serif !important;
  font-size: 14px !important;
  color: var(--hb-text) !important;
  background: #faf9f7 !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

body.woocommerce-account .woocommerce-MyAccount-content textarea {
  height: auto !important;
  min-height: 90px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content input:focus,
body.woocommerce-account .woocommerce-MyAccount-content select:focus,
body.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
  border-color: var(--hb-blue) !important;
  box-shadow: 0 0 0 3px rgba(107, 186, 229, 0.12) !important;
  background: white !important;
}

/* Password fieldset */
body.woocommerce-account .woocommerce-MyAccount-content fieldset {
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 14px !important;
  padding: 24px !important;
  margin: 10px 0 0 0 !important;
  background: #fbfcfd !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--hb-navy) !important;
  padding: 0 10px !important;
  margin-bottom: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content span[id$="_description"] {
  display: block !important;
  font-size: 12px !important;
  color: var(--hb-muted) !important;
  margin-top: 6px !important;
  font-style: italic !important;
  line-height: 1.4 !important;
}

/* Submit buttons */
.hb-my-account-content-area .woocommerce-MyAccount-content button.button,
.hb-my-account-content-area .woocommerce-MyAccount-content input[type="submit"] {
  background: linear-gradient(135deg, var(--hb-blue), var(--hb-deep)) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 13px 32px !important;
  border-radius: 100px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 14px rgba(42, 122, 181, 0.18) !important;
  font-size: 14px !important;
  height: auto !important;
}

.hb-my-account-content-area .woocommerce-MyAccount-content button.button:hover,
.hb-my-account-content-area .woocommerce-MyAccount-content input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--hb-deep), var(--hb-navy)) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(42, 122, 181, 0.25) !important;
}

/* Info notices */
.hb-my-account-content-area .woocommerce-MyAccount-content .woocommerce-info {
  background: rgba(107, 186, 229, 0.06) !important;
  border-left: 4px solid var(--hb-blue) !important;
  border-radius: 10px !important;
  padding: 14px 18px !important;
  font-size: 14px !important;
  color: var(--hb-navy) !important;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hb-account-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body.woocommerce-account .hb-my-account-content-area .woocommerce .hb-account-grid .hb-account-nav,
  body.woocommerce-account .hb-my-account-content-area .woocommerce .hb-account-grid .hb-account-main {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .hb-my-account-content-area .woocommerce-MyAccount-navigation {
    position: static !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 12px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .hb-my-account-content-area .woocommerce-MyAccount-navigation::-webkit-scrollbar {
    display: none !important;
  }

  body.woocommerce-account .hb-my-account-content-area .woocommerce-MyAccount-navigation ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    padding: 4px 4px 12px 4px !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .hb-my-account-content-area .woocommerce-MyAccount-navigation li {
    flex: 0 0 auto !important;
  }

  .hb-my-account-content-area .woocommerce-MyAccount-navigation li + li {
    margin-top: 0 !important;
  }

  .hb-my-account-content-area .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
  }

  .hb-my-account-content-area .woocommerce-MyAccount-navigation a {
    padding: 8px 14px !important;
    font-size: 12.5px !important;
    white-space: nowrap !important;
    background: #f1f3f5 !important;
    border-radius: 100px !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
  }

  .hb-my-account-content-area .woocommerce-MyAccount-navigation li.is-active a {
    background: linear-gradient(135deg, var(--hb-blue), var(--hb-deep)) !important;
    color: white !important;
  }

  .hb-my-account-content-area .woocommerce-MyAccount-content {
    padding: 22px 18px !important;
  }

  body.woocommerce-account .hb-my-account-content-area .woocommerce-MyAccount-content form {
    grid-template-columns: 1fr !important;
  }

  body.woocommerce-account .hb-my-account-content-area .woocommerce-MyAccount-content form .form-row-first,
  body.woocommerce-account .hb-my-account-content-area .woocommerce-MyAccount-content form .form-row-last {
    grid-column: 1 / -1 !important;
  }

  .hb-my-account-content-area .woocommerce .u-columns {
    grid-template-columns: 1fr !important;
  }

  .hb-my-account-content-area .woocommerce-Addresses {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .hb-my-account-wrapper .hb-page-header h1 {
    font-size: 26px !important;
  }

  .hb-my-account-content-area .woocommerce-MyAccount-navigation a::before {
    display: none !important;
  }

  .hb-my-account-content-area .woocommerce-MyAccount-navigation a {
    padding: 7px 10px !important;
    font-size: 11.5px !important;
  }

  .hb-my-account-content-area > .woocommerce {
    max-width: 100% !important;
    padding: 0 4px !important;
  }

  .hb-my-account-content-area > .woocommerce > form.login {
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }
}

/* ── Direct Bank Transfer (BACS) Styling for Order Received Page ── */
.woocommerce-bacs-bank-details {
  background: var(--md-surface-white, #ffffff) !important;
  border-radius: 16px !important;
  padding: 30px !important;
  border: 1px solid rgba(192, 199, 208, 0.4) !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04) !important;
  margin: 32px 0 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.woocommerce-bacs-bank-details h2.wc-bacs-bank-details-heading {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--md-on-surface, #1a1a1a) !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
}

.woocommerce-bacs-bank-details h3.wc-bacs-bank-details-account-name {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--md-primary, #006492) !important;
  margin-bottom: 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(107, 186, 229, 0.1) !important;
  padding: 10px 16px !important;
  border-radius: 8px !important;
  width: fit-content !important;
}

.woocommerce-bacs-bank-details ul.wc-bacs-bank-details {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 32px !important;
  border-top: 1px solid rgba(192, 199, 208, 0.2) !important;
  padding-top: 16px !important;
}

.woocommerce-bacs-bank-details ul.wc-bacs-bank-details li {
  font-size: 12px !important;
  color: var(--hb-muted, #7a7a7a) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-weight: 600 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.woocommerce-bacs-bank-details ul.wc-bacs-bank-details li strong {
  font-size: 18px !important;
  color: var(--md-on-surface, #1a1a1a) !important;
  font-weight: 800 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  margin-top: 2px !important;
}

/* ── Custom Orders List Design Enhancements ── */
.hb-my-account-content-area table.shop_table {
  border-spacing: 0 !important;
  border-collapse: separate !important;
}

/* Base style for table rows */
.hb-my-account-content-area table.shop_table tbody tr.woocommerce-orders-table__row td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  background: transparent !important;
}

/* Remove bottom border on the last row */
.hb-my-account-content-area table.shop_table tbody tr.woocommerce-orders-table__row:last-of-type td {
  border-bottom: none !important;
}

/* Timeline element style overrides for single order details page */
.hb-order-timeline-single {
  margin: 0 0 30px 0 !important;
  padding: 20px 28px !important;
  background: #fdfaf7 !important;
  border: 1px solid rgba(107, 186, 229, 0.12) !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

/* Unify hover background for the main order info row */
.hb-my-account-content-area table.shop_table tbody tr.woocommerce-orders-table__row:hover td {
  background: rgba(107, 186, 229, 0.02) !important;
}

/* Adjust cell alignments and aesthetics */
.hb-my-account-content-area table.shop_table td.woocommerce-orders-table__cell-order-number a {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--hb-blue) !important;
  border-bottom: 2px solid transparent !important;
  transition: all 0.2s !important;
}

.hb-my-account-content-area table.shop_table td.woocommerce-orders-table__cell-order-number a:hover {
  color: var(--hb-deep) !important;
  border-bottom-color: var(--hb-deep) !important;
}

/* Style the buttons in the actions cell */
.hb-my-account-content-area table.shop_table td.woocommerce-orders-table__cell-order-actions {
  display: flex !important;
  gap: 8px !important;
  justify-content: flex-end !important;
  align-items: center !important;
  border-bottom: none !important;
}

.hb-my-account-content-area table.shop_table td.woocommerce-orders-table__cell-order-actions a.button {
  margin: 0 !important;
  padding: 8px 18px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  border-radius: 100px !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  transition: all 0.2s ease-in-out !important;
}

/* View button default style */
.hb-my-account-content-area table.shop_table td.woocommerce-orders-table__cell-order-actions a.button.view {
  background: rgba(107, 186, 229, 0.1) !important;
  color: var(--hb-deep) !important;
  border: 1px solid rgba(107, 186, 229, 0.2) !important;
}

.hb-my-account-content-area table.shop_table td.woocommerce-orders-table__cell-order-actions a.button.view:hover {
  background: var(--hb-blue) !important;
  color: white !important;
  border-color: var(--hb-blue) !important;
  box-shadow: 0 4px 12px rgba(107, 186, 229, 0.2) !important;
}

/* Beli Lagi button style */
.hb-my-account-content-area table.shop_table td.woocommerce-orders-table__cell-order-actions a.button.hb-reorder-btn {
  background: var(--hb-sky) !important;
  color: var(--hb-navy) !important;
  border: 1px solid rgba(107, 186, 229, 0.15) !important;
}

.hb-my-account-content-area table.shop_table td.woocommerce-orders-table__cell-order-actions a.button.hb-reorder-btn:hover {
  background: var(--hb-blue) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(107, 186, 229, 0.2) !important;
}

/* Status badge look */
.hb-my-account-content-area table.shop_table td.woocommerce-orders-table__cell-order-status {
  font-weight: 700 !important;
  font-size: 13.5px !important;
  color: var(--hb-navy) !important;
}

/* ── Single View Order Details Styling ── */
.hb-my-account-content-area .woocommerce-MyAccount-content p.order-info {
  background: linear-gradient(135deg, rgba(107, 186, 229, 0.08), rgba(42, 122, 181, 0.03)) !important;
  border: 1px solid rgba(107, 186, 229, 0.12) !important;
  border-radius: 14px !important;
  padding: 18px 24px !important;
  font-size: 14px !important;
  color: var(--hb-navy) !important;
  margin-bottom: 30px !important;
  line-height: 1.6 !important;
}

.hb-my-account-content-area .woocommerce-MyAccount-content p.order-info mark.order-number,
.hb-my-account-content-area .woocommerce-MyAccount-content p.order-info mark.order-date,
.hb-my-account-content-area .woocommerce-MyAccount-content p.order-info mark.order-status {
  background: transparent !important;
  color: var(--hb-navy) !important;
  font-weight: 700 !important;
  padding: 0 !important;
}

/* Order Details Table styling */
.woocommerce-order-details {
  margin-top: 40px !important;
}

.woocommerce-order-details__title {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--hb-navy) !important;
  margin-bottom: 20px !important;
  font-family: 'VisbyRoundCF', sans-serif !important;
  text-transform: none !important;
}

.hb-my-account-content-area table.woocommerce-table--order-details {
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border-collapse: separate !important;
  width: 100% !important;
  margin-bottom: 36px !important;
}

.hb-my-account-content-area table.woocommerce-table--order-details thead {
  background: #fdfaf7 !important;
}

.hb-my-account-content-area table.woocommerce-table--order-details thead th {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: var(--hb-muted) !important;
  letter-spacing: 0.05em !important;
  padding: 14px 20px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.hb-my-account-content-area table.woocommerce-table--order-details tbody td {
  padding: 18px 20px !important;
  font-size: 14px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.hb-my-account-content-area table.woocommerce-table--order-details tbody tr:last-child td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

/* Totals rows styling */
.hb-my-account-content-area table.woocommerce-table--order-details tfoot th {
  padding: 14px 20px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--hb-muted) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
  background: #fcfbfa !important;
  text-align: left !important;
}

.hb-my-account-content-area table.woocommerce-table--order-details tfoot td {
  padding: 14px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--hb-navy) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
  background: #fcfbfa !important;
}

.hb-my-account-content-area table.woocommerce-table--order-details tfoot tr:last-child th,
.hb-my-account-content-area table.woocommerce-table--order-details tfoot tr:last-child td {
  border-bottom: none !important;
  background: #fbf9f6 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.hb-my-account-content-area table.woocommerce-table--order-details tfoot tr:last-child td span.woocommerce-Price-amount {
  color: var(--hb-deep) !important;
  font-weight: 800 !important;
}

/* Customer details and Address Cards */
.woocommerce-customer-details {
  margin-top: 40px !important;
  border-top: 1px dashed rgba(0, 0, 0, 0.08) !important;
  padding-top: 32px !important;
}

.woocommerce-column__title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--hb-navy) !important;
  margin-bottom: 16px !important;
  font-family: 'VisbyRoundCF', sans-serif !important;
  text-transform: none !important;
}

.woocommerce-columns--addresses {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  width: 100% !important;
  float: none !important;
  clear: both !important;
}

.woocommerce-column--billing-address,
.woocommerce-column--shipping-address {
  flex: 1 1 280px !important;
  min-width: 0 !important;
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  background: #fdfbf9 !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 18px !important;
  padding: 24px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01) !important;
  box-sizing: border-box !important;
}

.woocommerce-customer-details address {
  font-style: normal !important;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: var(--hb-text) !important;
  margin: 0 !important;
}

.woocommerce-customer-details .woocommerce-customer-details--phone,
.woocommerce-customer-details .woocommerce-customer-details--email {
  margin-top: 10px !important;
  font-size: 13.5px !important;
  color: var(--hb-text) !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.woocommerce-customer-details .woocommerce-customer-details--phone::before {
  content: "📞";
}

.woocommerce-customer-details .woocommerce-customer-details--email::before {
  content: "✉️";
}

/* Status Badge Pill Styling */
.hb-status-badge {
  display: inline-block !important;
  padding: 6px 14px !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  text-align: center !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Colors for status badges */
.hb-status-badge.status-processing {
  background: rgba(107, 186, 229, 0.15) !important;
  color: var(--hb-deep) !important;
}

.hb-status-badge.status-on-hold {
  background: #fdf5e6 !important;
  color: #d97706 !important;
}

.hb-status-badge.status-completed {
  background: #eefdf4 !important;
  color: #16a34a !important;
}

.hb-status-badge.status-cancelled,
.hb-status-badge.status-failed {
  background: #fdf2f2 !important;
  color: #dc2626 !important;
}

.hb-status-badge.status-pending {
  background: #f3f4f6 !important;
  color: #4b5563 !important;
}

.hb-status-badge.status-default {
  background: #f3f4f6 !important;
  color: var(--hb-navy) !important;
}

/* Card layout for the main orders list table */
.hb-my-account-content-area table.shop_table.my_account_orders {
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border-collapse: separate !important;
  width: 100% !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
  margin-bottom: 24px !important;
}

.hb-my-account-content-area table.shop_table.my_account_orders thead {
  background: #fdfaf7 !important;
}

.hb-my-account-content-area table.shop_table.my_account_orders thead th {
  padding: 14px 20px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--hb-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.hb-my-account-content-area table.shop_table.my_account_orders tbody td {
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
  vertical-align: middle !important;
}

.hb-my-account-content-area table.shop_table.my_account_orders tbody tr:last-child td {
  border-bottom: none !important;
}

/* Remove all vertical borders inside the orders list table */
.hb-my-account-content-area table.shop_table.my_account_orders th,
.hb-my-account-content-area table.shop_table.my_account_orders td {
  border-left: none !important;
  border-right: none !important;
}

/* ── First Name and Last Name Full Width ── */
#billing_first_name_field,
#billing_last_name_field,
#shipping_first_name_field,
#shipping_last_name_field,
.woocommerce-billing-fields__field-wrapper #billing_first_name_field,
.woocommerce-billing-fields__field-wrapper #billing_last_name_field,
.woocommerce-shipping-fields__field-wrapper #shipping_first_name_field,
.woocommerce-shipping-fields__field-wrapper #shipping_last_name_field,
body.woocommerce-account .woocommerce-MyAccount-content form #billing_first_name_field,
body.woocommerce-account .woocommerce-MyAccount-content form #billing_last_name_field,
body.woocommerce-account .woocommerce-MyAccount-content form #shipping_first_name_field,
body.woocommerce-account .woocommerce-MyAccount-content form #shipping_last_name_field,
body.woocommerce-account .woocommerce-MyAccount-content form #account_first_name_field,
body.woocommerce-account .woocommerce-MyAccount-content form #account_last_name_field,
body.woocommerce-account .woocommerce-MyAccount-content form.edit-account .form-row-first,
body.woocommerce-account .woocommerce-MyAccount-content form.edit-account .form-row-last {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

/* ── CHECKOUT ORDER RECEIVED (THANK YOU) PAGE STYLE REDESIGN ── */
.woocommerce-order {
  max-width: 800px !important;
  margin: 40px auto !important;
  background: var(--md-surface-white) !important;
  border-radius: 20px !important;
  padding: 40px !important;
  border: 1px solid rgba(192, 199, 208, 0.4) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.woocommerce-thankyou-order-received {
  text-align: center !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #16a34a !important;
  background: #eefdf4 !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-bottom: 30px !important;
  border: 1px solid rgba(22, 163, 74, 0.15) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details {
  list-style: none !important;
  padding: 20px !important;
  margin: 0 0 36px !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  background: #fdfaf7 !important;
  border-radius: 16px !important;
  border: 1px solid rgba(192, 199, 208, 0.3) !important;
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details::before,
ul.woocommerce-order-overview.woocommerce-thankyou-order-details::after {
  display: none !important;
  content: none !important;
}

@media (min-width: 768px) {
  ul.woocommerce-order-overview.woocommerce-thankyou-order-details {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details li {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  color: var(--hb-muted) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  padding: 12px 8px !important;
  background: white !important;
  border-radius: 12px !important;
  border: 1px solid rgba(192, 199, 208, 0.25) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
  margin: 0 !important;
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details li strong {
  display: block !important;
  font-size: 14px !important;
  text-transform: none !important;
  color: var(--hb-navy) !important;
  font-weight: 800 !important;
  margin-top: 6px !important;
  letter-spacing: 0 !important;
}

/* Order Details table on Order Received Page */
.woocommerce-order table.woocommerce-table--order-details {
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border-collapse: separate !important;
  width: 100% !important;
  margin-bottom: 36px !important;
}

.woocommerce-order table.woocommerce-table--order-details thead {
  background: #fdfaf7 !important;
}

.woocommerce-order table.woocommerce-table--order-details thead th {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: var(--hb-muted) !important;
  letter-spacing: 0.05em !important;
  padding: 14px 20px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.woocommerce-order table.woocommerce-table--order-details tbody td {
  padding: 18px 20px !important;
  font-size: 14px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
  color: var(--hb-navy) !important;
}

.woocommerce-order table.woocommerce-table--order-details tbody tr:last-child td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.woocommerce-order table.woocommerce-table--order-details tfoot th {
  padding: 14px 20px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--hb-muted) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
  background: #fcfbfa !important;
  text-align: left !important;
}

.woocommerce-order table.woocommerce-table--order-details tfoot td {
  padding: 14px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--hb-navy) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
  background: #fcfbfa !important;
}

.woocommerce-order table.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-order table.woocommerce-table--order-details tfoot tr:last-child td {
  border-bottom: none !important;
  background: #fbf9f6 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.woocommerce-order table.woocommerce-table--order-details tfoot tr:last-child td span.woocommerce-Price-amount {
  color: var(--hb-deep) !important;
  font-weight: 800 !important;
}

/* Customer details and Address Cards on Order Received Page */
.woocommerce-order .woocommerce-customer-details {
  margin-top: 40px !important;
  border-top: 1px dashed rgba(0, 0, 0, 0.08) !important;
  padding-top: 32px !important;
}

.woocommerce-order .woocommerce-customer-details address {
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  background: #fafaf9 !important;
  font-style: normal !important;
  color: var(--hb-navy) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.woocommerce-order .woocommerce-columns--addresses.col2-set {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  margin-top: 16px !important;
}

@media (min-width: 768px) {
  .woocommerce-order .woocommerce-columns--addresses.col2-set {
    grid-template-columns: 1fr 1fr !important;
  }
}

.woocommerce-order .woocommerce-columns--addresses.col2-set::before,
.woocommerce-order .woocommerce-columns--addresses.col2-set::after {
  display: none !important;
  content: none !important;
}

/* Bank details (BACS) Page Styling */
.woocommerce-order section.woocommerce-bacs-bank-details {
  background: rgba(217, 234, 255, 0.25) !important;
  border: 1px solid rgba(42, 122, 181, 0.15) !important;
  border-radius: 16px !important;
  padding: 28px !important;
  margin-bottom: 36px !important;
}

.woocommerce-order h2.wc-bacs-bank-details-heading {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--hb-navy) !important;
  margin-bottom: 16px !important;
}

.woocommerce-order ul.wc-bacs-bank-details {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce-order ul.wc-bacs-bank-details li {
  font-size: 13px !important;
  color: var(--hb-navy) !important;
  margin-bottom: 12px !important;
  border-bottom: 1px solid rgba(0,0,0,0.03) !important;
  padding-bottom: 8px !important;
}

.woocommerce-order ul.wc-bacs-bank-details li:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ── Responsive Orders and Order Details Tables (Card-style transformation) ── */
@media (max-width: 767px) {
  /* 1. Orders List Table */
  table.shop_table.my_account_orders thead {
    display: none !important;
  }

  table.shop_table.my_account_orders, 
  table.shop_table.my_account_orders tbody {
    display: block !important;
    width: 100% !important;
    border: none !important;
  }

  table.shop_table.my_account_orders tr {
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 10px !important;
    padding: 10px !important;
    margin-bottom: 10px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.015) !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    width: 100% !important;
    gap: 0 !important;
  }

  table.shop_table.my_account_orders td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 6px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    font-size: 12.5px !important;
    text-align: right !important;
    box-sizing: border-box !important;
  }

  table.shop_table.my_account_orders td::before {
    content: attr(data-title) !important;
    font-weight: 700 !important;
    color: var(--hb-muted) !important;
    text-transform: uppercase !important;
    font-size: 10px !important;
    letter-spacing: 0.05em !important;
  }

  /* Specific cell ordering and structure */
  table.shop_table.my_account_orders th.woocommerce-orders-table__cell-order-number,
  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-number {
    order: 1 !important;
    width: 60% !important;
    display: inline-flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    border-bottom: none !important;
    padding: 0 0 4px 0 !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-status {
    order: 2 !important;
    width: 40% !important;
    display: inline-flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    border-bottom: none !important;
    padding: 0 0 4px 0 !important;
  }

  table.shop_table.my_account_orders th.woocommerce-orders-table__cell-order-number a,
  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-number a {
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: var(--hb-navy) !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-date {
    order: 3 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    font-size: 10.5px !important;
    color: var(--hb-muted, #999) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
    padding: 0 0 6px 0 !important;
    text-align: left !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products {
    order: 4 !important;
    width: 100% !important;
    display: flex !important;
    align-items: stretch !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 8px 0 !important;
    border-bottom: none !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-total {
    order: 5 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.03) !important;
    padding: 8px 0 !important;
    font-size: 11.5px !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-actions {
    order: 6 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    border-top: none !important;
    border-bottom: none !important;
    padding: 4px 0 0 0 !important;
    gap: 6px !important;
  }

  /* Hide labels where context is obvious */
  table.shop_table.my_account_orders th.woocommerce-orders-table__cell-order-number::before,
  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-number::before,
  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-date::before,
  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-status::before,
  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products::before,
  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-actions::before {
    display: none !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-total::before {
    content: "Total Belanja" !important;
    font-weight: 500 !important;
    color: #666 !important;
    text-transform: none !important;
    font-size: 11.5px !important;
    letter-spacing: normal !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-total .woocommerce-Price-amount {
    font-weight: 700 !important;
    color: var(--hb-navy) !important;
    font-size: 13px !important;
  }

  /* Status badge styling */
  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-status {
    font-size: 9.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    background: #f1f3f5 !important;
    color: #495057 !important;
    display: inline-flex !important;
    height: auto !important;
    align-self: center !important;
    max-width: fit-content !important;
    line-height: 1.2 !important;
  }

  .woocommerce-orders-table__row--status-processing td.woocommerce-orders-table__cell-order-status,
  .woocommerce-orders-table__row--status-completed td.woocommerce-orders-table__cell-order-status {
    background: rgba(40, 167, 69, 0.08) !important;
    color: #28a745 !important;
  }
  
  .woocommerce-orders-table__row--status-pending td.woocommerce-orders-table__cell-order-status,
  .woocommerce-orders-table__row--status-on-hold td.woocommerce-orders-table__cell-order-status {
    background: rgba(255, 193, 7, 0.12) !important;
    color: #b58000 !important;
  }
  
  .woocommerce-orders-table__row--status-cancelled td.woocommerce-orders-table__cell-order-status,
  .woocommerce-orders-table__row--status-failed td.woocommerce-orders-table__cell-order-status {
    background: rgba(220, 53, 69, 0.08) !important;
    color: #dc3545 !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-actions .button {
    margin: 0 !important;
    padding: 4px 10px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    height: auto !important;
    line-height: 1.3 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
  }

  /* Compact product item styles for mobile (Shopee/Tokopedia style) */
  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products .hb-order-products-list {
    align-items: flex-start !important;
    text-align: left !important;
    max-width: 100% !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products .hb-order-product-item {
    justify-content: flex-start !important;
    text-align: left !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products .hb-order-product-thumb {
    width: 40px !important;
    height: 40px !important;
    border-radius: 5px !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products .hb-order-product-name {
    font-size: 11.5px !important;
    font-weight: 600 !important;
    color: #333 !important;
    white-space: normal !important;
    word-break: break-word !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products .hb-order-product-qty {
    font-size: 10.5px !important;
    color: #888 !important;
    margin-top: 1px !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products .hb-order-products-more {
    padding-left: 48px !important;
    text-align: left !important;
    font-size: 10.5px !important;
    font-weight: 500 !important;
    color: var(--hb-blue, #2a7ab5) !important;
    margin-top: 3px !important;
  }
}

  /* 2. Single Order Details Table */
  table.woocommerce-table--order-details thead {
    display: none !important;
  }

  table.woocommerce-table--order-details, 
  table.woocommerce-table--order-details tbody, 
  table.woocommerce-table--order-details tr {
    display: block !important;
    width: 100% !important;
    border: none !important;
  }

  table.woocommerce-table--order-details tr {
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    margin-bottom: 12px !important;
    box-sizing: border-box !important;
  }

  table.woocommerce-table--order-details td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
    font-size: 13.5px !important;
    box-sizing: border-box !important;
  }

  table.woocommerce-table--order-details td:last-child {
    border-bottom: none !important;
  }

  table.woocommerce-table--order-details td.product-name {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  
  table.woocommerce-table--order-details td.product-total::before {
    content: "Total" !important;
    font-weight: 700 !important;
    color: var(--hb-muted) !important;
    text-transform: uppercase !important;
    font-size: 10px !important;
    letter-spacing: 0.05em !important;
  }

  table.woocommerce-table--order-details tfoot {
    display: block !important;
    margin-top: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  table.woocommerce-table--order-details tfoot tr {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 16px !important;
    margin-bottom: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
  }

  table.woocommerce-table--order-details tfoot tr:last-child {
    border-bottom: none !important;
  }

  table.woocommerce-table--order-details tfoot th {
    background: transparent !important;
    padding: 0 !important;
    font-size: 13px !important;
    border: none !important;
  }

  table.woocommerce-table--order-details tfoot td {
    background: transparent !important;
    padding: 0 !important;
    font-size: 13.5px !important;
    border: none !important;
    text-align: right !important;
  }
}

/* ── WooCommerce Shop Table Footer Style Alignment ── */
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 700 !important;
  border-top: none !important;
}

/* ── Clean Empty Cart Redesign ── */
.woocommerce-cart .woocommerce-info.cart-empty {
  display: none !important;
}

/* Hide cart header title, description, and steps if cart form is NOT present (empty cart) or empty indicators are present */
.hb-cart-wrapper:not(:has(.woocommerce-cart-form)) .hb-page-header h1,
.hb-cart-wrapper:not(:has(.woocommerce-cart-form)) .hb-page-header p,
.hb-cart-wrapper:not(:has(.woocommerce-cart-form)) .hb-page-header .hb-checkout-steps,
.hb-cart-wrapper:has(.hb-empty-cart-container) .hb-page-header h1,
.hb-cart-wrapper:has(.hb-empty-cart-container) .hb-page-header p,
.hb-cart-wrapper:has(.hb-empty-cart-container) .hb-page-header .hb-checkout-steps,
.hb-cart-wrapper:has(.cart-empty) .hb-page-header h1,
.hb-cart-wrapper:has(.cart-empty) .hb-page-header p,
.hb-cart-wrapper:has(.cart-empty) .hb-page-header .hb-checkout-steps {
  display: none !important;
}

.hb-empty-cart-container {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  text-align: center !important;
  max-width: 500px !important;
  margin: 80px auto !important;
  padding: 40px 20px !important;
}

.hb-empty-cart-icon {
  width: 80px !important;
  height: 80px !important;
  margin: 0 auto 24px !important;
  color: var(--hb-muted, #94a3b8) !important;
  background: #fdfaf7 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hb-empty-cart-icon svg {
  width: 40px !important;
  height: 40px !important;
}

.hb-empty-cart-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--hb-navy) !important;
  margin-bottom: 12px !important;
  text-transform: none !important;
}

.hb-empty-cart-text {
  font-size: 14px !important;
  color: var(--hb-muted) !important;
  margin-bottom: 30px !important;
  line-height: 1.6 !important;
}

.hb-empty-cart-container .return-to-shop a.hb-btn-primary {
  display: inline-block !important;
  background: var(--hb-navy) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 14px 32px !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  transition: all 0.2s ease-in-out !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  border: none !important;
}

.hb-empty-cart-container .return-to-shop a.hb-btn-primary:hover {
  background: var(--hb-blue) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 600px) {
  .hb-empty-cart-container {
    margin: 32px auto !important;
    padding: 24px 16px !important;
  }
  .hb-empty-cart-icon {
    width: 64px !important;
    height: 64px !important;
    margin-bottom: 16px !important;
  }
  .hb-empty-cart-icon svg {
    width: 32px !important;
    height: 32px !important;
  }
  .hb-empty-cart-title {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }
  .hb-empty-cart-text {
    font-size: 13px !important;
    margin-bottom: 24px !important;
  }
  .hb-empty-cart-container .return-to-shop a.hb-btn-primary {
    padding: 10px 24px !important;
    font-size: 13px !important;
  }
}

/* ── Add to Cart & Buy Now Card Buttons Custom Styling ── */
.product-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.product-info {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  padding: 18px !important;
}

.product-card-actions {
  display: flex !important;
  gap: 8px !important;
  margin-top: auto !important; /* Pushes both buttons to the bottom */
  width: 100% !important;
}

.hb-add-to-cart-btn {
  flex: 1 1 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  background: white !important;
  color: var(--hb-navy, #1e3a5f) !important;
  border: 1px solid var(--hb-navy, #1e3a5f) !important;
  font-family: "VisbyRoundCF", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 7px 10px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

.hb-add-to-cart-btn:hover {
  background: #f4f7fa !important;
  transform: translateY(-2px) !important;
}

.hb-buy-now-btn {
  flex: 1.2 1 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--hb-navy, #1e3a5f) !important;
  color: white !important;
  border: 1px solid var(--hb-navy, #1e3a5f) !important;
  font-family: "VisbyRoundCF", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 7px 10px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

.hb-buy-now-btn:hover {
  background: var(--hb-blue, #2a7ab5) !important;
  border-color: var(--hb-blue, #2a7ab5) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(42, 122, 181, 0.2) !important;
}

.mp-btn-add-to-cart {
  background: var(--hb-navy, #1e3a5f) !important;
  color: white !important;
  font-weight: 700 !important;
}

.mp-btn-add-to-cart:hover {
  background: var(--hb-blue, #2a7ab5) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3) !important;
}

.hb-select-variation-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  background: var(--hb-navy, #1e3a5f) !important;
  color: white !important;
  font-family: "VisbyRoundCF", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 7px 10px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  margin-top: auto !important; /* Pushes the button to the bottom */
  transition: all 0.2s ease-in-out !important;
  border: 1px solid var(--hb-navy) !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

.hb-select-variation-btn:hover {
  background: var(--hb-blue, #2a7ab5) !important;
  border-color: var(--hb-blue, #2a7ab5) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(42, 122, 181, 0.2) !important;
}

/* ── Products Column inside Customer Orders List ── */
.hb-order-products-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.hb-order-product-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.hb-order-product-thumb {
  flex-shrink: 0 !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.hb-order-product-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.hb-order-product-details {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

.hb-order-product-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--hb-navy, #1e3a5f) !important;
}

.hb-order-product-qty {
  font-size: 11px !important;
  color: var(--hb-muted, #777) !important;
  font-weight: 500 !important;
  margin-top: 1px !important;
}

/* Desktop layout adjustments for table alignment */
@media (min-width: 768px) {
  .hb-my-account-content-area table.shop_table td.woocommerce-orders-table__cell-order-actions {
    display: table-cell !important;
    text-align: right !important;
    vertical-align: middle !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    white-space: nowrap !important;
  }

  .hb-my-account-content-area table.shop_table td.woocommerce-orders-table__cell-order-actions a.button {
    display: inline-flex !important;
    margin-left: 6px !important;
  }

  .hb-my-account-content-area table.shop_table tbody tr.woocommerce-orders-table__row td,
  .hb-my-account-content-area table.shop_table tbody tr.woocommerce-orders-table__row th {
    vertical-align: middle !important;
  }

  .woocommerce-orders-table__cell-order-products {
    max-width: 280px !important;
    min-width: 180px !important;
  }

  .hb-order-product-name {
    white-space: normal !important;
    word-break: break-word !important;
  }
}

/* Mobile specific styling for products cell */
@media (max-width: 767px) {
  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products {
    display: flex !important;
    align-items: flex-start !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  
  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products .hb-order-products-list {
    align-items: flex-end !important;
    text-align: right !important;
    max-width: 70% !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products .hb-order-product-item {
    justify-content: flex-end !important;
    text-align: right !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products .hb-order-product-details {
    align-items: flex-end !important;
    text-align: right !important;
  }

  table.shop_table.my_account_orders td.woocommerce-orders-table__cell-order-products .hb-order-products-more {
    padding-left: 0 !important;
    text-align: right !important;
  }
}

.hb-order-products-more {
  font-size: 11px !important;
  color: var(--hb-muted, #777) !important;
  font-weight: 600 !important;
  margin-top: 2px !important;
  padding-left: 48px !important;
}














