/* ============ PHOSPHOR ICON COMPAT ============ */
i.ph, i[class^="ph-"], i[class*=" ph-"] { font-style: normal; display: inline-block; line-height: 1; text-rendering: auto; vertical-align: -0.125em; }
@keyframes ph-spin-rot { to { transform: rotate(360deg); } }
.ph-spin { animation: ph-spin-rot 1.1s linear infinite; }

:root {
  --bp-red: #c8102e;
  --bp-red-dark: #9d0b24;
  --bp-gold: #d9a83e;
  --bp-gold-dark: #b3862a;
  --bp-green: #14402c;
  --bp-green-dark: #0c2b1d;
  --bp-charcoal: #1d1d1d;
  --bp-light: #f4f2ec;
  --bp-gray: #6b6b6b;
  --bp-border: #e3e0d8;
  --bp-white: #ffffff;
  --bp-soft: #faf9f5;

  /* ── Typography Scale ── */
  --ff-body: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  --ff-heading: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  --ff-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --fs-2xs:  0.5625rem;  /*  9px — micro badges, cart count */
  --fs-xs:   0.6875rem;  /* 11px — labels, meta, chips */
  --fs-sm:   0.75rem;    /* 12px — captions, secondary text */
  --fs-base: 0.8125rem;  /* 13px — body default */
  --fs-md:   0.875rem;   /* 14px — body medium, inputs */
  --fs-lg:   1rem;       /* 16px — subheadings, body large */
  --fs-xl:   1.125rem;   /* 18px — card headings */
  --fs-2xl:  1.375rem;   /* 22px — feature headings */
  --fs-3xl:  1.5rem;     /* 24px — section headings */
  --fs-4xl:  1.75rem;    /* 28px — page headings */
  --fs-5xl:  2.25rem;    /* 36px — hero headings */
  --fs-6xl:  2.75rem;    /* 44px — large hero */
}

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

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: #262626;
  background: var(--bp-soft);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ============ UTILITY BAR ============ */
.topbar {
  background: var(--bp-charcoal);
  color: #d8d8d8;
  font-size: var(--fs-sm);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 30px;
}
.topbar ul { display: flex; gap: 22px; }
.topbar a:hover { color: var(--bp-gold); }
.topbar .lang-switch select {
  background: rgba(255, 255, 255, 0.08);
  color: #e8f0ea;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  font-size: var(--fs-sm);
  padding: 2px 4px;
  cursor: pointer;
}
.topbar .lang-switch select:hover { border-color: var(--bp-gold); color: var(--bp-gold); }
.topbar .lang-switch select:focus-visible { outline: 2px solid var(--bp-gold); outline-offset: 1px; }
.topbar .lang-switch select option { color: #1a1a1a; background: #fff; }

/* ============ MAIN HEADER ============ */
.main-header { background: var(--bp-white); border-bottom: 3px solid var(--bp-red); position: sticky; top: 0; z-index: 1000; }
.header-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--fs-3xl);
  color: var(--bp-red);
  line-height: 1;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-badge {
  width: 52px; height: 52px;
  background: var(--bp-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.15);
}
.logo-badge svg { width: 34px; height: 34px; }
.logo-text { line-height: 1.05; }
.logo-text .l1 { font-size: var(--fs-3xl); font-weight: 900; letter-spacing: -0.5px; color: var(--bp-red); }
.logo-text .l1 span { color: var(--bp-charcoal); }
.logo-text .l2 { font-size: var(--fs-2xs); font-weight: 800; letter-spacing: 3px; color: var(--bp-gold-dark); text-transform: uppercase; }

.header-search { flex: 1; display: flex; max-width: 560px; }
.header-search form { display: flex; flex: 1; border: 2px solid var(--bp-border); border-radius: 4px; overflow: hidden; background: #fff; }
.header-search input {
  flex: 1; border: none; outline: none; padding: 10px 14px; font-size: var(--fs-md);
}
.header-search button {
  border: none; background: var(--bp-red); color: #fff; padding: 0 22px;
  font-size: var(--fs-md); font-weight: 700; display: flex; align-items: center; gap: 6px;
}
.header-search button:hover { background: var(--bp-red-dark); }

.header-actions { display: flex; gap: 8px; margin-left: auto; }
.hact {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 6px 10px; border-radius: 4px; color: #333; font-size: var(--fs-xs); font-weight: 600;
  position: relative; text-align: center;
}
.hact i { font-size: var(--fs-xl); color: #555; }
.hact:hover i { color: var(--bp-red); }
.hact:hover { background: var(--bp-light); color: var(--bp-red); }
.cart-count {
  position: absolute; top: 0; right: 2px;
  background: var(--bp-red); color: #fff; font-size: var(--fs-2xs); font-weight: 800;
  min-width: 17px; height: 17px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}

/* ============ MAIN NAV ============ */
.main-nav { background: var(--bp-charcoal); }
.main-nav .container { display: flex; position: relative; }
.main-nav .nav-list { display: flex; }
.main-nav .nav-list > li { position: relative; }
.main-nav .nav-list > li > a {
  display: block; color: #fff; font-size: var(--fs-base); font-weight: 700;
  padding: 12px 18px; text-transform: uppercase; letter-spacing: .5px;
}
.main-nav .nav-list > li:hover > a { background: #111; color: var(--bp-gold); }
.nav-list .has-dd:hover .dropdown { display: grid; }

.dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.18);
  grid-template-columns: repeat(3, 190px);
  gap: 8px; padding: 18px; z-index: 60; border-top: 3px solid var(--bp-gold);
}
.dropdown h4 { font-size: var(--fs-sm); text-transform: uppercase; color: var(--bp-red); margin-bottom: 8px; letter-spacing: 1px; }
.dropdown a { display: block; font-size: var(--fs-base); color: #444; padding: 3px 0; }
.dropdown a:hover { color: var(--bp-red); text-decoration: underline; }

/* ============ MOBILE NAV ============ */
.mobile-nav {
  display: none; background: #fff;
  position: fixed; top: 0; left: 0; width: min(300px, 85vw); height: 100vh; overflow-y: auto;
  z-index: 1200; box-shadow: 4px 0 20px rgba(0,0,0,.2); padding: 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav a.mn-link { display: block; padding: 10px 8px; font-weight: 700; color: var(--bp-charcoal); border-bottom: 1px solid var(--bp-border); }
.mobile-nav a.mn-link:hover { color: var(--bp-red); }
.mobile-nav .mn-close { float: right; border: none; background: none; font-size: var(--fs-xl); cursor: pointer; }
.mobile-nav .mn-close:hover { color: var(--bp-red); }
.mn-has-sub { position: relative; }
.mn-has-sub a.mn-link { padding-right: 36px; }
.mn-dd-toggle { position: absolute; right: 0; top: 0; bottom: 0; width: 44px; border: none; background: none; font-size: 13px; color: #888; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform .2s ease; }
.mn-dd-toggle:hover { color: var(--bp-red); }
.mn-has-sub.open .mn-dd-toggle { transform: rotate(180deg); }
.mn-sub { display: none; padding: 0 0 0 16px; }
.mn-has-sub.open .mn-sub { display: block; }
.mn-sub a { display: block; padding: 8px 8px; font-size: var(--fs-base); color: #555; font-weight: 400; border-bottom: 1px solid #f5f5f5; }
.mn-sub a:hover { color: var(--bp-red); background: #fafafa; }
.overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1100;
}
.overlay.show { display: block; }

/* ============ PROMO BAR ============ */
.promo-bar { background: var(--bp-red); color: #fff; text-align: center; padding: 8px 0; font-size: var(--fs-base); overflow: hidden; white-space: nowrap; position: relative; }
.promo-bar strong { color: var(--bp-gold); }
.promo-bar .promo-track {
  display: inline-block;
  animation: promoScroll 35s linear infinite;
  padding-left: 100%;
}
@keyframes promoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .promo-bar .promo-track { animation: none; padding-left: 0; }
}

/* ============ HERO ============ */
.hero { position: relative; margin-bottom: 40px; overflow: hidden; }
.slides { position: relative; height: 430px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.slide.hero-1 { background-color: #123b27; }
.slide.hero-2 { background-color: #7a1f1f; }
.slide.hero-3 { background-color: #10314f; }
.slide-eyebrow { color: var(--bp-gold); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; font-size: var(--fs-sm); margin-bottom: 8px; }
.slide h2 { color: #fff; font-size: var(--fs-6xl); font-weight: 900; line-height: 1.05; max-width: 560px; text-shadow: 0 2px 10px rgba(0,0,0,.3); }
.slide p { color: #dff0e6; font-size: var(--fs-lg); margin: 14px 0 24px; max-width: 480px; }
.btn {
  display: inline-block; background: var(--bp-gold); color: #1d1d1d; font-weight: 800;
  padding: 12px 26px; border-radius: 4px; text-transform: uppercase; font-size: var(--fs-base); letter-spacing: 1px;
}
.btn:hover { background: var(--bp-gold-dark); }
.btn.btn-red { background: var(--bp-red); color: #fff; }
.btn.btn-red:hover { background: var(--bp-red-dark); }
.btn.btn-green { background: var(--bp-green); color: #fff; }
.btn.btn-green:hover { background: var(--bp-green-dark); }
.btn.btn-outline { background: none; border: 2px solid #fff; color: #fff; }
.btn.btn-outline:hover { background: rgba(255,255,255,.15); }
.slide-art { position: absolute; right: -40px; bottom: -30px; opacity: .12; }
.slide-art svg { width: 520px; height: 520px; }

.hero-dots { position: absolute; bottom: 16px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 5; }
.hero-dots button { width: 11px; height: 11px; border-radius: 50%; border: none; background: rgba(255,255,255,.45); }
.hero-dots button.active { background: var(--bp-gold); }

/* ============ SECTION HEADINGS ============ */
.section { margin-bottom: 44px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.section-head h2 { font-size: var(--fs-3xl); font-weight: 900; color: var(--bp-green); text-transform: uppercase; letter-spacing: .5px; }
.section-head h2::after { content: ""; display: block; width: 44px; height: 4px; background: var(--bp-gold); margin-top: 6px; }
.section-head a { font-size: var(--fs-base); font-weight: 700; color: var(--bp-red); }
.section-head a:hover { text-decoration: underline; }

/* ============ CATEGORY TILES ============ */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-tile { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: transform .15s ease, box-shadow .15s ease; text-align: center; }
.cat-tile:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.cat-tile .img { aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; background: var(--bp-light); overflow: hidden; }
.cat-tile .img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-tile .img i { font-size: var(--fs-6xl); color: var(--bp-green); }
.cat-tile h3 { font-size: var(--fs-md); font-weight: 800; padding: 10px; color: var(--bp-green); text-transform: uppercase; letter-spacing: .5px; }

/* ============ DEAL / PROMO MODULES ============ */
.deal-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.deal-card { border-radius: 8px; padding: 24px; color: #fff; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.deal-card h3 { font-size: var(--fs-2xl); font-weight: 900; line-height: 1.1; }
.deal-card p { font-size: var(--fs-base); margin: 6px 0 14px; opacity: .9; }
.deal-card .btn { padding: 9px 18px; font-size: var(--fs-sm); }
.deal-card .tag { position: absolute; top: 14px; left: 14px; background: var(--bp-red); padding: 4px 10px; border-radius: 3px; font-size: var(--fs-xs); font-weight: 800; letter-spacing: 1px; }
.deal-1 { background: linear-gradient(135deg, #0c2b1d, #1e5c3b); }
.deal-2 { background: linear-gradient(135deg, #5b1116, #a52828); }
.deal-3 { background: linear-gradient(135deg, #0d2c4a, #1c4a77); }

/* ============ PRODUCT GRID ============ */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { background: #fff; border-radius: 8px; padding: 14px; box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: transform .15s ease, box-shadow .15s ease; display: flex; flex-direction: column; position: relative; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.product-card .badge { position: absolute; top: 12px; left: 12px; background: var(--bp-red); color: #fff; font-size: var(--fs-2xs); font-weight: 800; padding: 3px 8px; border-radius: 3px; letter-spacing: 1px; }
.product-card .badge.sale { background: var(--bp-gold-dark); color: #fff; }
.product-card .badge.new { background: var(--bp-green); }
.product-card .pimg { aspect-ratio: 1/1; background: var(--bp-light); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; overflow: hidden; }
.product-card .pimg svg { width: 78%; height: 78%; }
.product-card .pimg img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .25s ease; }
.product-card:hover .pimg img { transform: scale(1.07); }
.product-card .brand { font-size: var(--fs-xs); font-weight: 800; color: var(--bp-gray); text-transform: uppercase; letter-spacing: 1px; }
.product-card .pname { font-size: var(--fs-base); font-weight: 600; color: #333; margin: 4px 0; line-height: 1.3; flex: 1; }
.product-card .pname a:hover { color: var(--bp-red); }
.stars { color: var(--bp-gold-dark); font-size: var(--fs-base); letter-spacing: 1px; }
.stars i { color: var(--bp-gold-dark); }
.stars i.ph:not(.ph-fill) { color: #d8d5cb; }
.review-count { color: var(--bp-gray); font-size: var(--fs-xs); margin-left: 4px; }
.avail-chip { display: inline-flex; align-items: center; gap: 5px; font-size: var(--fs-xs); font-weight: 800; margin-top: 8px; padding: 3px 9px; border-radius: 999px; }
.avail-chip i { font-size: var(--fs-2xs); }
.avail-chip.in  { background: #e3f2e8; color: #1f7a43; }
.avail-chip.low { background: #fdf3d8; color: #a47606; }
.avail-chip.out { background: #fdeaea; color: #c23a3a; }
.avail { display: inline-flex; align-items: center; gap: 7px; font-size: var(--fs-base); font-weight: 800; margin: 12px 0; padding: 6px 12px; border-radius: 999px; }
.avail.in  { background: #e3f2e8; color: #1f7a43; }
.avail.low { background: #fdf3d8; color: #a47606; }
.avail.out { background: #fdeaea; color: #c23a3a; }
.add-btn:disabled { border-color: #d8d5cb; color: #a8a49b; cursor: not-allowed; background: #f4f3f0; }
.price-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.price { font-size: var(--fs-lg); font-weight: 800; color: var(--bp-green); }
.price.old { font-size: var(--fs-base); font-weight: 500; color: var(--bp-gray); text-decoration: line-through; }
.add-btn {
  margin-top: 10px; width: 100%; border: 2px solid var(--bp-green); background: #fff; color: var(--bp-green);
  font-weight: 800; text-transform: uppercase; font-size: var(--fs-sm); letter-spacing: 1px; padding: 9px; border-radius: 4px;
}
.add-btn:hover { background: var(--bp-green); color: #fff; }
.add-btn.added { background: var(--bp-green); color: #fff; }

.card-actions { display: flex; gap: 8px; margin-top: 10px; }
.card-actions .add-btn { flex: 1; width: auto; margin-top: 0; }
.wish {
  width: 38px; height: 38px; flex-shrink: 0; border: 2px solid #e3e0d8; background: #fff; color: #999;
  border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.wish:hover { color: var(--bp-red); border-color: var(--bp-red); }
.wish.on { background: var(--bp-red); border-color: var(--bp-red); color: #fff; }
.btn-wish {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 2px solid #e3e0d8; background: #fff; color: #555; border-radius: 4px; padding: 12px 16px;
  font-weight: 800; font-size: var(--fs-base); text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.btn-wish:hover, .btn-wish.on { color: var(--bp-red); border-color: var(--bp-red); }

/* ============ BRAND STRIP ============ */
.brand-strip { background: #fff; border-top: 1px solid var(--bp-border); border-bottom: 1px solid var(--bp-border); padding: 20px 0; }
.brand-strip h2 { text-align: center; font-size: var(--fs-xl); font-weight: 900; color: var(--bp-green); text-transform: uppercase; margin-bottom: 14px; }
.brand-row { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 24px; }
.brand-logo { font-size: var(--fs-lg); font-weight: 900; color: #555; letter-spacing: 1px; text-transform: uppercase; opacity: .75; transition: opacity .2s; font-style: italic; }
.brand-logo:hover { opacity: 1; color: var(--bp-red); }

/* ============ INFO BANDS ============ */
.info-bands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-band { background: #fff; border: 1px solid var(--bp-border); border-radius: 8px; padding: 22px; display: flex; gap: 14px; align-items: flex-start; }
.info-band i { font-size: var(--fs-4xl); flex-shrink: 0; color: var(--bp-green); }
.info-band h3 { font-size: var(--fs-md); font-weight: 800; color: var(--bp-green); }
.info-band p { font-size: var(--fs-sm); color: var(--bp-gray); margin-top: 3px; }

/* ============ NEWSLETTER ============ */
.newsletter { background: var(--bp-green); color: #fff; padding: 30px 0; margin-bottom: 0; }
.newsletter .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter h3 { font-size: var(--fs-2xl); font-weight: 900; }
.newsletter p { font-size: var(--fs-base); color: #cfe3d6; margin-top: 4px; }
.newsletter form { display: flex; flex: 1; max-width: 460px; }
.newsletter input { flex: 1; padding: 12px 14px; border: none; border-radius: 4px 0 0 4px; outline: none; }
.newsletter button { border: none; background: var(--bp-gold); color: #1d1d1d; font-weight: 800; padding: 0 22px; border-radius: 0 4px 4px 0; text-transform: uppercase; letter-spacing: 1px; font-size: var(--fs-base); }

/* ============ CUSTOMER DASHBOARD ============ */
.dash-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 6px; }
.dash-head h2 { color: #14402c; }
.dash-head p { color: #6b6b6b; font-size: var(--fs-base); margin-top: 4px; }
.dash-notice { background: #eaf7ee; border: 1px solid #cfe9d6; border-radius: 8px; padding: 12px 16px; font-size: var(--fs-base); font-weight: 700; color: #14402c; margin: 14px 0; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 16px 0 24px; }
.dash-stat { background: #fff; border: 1px solid #e2e6e3; border-radius: 12px; padding: 16px; text-align: center; }
.ds-num { display: block; font-size: var(--fs-2xl); font-weight: 900; color: #14402c; }
.ds-lbl { display: block; font-size: var(--fs-sm); color: #8a9490; margin-top: 2px; }
.dash-order { background: #fff; border: 1px solid #e2e6e3; border-radius: 12px; padding: 16px 18px; margin-bottom: 14px; }
.do-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.do-head strong { color: #14402c; font-size: var(--fs-md); }
.do-date { color: #97a19c; font-size: var(--fs-sm); margin-left: 8px; }
.do-progress { display: flex; align-items: flex-start; gap: 4px; margin: 18px 0 4px; }
.do-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; }
.do-step:not(:last-child)::after { content: ""; position: absolute; top: 14px; left: 50%; width: 100%; height: 2px; background: #e2e6e3; z-index: 0; }
.do-step.on:not(:last-child)::after { background: #2e7d32; }
.do-step-ic { width: 28px; height: 28px; border-radius: 50%; background: #f2f5f3; color: #9aa6a0; display: flex; align-items: center; justify-content: center; font-size: var(--fs-sm); z-index: 1; border: 2px solid #fff; }
.do-step.on .do-step-ic { background: #2e7d32; color: #fff; }
.do-step.cur .do-step-ic { box-shadow: 0 0 0 3px rgba(46, 125, 50, .25); }
.do-step-lbl { font-size: var(--fs-xs); color: #97a19c; font-weight: 600; text-align: center; }
.do-step.on .do-step-lbl { color: #14402c; }
.do-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 12px; font-size: var(--fs-base); color: #555; }
.do-pmlogo { width: 18px; height: 18px; vertical-align: -3px; margin-right: 4px; }
.do-foot { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.do-save { font-size: var(--fs-sm); color: #b8860b; font-weight: 700; }
.do-sms { display: inline-block; font-size: var(--fs-sm); color: #5c5440; background: #fff7e6; border: 1px solid #f2c94c; border-radius: 8px; padding: 6px 10px; margin-top: 6px; }
.do-sms a { color: #14402c; font-weight: 700; }
.do-total { font-size: var(--fs-xl); font-weight: 900; color: #c8102e; }
.do-cancelled { margin-top: 14px; background: #fdecea; border: 1px solid #f5b5ad; color: #9d0b24; border-radius: 8px; padding: 10px 14px; font-size: var(--fs-base); font-weight: 700; }
.dash-empty { background: #fff; border: 1px dashed #d5dbd7; border-radius: 12px; padding: 34px; text-align: center; color: #999; font-size: var(--fs-md); }
@media (max-width: 640px) { .dash-stats { grid-template-columns: repeat(2, 1fr); } }

/* ============ CUSTOMER DASHBOARD (end) ============ */

/* ============ FOOTER ============ */
footer.site-footer { background: var(--bp-charcoal); color: #cfcfcf; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 30px; padding: 40px 20px; max-width: 1280px; margin: 0 auto; }
.footer-col h4 { color: #fff; font-size: var(--fs-base); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-col a { display: block; font-size: var(--fs-sm); padding: 4px 0; color: #b9b9b9; }
.footer-col a:hover { color: var(--bp-gold); }
.footer-brand .logo-text .l1 { font-size: var(--fs-2xl); }
.footer-brand p { font-size: var(--fs-sm); margin-top: 12px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--bp-gold); color: #1d1d1d; }
.footer-social svg { width: 16px; height: 16px; }
.footer-social a i { font-size: var(--fs-md); }
.footer-bottom { border-top: 1px solid #333; padding: 16px 20px; text-align: center; font-size: var(--fs-sm); color: #999; max-width: 1280px; margin: 0 auto; }
.footer-bottom .pay { margin-top: 10px; display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom .pay img { height: 22px; width: auto; filter: grayscale(0); transition: filter .2s ease; background: #fff; padding: 4px 8px; border-radius: 4px; }
.footer-bottom .pay img:hover { filter: brightness(1.1); }

/* ============ BREADCRUMB ============ */
.breadcrumb { font-size: var(--fs-sm); color: var(--bp-gray); padding: 14px 0; }
.breadcrumb a:hover { color: var(--bp-red); }
.breadcrumb .sep { margin: 0 8px; }

/* ============ PAGE HERO (shop pages) ============ */
.page-hero { background: linear-gradient(100deg, var(--bp-green) 0%, #1e5c3b 100%); color: #fff; padding: 44px 20px; text-align: center; margin-bottom: 30px; position: relative; overflow: hidden; }
.page-hero h1 { font-size: var(--fs-5xl); font-weight: 900; text-transform: uppercase; }
.page-hero p { margin-top: 8px; color: #cfe3d6; max-width: 640px; margin-left: auto; margin-right: auto; }
.page-hero .crumb { font-size: var(--fs-sm); color: #bcd7c4; margin-bottom: 10px; }

/* ============ CATEGORY INTRO / SUBCATS / TIP ============ */
.cat-intro-bar { background:#fff; border:1px solid var(--bp-border); border-radius:10px; padding:18px 24px; margin:0 auto 24px; box-shadow:0 2px 10px rgba(0,0,0,.04); }
.cat-intro-bar p { font-size:var(--fs-base); color:#444; line-height:1.7; margin:0; }

.cat-subcats { display:grid; grid-template-columns:repeat(6,1fr); gap:14px; margin-bottom:24px; }
.cat-subcat-card { display:flex; flex-direction:column; align-items:center; gap:10px; background:#fff; border:1px solid var(--bp-border); border-radius:10px; padding:20px 12px; text-decoration:none; color:var(--bp-charcoal); transition:all .2s ease; text-align:center; }
.cat-subcat-card i { font-size:22px; color:var(--bp-green); width:48px; height:48px; display:flex; align-items:center; justify-content:center; background:rgba(20,64,44,.06); border-radius:50%; transition:all .2s ease; }
.cat-subcat-card span { font-size:var(--fs-sm); font-weight:600; line-height:1.3; }
.cat-subcat-card:hover { border-color:var(--bp-green); box-shadow:0 4px 16px rgba(20,64,44,.1); transform:translateY(-3px); }
.cat-subcat-card:hover i { background:var(--bp-green); color:#fff; }

.cat-tip { display:flex; align-items:flex-start; gap:16px; background:linear-gradient(135deg,#f0fdf4,#e8f5e9); border:1px solid #c8e6c9; border-radius:10px; padding:18px 24px; margin-bottom:28px; }
.cat-tip-icon { flex-shrink:0; width:44px; height:44px; background:var(--bp-green); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; }
.cat-tip-title { font-weight:800; color:var(--bp-green); font-size:var(--fs-base); margin-bottom:4px; text-transform:uppercase; letter-spacing:.5px; }
.cat-tip-text { font-size:var(--fs-sm); color:#444; line-height:1.6; margin:0; }

/* ============ FILTER / SORT BAR ============ */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 26px; }
.sidebar h3 { font-size: var(--fs-md); font-weight: 800; color: var(--bp-green); text-transform: uppercase; margin: 18px 0 8px; }
.sidebar h3:first-child { margin-top: 0; }
.sidebar label { display: flex; align-items: center; gap: 8px; font-size: var(--fs-base); color: #444; padding: 3px 0; cursor: pointer; }
.sidebar input[type="checkbox"] { accent-color: var(--bp-green); }
.price-filter { margin: 8px 0 16px; }
.price-filter input { width: 100%; accent-color: var(--bp-green); }
.price-labels { display: flex; justify-content: space-between; font-size: var(--fs-sm); color: var(--bp-gray); }
.sort-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.sort-bar .count { font-size: var(--fs-base); color: var(--bp-gray); }
.sort-bar select { padding: 8px 10px; border: 1px solid var(--bp-border); border-radius: 4px; background: #fff; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.chip { background: #fff; border: 1px solid var(--bp-border); border-radius: 20px; font-size: var(--fs-sm); padding: 5px 12px; color: #555; cursor: pointer; }
.chip:hover { border-color: var(--bp-red); color: var(--bp-red); }

/* ============ PRODUCT PAGE ============ */
.product-main { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 40px; background: #fff; border-radius: 10px; padding: 26px; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.product-main > * { min-width: 0; }
.gallery-main { position: relative; border: 1px solid var(--bp-border); border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; background: var(--bp-light); }
.gallery-main img { max-width: 100%; max-height: 100%; object-fit: contain; cursor: zoom-in; transition: transform .25s ease; }
.gallery-main img:hover { transform: scale(1.04); }
.g-arrow, .g-zoom { position: absolute; border: 1px solid var(--bp-border); background: rgba(255,255,255,.92); color: var(--bp-green); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.12); opacity: 0; transition: opacity .2s ease, background .18s ease, color .18s ease; z-index: 2; }
.gallery-main:hover .g-arrow, .gallery-main:hover .g-zoom { opacity: 1; }
.g-arrow { top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; font-size: var(--fs-md); }
.g-arrow.prev { left: 12px; }
.g-arrow.next { right: 12px; }
.g-zoom { bottom: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; font-size: var(--fs-base); }
.g-arrow:hover, .g-zoom:hover { background: var(--bp-green); border-color: var(--bp-green); color: #fff; }
.g-arrow.hidden, .g-zoom.hidden { display: none; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.gallery-thumbs button { flex: 0 0 74px; width: 74px; height: 74px; border: 2px solid var(--bp-border); border-radius: 6px; background: var(--bp-light); display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; }
.gallery-thumbs button.active { border-color: var(--bp-red); }
.gallery-thumbs button:hover { border-color: var(--bp-green); }
.gallery-thumbs svg, .gallery-thumbs img { max-width: 100%; max-height: 100%; object-fit: contain; }
.glb { position: fixed; inset: 0; background: rgba(0,0,0,.84); z-index: 400; display: none; align-items: center; justify-content: center; }
.glb.open { display: flex; }
.glb img { max-width: 90vw; max-height: 86vh; object-fit: contain; border-radius: 6px; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.glb .glb-close { position: absolute; top: 18px; right: 22px; font-size: var(--fs-3xl); color: #fff; background: none; border: none; cursor: pointer; z-index: 2; }
.glb .glb-close:hover { color: var(--bp-gold); }
.glb .glb-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255,255,255,.14); color: #fff; font-size: var(--fs-xl); cursor: pointer; z-index: 2; }
.glb .glb-arrow:hover { background: rgba(255,255,255,.32); }
.glb .glb-arrow.prev { left: 20px; }
.glb .glb-arrow.next { right: 20px; }

.pinfo .brand { color: var(--bp-gray); font-size: var(--fs-sm); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.pinfo h1 { font-size: var(--fs-3xl); font-weight: 800; margin: 6px 0 8px; line-height: 1.15; }
.pinfo .stars-line { display: flex; align-items: center; gap: 8px; font-size: var(--fs-base); color: var(--bp-gray); }
.pinfo .stars-line a { color: var(--bp-red); font-size: var(--fs-sm); }
.pinfo .prices { display: flex; align-items: center; gap: 14px; margin: 16px 0; }
.pinfo .prices .now { font-size: var(--fs-5xl); font-weight: 900; color: var(--bp-red); }
.pinfo .prices .was { font-size: var(--fs-xl); color: var(--bp-gray); text-decoration: line-through; }
.pinfo .save { background: #eaf7ee; color: var(--bp-green); font-weight: 800; font-size: var(--fs-sm); padding: 4px 10px; border-radius: 3px; }
.pinfo .desc { color: #555; font-size: var(--fs-md); line-height: 1.6; margin-bottom: 18px; }
.option-group { margin-bottom: 16px; }
.option-group label { display: block; font-size: var(--fs-base); font-weight: 700; margin-bottom: 6px; }
.swatches { display: flex; gap: 8px; }
.swatch { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bp-border); cursor: pointer; }
.swatch.active { border-color: var(--bp-red); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--bp-red); }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-option { border: 1px solid var(--bp-border); border-radius: 4px; padding: 8px 14px; font-size: var(--fs-base); background: #fff; }
.size-option.active { border-color: var(--bp-red); color: var(--bp-red); font-weight: 700; }

.purchase-row { display: flex; gap: 12px; margin: 20px 0; }
.qty { display: flex; border: 2px solid var(--bp-green); border-radius: 4px; overflow: hidden; }
.qty button { width: 38px; border: none; background: #fff; font-size: var(--fs-xl); color: var(--bp-green); }
.qty input { width: 46px; border: none; text-align: center; font-size: var(--fs-md); font-weight: 700; outline: none; }
.btn-add-cart { flex: 1; border: none; background: var(--bp-gold); color: #1d1d1d; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; font-size: var(--fs-md); border-radius: 4px; padding: 14px; }
.btn-add-cart:hover { background: var(--bp-gold-dark); }
.btn-add-cart.added { background: var(--bp-green); color: #fff; }

.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.perk { border: 1px solid var(--bp-border); border-radius: 6px; padding: 10px; text-align: center; font-size: var(--fs-xs); color: #555; }
.perk i { font-size: var(--fs-2xl); margin: 0 auto 6px; color: var(--bp-green); display: block; text-align: center; }
.perk strong { display: block; color: var(--bp-green); font-size: var(--fs-sm); }

/* ---- eBay-style product details ---- */
.pdp-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 12px 0 4px; font-size: var(--fs-sm); }
.cond-chip { display: inline-flex; align-items: center; gap: 6px; background: #eaf7ee; color: #166534; border: 1px solid #b8e6c6; border-radius: 20px; padding: 4px 11px; font-weight: 800; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .6px; }
.cond-chip.box { background: #fff7e6; color: #8a5a00; border-color: #f0d48a; }
.cond-chip i { font-size: var(--fs-xs); }
.meta-divider { width: 1px; height: 16px; background: var(--bp-border); }
.pdp-stat { display: inline-flex; align-items: center; gap: 6px; color: var(--bp-gray); font-weight: 700; }
.pdp-stat i { color: var(--bp-green); }

.pdp-pay { margin: 14px 0 4px; }
.ship-line { font-size: var(--fs-base); color: #333; margin-bottom: 6px; }
.ship-line strong { color: var(--bp-green); }
.ship-line .arrives { color: #444; font-weight: 700; }
.install-line { font-size: var(--fs-base); color: var(--bp-gray); display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.install-line strong { color: #333; }
.pdp-icons { display: inline-flex; gap: 7px; font-size: var(--fs-xl); color: #3b3b3b; align-items: center; }

.btn-bin { width: 100%; margin: 14px 0 0; border: none; background: var(--bp-red); color: #fff; font-weight: 900; text-transform: uppercase; letter-spacing: 1.2px; font-size: var(--fs-md); border-radius: 4px; padding: 15px; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 14px rgba(200,16,46,.28); transition: background .18s ease, transform .15s ease, box-shadow .18s ease; }
.btn-bin:hover { background: var(--bp-red-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(200,16,46,.34); }
.btn-bin:active { transform: translateY(0) scale(.99); }
.btn-bin:disabled { background: #bbb; cursor: not-allowed; box-shadow: none; transform: none; }

.trust-row { display: flex; gap: 16px; flex-wrap: wrap; margin: 14px 0 12px; font-size: var(--fs-xs); color: var(--bp-gray); font-weight: 700; }
.trust-row i { color: var(--bp-green); margin-right: 5px; }

.pdp-paycards { display: flex; align-items: center; gap: 10px; font-size: var(--fs-sm); color: var(--bp-gray); font-weight: 700; flex-wrap: wrap; }
.pdp-paycards i { font-size: var(--fs-3xl); color: #3b3b3b; transition: transform .15s ease; }
.pdp-paycards i:hover { transform: scale(1.15); }
.pdp-paycards.dark { background: #f7f4ee; border: 1px solid var(--bp-border); border-radius: 8px; padding: 10px 12px; margin-top: 12px; }
.pdp-paycards.dark span { margin-right: auto; }

.ebay-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.ebay-card { background: #fff; border: 1px solid var(--bp-border); border-radius: 10px; padding: 18px; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.ebay-card h3 { font-size: var(--fs-base); font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: var(--bp-green); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--bp-border); }
.seller-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.seller-av { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--bp-green); color: #fff; font-weight: 900; font-size: var(--fs-xl); display: flex; align-items: center; justify-content: center; }
.seller-name { font-weight: 800; font-size: var(--fs-md); color: #1d1d1d; }
.seller-fb { font-size: var(--fs-sm); color: var(--bp-green); font-weight: 700; margin-top: 2px; }
.seller-fb i { color: var(--bp-gold); }
.ebay-list { display: grid; gap: 9px; }
.ebay-list li { display: flex; align-items: baseline; gap: 9px; font-size: var(--fs-base); color: #444; }
.ebay-list li i { width: 16px; text-align: center; color: var(--bp-green); font-size: var(--fs-base); }
.ebay-list li span { color: var(--bp-gray); font-size: var(--fs-sm); font-weight: 700; min-width: 88px; }
.btn-visit { margin-top: 14px; width: 100%; border: 2px solid var(--bp-green); background: #fff; color: var(--bp-green); font-weight: 800; font-size: var(--fs-base); text-transform: uppercase; letter-spacing: .6px; padding: 10px; border-radius: 5px; transition: all .18s ease; }
.btn-visit:hover { background: var(--bp-green); color: #fff; }
.ebay-protect { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: var(--fs-sm); font-weight: 800; color: #166534; }
.ebay-protect i { color: var(--bp-green); font-size: var(--fs-lg); }

.related { margin-top: 40px; }

/* ============ CART ============ */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start; }
.cart-items { background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.cart-item { display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--bp-border); align-items: center; }
.cart-item:last-child { border-bottom: none; }
.cart-item .ci-img { width: 96px; height: 96px; background: var(--bp-light); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.cart-item .ci-img svg { width: 100%; height: 100%; }
.cart-item h4 { font-size: var(--fs-md); font-weight: 700; }
.cart-item .ci-meta { font-size: var(--fs-sm); color: var(--bp-gray); margin: 4px 0; }
.cart-item .ci-price { font-weight: 800; color: var(--bp-green); }
.ci-remove { background: none; border: none; color: var(--bp-red); font-size: var(--fs-sm); font-weight: 700; text-decoration: underline; }
.cart-summary { background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.05); position: sticky; top: 20px; }
.cart-summary h3 { font-size: var(--fs-xl); font-weight: 900; color: var(--bp-green); margin-bottom: 14px; }
.sum-row { display: flex; justify-content: space-between; font-size: var(--fs-base); color: #555; padding: 6px 0; }
.sum-row.grand { font-size: var(--fs-lg); font-weight: 900; color: var(--bp-green); border-top: 2px solid var(--bp-border); margin-top: 10px; padding-top: 12px; }
.cart-summary .btn { width: 100%; text-align: center; margin-top: 14px; }
.cart-summary .secure { font-size: var(--fs-xs); color: var(--bp-gray); text-align: center; margin-top: 10px; }
.ci-qty { display: inline-flex; align-items: center; border: 1px solid #d9d5cb; border-radius: 4px; overflow: hidden; background: #fff; }
.ci-qty button { width: 30px; height: 34px; border: none; background: #f5f3ec; font-size: var(--fs-lg); font-weight: 800; color: var(--bp-green); cursor: pointer; }
.ci-qty button:hover { background: var(--bp-green); color: #fff; }
.ci-qty input { width: 40px; text-align: center; border: none; font-weight: 800; font-size: var(--fs-md); color: #333; height: 34px; background: transparent; }
.promo-box { margin: 16px 0 6px; }
.promo-box label { display: block; font-size: var(--fs-sm); font-weight: 800; color: var(--bp-gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.promo-row { display: flex; gap: 8px; }
.promo-row input { flex: 1; padding: 10px; border: 1px solid #ddd8cc; border-radius: 4px; font-size: var(--fs-base); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.promo-msg { font-size: var(--fs-sm); font-weight: 700; margin-top: 6px; color: var(--bp-green); }
.promo-msg .ph-x-circle { color: var(--bp-red); }
.promo-msg .ph-check-circle { color: var(--bp-green); }
.cart-empty { text-align: center; padding: 60px 20px; background: #fff; border-radius: 10px; }
.cart-empty svg { width: 70px; height: 70px; color: #bbb; margin: 0 auto 16px; }
.cart-empty > i { font-size: 64px; color: #bbb; margin-bottom: 14px; }
.cart-empty h2 { color: var(--bp-green); margin-bottom: 8px; }

/* ============ ACCOUNT / AUTH ============ */
.auth-wrap { max-width: 420px; margin: 40px auto; }

/* ============ TABS + REVIEWS ============ */
.tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--bp-border); margin-bottom: 22px; }
.tab-btn { border: none; background: none; padding: 12px 18px; font-weight: 800; font-size: var(--fs-md); color: #777; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.tab-btn:hover { color: var(--bp-green); }
.tab-btn.active { color: var(--bp-green); border-bottom-color: var(--bp-green); }
.tab-panel { display: none; animation: fadeUp .35s ease; }
.tab-panel.active { display: block; }
.spec-table { width: 100%; max-width: 720px; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.spec-table th { text-align: left; background: var(--bp-light); color: var(--bp-green); padding: 12px 16px; font-size: var(--fs-base); width: 180px; }
.spec-table td { padding: 12px 16px; font-size: var(--fs-base); color: #444; border-top: 1px solid var(--bp-border); }
.rev-summary { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.rev-big { display: flex; align-items: center; gap: 10px; }
.rev-big span { font-size: var(--fs-6xl); font-weight: 900; color: var(--bp-green); }
.rev-big .stars { font-size: var(--fs-lg); }
.rev-count { color: var(--bp-gray); font-size: var(--fs-base); }
.rev-list { max-width: 820px; margin-bottom: 26px; }
.review { display: flex; gap: 14px; background: #fff; border: 1px solid var(--bp-border); border-radius: 8px; padding: 16px; margin-bottom: 12px; }
.avatar { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; background: var(--bp-green); color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.rev-head { display: flex; align-items: center; gap: 10px; margin: 4px 0 2px; }
.rev-head strong { font-size: var(--fs-md); color: #222; }
.cdate { font-size: var(--fs-sm); color: var(--bp-gray); }
.rev-name { font-size: var(--fs-sm); color: var(--bp-gray); margin-bottom: 6px; }
.review p { font-size: var(--fs-base); color: #444; line-height: 1.6; }
.rev-form { max-width: 820px; background: #fff; border: 1px solid var(--bp-border); border-radius: 8px; padding: 20px; }
.rev-form h4 { color: var(--bp-green); margin-bottom: 12px; font-size: var(--fs-lg); }
.rev-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: var(--fs-base); color: #555; }
#revStars { display: inline-flex; gap: 2px; }
#revStars button { border: none; background: none; font-size: var(--fs-xl); color: #ccc; cursor: pointer; padding: 0 1px; transition: transform .1s ease, color .1s ease; }
#revStars button:hover { transform: scale(1.15); }
#revStars button.set { color: var(--bp-gold); }

/* ============ ACCOUNT / AUTH ============ */
.auth-wrap { max-width: 420px; margin: 40px auto; }
.auth-card { background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.auth-card h1 { font-size: var(--fs-2xl); font-weight: 900; color: var(--bp-green); margin-bottom: 6px; text-align: center; }
.auth-card .sub { text-align: center; color: var(--bp-gray); font-size: var(--fs-base); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: var(--fs-sm); font-weight: 700; margin-bottom: 5px; color: #444; }
.form-group input { width: 100%; padding: 10px 12px; border: 1px solid var(--bp-border); border-radius: 4px; outline: none; }
.form-group input:focus { border-color: var(--bp-green); }
.auth-card .btn { width: 100%; text-align: center; border: none; }
.auth-alt { text-align: center; font-size: var(--fs-base); color: var(--bp-gray); margin-top: 16px; }
.auth-alt a { color: var(--bp-red); font-weight: 700; }

/* ============ TOAST ============ */
#toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--bp-green); color: #fff; padding: 14px 24px; border-radius: 6px;
  font-size: var(--fs-md); font-weight: 700; z-index: 300; box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .3s ease; display: flex; align-items: center; gap: 10px;
}
#toast.show { transform: translateX(-50%) translateY(0); }
#toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bp-gold); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 200px 1fr; }
}
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .header-search { order: 3; flex-basis: 100%; }
  .main-nav { display: none; }
  .header-row { flex-wrap: wrap; }
  .header-actions { margin-left: 0; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .deal-grid { grid-template-columns: 1fr 1fr; }
  .deal-card:first-child { grid-column: 1 / -1; }
  .info-bands { grid-template-columns: 1fr; }
  .product-main { grid-template-columns: minmax(0, 1fr); }
  .ebay-cards { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-subcats { grid-template-columns:repeat(3,1fr); }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-subcats { grid-template-columns:repeat(2,1fr); gap:10px; }
  .cat-subcat-card { padding:14px 8px; }
  .cat-tip { flex-direction:column; align-items:center; text-align:center; }
  .prod-grid { grid-template-columns: 1fr; }
  .slide h2 { font-size: var(--fs-4xl); }
  .slides { height: 360px; }
  .slide-content { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .header-actions .hact span { display: none; }
}

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.06); display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(0,0,0,.14); }
.blog-card .bimg { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-card .bimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.blog-card:hover .bimg img { transform: scale(1.06); }
.bcat-tag { position: absolute; top: 12px; left: 12px; background: var(--bp-red); color: #fff; font-size: var(--fs-2xs); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; }
.blog-card .bbody { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.bmeta { display: flex; gap: 14px; font-size: var(--fs-xs); color: var(--bp-gray); margin-bottom: 8px; }
.bmeta span { display: flex; align-items: center; gap: 5px; }
.bmeta svg { width: 13px; height: 13px; }
.bmeta span i { color: var(--bp-red); font-size: var(--fs-sm); }
.blog-card h3 { font-size: var(--fs-lg); font-weight: 800; line-height: 1.3; color: #222; }
.blog-card h3 a:hover { color: var(--bp-red); }
.blog-card .bexcerpt { font-size: var(--fs-base); color: #666; margin: 8px 0 14px; line-height: 1.55; flex: 1; }
.read-more { font-size: var(--fs-sm); font-weight: 800; color: var(--bp-red); text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

.featured-post { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.08); display: grid; grid-template-columns: 1.2fr 1fr; margin-bottom: 34px; }
.featured-post .fimg { position: relative; min-height: 320px; }
.featured-post .fimg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-post .fbody { padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.featured-post .fbody .fbadge { display: inline-flex; align-items: center; gap: 6px; background: var(--bp-gold); color: #1d1d1d; font-size: var(--fs-2xs); font-weight: 900; letter-spacing: 1.5px; padding: 4px 10px; border-radius: 3px; margin-bottom: 12px; align-self: flex-start; }
.featured-post h2 { font-size: var(--fs-3xl); font-weight: 900; line-height: 1.15; color: #111; }
.featured-post h2 a:hover { color: var(--bp-red); }
.featured-post .bexcerpt { font-size: var(--fs-md); color: #666; margin: 12px 0 18px; line-height: 1.6; }

.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: start; }
.blog-sidebar { position: sticky; top: 20px; }
.side-card { background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.06); margin-bottom: 20px; }
.side-card h3 { font-size: var(--fs-md); font-weight: 900; color: var(--bp-green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; position: relative; padding-bottom: 8px; }
.side-card h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--bp-gold); }
.side-search { display: flex; border: 2px solid var(--bp-green); border-radius: 5px; overflow: hidden; }
.side-search input { flex: 1; border: none; outline: none; padding: 9px 12px; font-size: var(--fs-base); }
.side-search button { border: none; background: var(--bp-green); color: #fff; padding: 0 14px; }
.cat-list li { border-bottom: 1px dashed var(--bp-border); }
.cat-list li:last-child { border-bottom: none; }
.cat-list a { display: flex; justify-content: space-between; padding: 9px 2px; font-size: var(--fs-base); color: #444; font-weight: 600; }
.cat-list a:hover { color: var(--bp-red); }
.cat-list .cnt { background: var(--bp-light); border-radius: 10px; font-size: var(--fs-xs); padding: 1px 8px; color: #777; }
.recent-item { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--bp-border); }
.recent-item:last-child { border-bottom: none; }
.recent-item img { width: 64px; height: 48px; object-fit: cover; border-radius: 5px; flex-shrink: 0; }
.recent-item h4 { font-size: var(--fs-sm); font-weight: 700; line-height: 1.35; }
.recent-item h4 a:hover { color: var(--bp-red); }
.recent-item .date { font-size: var(--fs-2xs); color: var(--bp-gray); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-cloud a { background: var(--bp-light); border: 1px solid var(--bp-border); font-size: var(--fs-xs); padding: 4px 11px; border-radius: 20px; color: #555; }
.tag-cloud a:hover { background: var(--bp-green); border-color: var(--bp-green); color: #fff; }
.side-promo { background: linear-gradient(135deg, var(--bp-green), #1e5c3b); color: #fff; border-radius: 10px; padding: 22px; }
.side-promo h3 { color: #fff; }
.side-promo h3::after { background: var(--bp-gold); }
.side-promo p { font-size: var(--fs-base); color: #d5e6db; margin-bottom: 14px; }
.side-promo .btn { width: 100%; text-align: center; }

.pagination { display: flex; gap: 8px; justify-content: center; margin: 34px 0; }
.pagination a, .pagination span { min-width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--bp-border); border-radius: 6px; font-size: var(--fs-base); font-weight: 700; color: #555; }
.pagination a:hover { border-color: var(--bp-green); color: var(--bp-green); }
.pagination .cur { background: var(--bp-green); border-color: var(--bp-green); color: #fff; }

/* ============ BLOG POST ============ */
.post-wrap { max-width: 860px; margin: 0 auto; }
.post-header { text-align: center; margin-bottom: 26px; }
.post-header .bcat-tag { position: static; display: inline-block; }
.post-header h1 { font-size: var(--fs-5xl); font-weight: 900; line-height: 1.15; margin: 14px 0; color: #111; }
.post-header .bmeta { justify-content: center; }
.post-hero-img { border-radius: 12px; overflow: hidden; margin-bottom: 26px; box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.post-hero-img img { width: 100%; height: auto; }
.post-body { font-size: var(--fs-lg); line-height: 1.75; color: #333; }
.post-body p { margin-bottom: 18px; }
.post-body h2 { font-size: var(--fs-2xl); font-weight: 800; color: var(--bp-green); margin: 30px 0 12px; }
.post-body h2::after { content: ""; display: block; width: 40px; height: 3px; background: var(--bp-gold); margin-top: 6px; }
.post-body ul { margin: 0 0 18px 22px; }
.post-body ul li { margin-bottom: 8px; list-style: disc; }
.post-body ol { margin: 0 0 18px 22px; }
.post-body ol li { margin-bottom: 8px; list-style: decimal; }
.post-body strong { color: var(--bp-green); }
.post-body blockquote { border-left: 4px solid var(--bp-gold); background: var(--bp-light); padding: 16px 20px; margin: 22px 0; border-radius: 0 8px 8px 0; font-style: italic; color: #555; }
.tip-box { background: #eaf7ee; border: 1px solid #cfe9d6; border-radius: 8px; padding: 16px 18px; margin: 20px 0; display: flex; gap: 12px; }
.tip-box svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--bp-green); margin-top: 2px; }
.tip-box > i { font-size: var(--fs-xl); flex-shrink: 0; color: var(--bp-gold-dark); margin-top: 2px; }
.tip-box strong { display: block; margin-bottom: 4px; color: var(--bp-green); }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0; align-items: center; }
.post-tags .lbl { font-size: var(--fs-sm); font-weight: 800; color: var(--bp-gray); text-transform: uppercase; letter-spacing: 1px; }
.post-tags a { background: var(--bp-light); border: 1px solid var(--bp-border); font-size: var(--fs-sm); padding: 5px 12px; border-radius: 20px; color: #555; }
.post-tags a:hover { background: var(--bp-green); color: #fff; }

.share-row { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--bp-border); border-bottom: 1px solid var(--bp-border); padding: 16px 0; margin: 20px 0; }
.share-row .lbl { font-size: var(--fs-base); font-weight: 800; color: var(--bp-gray); text-transform: uppercase; letter-spacing: 1px; }
.share-btn { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #111; }
.share-btn.pi { background: #bd081c; }
.share-btn.wa { background: #25d366; }
.share-btn svg { width: 16px; height: 16px; }
.share-btn i { font-size: var(--fs-lg); }

.author-box { display: flex; gap: 16px; background: var(--bp-light); border-radius: 10px; padding: 18px; margin: 26px 0; align-items: center; }
.author-box .avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--bp-green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: var(--fs-3xl); font-weight: 900; flex-shrink: 0; }
.author-box h4 { font-size: var(--fs-md); font-weight: 800; color: var(--bp-green); }
.author-box .role { font-size: var(--fs-xs); color: var(--bp-red); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.author-box p { font-size: var(--fs-base); color: #666; margin-top: 6px; }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.post-nav a { background: #fff; border: 1px solid var(--bp-border); border-radius: 8px; padding: 14px 16px; font-size: var(--fs-sm); font-weight: 700; color: #444; }
.post-nav a:hover { border-color: var(--bp-green); color: var(--bp-green); }
.post-nav .prev { text-align: left; }
.post-nav .next { text-align: right; }
.post-nav .dir { display: block; font-size: var(--fs-2xs); color: var(--bp-gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }

.comments { background: #fff; border-radius: 10px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,.06); margin: 30px 0; }
.comments h3 { font-size: var(--fs-xl); font-weight: 900; color: var(--bp-green); margin-bottom: 18px; }
.comment { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--bp-border); }
.comment:last-of-type { border-bottom: none; }
.comment .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--bp-light); color: var(--bp-green); display: flex; align-items: center; justify-content: center; font-weight: 900; flex-shrink: 0; font-size: var(--fs-lg); }
.comment .cname { font-weight: 800; font-size: var(--fs-base); color: #222; }
.comment .cdate { font-size: var(--fs-xs); color: var(--bp-gray); margin-left: 8px; }
.comment p { font-size: var(--fs-base); color: #555; margin-top: 5px; line-height: 1.6; }
.comment-form { margin-top: 20px; }
.comment-form h4 { font-size: var(--fs-md); font-weight: 800; color: var(--bp-green); margin-bottom: 12px; }
.comment-form .form-group input, .comment-form .form-group textarea { border: 1px solid var(--bp-border); }
.comment-form .btn { border: none; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-post { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .post-header h1 { font-size: var(--fs-3xl); }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav .next { text-align: left; }
}

/* ============ SMOOTH LOADING & ANIMATIONS ============ */
html { scroll-behavior: smooth; }

#loadBar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--bp-gold), var(--bp-red));
  box-shadow: 0 0 8px rgba(200, 16, 46, .5);
  z-index: 10000; pointer-events: none; opacity: 0;
  transition: width .4s ease, opacity .35s ease;
}
#loadBar.on { opacity: 1; }

main { animation: bpFadeIn .55s ease-out both; }

@keyframes bpFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Page-load entrance for hero content */
.slide-content { animation: bpFadeUp .7s ease-out both; }
.slide:not(.active) .slide-content { animation: none; }
.slide.active .slide-content > * { animation: bpFadeUp .65s ease-out both; }
.slide.active .slide-content > *:nth-child(1) { animation-delay: .05s; }
.slide.active .slide-content > *:nth-child(2) { animation-delay: .18s; }
.slide.active .slide-content > *:nth-child(3) { animation-delay: .31s; }
.slide.active .slide-content > *:nth-child(4) { animation-delay: .44s; }

@keyframes bpFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal (only active when JS adds .js to <html>) */
.js .reveal,
.js .reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease var(--d, 0ms),
              transform .65s cubic-bezier(.22, .61, .36, 1) var(--d, 0ms);
  will-change: opacity, transform;
}
.js .reveal.revealed,
.js .reveal-item.revealed { opacity: 1; transform: translateY(0); }

/* Product / category / blog cards get a gentle lift on hover */
.product-card { transition: box-shadow .3s ease, transform .3s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.10); }
.product-card .pimg img { transition: transform .45s ease; }
.product-card:hover .pimg img { transform: scale(1.05); }

.cat-tile { transition: transform .3s ease, box-shadow .3s ease; }
.cat-tile:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.10); }

.blog-card { transition: transform .3s ease, box-shadow .3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.10); }
.blog-card .bimg img { transition: transform .5s ease; }
.blog-card:hover .bimg img { transform: scale(1.05); }

.deal-card { transition: transform .3s ease, box-shadow .3s ease; }
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,.18); }

.featured-post { transition: box-shadow .3s ease; }
.featured-post:hover { box-shadow: 0 12px 30px rgba(0,0,0,.12); }

/* Cart items fade in when added */
.cart-item { animation: bpFadeIn .35s ease both; }

@keyframes bpPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.cart-count.bump { animation: bpPop .4s ease; }

/* ============ CHECKOUT + REVIEWS GRIDS ============ */
.co-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; align-items: start; }
.rev-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ============ ORDER CONFIRMATION ============ */
.confirm-box {
  background: #fff7e6; border: 2px solid #f2c94c; border-radius: 14px;
  padding: 26px 28px; margin: 0 0 26px; text-align: center;
}
.confirm-ic {
  width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%;
  background: #f2c94c; color: #14402c; font-size: var(--fs-3xl);
  display: flex; align-items: center; justify-content: center;
}
.confirm-box h3 { color: #14402c; font-size: var(--fs-xl); margin-bottom: 8px; }
.confirm-box p { color: #5c5440; font-size: var(--fs-md); line-height: 1.6; max-width: 520px; margin: 0 auto 16px; }
.confirm-box p a { color: #14402c; }

/* ============ PAYMENT METHODS ============ */
.co-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-grid2 .form-group, .co-grid3 .form-group { margin-bottom: 14px; }
.co-grid3 { display: grid; grid-template-columns: 2fr 1.2fr 1fr; gap: 12px; }

.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.pay-option {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  border: 2px solid #e2e6e3; border-radius: 12px;
  padding: 13px 14px; cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  background: #fff;
}
.pay-option:hover { border-color: #9db4c6; }
.pay-option.active { border-color: #1f3a52; background: #f8fafc; box-shadow: 0 3px 10px rgba(31,58,82,.10); }
.pay-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.pay-ico { width: 52px; height: 36px; flex: 0 0 52px; display: flex; align-items: center; justify-content: center; }
.pay-ico img { height: 36px; width: auto; max-width: 52px; display: block; object-fit: contain; }
.pay-name { font-size: var(--fs-md); font-weight: 700; color: #1d2b24; line-height: 1.25; }
.pay-check { margin-left: auto; color: #1f3a52; opacity: 0; transform: scale(.6); transition: all .2s ease; }
.pay-option.active .pay-check { opacity: 1; transform: scale(1); }

.pay-panel { display: none; border: 1px solid #e2e6e3; border-radius: 12px; padding: 16px; background: #fafbfa; margin-bottom: 6px; }
.pay-panel.active { display: block; animation: bpFadeIn .3s ease both; }

.pay-auth {
  width: 100%; margin-top: 12px; border: none; border-radius: 10px;
  padding: 14px; font-size: var(--fs-md); font-weight: 800; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: opacity .2s ease, transform .15s ease;
}
.pay-auth:hover { opacity: .92; transform: translateY(-1px); }
.pay-auth:active { transform: scale(.99); }
.pay-auth.loading { pointer-events: none; opacity: .7; }
.pay-auth.done { background: #2e7d32 !important; }
.pay-auth.cashapp { background: #00d632; color: #0c0c0c; }
.pay-auth.bitcoin { background: #f7931a; }
.pay-auth-msg { margin-top: 8px; font-size: var(--fs-base); font-weight: 600; min-height: 18px; }
.pay-auth-msg.ok { color: #2e7d32; }
.pay-auth-msg.err { color: #c8102e; }

.btc-box { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid #e8e2d8; border-radius: 12px; padding: 14px; }
.btc-qr { flex: 0 0 auto; background: #fff; border: 1px solid #e2e6e3; border-radius: 10px; padding: 10px; }
.qr-grid { display: grid; }
.qr-grid i { width: 11px; height: 11px; }
.qr-grid i.k { background: #111; }
.qr-grid i.w { background: #fff; }
.btc-info { flex: 1 1 auto; min-width: 0; }
.btc-label { font-size: var(--fs-xs); color: #8a8377; text-transform: uppercase; letter-spacing: .8px; font-weight: 700; }
.btc-amount { font-size: var(--fs-xl); font-weight: 900; color: #f7931a; margin: 3px 0 10px; }
.btc-addr {
  font-family: var(--ff-mono);
  font-size: var(--fs-xs); word-break: break-all; color: #333; background: #f7f4ee;
  border: 1px dashed #d9cfbc; border-radius: 7px; padding: 8px 10px; margin-bottom: 8px;
}

/* ============ CHECKOUT STEPPER ============ */
.co-steps {
  display: flex; justify-content: center; gap: 0; margin-bottom: 30px;
  counter-reset: step;
}
.co-step {
  display: flex; align-items: center; gap: 0; position: relative;
}
.co-step-dot {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid #dfe3e8;
  background: #f6f8fa; color: #a8b0b8; font-size: var(--fs-base); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease; position: relative; z-index: 2;
}
.co-step-label {
  font-size: var(--fs-xs); font-weight: 800; color: #b3bcc4; margin-left: 8px;
  text-transform: uppercase; letter-spacing: .7px; transition: color .3s ease;
  white-space: nowrap;
}
.co-step-line {
  width: 60px; height: 2px; background: #dfe3e8; margin: 0 0;
  transition: background .3s ease; position: relative; z-index: 1;
}
.co-step.active .co-step-dot {
  border-color: #1f3a52; background: #1f3a52; color: #fff;
  box-shadow: 0 0 0 4px rgba(31,58,82,.14);
}
.co-step.active .co-step-label { color: #1f3a52; }
.co-step.done .co-step-dot {
  border-color: #3d6a8f; background: #3d6a8f; color: #fff;
}
.co-step.done .co-step-label { color: #3d6a8f; }
.co-step.done + .co-step-line,
.co-step-line.filled { background: #3d6a8f; }

/* ============ CHECKOUT SECTION CARDS ============ */
.co-section {
  background: #fff; border-radius: 14px; border: 1px solid #e5e8ec;
  padding: 26px; margin-bottom: 18px; display: none;
  box-shadow: 0 1px 3px rgba(16,32,48,.05);
}
.co-section.active { display: block; animation: bpFadeIn .35s ease both; }
.co-section-title {
  font-size: var(--fs-lg); font-weight: 800; color: #1f3a52; margin-bottom: 18px;
  display: flex; align-items: center; gap: 9px;
}
.co-section-title i {
  width: 32px; height: 32px; border-radius: 9px; background: #eef3f8;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-base); color: #3d6a8f;
}

/* Professional input treatment, scoped to checkout sections */
.co-section .form-group label {
  font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase;
  letter-spacing: .7px; color: #66707b; margin-bottom: 6px;
}
.co-section .form-group input {
  padding: 11px 13px; border: 1.5px solid #d7dce2; border-radius: 9px;
  background: #fbfcfd; font-size: var(--fs-md); color: #23282d;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.co-section .form-group input::placeholder { color: #b3bcc4; }
.co-section .form-group input:focus {
  border-color: #1f3a52; background: #fff;
  box-shadow: 0 0 0 3px rgba(31,58,82,.10);
}

.co-nav {
  display: flex; gap: 12px; margin-top: 18px;
}
.co-nav .btn { flex: 1; }
.btn-back {
  background: #fff; color: #55606a; border: 1.5px solid #d7dce2;
}
.btn-back:hover { background: #f2f5f8; }
.btn-next {
  background: #5b7fa6; color: #fff; letter-spacing:.5px;
}
.btn-next:hover { background: #4a6e93; }

/* ============ ORDER CONFIRMATION SUCCESS ============ */
@keyframes celebrateIn {
  0% { transform: scale(.8) translateY(20px); opacity: 0; }
  60% { transform: scale(1.02) translateY(-4px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes confettiFall {
  0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
.celebrate-wrap {
  max-width: 800px; margin: 0 auto; animation: celebrateIn .6s ease both;
}
.celebrate-card {
  background: linear-gradient(135deg, #f0faf3 0%, #e8f5e9 50%, #f0faf3 100%);
  border: 2px solid #c8e6c9; border-radius: 18px; padding: 40px 36px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 8px 30px rgba(46,125,50,.08);
}
.celebrate-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(46,125,50,.06);
}
.celebrate-check {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-5xl); color: #fff; box-shadow: 0 6px 20px rgba(46,125,50,.25);
}
.celebrate-name {
  font-size: var(--fs-4xl); font-weight: 900; color: #14402c; margin-bottom: 4px;
}
.celebrate-sub {
  font-size: var(--fs-md); color: #666; margin-bottom: 20px;
}
.celebrate-order-num {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 2px dashed #14402c; border-radius: 10px;
  padding: 14px 24px; margin-bottom: 22px; cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.celebrate-order-num:hover { background: #f9fdf9; }
.celebrate-order-num .label {
  font-size: var(--fs-2xs); color: #999; text-transform: uppercase; letter-spacing: 1.2px;
  font-weight: 700;
}
.celebrate-order-num .number {
  font-size: var(--fs-2xl); font-weight: 900; color: #c8102e; font-family: var(--ff-mono);
}
.celebrate-order-num .copy-icon {
  font-size: var(--fs-lg); color: #14402c; transition: color .15s;
}
.celebrate-order-num:hover .copy-icon { color: #2e7d32; }
.celebrate-tags {
  display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.celebrate-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff; border: 1px solid #d7e5db; border-radius: 20px;
  padding: 6px 14px; font-size: var(--fs-base); color: #444;
}

/* ============ ORDER STATUS TRACKER ============ */
.status-tracker {
  background: #fff; border-radius: 12px; border: 1px solid #e8e5dd;
  padding: 28px 24px; margin-bottom: 18px;
}
.status-tracker h3 {
  font-size: var(--fs-lg); font-weight: 800; color: #14402c; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.tracker-timeline {
  display: flex; justify-content: space-between; position: relative;
  padding: 0 10px;
}
.tracker-timeline::before {
  content: ''; position: absolute; top: 18px; left: 30px; right: 30px;
  height: 3px; background: #e8e5dd; border-radius: 2px;
}
.tracker-timeline::after {
  content: ''; position: absolute; top: 18px; left: 30px;
  width: 0%; height: 3px; background: #2e7d32; border-radius: 2px;
  transition: width 1s ease .5s;
}
.tracker-step {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 2; flex: 1;
}
.tracker-dot {
  width: 36px; height: 36px; border-radius: 50%; border: 3px solid #e0e0e0;
  background: #fff; display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-md); color: #bbb; margin-bottom: 8px;
  transition: all .3s ease;
}
.tracker-step.active .tracker-dot {
  border-color: #2e7d32; background: #2e7d32; color: #fff;
  box-shadow: 0 0 0 5px rgba(46,125,50,.15);
}
.tracker-step.done .tracker-dot {
  border-color: #2e7d32; background: #e8f5e9; color: #2e7d32;
}
.tracker-label {
  font-size: var(--fs-xs); font-weight: 700; color: #bbb; text-align: center;
  text-transform: uppercase; letter-spacing: .5px;
}
.tracker-step.active .tracker-label { color: #2e7d32; }
.tracker-step.done .tracker-label { color: #666; }
.tracker-delivery {
  text-align: center; margin-top: 22px; padding-top: 18px;
  border-top: 1px solid #f0ede6;
}
.tracker-delivery .est {
  font-size: var(--fs-base); color: #888;
}
.tracker-delivery .date {
  font-size: var(--fs-lg); font-weight: 800; color: #14402c; margin-top: 2px;
}

/* ============ NEXT STEPS ============ */
.next-steps {
  background: #fff; border-radius: 12px; border: 1px solid #e8e5dd;
  padding: 28px 24px; margin-bottom: 18px;
}
.next-steps h3 {
  font-size: var(--fs-lg); font-weight: 800; color: #14402c; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.step-list { list-style: none; padding: 0; margin: 0; }
.step-item {
  display: flex; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid #f5f3ee;
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
  background: #eaf7ee; color: #2e7d32; font-size: var(--fs-base); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-text {
  font-size: var(--fs-base); color: #555; line-height: 1.5;
}
.step-text strong { color: #333; }

/* ============ CONFIRM BOX ============ */
.confirm-box {
  background: #fff7e6; border: 2px solid #f2c94c; border-radius: 14px;
  padding: 26px 28px; margin: 0 0 26px; text-align: center;
}
.confirm-ic {
  width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%;
  background: #f2c94c; color: #14402c; font-size: var(--fs-3xl);
  display: flex; align-items: center; justify-content: center;
}
.confirm-box h3 { color: #14402c; font-size: var(--fs-xl); margin-bottom: 8px; }
.confirm-box p { color: #5c5440; font-size: var(--fs-md); line-height: 1.6; max-width: 520px; margin: 0 auto 16px; }
.confirm-box p a { color: #14402c; }

/* ============ CONFETTI PARTICLES ============ */
.confetti-container {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 9999; overflow: hidden;
}
.confetti-piece {
  position: absolute; top: -20px; width: 10px; height: 10px;
  border-radius: 2px; animation: confettiFall linear forwards;
}

@media (max-width: 560px) {
  .pay-methods { grid-template-columns: 1fr; }
  .btc-box { flex-direction: column; align-items: center; text-align: center; }
  .btc-addr { text-align: left; }
  .co-steps { gap: 0; }
  .co-step-label { display: none; }
  .co-step-line { width: 36px; }
  .celebrate-card { padding: 28px 18px; }
  .celebrate-name { font-size: var(--fs-2xl); }
  .celebrate-order-num .number { font-size: var(--fs-xl); }
  .tracker-timeline { padding: 0 2px; }
  .tracker-label { font-size: var(--fs-2xs); }
  .tracker-timeline::before { left: 18px; right: 18px; }
}

/* ============ EXTRA MOBILE RESPONSIVENESS ============ */
@media (max-width: 900px) {
  form.co-grid { grid-template-columns: 1fr; }
  .rev-fields { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .topbar ul { gap: 12px; font-size: var(--fs-sm); flex-wrap: wrap; }
  .header-row { gap: 12px; padding: 12px 14px; }
  .header-actions { gap: 2px; }
  .hact { padding: 5px 7px; }
  .logo-badge { width: 44px; height: 44px; }
  .logo-badge svg { width: 28px; height: 28px; }
  .logo-text .l1 { font-size: var(--fs-xl); }
  .section-head { flex-wrap: wrap; gap: 6px; }
  .section-head h2 { font-size: var(--fs-xl); }
  .section-head a { font-size: var(--fs-sm); }
  .page-hero { padding: 32px 16px; }
  .page-hero h1 { font-size: var(--fs-3xl); }
  .deal-grid { grid-template-columns: 1fr; }
  .deal-card { min-height: 170px; }
  .purchase-row { flex-wrap: wrap; }
  .purchase-row .qty { order: 1; }
  .purchase-row #pdpAdd { order: 2; flex: 1 1 auto; }
  .purchase-row .btn-wish { order: 3; flex: 1 1 auto; }
  .perks { grid-template-columns: 1fr; gap: 8px; }
  .tabs { flex-wrap: wrap; }
  .tab-btn { padding: 10px 12px; font-size: var(--fs-sm); }
  .spec-table th { width: 120px; padding: 10px 12px; }
  .spec-table td { padding: 10px 12px; }
  .rev-form { padding: 16px; }
  .cart-summary { position: static; }
}
@media (max-width: 560px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { gap: 10px; }
  .cat-tile .img i { font-size: var(--fs-4xl); }
  .slide h2 { font-size: var(--fs-4xl); }
  .slides { height: 340px; }
  .slide-content { padding: 0 18px; }
  .slide-eyebrow { font-size: var(--fs-xs); }
  .slide p { font-size: var(--fs-md); margin: 12px 0 20px; }
  .hero-dots { bottom: 10px; }
  .newsletter .container { flex-direction: column; text-align: center; }
  .info-band { padding: 16px; }
  .sum-row { font-size: var(--fs-sm); }
}
@media (max-width: 400px) {
  .prod-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .slide h2 { font-size: var(--fs-3xl); }
  .slides { height: 320px; }
  .header-row { padding: 10px; }
  .logo-text .l1 { font-size: var(--fs-xl); }
  .logo-text .l2 { letter-spacing: 2px; font-size: var(--fs-2xs); }
  .container { padding: 0 14px; }
  .section-head h2 { font-size: var(--fs-xl); }
  .tab-btn { padding: 8px 9px; font-size: var(--fs-xs); letter-spacing: .5px; }
  .review { padding: 12px; gap: 10px; }
  .rev-big span { font-size: var(--fs-5xl); }
}

/* ============ FOCUS-VISIBLE GLOBAL ============ */
:focus-visible {
  outline: 2px solid var(--bp-gold);
  outline-offset: 2px;
}
a:focus-visible { outline-color: var(--bp-green); }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; border-color: var(--bp-green); box-shadow: 0 0 0 3px rgba(20, 64, 44, .15); }
.btn:focus-visible, .add-btn:focus-visible, .btn-add-cart:focus-visible, .btn-bin:focus-visible,
.btn-outline:focus-visible, .btn-green:focus-visible, .btn-red:focus-visible, .btn-back:focus-visible,
.btn-next:focus-visible, .btn-wish:focus-visible, .wish:focus-visible, .btn-visit:focus-visible {
  outline: 2px solid var(--bp-gold);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(253, 185, 19, .25);
}
.nav-list > li > a:focus-visible, .dropdown a:focus-visible,
.chip:focus-visible, .tab-btn:focus-visible, .pagination a:focus-visible,
.hero-dots button:focus-visible, .share-btn:focus-visible,
.gallery-thumbs button:focus-visible, .g-arrow:focus-visible, .g-zoom:focus-visible,
.ci-qty button:focus-visible, .size-option:focus-visible, .swatch:focus-visible,
.promo-row input:focus-visible {
  outline: 2px solid var(--bp-gold);
  outline-offset: 2px;
}
.sidebar label:focus-within { color: var(--bp-green); }

/* ============ FORM VALIDATION STATES ============ */
.form-group input.error, .form-group textarea.error, .form-group select.error {
  border-color: #c8102e;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .12);
}
.form-group input.success, .form-group textarea.success {
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, .1);
}
.form-group .error-msg {
  color: #c8102e;
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-top: 4px;
  display: none;
}
.form-group .error-msg.show { display: block; }
.form-group label .required { color: #c8102e; margin-left: 2px; }
input::placeholder, textarea::placeholder {
  color: #999;
  opacity: 1;
}
input:disabled, textarea:disabled, select:disabled {
  background: #f5f3ec;
  color: #aaa;
  cursor: not-allowed;
}

/* ============ HOVER TRANSITIONS ============ */
.topbar a { transition: color .2s ease; }
.dropdown a { transition: color .2s ease; }
.main-nav .nav-list > li > a { transition: background .2s ease, color .2s ease; }
.header-search button { transition: background .2s ease; }
.hact { transition: background .15s ease, color .15s ease; }
.hact i { transition: color .15s ease; }
.btn { transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .15s ease; }
.add-btn { transition: background .2s ease, color .2s ease; }
.btn-add-cart { transition: background .2s ease, color .2s ease; }
.chip { transition: border-color .2s ease, color .2s ease, background .2s ease; }
.pagination a { transition: border-color .2s ease, color .2s ease, background .2s ease; }
.footer-col a { transition: color .2s ease; }
.footer-social a { transition: background .2s ease, color .2s ease, transform .15s ease; }
.share-btn { transition: transform .15s ease, opacity .15s ease; }
.breadcrumb a { transition: color .2s ease; }
.ci-qty button { transition: background .15s ease, color .15s ease; }
.tag-cloud a { transition: background .2s ease, color .2s ease, border-color .2s ease; }
.read-more { transition: gap .2s ease; }
.gallery-thumbs button { transition: border-color .2s ease; }
.promo-row input { transition: border-color .2s ease, box-shadow .2s ease; }
.size-option { transition: border-color .15s ease, color .15s ease; }
.swatch { transition: border-color .15s ease, box-shadow .15s ease; }

/* ============ SELECTION & SCROLLBAR ============ */
::selection {
  background: var(--bp-gold);
  color: var(--bp-green-dark);
}
::-moz-selection {
  background: var(--bp-gold);
  color: var(--bp-green-dark);
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bp-light); }
::-webkit-scrollbar-thumb { background: #c5c0b4; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #999; }

/* ============ SKELETON LOADING ============ */
.skeleton {
  background: linear-gradient(90deg, #e8e5dd 25%, #f0ede6 37%, #e8e5dd 63%);
  background-size: 400% 100%;
  animation: skeletonShimmer 1.4s ease infinite;
  border-radius: 6px;
}
.skeleton-text { height: 14px; margin-bottom: 8px; }
.skeleton-text.w60 { width: 60%; }
.skeleton-text.w80 { width: 80%; }
.skeleton-img { aspect-ratio: 1/1; }
.skeleton-card { background: #fff; border-radius: 8px; padding: 14px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
@keyframes skeletonShimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============ TOUCH HOVER FIX ============ */
@media (hover: none) {
  .product-card:hover, .cat-tile:hover, .blog-card:hover, .deal-card:hover,
  .featured-post:hover { transform: none; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
  .product-card:hover .pimg img, .blog-card:hover .bimg img { transform: none; }
  .hact:hover { background: transparent; color: #333; }
  .brand-logo:hover { opacity: .75; color: #555; }
  .footer-social a:hover { transform: none; }
}

/* ============ PREFERS-REDUCED-MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ PRINT STYLESHEET ============ */
@media print {
  .topbar, .main-header, .main-nav, .mobile-nav, .overlay,
  .promo-bar, .hero, .hero-dots, .newsletter, footer,
  .chat-widget, #loadBar, .menu-toggle, .header-actions,
  .sidebar, .blog-sidebar, .chat-launcher, .chat-panel,
  .breadcrumb, .share-row, .post-nav, .tabs, .btn,
  .cart-summary, .co-steps, .co-nav, .perks,
  .deal-grid, .info-bands, .brand-strip, .pagination,
  .review-form, .comment-form { display: none !important; }

  body { background: #fff; color: #000; font-size: 12pt; }
  .container { max-width: 100%; padding: 0; }
  a { color: #000; text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #555; }
  .product-card, .blog-card, .cart-item, .review, .comment,
  .dash-order, .ebay-card { break-inside: avoid; }
  img { max-width: 100% !important; }
  .post-body { font-size: 12pt; }
  .page-hero { background: none !important; color: #000; padding: 10px 0; }
  h1, h2, h3 { color: #000; }
}

/* ============ OVERSCROLL BEHAVIOR ============ */
.glb, .mobile-nav, .chat-panel, .modal {
  overscroll-behavior: contain;
}

/* ============ TEXT SIZE ADJUST ============ */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* ============ VIDEOS ============ */
.vid-card { background:#fff; border-radius:12px; overflow:hidden; border:1px solid var(--bp-border); cursor:pointer; transition:box-shadow .25s ease, transform .25s ease; }
.vid-card:hover { box-shadow:0 8px 24px rgba(0,0,0,.1); transform:translateY(-3px); }
.vid-thumb { position:relative; aspect-ratio:16/9; background:#111; overflow:hidden; }
.vid-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.vid-thumb-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:#555; font-size:48px; background:#1a1a1a; }
.vid-play { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.35); opacity:0; transition:opacity .25s ease; }
.vid-card:hover .vid-play { opacity:1; }
.vid-play i { width:56px; height:56px; display:flex; align-items:center; justify-content:center; background:var(--bp-red); color:#fff; border-radius:50%; font-size:20px; padding-left:3px; }
.vid-duration { position:absolute; bottom:8px; right:8px; background:rgba(0,0,0,.75); color:#fff; font-size:12px; font-weight:700; padding:3px 8px; border-radius:4px; }
.vid-info { padding:16px; }
.vid-title { font-size:var(--fs-md); font-weight:700; color:#111; margin:0 0 6px; line-height:1.3; }
.vid-desc { font-size:var(--fs-sm); color:#666; margin:0 0 8px; line-height:1.5; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.vid-meta { font-size:12px; color:#999; }

.vid-modal { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.85); }
.vid-modal-backdrop { position:absolute; inset:0; }
.vid-modal-content { position:relative; width:94%; max-width:1200px; background:#000; border-radius:12px; overflow:hidden; z-index:1; }
.vid-modal-content video { width:100%; display:block; border-radius:12px 12px 0 0; max-height:86vh; background:#000; }
.vid-modal-content iframe { width:100%; aspect-ratio:16/9; height:auto; max-height:86vh; border:0; display:block; }
.vid-modal-x { position:absolute; top:12px; right:12px; width:36px; height:36px; border-radius:50%; background:rgba(0,0,0,.6); color:#fff; border:none; font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:2; transition:background .2s ease; }
.vid-modal-x:hover { background:var(--bp-red); }
.vid-modal-info { padding:16px 20px; color:#fff; }
.vid-modal-info h3 { margin:0 0 6px; font-size:var(--fs-lg); font-weight:700; }
.vid-modal-info p { margin:0; font-size:var(--fs-sm); color:#ccc; line-height:1.5; }

/* ============ VIDEO LINKS, STRIPS & SINGLE POST ============ */
a.vid-card { text-decoration:none; color:inherit; display:block; }
.vid-strip-section { padding:40px 0 8px; }
.vid-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:900px) { .vid-strip { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px) { .vid-strip { grid-template-columns:1fr; } }
.vid-card-sm .vid-thumb { aspect-ratio:16/9; }
.vid-frame { position:relative; width:100%; aspect-ratio:16/9; background:#000; border-radius:12px; overflow:hidden; }
.vid-frame iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-single { max-width:960px; margin:24px auto 0; }
.video-single-player { position:relative; cursor:zoom-in; border-radius:12px; }
.video-single-player:hover .vp-zoom { opacity:1; transform:scale(1.05); }
.vp-zoom { position:absolute; top:12px; right:12px; z-index:2; width:42px; height:42px; border-radius:50%; background:rgba(0,0,0,.65); color:#fff; border:none; font-size:17px; display:flex; align-items:center; justify-content:center; cursor:pointer; opacity:.75; transition:all .2s ease; backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); }
.vp-zoom:hover { background:var(--bp-red); opacity:1 !important; transform:scale(1.08) !important; }
.video-single-player video.vp-file { width:100%; aspect-ratio:16/9; background:#000; border-radius:12px; display:block; }
.video-single-info h1 { font-size:var(--fs-3xl); font-weight:900; margin:20px 0 8px; color:#111; }
.video-single-meta { display:flex; flex-wrap:wrap; gap:18px; color:#777; font-size:var(--fs-sm); margin-bottom:14px; }
.video-single-meta i { color:var(--bp-green); margin-right:5px; }
.video-single-desc { font-size:var(--fs-base); color:#444; line-height:1.7; }

@media (max-width:600px) {
  .vid-modal-content { width:96%; }
  .vid-thumb { aspect-ratio:16/10; }
}

/* ============ BACK TO TOP ============ */
#backToTop { position:fixed; bottom:96px; right:28px; width:48px; height:48px; border-radius:50%; background:var(--bp-charcoal); color:#fff; border:none; font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transform:translateY(20px); transition:all .3s ease; z-index:998; box-shadow:0 4px 14px rgba(0,0,0,.25); }
@media (max-width:640px) {
  #backToTop { bottom:80px; right:12px; width:44px; height:44px; }
}
#backToTop.show { opacity:1; visibility:visible; transform:translateY(0); }
#backToTop:hover { background:var(--bp-red); transform:translateY(-3px); }

/* ============ TESTIMONIALS ============ */
.testimonials-fullwidth { width:100vw; margin-left:calc(50% - 50vw); }
.testimonial-marquee { overflow:hidden; position:relative; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
.testimonial-track { display:flex; gap:20px; width:max-content; animation:testimonialScroll 45s linear infinite; }
.testimonial-marquee:hover .testimonial-track { animation-play-state:paused; }
@keyframes testimonialScroll { from { transform:translateX(0); } to { transform:translateX(calc(-50% - 10px)); } }
@media (prefers-reduced-motion:reduce) { .testimonial-track { animation:none; } .testimonial-marquee { overflow-x:auto; } }
.testimonial-card { background:#fff; border-radius:12px; padding:24px; border:1px solid var(--bp-border); transition:box-shadow .3s ease, transform .3s ease; position:relative; overflow:hidden; width:min(400px,85vw); flex-shrink:0; box-sizing:border-box; }
.testimonial-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg, var(--bp-red), var(--bp-gold)); transform:scaleX(0); transform-origin:left; transition:transform .3s ease; }
.testimonial-card:hover { box-shadow:0 12px 32px rgba(0,0,0,.1); transform:translateY(-4px); }
.testimonial-card:hover::before { transform:scaleX(1); }
.testimonial-quote { color:var(--bp-green); font-size:24px; opacity:.2; position:absolute; top:16px; right:20px; }
.testimonial-stars { font-size:14px; color:var(--bp-gold-dark); margin-bottom:12px; }
.testimonial-text { font-size:var(--fs-sm); color:#555; line-height:1.7; margin:0 0 16px; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:12px; border-top:1px solid #f0f0f0; padding-top:14px; }
.testimonial-avatar { width:48px; height:48px; border-radius:50%; object-fit:cover; flex-shrink:0; border:2px solid var(--bp-border); }
.testimonial-avatar.fallback { width:48px; height:48px; border-radius:50%; background:var(--bp-charcoal); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:18px; flex-shrink:0; border:2px solid var(--bp-border); }
.testimonial-name { font-size:var(--fs-sm); font-weight:700; color:#111; }
.testimonial-role { font-size:11px; color:var(--bp-green); font-weight:600; text-transform:uppercase; letter-spacing:.5px; margin-top:2px; }

/* ============ HOME VIDEO GRID ============ */
.home-video-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.home-vid-card { border-radius:12px; overflow:hidden; background:#fff; border:1px solid var(--bp-border); text-decoration:none; color:inherit; transition:box-shadow .25s ease, transform .25s ease; }
.home-vid-card:hover { box-shadow:0 8px 24px rgba(0,0,0,.1); transform:translateY(-3px); }
.home-vid-thumb { position:relative; aspect-ratio:16/9; background:#111; overflow:hidden; }
.home-vid-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.home-vid-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:#555; font-size:32px; background:#1a1a1a; }
.home-vid-play { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.35); opacity:0; transition:opacity .25s ease; }
.home-vid-card:hover .home-vid-play { opacity:1; }
.home-vid-play i { width:44px; height:44px; display:flex; align-items:center; justify-content:center; background:var(--bp-red); color:#fff; border-radius:50%; font-size:16px; padding-left:2px; }
.home-vid-dur { position:absolute; bottom:6px; right:6px; background:rgba(0,0,0,.75); color:#fff; font-size:11px; font-weight:700; padding:2px 6px; border-radius:4px; }
.home-vid-info { padding:12px 14px; }
.home-vid-info h3 { font-size:var(--fs-sm); font-weight:700; margin:0 0 4px; color:#111; line-height:1.3; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.home-vid-info p { font-size:12px; color:#888; margin:0; line-height:1.4; display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical; overflow:hidden; }

/* ============ TRUST CARDS ============ */
.trust-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.trust-card { text-align:center; padding:28px 20px; border-radius:12px; background:#f7f7f5; border:1px solid var(--bp-border); transition:box-shadow .25s ease, transform .25s ease; }
.trust-card:hover { box-shadow:0 6px 20px rgba(0,0,0,.06); transform:translateY(-2px); }
.trust-icon { width:56px; height:56px; border-radius:50%; background:var(--bp-green); color:#fff; display:flex; align-items:center; justify-content:center; font-size:22px; margin:0 auto 14px; }
.trust-card h3 { font-size:var(--fs-md); font-weight:700; margin:0 0 6px; color:#111; }
.trust-card p { font-size:var(--fs-sm); color:#666; margin:0; line-height:1.5; }

/* ============ RESPONSIVE: NEW SECTIONS ============ */
@media (max-width:1024px) {
  .testimonial-track { animation-duration:35s; }
  .home-video-grid { grid-template-columns:repeat(2,1fr); }
  .trust-cards { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px) {
  .testimonial-track { animation-duration:28s; }
  .home-video-grid { grid-template-columns:1fr; }
  .trust-cards { grid-template-columns:1fr; }
  .promo-banner { padding:32px 20px !important; text-align:center; flex-direction:column; }
}

/* ============ ORDER CONFIRMATION v2 ============ */
.ord-wrap {
  max-width: 820px; margin: 0 auto; position: relative; animation: celebrateIn .55s ease both;
  --ord-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ord-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@keyframes ordPop { 0% { transform: scale(0); } 70% { transform: scale(1.12); } 100% { transform: scale(1); } }
@keyframes ordRing { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(2.1); opacity: 0; } }
@keyframes ordConfetti {
  0% { transform: translateY(-30px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(560px) rotate(660deg); opacity: 0; }
}

.ord-confetti { position: absolute; inset: -40px 0 auto 0; height: 300px; pointer-events: none; overflow: hidden; z-index: 3; }
.ord-confetti i { position: absolute; top: 0; display: block; animation: ordConfetti linear both; }

.ord-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid #e5e8ec; box-shadow: 0 14px 44px rgba(16,32,48,.12);
}

.ord-hero {
  position: relative; text-align: center; color: #fff; overflow: hidden;
  background: linear-gradient(140deg, #14243a 0%, #1f3a52 55%, #2c4d6e 100%);
  padding: 30px 24px 44px;
}
.ord-hills { position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; height: 70px; }
.ord-check {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 12px; position: relative;
  background: rgba(255,255,255,.14); border: 2px solid rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 25px; color: #fff;
  animation: ordPop .5s cubic-bezier(.34,1.56,.64,1) .25s both;
}
.ord-check::before, .ord-check::after {
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5); animation: ordRing 1.6s ease-out infinite;
}
.ord-check::after { animation-delay: .55s; }
.ord-title {
  margin: 2px 0 5px; font-family: var(--ord-serif);
  font-size: var(--fs-3xl); font-weight: 700; letter-spacing: .2px; line-height: 1.15;
}
.ord-sub { margin: 0 0 18px; color: #d7e2ee; font-size: var(--fs-md); font-weight: 400; }

.ord-num {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: #14402c; border: none; cursor: pointer;
  border-radius: 10px; padding: 8px 16px; box-shadow: 0 6px 18px rgba(0,0,0,.16);
  transition: transform .15s ease;
  font-family: inherit; position: relative; z-index: 2;
}
.ord-num:hover { transform: translateY(-1px); }
.ord-num .label { display: block; font-size: var(--fs-2xs); color: #98a29b; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 800; text-align: left; }
.ord-num .number {
  display: block; font-family: var(--ord-mono);
  font-size: var(--fs-lg); font-weight: 600; color: #c8102e;
  text-align: left; line-height: 1.2; letter-spacing: .4px;
}
.ord-copy-icon { font-size: var(--fs-base); color: #9aa89f; }

.ord-body { padding: 0 22px 22px; }
.ord-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: -26px; position: relative; z-index: 2; }

.ord-panel {
  background: #fbfcfa; border: 1px solid #e6e9e2; border-radius: 12px; padding: 14px 15px 13px;
  text-align: left;
}
.ord-panel-head {
  display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: var(--fs-2xs);
  color: #37423a; margin-bottom: 9px; text-transform: uppercase; letter-spacing: .9px;
}
.ord-panel-head .ph-duotone { font-size: 16px; color: #3d6a8f; }
.ord-panel-head.amber { color: #7a5b00; } .ord-panel-head.amber .ph-duotone { color: #eab308; }
.ord-panel-head.green { color: #1f3a52; } .ord-panel-head.green .ph-duotone { color: #3d6a8f; }

.ord-pay-amount { font-size: var(--fs-sm); color: #5c4a10; margin-bottom: 8px; }
.ord-pay-amount b { font-family: var(--ord-mono); font-size: var(--fs-xl); font-weight: 600; color: #1d1d1d; letter-spacing: -.3px; }

.ord-copy-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1.5px dashed #d9c07a; border-radius: 7px;
  padding: 5px 11px; font-weight: 600; color: #14402c; cursor: pointer;
  font-family: var(--ord-mono); font-size: var(--fs-base);
  transition: background .15s ease, transform .15s ease;
}
.ord-copy-chip:hover { background: #fdf9ee; transform: translateY(-1px); }
.ord-copy-chip.dark { border-color: #b9c4bd; }
.ord-copy-chip .ph { color: #a09474; font-size: var(--fs-sm); }

.ord-instructions { font-size: var(--fs-base); color: #5c4a10; line-height: 1.65; margin: 10px 0 0; }
.ord-txn { margin-top: 11px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ord-txn > span { font-size: var(--fs-2xs); font-weight: 800; color: #98a29b; text-transform: uppercase; letter-spacing: 1.1px; }
.ord-note { font-size: var(--fs-xs); color: #98a29b; margin: 9px 0 0; line-height: 1.55; }

.ord-delivery-date {
  display: flex; align-items: center; gap: 8px;
  background: #eef3f8; border: 1px solid #d9e2eb; border-radius: 8px;
  padding: 9px 12px; margin-bottom: 10px;
}
.ord-delivery-date .ph-fill { color: #3d6a8f; font-size: var(--fs-lg); }
.ord-delivery-date span {
  font-family: var(--ff-body); font-size: var(--fs-md);
  font-weight: 800; color: #1f3a52; letter-spacing: .2px; white-space: nowrap;
}
.ord-mini-tags { display: flex; flex-direction: column; gap: 5px; }
.ord-mini-tags span { font-size: var(--fs-base); color: #5f6b76; display: flex; align-items: center; gap: 6px; }
.ord-mini-tags .ph-bold { color: #b7791f; }
.ord-help {
  margin-top: 11px; padding-top: 10px; border-top: 1px dashed #e0e4e8;
  font-size: var(--fs-xs); color: #8a949d; line-height: 1.6;
}
.ord-help .ph-duotone { color: #3d6a8f; font-size: 14px; vertical-align: -2px; margin-right: 3px; }
.ord-help b { color: #1f3a52; font-family: var(--ord-mono); font-weight: 600; }

.ord-receipt {
  margin: 14px 0 20px; background: #fbfcfa; border: 1px solid #e6e9e2;
  border-radius: 12px; overflow: hidden;
}
.ord-receipt-head {
  display: flex; justify-content: space-between; padding: 10px 15px;
  background: #f2f6f0; font-weight: 800; font-size: var(--fs-2xs); color: #37423a;
  text-transform: uppercase; letter-spacing: .9px;
}
.ord-receipt-head span:last-child { color: #5f6b76; font-weight: 700; text-transform: none; letter-spacing: .2px; }
.ord-line {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 9px 15px; font-size: var(--fs-base); color: #333;
  border-top: 1px dashed #e6e9e2;
}
.ord-line:first-of-type { border-top: none; }
.ord-line-name em { font-style: normal; color: #99a29b; font-size: var(--fs-xs); }
.ord-line-price { font-family: var(--ord-mono); font-weight: 500; white-space: nowrap; letter-spacing: -.2px; }
.ord-line.discount span { color: #c8102e; font-weight: 700; }
.ord-line .free { color: #b7791f; font-weight: 800; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .5px; }
.ord-total {
  display: flex; justify-content: space-between; padding: 11px 15px;
  background: #1c3049; color: #fff; font-weight: 800; font-size: var(--fs-base);
}
.ord-total span:last-child { font-family: var(--ord-mono); font-size: var(--fs-lg); font-weight: 600; }

/* Navy/gold override for the action buttons inside the confirmation only */
.ord-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ord-actions .btn {
  padding: 9px 18px; font-size: var(--fs-sm); border-radius: 8px;
}
.ord-wrap .btn-green {
  background: linear-gradient(135deg, #1f3a52, #2c4d6e);
  box-shadow: 0 3px 10px rgba(31,58,82,.22);
}
.ord-btn-ghost {
  border-color: #c6cdd3 !important; color: #37424b !important;
}

@media (max-width: 700px) {
  .ord-hero { padding: 24px 16px 38px; }
  .ord-grid { grid-template-columns: 1fr; }
  .ord-body { padding: 0 14px 18px; }
  .co-grid2, .co-grid3 { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   LAYOUT POLISH PASS — global consistency & responsiveness
   ============================================================ */

/* -- 1. Kill accidental horizontal scrollbars.
   The full-bleed testimonial band uses a 100vw trick, which includes
   the scrollbar width on Windows and causes sideways scrolling.
   `clip` prevents overflow without creating a scroll container,
   so position:sticky (header, cart summary, blog sidebar) keeps working. */
html, body { overflow-x: clip; }

/* -- 2. Anchor jumps should land below the sticky header, not under it. */
[id] { scroll-margin-top: 150px; }

/* -- 3. Card text must never blow out its grid track. */
.product-card, .blog-card, .cat-tile, .deal-card, .info-band,
.trust-card, .home-vid-card, .vid-card, .testimonial-card {
  min-width: 0;
  overflow-wrap: break-word;
}

/* -- 4. Mega-dropdowns on the right side of the nav must open leftwards
   so they never spill past the viewport edge. */
.main-nav .nav-list > li:nth-last-child(-n+4) .dropdown {
  left: auto;
  right: 0;
}
/* Between desktop and tablet the 10-item nav gets tight — condense it
   instead of letting it overflow horizontally. */
@media (min-width: 901px) and (max-width: 1180px) {
  .main-nav .nav-list > li > a {
    padding: 12px 11px;
    font-size: var(--fs-sm);
    letter-spacing: .2px;
  }
}

/* -- 5. Utility bar: stack and center the two link groups on small
   screens instead of letting them wrap awkwardly side by side. */
@media (max-width: 700px) {
  .topbar .container {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .topbar ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 14px;
  }
}

/* -- 6. Mobile browsers zoom into any input smaller than 16px.
   Bump form controls on small screens to keep the page still. */
@media (max-width: 560px) {
  .header-search input, .newsletter input, .side-search input,
  .promo-row input, .ci-qty input, .form-group input, .form-group select {
    font-size: 16px;
  }
}

/* -- 7. Newsletter form spans the column once stacked on mobile. */
@media (max-width: 560px) {
  .newsletter form { width: 100%; max-width: none; }
}

/* -- 8. Cart rows: collapse gracefully on narrow phones. */
@media (max-width: 520px) {
  .cart-items { padding: 14px; }
  .cart-item { grid-template-columns: 72px 1fr auto; gap: 12px; }
  .cart-item .ci-img { width: 72px; height: 72px; }
  .cart-item .ci-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
}

/* -- 9. Slider dots are tiny — give them an invisible, larger tap area. */
.hero-dots button { position: relative; }
.hero-dots button::after { content: ""; position: absolute; inset: -8px; }

/* -- 10. Slightly tighter vertical rhythm on phones. */
@media (max-width: 560px) {
  .section { margin-bottom: 34px; }
  .hero { margin-bottom: 30px; }
}

/* -- 11. Wide spec tables scroll inside their own box on phones
   instead of stretching the page. */
@media (max-width: 560px) {
  .spec-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ============================================================
   HEADER FEATURES — support line, search suggest, mini cart
   ============================================================ */

/* -- Topbar support line -- */
.topbar-support { display: flex; align-items: center; gap: 16px; }
.topbar-support a {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--bp-gold); white-space: nowrap;
}
.topbar-support a i { font-size: var(--fs-md); }
.topbar-support a:hover { color: #fff; }
.topbar-support .tb-hours {
  display: inline-flex; align-items: center; gap: 5px;
  color: #b8b8b8; white-space: nowrap;
}
.topbar-support .tb-sep { color: #b8b8b8; opacity: .6; }
.topbar-support a.tb-email { font-weight: 600; }
@media (max-width: 1180px) { .topbar-support .tb-hours { display: none; } }

/* -- Support contact on phones: stack phone and email into two
   centered lines, hide the dot separator, truncate long emails. */
@media (max-width: 700px) {
  .topbar-support {
    flex-direction: column;
    align-items: center;
    gap: 3px;
    width: 100%;
    padding-bottom: 6px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .topbar-support .tb-sep { display: none; }
  .topbar-support a {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* -- Search autocomplete -- */
.header-search { position: relative; }
.search-suggest {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--bp-border); border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
  z-index: 1200; overflow: hidden;
}
.ss-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-bottom: 1px solid #f1efe9;
}
.ss-item:hover, .ss-item.active { background: var(--bp-light); }
.ss-img {
  width: 48px; height: 48px; flex-shrink: 0; overflow: hidden;
  background: var(--bp-light); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.ss-img img { width: 100%; height: 100%; object-fit: cover; }
.ss-body { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ss-name {
  font-size: var(--fs-base); font-weight: 600; color: #222; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.ss-meta { font-size: var(--fs-sm); color: var(--bp-gray); }
.ss-meta b { color: var(--bp-green); }
.ss-meta s { color: #a9a59a; margin-left: 4px; }
.ss-go { color: #c2beb2; transition: color .15s ease, transform .15s ease; }
.ss-item:hover .ss-go, .ss-item.active .ss-go { color: var(--bp-red); transform: translateX(3px); }
.search-suggest mark {
  background: rgba(253, 185, 19, .45); color: inherit;
  padding: 0 1px; border-radius: 2px;
}
.ss-empty {
  padding: 20px 16px; text-align: center;
  color: var(--bp-gray); font-size: var(--fs-base);
}
.ss-empty i { font-size: var(--fs-xl); vertical-align: -3px; margin-right: 6px; }
.ss-all {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 14px; background: var(--bp-soft);
  font-size: var(--fs-base); font-weight: 800; color: var(--bp-green);
}
.ss-all:hover { background: var(--bp-green); color: #fff; }

/* -- Mini cart preview -- */
.hact-wrap { position: relative; }
.mini-cart {
  position: absolute; top: calc(100% + 12px); right: 0;
  width: min(340px, calc(100vw - 32px));
  background: #fff; border: 1px solid var(--bp-border); border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
  z-index: 1200; padding: 8px;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
.mini-cart.open { opacity: 1; transform: translateY(0); }
.mc-items { max-height: 320px; overflow-y: auto; overscroll-behavior: contain; }
.mc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px; border-radius: 8px;
}
.mc-item:hover { background: var(--bp-light); }
.mc-thumb {
  width: 54px; height: 54px; flex-shrink: 0; overflow: hidden;
  background: var(--bp-light); border-radius: 8px;
}
.mc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mc-info { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.mc-name {
  font-size: var(--fs-sm); font-weight: 700; color: #222; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mc-meta { font-size: var(--fs-xs); color: var(--bp-gray); }
.mc-line { font-size: var(--fs-sm); font-weight: 800; color: var(--bp-green); white-space: nowrap; }
.mc-more {
  margin-top: 4px; padding: 7px 10px 5px; text-align: center;
  border-top: 1px dashed var(--bp-border);
  font-size: var(--fs-xs); color: var(--bp-gray);
}
.mc-empty { padding: 30px 16px; text-align: center; color: var(--bp-gray); font-size: var(--fs-base); }
.mc-empty i { display: block; font-size: var(--fs-5xl); margin-bottom: 10px; color: #cfcabc; }
.mc-footer {
  border-top: 2px solid var(--bp-border);
  margin-top: 6px; padding-top: 10px;
  display: grid; gap: 8px;
}
.mc-subrow {
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: var(--fs-base); font-weight: 700; color: #444;
  padding: 0 4px 2px;
}
.mc-subrow strong { font-size: var(--fs-lg); color: var(--bp-green); font-weight: 900; }
.mc-footer .btn { width: 100%; text-align: center; padding: 11px; }
/* Hover previews are a pointer-device affordance */
@media (hover: none), (max-width: 900px) {
  .mini-cart { display: none !important; }
}

/* ============================================================
   HOMEPAGE HUNTING BANNER
   ============================================================ */
.hunt-banner {
  position: relative; display: block; border-radius: 12px;
  overflow: hidden; min-height: clamp(280px, 38vw, 430px);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.hunt-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s ease;
}
.hunt-banner:hover img { transform: scale(1.04); }
.hunt-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,24,16,.78) 0%, rgba(8,24,16,.42) 48%, rgba(8,24,16,0) 75%);
}
.hunt-banner-copy {
  position: absolute; z-index: 1; top: 50%; transform: translateY(-50%);
  left: clamp(20px, 4vw, 52px); max-width: min(540px, 82%); color: #fff;
}
.hb-kicker {
  display: inline-block; font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--bp-gold-dark); margin-bottom: 10px;
}
.hunt-banner-copy h2 {
  font-size: clamp(26px, 4vw, 44px); font-weight: 900; text-transform: uppercase;
  letter-spacing: .5px; line-height: 1.08; margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.hb-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bp-red); color: #fff; font-weight: 800;
  padding: 12px 22px; border-radius: 999px; font-size: var(--fs-sm);
  text-transform: uppercase; letter-spacing: 1px;
  transition: background .2s ease, transform .2s ease;
}
.hb-cta i { font-size: var(--fs-md); }
.hunt-banner:hover .hb-cta { background: #a80d25; transform: translateX(4px); }
@media (max-width: 700px) {
  .hunt-banner { min-height: 240px; }
  .hunt-banner::after {
    background: linear-gradient(180deg, rgba(8,24,16,.1) 30%, rgba(8,24,16,.78) 100%);
  }
  .hunt-banner-copy {
    top: auto; bottom: 18px; transform: none; left: 18px; right: 18px; max-width: none;
  }
}

/* ============================================================
   DEPARTMENT SLIDESHOW BANNER
   ============================================================ */
.banner-slider {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.banner-slider .bs-slide { border-radius: 0; box-shadow: none; display: none; }
.banner-slider .bs-slide.active { display: block; animation: bsFade .55s ease; }
@keyframes bsFade { from { opacity: .3; } to { opacity: 1; } }
.bs-prev, .bs-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(12,26,19,.5); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background .2s ease;
}
.bs-prev:hover, .bs-next:hover { background: rgba(12,26,19,.82); }
.bs-prev { left: 14px; }
.bs-next { right: 14px; }
.bs-dots { position: absolute; bottom: 16px; right: 20px; display: flex; gap: 8px; z-index: 6; }
.bs-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.45); cursor: pointer; padding: 0; position: relative;
}
.bs-dots button::after { content: ""; position: absolute; inset: -8px; }
.bs-dots button.active { background: var(--bp-gold); }
@media (max-width: 700px) {
  .banner-slider .bs-slide { min-height: 240px; }
  .bs-dots { top: 14px; bottom: auto; right: 14px; }
  .bs-prev, .bs-next { display: none; }
}

/* ============ CONTACT PAGE ============ */

.ct-hero { position:relative; background:#14402c; padding:72px 20px 60px; text-align:center; overflow:hidden; }
.ct-hero::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(20,64,44,.7) 0%,rgba(20,64,44,.85) 100%); z-index:1; }
.ct-hero-bg { position:absolute; inset:0; background:url('img/hero/form.jpg') center/cover; opacity:.35; }
.ct-hero-inner { position:relative; z-index:2; max-width:600px; margin:0 auto; }
.ct-hero-badge { display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.15); backdrop-filter:blur(6px); padding:6px 16px; border-radius:20px; font-size:13px; font-weight:700; color:#fff; margin-bottom:16px; }
.ct-hero h1 { font-size:clamp(28px,4vw,42px); font-weight:900; color:#fff; margin:0 0 10px; line-height:1.15; }
.ct-hero p { color:rgba(255,255,255,.82); font-size:16px; margin:0 0 22px; }
.ct-hero-channels { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.ct-hero-ch { display:inline-flex; align-items:center; gap:6px; padding:10px 18px; border-radius:8px; font-size:14px; font-weight:700; color:#fff; background:rgba(255,255,255,.12); backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,.18); text-decoration:none; transition:all .18s; }
.ct-hero-ch:hover { background:rgba(255,255,255,.22); transform:translateY(-1px); }

.ct-channels-bar { background:#f8f6f0; padding:40px 0; }
.ct-ch-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.ct-ch-card { background:#fff; border:1px solid var(--bp-border); border-radius:14px; padding:24px 20px; text-align:center; transition:all .2s; }
.ct-ch-card:hover { box-shadow:0 8px 24px rgba(0,0,0,.07); transform:translateY(-3px); }
.ct-ch-icon { width:52px; height:52px; border-radius:14px; background:rgba(20,64,44,.07); color:var(--bp-green); display:flex; align-items:center; justify-content:center; font-size:24px; margin:0 auto 14px; }
.ct-ch-card h3 { font-size:15px; font-weight:800; color:var(--bp-charcoal); margin:0 0 4px; }
.ct-ch-card p { font-size:13px; color:var(--bp-gray); margin:0 0 8px; }
.ct-ch-card a { font-size:14px; font-weight:700; color:var(--bp-green); text-decoration:none; }
.ct-ch-card a:hover { text-decoration:underline; }

.ct-form-section { padding:56px 0 60px; }
.ct-form-wrap { display:grid; grid-template-columns:1fr 380px; gap:32px; align-items:start; }
.ct-form-left { background:#fff; border:1px solid var(--bp-border); border-radius:16px; padding:32px; }
.ct-fl-head h2 { font-size:22px; font-weight:900; color:var(--bp-green); margin:0 0 4px; }
.ct-fl-head p { color:var(--bp-gray); font-size:14px; margin:0 0 24px; }

.ct-field { margin-bottom:16px; }
.ct-field label { display:block; font-size:13px; font-weight:700; color:var(--bp-charcoal); margin-bottom:6px; }
.ct-field label i { color:var(--bp-green); margin-right:4px; font-size:14px; }
.ct-field input, .ct-field select, .ct-field textarea {
  width:100%; padding:12px 14px; border:1.5px solid var(--bp-border); border-radius:10px;
  font-size:14px; background:#fff; transition:all .18s; font-family:inherit; color:var(--bp-charcoal);
}
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus {
  outline:none; border-color:var(--bp-green); box-shadow:0 0 0 3px rgba(20,64,44,.08);
}
.ct-field textarea { resize:vertical; min-height:120px; }
.ct-field select { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; }
.ct-form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

.ct-submit { width:100%; padding:14px; background:var(--bp-green); color:#fff; border:none; border-radius:10px; font-size:15px; font-weight:800; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:8px; transition:all .18s; }
.ct-submit:hover { background:var(--bp-green-dark); transform:translateY(-1px); box-shadow:0 4px 12px rgba(20,64,44,.2); }

.ct-error-banner { background:#f8d7da; color:#721c24; border:1px solid #f5c6cb; border-radius:10px; padding:12px 16px; font-size:14px; font-weight:600; margin-bottom:18px; display:flex; align-items:center; gap:8px; }

.ct-msg { border-radius:10px; padding:13px 18px; margin-bottom:18px; font-weight:600; font-size:14px; display:flex; align-items:center; gap:8px; }
.ct-msg.ok { background:#d4edda; color:#155724; border:1px solid #c3e6cb; }
.ct-msg.err { background:#f8d7da; color:#721c24; border:1px solid #f5c6cb; }

.ct-success-box { text-align:center; padding:36px 20px; }
.ct-success-icon { font-size:52px; color:#28a745; margin-bottom:12px; }
.ct-success-box h3 { font-size:20px; font-weight:900; color:var(--bp-green); margin:0 0 8px; }
.ct-success-box p { color:var(--bp-gray); margin:0 0 20px; }

.ct-form-right { display:flex; flex-direction:column; gap:16px; }
.ct-info-card { background:#fff; border:1px solid var(--bp-border); border-radius:14px; padding:22px; }
.ct-info-icon { width:44px; height:44px; border-radius:12px; background:rgba(20,64,44,.07); color:var(--bp-green); display:flex; align-items:center; justify-content:center; font-size:20px; margin-bottom:12px; }
.ct-info-card h4 { font-size:15px; font-weight:800; color:var(--bp-charcoal); margin:0 0 6px; }
.ct-info-card p { font-size:13px; color:var(--bp-gray); line-height:1.65; margin:0; }

.ct-faq-link { background:#f8f6f0; border:1px solid var(--bp-border); border-radius:14px; padding:22px; text-align:center; }
.ct-faq-link p { font-size:14px; color:var(--bp-gray); margin:0 0 12px; font-weight:600; }
.ct-btn-outline { display:inline-flex; align-items:center; gap:6px; padding:10px 18px; border:1.5px solid var(--bp-green); border-radius:8px; font-size:14px; font-weight:700; color:var(--bp-green); background:#fff; text-decoration:none; cursor:pointer; transition:all .15s; font-family:inherit; }
.ct-btn-outline:hover { background:var(--bp-green); color:#fff; }

@media (max-width:900px) {
  .ct-ch-grid { grid-template-columns:repeat(2,1fr); }
  .ct-form-wrap { grid-template-columns:1fr; }
  .ct-form-right { order:-1; }
}
@media (max-width:560px) {
  .ct-ch-grid { grid-template-columns:1fr; }
  .ct-hero { padding:52px 16px 40px; }
  .ct-form-left { padding:22px 16px; }
  .ct-form-row-2 { grid-template-columns:1fr; }
}

/* ============ ACCOUNT / DASHBOARD ============ */

/* -- Auth Hero -- */
.ac-hero { position:relative; background:#14402c; padding:64px 20px 56px; text-align:center; overflow:hidden; }
.ac-hero::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(20,64,44,.7) 0%,rgba(20,64,44,.85) 100%); z-index:1; }
.ac-hero-bg { position:absolute; inset:0; background:url('img/hero/BPS_Hero_Desktop.avif') center/cover; opacity:.25; }
.ac-hero-inner { position:relative; z-index:2; max-width:540px; margin:0 auto; }
.ac-hero-badge { display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.15); backdrop-filter:blur(6px); padding:6px 16px; border-radius:20px; font-size:13px; font-weight:700; color:#fff; margin-bottom:14px; }
.ac-hero h1 { font-size:clamp(26px,4vw,40px); font-weight:900; color:#fff; margin:0 0 8px; line-height:1.15; }
.ac-hero p { color:rgba(255,255,255,.82); font-size:15px; margin:0; }

/* -- Auth Section -- */
.ac-auth { padding:48px 0 60px; background:#f8f6f0; }
.ac-auth-wrap { display:flex; gap:24px; justify-content:center; max-width:800px; margin:0 auto 32px; }
.ac-auth-card { flex:1; background:#fff; border:1px solid var(--bp-border); border-radius:16px; padding:32px 28px; display:flex; flex-direction:column; box-shadow:0 4px 20px rgba(0,0,0,.04); }
.ac-auth-head { text-align:center; margin-bottom:24px; }
.ac-auth-icon { width:56px; height:56px; border-radius:16px; background:rgba(20,64,44,.07); color:var(--bp-green); display:flex; align-items:center; justify-content:center; font-size:26px; margin:0 auto 14px; }
.ac-auth-icon.green { background:var(--bp-green); color:#fff; }
.ac-auth-head h2 { font-size:20px; font-weight:900; color:var(--bp-charcoal); margin:0 0 4px; }
.ac-auth-head p { font-size:13px; color:var(--bp-gray); margin:0; }
.ac-auth-form { flex:1; display:flex; flex-direction:column; }
.ac-field { margin-bottom:14px; }
.ac-field label { display:block; font-size:13px; font-weight:700; color:var(--bp-charcoal); margin-bottom:5px; }
.ac-field label i { color:var(--bp-green); margin-right:4px; font-size:14px; }
.ac-field input {
  width:100%; padding:12px 14px; border:1.5px solid var(--bp-border); border-radius:10px;
  font-size:14px; background:#fff; transition:all .18s; font-family:inherit;
}
.ac-field input:focus { outline:none; border-color:var(--bp-green); box-shadow:0 0 0 3px rgba(20,64,44,.08); }
.ac-submit { width:100%; padding:13px; border:none; border-radius:10px; font-size:15px; font-weight:800; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:8px; transition:all .18s; background:var(--bp-green); color:#fff; margin-top:auto; }
.ac-submit.green { background:var(--bp-green); color:#fff; }
.ac-submit:hover { background:var(--bp-green-dark); transform:translateY(-1px); box-shadow:0 4px 12px rgba(20,64,44,.2); }
.ac-auth-foot { text-align:center; margin-top:18px; font-size:14px; color:var(--bp-gray); }
.ac-auth-foot a { color:var(--bp-green); font-weight:700; text-decoration:none; }
.ac-auth-foot a:hover { text-decoration:underline; }
.ac-auth-perks { display:flex; justify-content:center; gap:32px; flex-wrap:wrap; }
.ac-perk { display:flex; align-items:center; gap:8px; font-size:14px; font-weight:700; color:var(--bp-gray); }
.ac-perk i { font-size:20px; color:var(--bp-green); }

/* -- Dashboard Hero -- */
.ac-dash-hero { position:relative; background:#14402c; padding:36px 0 32px; overflow:hidden; }
.ac-dash-hero::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(20,64,44,.65) 0%,rgba(20,64,44,.85) 100%); z-index:1; }
.ac-dash-hero-bg { position:absolute; inset:0; background:url('img/hero/hunting.jpg') center/cover; opacity:.2; }
.ac-dash-hero-inner { position:relative; z-index:2; }
.ac-dash-greeting { display:flex; align-items:center; gap:16px; }
.ac-dash-avatar { width:56px; height:56px; border-radius:16px; background:rgba(255,255,255,.2); backdrop-filter:blur(4px); color:#fff; font-weight:900; font-size:20px; display:flex; align-items:center; justify-content:center; flex-shrink:0; border:2px solid rgba(255,255,255,.25); }
.ac-dash-greeting h1 { font-size:clamp(20px,3vw,28px); font-weight:900; color:#fff; margin:0; line-height:1.2; }
.ac-dash-greeting p { color:rgba(255,255,255,.78); font-size:13px; margin:2px 0 0; }

/* -- Layout -- */
.ac-dash-container { padding:28px 0 60px; }
.ac-layout { display:grid; grid-template-columns:240px 1fr; gap:24px; align-items:start; }

/* -- Sidebar Nav -- */
.ac-side { position:sticky; top:80px; }
.ac-side-nav { background:#fff; border:1px solid var(--bp-border); border-radius:14px; overflow:hidden; box-shadow:0 2px 12px rgba(0,0,0,.03); }
.ac-side-link {
  display:flex; align-items:center; gap:10px; padding:12px 16px; font-size:14px; font-weight:600;
  color:#666; text-decoration:none; transition:all .15s; border:none; background:none; width:100%;
  text-align:left; cursor:pointer; font-family:inherit; border-left:3px solid transparent;
}
.ac-side-link:hover { background:#f7faf8; color:var(--bp-green); }
.ac-side-link.active { background:#eef6f0; color:var(--bp-green); font-weight:700; border-left-color:var(--bp-green); }
.ac-side-link i { font-size:18px; width:20px; text-align:center; flex-shrink:0; }
.ac-badge { margin-left:auto; background:var(--bp-green); color:#fff; font-size:11px; font-weight:700; padding:2px 8px; border-radius:10px; min-width:20px; text-align:center; line-height:1.4; }
.ac-side-divider { height:1px; background:var(--bp-border); margin:4px 12px; }
.ac-side-form { margin:0; }

/* -- Main Content -- */
.ac-main { min-width:0; }
.ac-section-head { margin-bottom:20px; }
.ac-section-head h2 { font-size:22px; font-weight:900; color:var(--bp-green); margin:0 0 2px; }
.ac-section-head p { margin:0; font-size:14px; color:var(--bp-gray); }
.ac-section-head > :last-child:not(h2):not(p) { margin-top:12px; }

/* -- Stats Row -- */
.ac-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:20px; }
.ac-stat { background:#fff; border:1px solid var(--bp-border); border-radius:14px; padding:18px; display:flex; align-items:center; gap:14px; transition:box-shadow .2s; }
.ac-stat:hover { box-shadow:0 6px 20px rgba(0,0,0,.06); }
.ac-stat-ic { width:48px; height:48px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.ac-stat-ic.green { background:rgba(20,64,44,.08); color:var(--bp-green); }
.ac-stat-ic.gold { background:rgba(196,164,106,.1); color:#a0834a; }
.ac-stat-ic.blue { background:rgba(59,130,246,.08); color:#3b82f6; }
.ac-stat-ic.purple { background:rgba(168,85,247,.08); color:#a855f7; }
.ac-stat-body { min-width:0; }
.ac-stat-n { display:block; font-size:20px; font-weight:900; color:var(--bp-charcoal); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ac-stat-l { display:block; font-size:12px; font-weight:600; color:var(--bp-gray); text-transform:uppercase; letter-spacing:.3px; margin-top:1px; }

/* -- Card -- */
.ac-card { background:#fff; border:1px solid var(--bp-border); border-radius:14px; padding:20px; box-shadow:0 2px 10px rgba(0,0,0,.03); }
.ac-card-head { font-size:15px; font-weight:800; color:var(--bp-charcoal); margin:0 0 14px; display:flex; align-items:center; gap:8px; }
.ac-card-head i { color:var(--bp-green); font-size:18px; }
.ac-card-foot { display:flex; align-items:center; justify-content:center; gap:4px; font-size:13px; font-weight:700; color:var(--bp-green); text-decoration:none; margin-top:14px; padding-top:12px; border-top:1px solid #f0ede6; }
.ac-card-foot:hover { text-decoration:underline; }

/* -- 2-Column -- */
.ac-2col { display:grid; grid-template-columns:1fr 1fr; gap:18px; }

/* -- Quick Actions -- */
.ac-actions { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.ac-action { display:flex; align-items:center; gap:12px; padding:14px; border:1px solid var(--bp-border); border-radius:12px; text-decoration:none; color:var(--bp-charcoal); font-size:13px; font-weight:700; transition:all .18s; }
.ac-action:hover { border-color:var(--bp-green); background:#f8fbf9; transform:translateY(-2px); box-shadow:0 4px 12px rgba(0,0,0,.06); }
.ac-action-ic { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.ac-action-ic.green { background:rgba(20,64,44,.07); color:var(--bp-green); }
.ac-action-ic.blue { background:rgba(59,130,246,.08); color:#3b82f6; }
.ac-action-ic.pink { background:rgba(236,72,153,.08); color:#ec4899; }
.ac-action-ic.orange { background:rgba(249,115,22,.08); color:#f97316; }

/* -- Mini Orders (Overview) -- */
.ac-mini-row { display:flex; justify-content:space-between; align-items:center; padding:11px 0; border-bottom:1px solid #f0ede6; }
.ac-mini-row:last-of-type { border-bottom:none; }
.ac-mini-left { display:flex; align-items:center; gap:10px; }
.ac-mini-id { font-weight:800; font-size:14px; color:var(--bp-charcoal); }
.ac-mini-date { font-size:13px; color:var(--bp-gray); }
.ac-mini-right { display:flex; align-items:center; gap:10px; }
.ac-mini-total { font-weight:800; font-size:14px; color:var(--bp-charcoal); }
.ac-pill { display:inline-block; padding:4px 12px; border-radius:20px; font-size:12px; font-weight:700; }
.ac-pill.pending { background:#fff3cd; color:#856404; }
.ac-pill.delivered { background:#d4edda; color:#155724; }
.ac-pill.cancelled { background:#f8d7da; color:#721c24; }
.ac-pill.active { background:var(--bp-green); color:#fff; }
.ac-pill-row { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:18px; }
.ac-pill:not(.active) { background:#f0ede6; color:#555; cursor:pointer; text-decoration:none; transition:all .15s; border:1px solid transparent; }
.ac-pill:not(.active):hover { border-color:var(--bp-green); color:var(--bp-green); }

/* -- Empty States -- */
.ac-empty-sm { color:var(--bp-gray); font-size:14px; text-align:center; padding:20px; }
.ac-empty-lg { text-align:center; padding:48px 20px; color:var(--bp-gray); }
.ac-empty-lg i { font-size:48px; color:var(--bp-border); display:block; margin-bottom:12px; }
.ac-empty-lg p { font-size:15px; margin:0; }

/* -- Buttons -- */
.ac-btn-green { display:inline-flex; align-items:center; gap:6px; padding:10px 20px; background:var(--bp-green); color:#fff; border:none; border-radius:8px; font-size:14px; font-weight:700; cursor:pointer; transition:all .15s; text-decoration:none; font-family:inherit; }
.ac-btn-green:hover { background:var(--bp-green-dark); }
.ac-btn-outline { display:inline-flex; align-items:center; gap:6px; padding:10px 18px; border:1.5px solid var(--bp-border); border-radius:8px; background:#fff; font-size:13px; font-weight:600; color:#666; cursor:pointer; text-decoration:none; transition:all .15s; font-family:inherit; }
.ac-btn-outline:hover { border-color:var(--bp-green); color:var(--bp-green); }
.ac-btn-sm { display:inline-flex; align-items:center; gap:5px; padding:7px 14px; font-size:13px; font-weight:600; border:1.5px solid var(--bp-border); border-radius:8px; background:#fff; color:#555; cursor:pointer; transition:all .15s; text-decoration:none; font-family:inherit; }
.ac-btn-sm:hover { border-color:var(--bp-green); color:var(--bp-green); }
.ac-btn-sm.green { background:var(--bp-green); color:#fff; border-color:var(--bp-green); }
.ac-btn-sm.green:hover { background:var(--bp-green-dark); }
.ac-btn-sm.danger { color:#dc3545; border-color:#f5c6cb; }
.ac-btn-sm.danger:hover { background:#dc3545; color:#fff; }
.ac-btn-xs { padding:4px 10px; font-size:12px; font-weight:600; border:1px solid var(--bp-border); border-radius:6px; background:#fff; color:#666; cursor:pointer; transition:all .15s; font-family:inherit; }
.ac-btn-xs:hover { border-color:var(--bp-green); color:var(--bp-green); }
.ac-btn-xs.danger { color:#dc3545; }
.ac-btn-xs.danger:hover { background:#dc3545; color:#fff; }

/* -- Order Cards (Orders Tab) -- */
.ac-ord-card { background:#fff; border:1px solid var(--bp-border); border-radius:14px; padding:20px; margin-bottom:14px; transition:box-shadow .2s; }
.ac-ord-card:hover { box-shadow:0 6px 20px rgba(0,0,0,.06); }
.ac-ord-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; gap:8px; }
.ac-ord-meta { display:flex; align-items:baseline; gap:10px; }
.ac-ord-id { font-size:16px; font-weight:900; color:var(--bp-charcoal); }
.ac-ord-date { font-size:13px; color:var(--bp-gray); }
.ac-ord-summary { display:flex; justify-content:space-between; font-size:14px; color:#555; padding:10px 0; border-top:1px solid #f0ede6; }
.ac-ord-total { font-weight:900; color:var(--bp-green); font-size:16px; }
.ac-ord-addr { font-size:13px; color:#666; margin:4px 0; display:flex; align-items:center; gap:6px; }
.ac-ord-addr i { color:var(--bp-green); }
.ac-ord-promo { font-size:13px; color:var(--bp-green); font-weight:600; margin:4px 0; display:flex; align-items:center; gap:6px; }
.ac-cancelled-msg { color:#721c24; font-size:13px; margin:0 0 8px; }
.ac-ord-items { border-top:1px solid #f0ede6; margin-top:8px; padding-top:6px; }
.ac-ord-item { display:grid; grid-template-columns:1fr auto auto; gap:12px; padding:8px 0; font-size:13px; border-bottom:1px solid #f8f6f0; }
.ac-ord-item:last-child { border-bottom:none; }
.ac-oi-name { font-weight:600; color:var(--bp-charcoal); }
.ac-oi-qty { color:var(--bp-gray); font-weight:600; }
.ac-oi-price { font-weight:700; color:var(--bp-green); }
.ac-ord-foot { display:flex; gap:8px; margin-top:12px; border-top:1px solid #f0ede6; padding-top:12px; flex-wrap:wrap; }

/* -- Steps Tracker -- */
.ac-steps { display:flex; gap:0; margin-bottom:14px; }
.ac-step { flex:1; text-align:center; }
.ac-step .ac-step-bar { height:4px; border-radius:2px; margin-bottom:6px; background:#e8e6e0; }
.ac-step.on .ac-step-bar { background:var(--bp-green); }
.ac-step span { font-size:11px; font-weight:700; color:#aaa; }
.ac-step.on span { color:var(--bp-green); }

/* -- Wishlist Grid -- */
.ac-wish-count { font-size:14px; font-weight:600; color:var(--bp-gray); margin-bottom:14px; }
.ac-wish-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:16px; }
.ac-wish-card { background:#fff; border:1px solid var(--bp-border); border-radius:14px; overflow:hidden; transition:all .2s; }
.ac-wish-card:hover { box-shadow:0 8px 24px rgba(0,0,0,.08); transform:translateY(-3px); }
.ac-wish-img { display:block; aspect-ratio:1; overflow:hidden; background:#f5f3ec; }
.ac-wish-img img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.ac-wish-card:hover .ac-wish-img img { transform:scale(1.05); }
.ac-wish-info { padding:12px; }
.ac-wish-info a { display:block; font-size:14px; font-weight:700; color:var(--bp-charcoal); text-decoration:none; margin-bottom:4px; }
.ac-wish-info a:hover { color:var(--bp-green); }
.ac-wish-price { font-size:16px; font-weight:900; color:var(--bp-green); }
.ac-wish-btns { display:flex; gap:6px; padding:0 12px 12px; }

/* -- Reviews -- */
.ac-rev-card { background:#fff; border:1px solid var(--bp-border); border-radius:14px; padding:18px; margin-bottom:12px; }
.ac-rev-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; flex-wrap:wrap; gap:8px; }
.ac-rev-product strong { font-size:15px; color:var(--bp-charcoal); }
.ac-rev-date { font-size:12px; color:var(--bp-gray); margin-left:10px; }
.ac-rev-title { font-weight:700; font-size:14px; color:var(--bp-charcoal); margin-bottom:4px; }
.ac-rev-text { font-size:14px; color:#555; line-height:1.6; margin:0; }
.ac-stars { display:flex; gap:2px; font-size:16px; }

/* -- Addresses -- */
.ac-addr-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:16px; }
.ac-addr { background:#fff; border:1px solid var(--bp-border); border-radius:14px; padding:18px; transition:box-shadow .2s; }
.ac-addr:hover { box-shadow:0 6px 16px rgba(0,0,0,.06); }
.ac-addr.default { border-color:var(--bp-green); box-shadow:0 0 0 2px rgba(20,64,44,.06); }
.ac-addr-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.ac-addr-label { font-weight:800; font-size:15px; color:var(--bp-charcoal); }
.ac-addr-badge { background:var(--bp-green); color:#fff; font-size:11px; font-weight:700; padding:3px 10px; border-radius:20px; }
.ac-addr-body { font-size:14px; color:#555; line-height:1.7; margin-bottom:14px; }
.ac-addr-foot { display:flex; gap:8px; border-top:1px solid #f0ede6; padding-top:10px; }

/* -- Settings Forms -- */
.ac-form-grid label { display:block; font-size:13px; font-weight:700; color:var(--bp-charcoal); margin-bottom:5px; }
.ac-form-grid .ac-field input, .ac-form-grid .ac-field select { margin-bottom:0; }
.ac-form-r2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.ac-form-r3 { display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px; margin-bottom:14px; }
.ac-form-btns { display:flex; gap:10px; margin-top:16px; }
.ac-check { display:flex; align-items:center; gap:8px; font-size:14px; color:#555; font-weight:500; cursor:pointer; margin-bottom:10px; }
.ac-check input { width:auto; accent-color:var(--bp-green); }

/* -- Recently Viewed -- */
.ac-recent-row { display:grid; grid-template-columns:repeat(auto-fill,minmax(115px,1fr)); gap:14px; }
.ac-recent-item { text-decoration:none; text-align:center; }
.ac-recent-img { aspect-ratio:1; border-radius:10px; overflow:hidden; background:#f5f3ec; border:1px solid var(--bp-border); margin-bottom:6px; }
.ac-recent-img img { width:100%; height:100%; object-fit:cover; }
.ac-recent-name { display:block; font-size:12px; font-weight:600; color:var(--bp-charcoal); }
.ac-recent-price { display:block; font-size:13px; font-weight:800; color:var(--bp-green); }

@media (max-width:900px) {
  .ac-layout { grid-template-columns:1fr; }
  .ac-side { position:static; }
  .ac-side-nav { display:flex; overflow-x:auto; border-radius:12px; }
  .ac-side-link { white-space:nowrap; padding:10px 14px; font-size:13px; border-left:none; border-bottom:3px solid transparent; }
  .ac-side-link.active { border-bottom-color:var(--bp-green); border-left-color:transparent; }
  .ac-side-divider { display:none; }
  .ac-stats { grid-template-columns:repeat(2,1fr); }
  .ac-2col { grid-template-columns:1fr; }
  .ac-form-r2, .ac-form-r3 { grid-template-columns:1fr; }
  .ac-dash-greeting { flex-direction:column; text-align:center; }
}
@media (max-width:560px) {
  .ac-auth-wrap { flex-direction:column; }
  .ac-stats { grid-template-columns:1fr; }
  .ac-wish-grid { grid-template-columns:repeat(2,1fr); gap:10px; }
  .ac-addr-grid { grid-template-columns:1fr; }
  .ac-actions { grid-template-columns:1fr; }
}
