/*
Theme Name: ByteOfHumor
Theme URI: https://byteofhumor.com
Author: Minted Union
Author URI: https://mintedunion.com
Description: A bold, colourful WooCommerce theme for ByteOfHumor – the funny print-on-demand tee store.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: byteofhumor
*/

/* =============================================
   RESET & ROOT
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --yellow: #FFE500;
  --pink:   #FF2D78;
  --cyan:   #00F5FF;
  --orange: #FF6B00;
  --purple: #7B2FFF;
  --green:  #00FF7F;
  --dark:   #0D0D0D;
  --card:   #181818;
  --border: rgba(255,255,255,0.07);
  --muted:  rgba(255,255,255,0.5);
  --nav-h:  68px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   CURSOR
============================================= */
.boh-cursor {
  width: 18px; height: 18px;
  background: var(--yellow); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.boh-cursor-trail {
  width: 7px; height: 7px;
  background: var(--pink); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transition: all 0.22s ease;
  mix-blend-mode: difference;
}
@media (hover: none) {
  .boh-cursor, .boh-cursor-trail { display: none; }
  body { cursor: auto; }
}

/* =============================================
   NOISE + BLOBS
============================================= */
.boh-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 9990;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.boh-blob {
  position: fixed; border-radius: 50%;
  filter: blur(100px); pointer-events: none; opacity: 0.09; z-index: 0;
  animation: blobFloat 14s ease-in-out infinite alternate;
}
.boh-blob-1 { width: 600px; height: 600px; background: var(--yellow); top: -10%; left: -15%; }
.boh-blob-2 { width: 500px; height: 500px; background: var(--pink);   bottom: -10%; right: -12%; animation-delay: -4s; animation-duration: 10s; }
.boh-blob-3 { width: 400px; height: 400px; background: var(--cyan);   top: 35%; left: 30%; animation-delay: -7s; animation-duration: 16s; }
@keyframes blobFloat {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(25px,-25px) scale(1.08); }
}

/* =============================================
   HEADER / NAV
============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

/* ---- LOGO ---- */
.boh-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.boh-logo-icon {
  width: 46px; height: 46px;
  background: var(--yellow);
  border-radius: 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  line-height: 1;
  animation: logoWobble 6s ease-in-out infinite;
  flex-shrink: 0;
  overflow: hidden;
}
.bli-ha {
  font-family: 'Boogaloo', cursive;
  font-size: 1.1rem; color: #0D0D0D;
  letter-spacing: -0.5px; line-height: 1;
}
.bli-exclaim {
  font-family: 'Boogaloo', cursive;
  font-size: 1.4rem; color: var(--pink);
  line-height: 1; margin-top: -2px;
}
@keyframes logoWobble {
  0%,100% { transform: rotate(-4deg) scale(1); }
  50%      { transform: rotate(4deg) scale(1.06); }
}
.boh-logo-wordmark {
  font-family: 'Boogaloo', cursive;
  font-size: 1.5rem; line-height: 1;
  letter-spacing: 0.2px;
}
.blw-byte   { color: #fff; }
.blw-of     { color: var(--yellow); }
.blw-humor  { color: var(--pink); }

/* ---- NAV LINKS ---- */
.site-nav {
  display: flex; gap: 1.75rem; align-items: center;
}
.site-nav a {
  color: var(--muted); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.3px;
  position: relative; transition: color 0.2s;
  white-space: nowrap;
}
.site-nav a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { transform: scaleX(1); }

/* ---- CART ---- */
.boh-cart-btn {
  background: var(--yellow); color: var(--dark);
  padding: 0.5rem 1.1rem; border-radius: 100px;
  font-weight: 800; font-size: 0.82rem;
  display: flex; align-items: center; gap: 6px;
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0; white-space: nowrap;
}
.boh-cart-btn:hover { transform: scale(1.05); background: var(--pink); color: #fff; }
.boh-cart-count {
  background: var(--dark); color: var(--yellow);
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 0.72rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

/* ---- HAMBURGER ---- */
.boh-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 600;
}
.boh-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.boh-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.boh-hamburger.active span:nth-child(2) { opacity: 0; }
.boh-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
============================================= */
.boh-hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.boh-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,229,0,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(255,45,120,0.07) 0%, transparent 55%);
}
.boh-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
  max-width: 1200px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.boh-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,229,0,0.12);
  border: 1px solid rgba(255,229,0,0.3);
  color: var(--yellow); padding: 0.35rem 1rem;
  border-radius: 100px; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s ease both;
}
.boh-badge-dot {
  width: 7px; height: 7px;
  background: var(--yellow); border-radius: 50%;
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.7);} }
.boh-hero h1 {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05; margin-bottom: 1rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.line-y { color: var(--yellow); display: block; }
.line-p { color: var(--pink);   display: block; }
.boh-hero-sub {
  color: var(--muted); font-size: 1rem; line-height: 1.75;
  max-width: 420px; margin-bottom: 1.8rem;
  animation: fadeUp 0.6s 0.2s ease both;
}
.boh-hero-btns {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary {
  background: var(--yellow); color: var(--dark);
  padding: 0.8rem 1.8rem; border-radius: 100px;
  font-weight: 800; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,229,0,0.28);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff; padding: 0.8rem 1.8rem;
  border-radius: 100px; font-weight: 700; font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--cyan); background: rgba(0,245,255,0.08); color: var(--cyan); }

/* ---- FLOATING HERO CARDS ---- */
.boh-hero-visual {
  position: relative; height: 480px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.boh-float-card {
  position: absolute; background: var(--card);
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s;
  display: block;
}
.boh-float-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 10;
}
.boh-float-card-1 { width: 190px; top: 10px; left: 50px; animation: f1 6s ease-in-out infinite; z-index: 3; }
.boh-float-card-2 { width: 175px; top: 60px; right: 10px; animation: f2 7s ease-in-out infinite; z-index: 2; }
.boh-float-card-3 { width: 165px; bottom: 50px; left: 10px; animation: f3 5.5s ease-in-out infinite; z-index: 2; }
.boh-float-card-4 { width: 175px; bottom: 20px; right: 50px; animation: f1 6.5s ease-in-out infinite reverse; z-index: 3; }
@keyframes f1 { 0%,100%{transform:translateY(0) rotate(-2deg);}  50%{transform:translateY(-16px) rotate(1deg);} }
@keyframes f2 { 0%,100%{transform:translateY(0) rotate(2deg);}   50%{transform:translateY(-12px) rotate(-1deg);} }
@keyframes f3 { 0%,100%{transform:translateY(0) rotate(-1deg);} 50%{transform:translateY(-18px) rotate(2deg);} }
.boh-float-img {
  aspect-ratio: 1; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #222;
}
.boh-float-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.boh-float-card:hover .boh-float-img img { transform: scale(1.06); }
.boh-float-info { padding: 0.55rem 0.75rem; border-top: 1px solid var(--border); }
.boh-float-info .fn { font-weight: 800; font-size: 0.75rem; color: #fff; display: block; margin-bottom: 2px; }
.boh-float-info .fp { font-weight: 700; font-size: 0.8rem; }
.boh-float-info .fp ins { text-decoration: none; }
.c-y { color: var(--yellow); } .c-p { color: var(--pink); }
.c-c { color: var(--cyan); }  .c-o { color: var(--orange); }

/* =============================================
   PRODUCT CAROUSEL (continuous shuffle)
============================================= */
.boh-carousel-section {
  padding: 0 0 4rem; position: relative; z-index: 1;
}
.boh-carousel-wrap {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.boh-carousel-track {
  display: flex; gap: 1rem;
  width: max-content;
  animation: carouselScroll 40s linear infinite;
}
.boh-carousel-track:hover { animation-play-state: paused; }
@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.boh-carousel-card {
  width: 220px; flex-shrink: 0;
  background: var(--card);
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: block;
}
.boh-carousel-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255,229,0,0.35);
  box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}
.boh-cc-img {
  width: 100%; aspect-ratio: 1; overflow: hidden;
  background: #1e1e1e;
  display: flex; align-items: center; justify-content: center;
}
.boh-cc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.boh-carousel-card:hover .boh-cc-img img { transform: scale(1.05); }
.boh-cc-placeholder { font-size: 3rem; }
.boh-cc-info { padding: 0.75rem 0.85rem 0.85rem; }
.boh-cc-name { display: block; font-weight: 800; font-size: 0.82rem; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.boh-cc-price { font-family: 'Boogaloo', cursive; font-size: 1.1rem; color: var(--yellow); }
.boh-cc-price ins { text-decoration: none; }
.boh-cc-price del { color: var(--muted); font-size: 0.85rem; }

/* =============================================
   SECTION DEFAULTS
============================================= */
.boh-section { padding: 4rem 2rem; position: relative; z-index: 1; }
.boh-section-alt { background: rgba(255,255,255,0.025); }
.boh-section-header { text-align: center; margin-bottom: 2.5rem; }
.boh-section-tag {
  display: block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.6rem;
}
.boh-section-header h2 { font-family: 'Boogaloo', cursive; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.boh-section-header p { color: var(--muted); margin-top: 0.5rem; font-size: 0.95rem; }

/* =============================================
   WOOCOMMERCE — SHOP PAGE
============================================= */
.woocommerce-page main,
.boh-woocommerce .woocommerce { padding-top: calc(var(--nav-h) + 1rem); }

/* Hide default title on shop */
.woocommerce-page h1.page-title {
  font-family: 'Boogaloo', cursive;
  font-size: 2.5rem; color: #fff;
  padding: 1rem 2rem 0; max-width: 1200px; margin: 0 auto;
}

/* Sort bar */
.woocommerce-ordering {
  max-width: 1200px; margin: 1rem auto 0.5rem !important;
  padding: 0 2rem !important; float: none !important;
}
.woocommerce-ordering select {
  background: var(--card) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 100px !important;
  padding: 0.45rem 1.2rem !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.85rem !important; font-weight: 700 !important;
  -webkit-appearance: none; appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23FFE500' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.8rem center !important;
  padding-right: 2.2rem !important;
  transition: border-color 0.2s;
}
.woocommerce-ordering select:hover { border-color: var(--yellow) !important; }
.woocommerce-ordering select:focus { outline: none !important; border-color: var(--yellow) !important; }

/* Result count */
.woocommerce-result-count {
  max-width: 1200px; margin: 0 auto !important;
  padding: 0 2rem !important; float: none !important;
  color: var(--muted) !important; font-size: 0.82rem !important;
  display: block !important;
}

/* Product grid */
.woocommerce ul.products {
  max-width: 1200px; margin: 1.5rem auto 0 !important;
  padding: 0 2rem !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 1.25rem !important;
  float: none !important; clear: both !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }

.woocommerce ul.products li.product {
  background: var(--card) !important;
  border-radius: 18px !important; overflow: hidden !important;
  border: 1px solid var(--border) !important;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
  float: none !important; width: auto !important; margin: 0 !important;
  display: flex !important; flex-direction: column !important;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(255,229,0,0.3) !important;
  box-shadow: 0 16px 32px rgba(0,0,0,0.3) !important;
}

/* Product image */
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: block; overflow: hidden;
}
.woocommerce ul.products li.product a img {
  width: 100% !important; height: 240px !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
  background: #1e1e1e;
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.04) !important; }

/* Product info area */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-weight: 800 !important; font-size: 0.95rem !important;
  color: #fff !important; padding: 0.85rem 1rem 0.25rem !important;
  line-height: 1.3 !important; font-family: 'Nunito', sans-serif !important;
}
.woocommerce ul.products li.product .price {
  font-family: 'Boogaloo', cursive !important;
  font-size: 1.25rem !important; color: var(--yellow) !important;
  padding: 0 1rem 0.75rem !important; display: block !important;
}
.woocommerce ul.products li.product .price ins { text-decoration: none !important; }
.woocommerce ul.products li.product .price del { color: var(--muted) !important; font-size: 1rem !important; }

/* Add to cart button */
.woocommerce ul.products li.product .button {
  background: var(--yellow) !important; color: var(--dark) !important;
  border: none !important; border-radius: 100px !important;
  font-weight: 800 !important; font-size: 0.85rem !important;
  padding: 0.55rem 1.3rem !important;
  margin: auto 1rem 1rem !important;
  display: inline-block !important;
  transition: transform 0.2s, background 0.2s !important;
  font-family: 'Nunito', sans-serif !important;
}
.woocommerce ul.products li.product .button:hover {
  transform: scale(1.04) !important;
  background: var(--pink) !important; color: #fff !important;
}

/* Sale badge */
.woocommerce span.onsale {
  background: var(--pink) !important; color: #fff !important;
  border-radius: 100px !important;
  min-height: auto !important; min-width: auto !important;
  padding: 3px 10px !important;
  font-size: 0.7rem !important; font-weight: 800 !important;
  line-height: 1.5 !important; top: 10px !important; left: 10px !important;
}

/* Star rating */
.woocommerce .star-rating span::before { color: var(--yellow) !important; }
.woocommerce .star-rating { margin: 0 1rem 0.25rem !important; }

/* Pagination */
.woocommerce nav.woocommerce-pagination {
  max-width: 1200px; margin: 2rem auto 0 !important;
  padding: 0 2rem; text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
  border: none !important; display: inline-flex; gap: 0.35rem;
}
.woocommerce nav.woocommerce-pagination ul li { border: none !important; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: var(--card) !important; color: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important; font-weight: 700 !important;
  padding: 6px 12px !important; font-size: 0.85rem !important;
  transition: border-color 0.2s, background 0.2s !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover { border-color: var(--yellow) !important; color: var(--yellow) !important; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--yellow) !important; color: var(--dark) !important; border-color: var(--yellow) !important; }

/* =============================================
   MARQUEE
============================================= */
.boh-marquee-wrap { background: var(--yellow); padding: 0.7rem 0; overflow: hidden; }
.boh-marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.boh-marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.boh-marquee-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0 1.5rem; font-family: 'Boogaloo', cursive;
  font-size: 1.1rem; color: var(--dark); white-space: nowrap;
}
.boh-marquee-dot { color: var(--pink); font-size: 1.2rem; }

/* =============================================
   WHY US
============================================= */
.boh-why-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}
.boh-why-card {
  background: var(--card); border-radius: 18px;
  padding: 1.75rem 1.4rem; text-align: center;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.boh-why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.boh-why-card:nth-child(1)::before { background: var(--yellow); }
.boh-why-card:nth-child(2)::before { background: var(--pink); }
.boh-why-card:nth-child(3)::before { background: var(--cyan); }
.boh-why-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.12); }
.boh-why-icon { font-size: 2.2rem; margin-bottom: 0.85rem; display: block; animation: wiggle 3s ease-in-out infinite; }
.boh-why-card:nth-child(2) .boh-why-icon { animation-delay: 0.5s; }
.boh-why-card:nth-child(3) .boh-why-icon { animation-delay: 1s; }
@keyframes wiggle { 0%,100%{transform:rotate(-5deg);} 50%{transform:rotate(5deg);} }
.boh-why-card h3 { font-family: 'Boogaloo', cursive; font-size: 1.35rem; margin-bottom: 0.5rem; }
.boh-why-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

/* =============================================
   CTA STRIP
============================================= */
.boh-cta {
  background: var(--yellow); padding: 4rem 2rem;
  text-align: center; position: relative; overflow: hidden;
}
.boh-cta::before,.boh-cta::after {
  content: 'HA HA HA HA'; position: absolute;
  font-family: 'Boogaloo', cursive; font-size: 7rem;
  color: rgba(0,0,0,0.06); top: 50%; transform: translateY(-50%); white-space: nowrap;
}
.boh-cta::before { left: -2rem; }
.boh-cta::after  { right: -2rem; }
.boh-cta h2 { font-family: 'Boogaloo', cursive; font-size: clamp(1.8rem,4vw,3rem); color: var(--dark); margin-bottom: 0.5rem; position: relative; z-index: 1; }
.boh-cta p  { color: rgba(13,13,13,0.65); font-size: 0.95rem; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.boh-cta-form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.boh-cta-form input {
  padding: 0.8rem 1.4rem; border-radius: 100px;
  border: 2px solid transparent; font-size: 0.9rem;
  font-family: 'Nunito', sans-serif;
  background: rgba(13,13,13,0.1); width: 260px; outline: none;
  transition: border-color 0.2s;
}
.boh-cta-form input::placeholder { color: rgba(13,13,13,0.5); }
.boh-cta-form input:focus { border-color: var(--dark); }
.boh-cta-form button {
  padding: 0.8rem 1.6rem; border-radius: 100px;
  background: var(--dark); color: #fff;
  font-weight: 800; font-size: 0.9rem;
  font-family: 'Nunito', sans-serif; border: none; cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.boh-cta-form button:hover { transform: scale(1.04); background: var(--pink); }

/* =============================================
   SINGLE PRODUCT
============================================= */
.woocommerce div.product {
  max-width: 1100px; margin: calc(var(--nav-h) + 2rem) auto 4rem;
  padding: 0 2rem; position: relative; z-index: 1;
}
.woocommerce div.product .product_title { font-family: 'Boogaloo', cursive; font-size: clamp(1.8rem,4vw,2.8rem); color: #fff; line-height: 1.1; }
.woocommerce div.product .price { font-family: 'Boogaloo', cursive; font-size: 1.8rem; color: var(--yellow); }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--muted); line-height: 1.75; margin: 1rem 0; }
.woocommerce div.product .woocommerce-product-gallery__image img { border-radius: 16px; }
.woocommerce div.product .single_add_to_cart_button {
  background: var(--yellow) !important; color: var(--dark) !important;
  border: none !important; border-radius: 100px !important;
  font-weight: 800 !important; font-size: 1rem !important;
  padding: 0.85rem 2.2rem !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  font-family: 'Nunito', sans-serif !important;
}
.woocommerce div.product .single_add_to_cart_button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(255,229,0,0.28) !important;
}
.woocommerce div.product .variations select {
  background: var(--card); color: #fff;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 0.5rem 1rem; font-family: 'Nunito', sans-serif;
}

/* =============================================
   CART & CHECKOUT
============================================= */
.woocommerce .woocommerce-message { background: rgba(255,229,0,0.1) !important; border-top-color: var(--yellow) !important; color: #fff !important; }
.woocommerce .woocommerce-info { background: rgba(0,245,255,0.08) !important; border-top-color: var(--cyan) !important; color: #fff !important; }
.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review { background: var(--card); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); }
.woocommerce #place_order {
  background: var(--yellow) !important; color: var(--dark) !important;
  border-radius: 100px !important; font-weight: 800 !important;
  font-size: 1rem !important; border: none !important; padding: 0.85rem 2rem !important;
  font-family: 'Nunito', sans-serif !important; transition: transform 0.2s !important;
}
.woocommerce #place_order:hover { transform: scale(1.03) !important; }
.woocommerce table.shop_table th { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; }
.woocommerce table.shop_table td { color: #fff; border-color: var(--border) !important; }
.woocommerce .wc-proceed-to-checkout a {
  background: var(--yellow) !important; color: var(--dark) !important;
  border-radius: 100px !important; font-weight: 800 !important; font-size: 1rem !important;
  padding: 0.85rem 2rem !important; transition: transform 0.2s !important;
}
.woocommerce .wc-proceed-to-checkout a:hover { transform: scale(1.03) !important; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #090909; padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.boh-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2.5rem;
}
.boh-footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.65; margin-top: 0.75rem; max-width: 220px; }
.boh-social-pills { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.boh-social-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 0.28rem 0.8rem;
  font-size: 0.76rem; font-weight: 700;
  color: var(--muted); transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.boh-social-pill:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.boh-footer-col h4 { font-weight: 800; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 0.85rem; }
.boh-footer-col ul li { margin-bottom: 0.45rem; }
.boh-footer-col ul a { color: rgba(255,255,255,0.42); font-size: 0.88rem; transition: color 0.2s; }
.boh-footer-col ul a:hover { color: var(--yellow); }
.boh-footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  border-top: 1px solid var(--border); padding-top: 1.25rem;
  color: rgba(255,255,255,0.28); font-size: 0.8rem;
}

/* =============================================
   SCROLL REVEAL
============================================= */
.boh-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.boh-reveal.boh-visible { opacity: 1; transform: translateY(0); }
.boh-delay-1 { transition-delay: 0.1s; }
.boh-delay-2 { transition-delay: 0.2s; }
.boh-delay-3 { transition-delay: 0.3s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px);} to{opacity:1;transform:translateY(0);} }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .boh-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .boh-hero-grid { grid-template-columns: 1fr; }
  .boh-hero-visual { height: 260px; display: none; } /* hide on mobile, too cluttered */
  .boh-why-grid { grid-template-columns: 1fr; }
  .boh-hamburger { display: flex; }
  .site-nav {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column; gap: 0;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%); opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .site-nav a { padding: 0.75rem 2rem; font-size: 1rem; width: 100%; }
  .site-nav a::after { display: none; }
  .cart-label { display: none; }
}

@media (max-width: 600px) {
  .site-header { padding: 0 1rem; }
  .boh-hero { padding: calc(var(--nav-h) + 2rem) 1.25rem 2.5rem; }
  .boh-section { padding: 2.5rem 1.25rem; }
  .boh-footer-inner { grid-template-columns: 1fr; }
  .boh-footer-brand p { max-width: 100%; }
  .woocommerce ul.products { padding: 0 1rem !important; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important; }
  .woocommerce ul.products li.product a img { height: 180px !important; }
  .boh-cta { padding: 2.5rem 1.25rem; }
  .boh-cta::before,.boh-cta::after { display: none; }
}

/* ── ROTATING CARD ANIMATIONS ─────────────── */
.boh-card-fade { opacity: 0; transform: scale(0.92); transition: opacity 0.35s ease, transform 0.35s ease; }
.boh-card-fadein { animation: cardFadeIn 0.45s ease forwards; }
@keyframes cardFadeIn { from{opacity:0;transform:scale(0.93);} to{opacity:1;transform:scale(1);} }

/* ── INNER PAGE LAYOUT ───────────────────── */
.boh-inner-page {
  max-width: 860px; margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
  position: relative; z-index: 1;
}
.boh-inner-page h1 {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05; margin-bottom: 0.5rem;
}
.boh-inner-page .boh-page-tag {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 0.75rem; display: block;
}
.boh-inner-page .boh-page-intro {
  font-size: 1.1rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 3rem;
  border-bottom: 1px solid var(--border); padding-bottom: 2rem;
}
.boh-inner-page h2 {
  font-family: 'Boogaloo', cursive;
  font-size: 1.6rem; margin: 2.5rem 0 0.6rem; color: var(--yellow);
}
.boh-inner-page h3 {
  font-family: 'Boogaloo', cursive;
  font-size: 1.2rem; margin: 1.5rem 0 0.4rem; color: #fff;
}
.boh-inner-page p, .boh-inner-page li {
  color: rgba(255,255,255,0.65); line-height: 1.8; font-size: 0.97rem; margin-bottom: 0.75rem;
}
.boh-inner-page ul, .boh-inner-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.boh-inner-page a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.boh-inner-page a:hover { color: var(--pink); }
.boh-inner-page strong { color: #fff; font-weight: 800; }

/* FAQ accordion */
.boh-faq-item {
  background: var(--card); border-radius: 14px;
  border: 1px solid var(--border); margin-bottom: 0.85rem;
  overflow: hidden; transition: border-color 0.2s;
}
.boh-faq-item:hover { border-color: rgba(255,229,0,0.25); }
.boh-faq-q {
  width: 100%; background: none; border: none; color: #fff;
  padding: 1.1rem 1.4rem; text-align: left; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.97rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.boh-faq-q .boh-faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,229,0,0.1); border: 1px solid rgba(255,229,0,0.3);
  color: var(--yellow); font-size: 1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s, background 0.2s;
}
.boh-faq-item.open .boh-faq-q .boh-faq-icon { transform: rotate(45deg); background: var(--yellow); color: var(--dark); }
.boh-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--muted); font-size: 0.93rem; line-height: 1.75;
  padding: 0 1.4rem;
}
.boh-faq-item.open .boh-faq-a { max-height: 400px; padding: 0 1.4rem 1.2rem; }

/* Team cards */
.boh-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.25rem; margin: 2rem 0; }
.boh-team-card {
  background: var(--card); border-radius: 16px; padding: 1.5rem;
  border: 1px solid var(--border); text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.boh-team-card:hover { transform: translateY(-5px); border-color: rgba(255,229,0,0.25); }
.boh-team-avatar { font-size: 3rem; margin-bottom: 0.75rem; display: block; }
.boh-team-card h3 { font-family: 'Boogaloo', cursive; font-size: 1.2rem; margin: 0 0 0.25rem; color: #fff; }
.boh-team-card p { color: var(--muted); font-size: 0.82rem; line-height: 1.5; margin: 0; }

/* Policy callout box */
.boh-callout {
  background: rgba(255,229,0,0.07); border: 1px solid rgba(255,229,0,0.2);
  border-radius: 14px; padding: 1.25rem 1.5rem; margin: 1.5rem 0;
  color: rgba(255,255,255,0.8) !important;
}
.boh-callout strong { color: var(--yellow) !important; }


/* =============================================
   GALLERY SLIDER (JS-driven)
============================================= */
.woocommerce-product-gallery.boh-gallery-initialized {
  position: relative;
  border-radius: 20px; overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1;
  margin-bottom: 0.85rem;
}

/* Hide all slides by default */
.woocommerce-product-gallery.boh-gallery-initialized .woocommerce-product-gallery__image {
  display: none !important;
  width: 100% !important; height: 100% !important;
  position: absolute !important; inset: 0 !important;
}
/* Show active slide */
.woocommerce-product-gallery.boh-gallery-initialized .woocommerce-product-gallery__image.boh-slide-active {
  display: flex !important;
  align-items: center; justify-content: center;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from{opacity:0;transform:scale(0.97);} to{opacity:1;transform:scale(1);} }

.woocommerce-product-gallery__image img {
  width: 100% !important; height: 100% !important;
  object-fit: contain !important;
  max-height: 520px;
}

/* Arrow controls */
.boh-gallery-controls {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 0.75rem;
  z-index: 10;
}
.boh-g-prev, .boh-g-next {
  background: rgba(13,13,13,0.75); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.boh-g-prev:hover, .boh-g-next:hover {
  background: var(--yellow); color: var(--dark); border-color: var(--yellow);
}
.boh-g-counter {
  background: rgba(13,13,13,0.65); color: rgba(255,255,255,0.9);
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  white-space: nowrap;
}

/* Thumbnails strip */
.boh-g-thumbs {
  display: flex; gap: 0.5rem;
  overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none; margin-top: 0.75rem;
}
.boh-g-thumbs::-webkit-scrollbar { display: none; }
.boh-g-thumb {
  flex-shrink: 0; width: 68px; height: 68px;
  border-radius: 10px; overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  cursor: pointer; transition: border-color 0.2s;
  background: #f5f5f5;
}
.boh-g-thumb img { width: 100%; height: 100%; object-fit: cover; }
.boh-g-thumb.active { border-color: var(--yellow); }
.boh-g-thumb:hover:not(.active) { border-color: rgba(255,229,0,0.45); }

/* Hide WC's default flex-wrap gallery thumbnails */
.woocommerce-product-gallery.boh-gallery-initialized .flex-viewport,
.woocommerce-product-gallery.boh-gallery-initialized ol.flex-control-nav,
.woocommerce-product-gallery.boh-gallery-initialized .flex-control-thumbs {
  display: none !important;
}

/* =============================================
   CUSTOM SELECT – replaces native <select>
============================================= */

/* Keep native select in DOM but hidden visually */
.woocommerce div.product .variations select {
  position: absolute !important;
  opacity: 0 !important; pointer-events: none !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
}

/* Custom UI wrapper */
.boh-cs-ui {
  position: relative; margin-bottom: 0.25rem;
}
.boh-cs-trigger {
  display: flex; align-items: center; justify-content: space-between;
  background: #1e1e1e; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 12px; padding: 0.72rem 1rem;
  cursor: pointer; font-family: 'Nunito', sans-serif;
  font-size: 0.93rem; font-weight: 700;
  transition: border-color 0.2s; user-select: none;
}
.boh-cs-trigger:hover { border-color: var(--yellow); }
.boh-cs-ui.open .boh-cs-trigger {
  border-color: var(--yellow);
  border-radius: 12px 12px 0 0;
}
.boh-cs-arrow {
  color: var(--yellow); font-size: 0.75rem;
  transition: transform 0.25s; flex-shrink: 0;
}
.boh-cs-ui.open .boh-cs-arrow { transform: rotate(180deg); }

/* Dropdown panel */
.boh-cs-dropdown {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0; z-index: 300;
  background: #1e1e1e;
  border: 1.5px solid var(--yellow); border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 220px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--yellow) #1e1e1e;
}
.boh-cs-dropdown::-webkit-scrollbar { width: 4px; }
.boh-cs-dropdown::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 4px; }

/* Each option row */
.boh-cs-option {
  padding: 0.7rem 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.boh-cs-option:last-child { border-bottom: none; }
.boh-cs-option:hover { background: rgba(255,229,0,0.12); color: #fff; }
.boh-cs-option.selected {
  background: rgba(255,229,0,0.18); color: var(--yellow);
}
.boh-cs-option.disabled { opacity: 0.35; cursor: not-allowed; }

/* Variation label */
.woocommerce div.product .variations label {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.78rem !important; font-weight: 700 !important;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 0.5rem; display: block !important;
}
.woocommerce div.product .variations tr { margin-bottom: 1.25rem; display: block; }
.woocommerce div.product .variations td,
.woocommerce div.product .variations th {
  display: block; padding: 0 !important; border: none !important;
}

/* Reset link */
.reset_variations {
  color: var(--muted) !important; font-size: 0.8rem !important;
  display: inline-block !important; margin-top: 0.4rem !important;
  transition: color 0.2s !important;
}
.reset_variations:hover { color: var(--pink) !important; }

/* =============================================
   SINGLE PRODUCT LAYOUT
============================================= */
.woocommerce div.product {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 3rem !important; align-items: start !important;
}
.woocommerce div.product .woocommerce-product-gallery { grid-column: 1; }
.woocommerce div.product .summary { grid-column: 2; }
.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; }
.woocommerce div.product .related.products { grid-column: 1 / -1; }

/* Tabs */
.woocommerce-tabs { margin-top: 2rem !important; }
.woocommerce-tabs .wc-tabs { border-bottom: 1px solid var(--border) !important; display: flex; gap: 0; list-style: none !important; padding: 0 !important; }
.woocommerce-tabs .wc-tabs li { margin: 0 !important; }
.woocommerce-tabs .wc-tabs li a { color: var(--muted) !important; font-weight: 700 !important; font-size: 0.9rem !important; padding: 0.75rem 1.25rem !important; display: block; border: none !important; background: none !important; transition: color 0.2s; }
.woocommerce-tabs .wc-tabs li.active a { color: var(--yellow) !important; border-bottom: 2px solid var(--yellow) !important; }
.woocommerce-tabs .panel { background: var(--card); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); color: rgba(255,255,255,0.65); line-height: 1.8; margin-top: 0 !important; }

/* Related products */
.related.products h2 {
  font-family: 'Boogaloo', cursive;
  font-size: 1.8rem; color: #fff; margin-bottom: 1.5rem;
}

/* WC wrap for shop */
.boh-wc-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: calc(var(--nav-h) + 1.5rem) 2rem 4rem;
}

/* =============================================
   INNER PAGES
============================================= */
.boh-inner-page {
  max-width: 860px; margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
  position: relative; z-index: 1;
}
.boh-inner-page h1 { font-family: 'Boogaloo', cursive; font-size: clamp(2.2rem,5vw,3.5rem); line-height: 1.05; margin-bottom: 0.5rem; }
.boh-inner-page .boh-page-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.75rem; display: block; }
.boh-inner-page .boh-page-intro { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 3rem; border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
.boh-inner-page h2 { font-family: 'Boogaloo', cursive; font-size: 1.6rem; margin: 2.5rem 0 0.6rem; color: var(--yellow); }
.boh-inner-page h3 { font-family: 'Boogaloo', cursive; font-size: 1.2rem; margin: 1.5rem 0 0.4rem; color: #fff; }
.boh-inner-page p, .boh-inner-page li { color: rgba(255,255,255,0.65); line-height: 1.8; font-size: 0.97rem; margin-bottom: 0.75rem; }
.boh-inner-page ul, .boh-inner-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.boh-inner-page a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.boh-inner-page a:hover { color: var(--pink); }
.boh-inner-page strong { color: #fff; font-weight: 800; }
.boh-callout { background: rgba(255,229,0,0.07); border: 1px solid rgba(255,229,0,0.2); border-radius: 14px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; color: rgba(255,255,255,0.8) !important; }
.boh-callout strong { color: var(--yellow) !important; }
.boh-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1.25rem; margin: 2rem 0; }
.boh-team-card { background: var(--card); border-radius: 16px; padding: 1.5rem; border: 1px solid var(--border); text-align: center; transition: transform 0.3s, border-color 0.3s; }
.boh-team-card:hover { transform: translateY(-5px); border-color: rgba(255,229,0,0.25); }
.boh-team-avatar { font-size: 3rem; margin-bottom: 0.75rem; display: block; }
.boh-team-card h3 { font-family: 'Boogaloo', cursive; font-size: 1.2rem; margin: 0 0 0.25rem; color: #fff; }
.boh-team-card p { color: var(--muted); font-size: 0.82rem; line-height: 1.5; margin: 0; }

/* FAQ accordion */
.boh-faq-item { background: var(--card); border-radius: 14px; border: 1px solid var(--border); margin-bottom: 0.85rem; overflow: hidden; transition: border-color 0.2s; }
.boh-faq-item:hover { border-color: rgba(255,229,0,0.25); }
.boh-faq-q { width: 100%; background: none; border: none; color: #fff; padding: 1.1rem 1.4rem; text-align: left; cursor: pointer; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.97rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.boh-faq-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,229,0,0.1); border: 1px solid rgba(255,229,0,0.3); color: var(--yellow); font-size: 1rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s, background 0.2s; }
.boh-faq-item.open .boh-faq-icon { transform: rotate(45deg); background: var(--yellow); color: var(--dark); }
.boh-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; color: var(--muted); font-size: 0.93rem; line-height: 1.75; padding: 0 1.4rem; }
.boh-faq-item.open .boh-faq-a { max-height: 400px; padding: 0 1.4rem 1.2rem; }

/* Rotating card animations */
.boh-card-fade { opacity: 0; transform: scale(0.92); transition: opacity 0.35s ease, transform 0.35s ease; }
.boh-card-fadein { animation: cardFadeIn 0.45s ease forwards; }
@keyframes cardFadeIn { from{opacity:0;transform:scale(0.93);} to{opacity:1;transform:scale(1);} }

/* Responsive */
@media (max-width: 860px) {
  .woocommerce div.product { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .woocommerce div.product .summary, .woocommerce div.product .woocommerce-tabs, .woocommerce div.product .related.products { grid-column: 1 !important; }
  .boh-hero-grid { grid-template-columns: 1fr; }
  .boh-hero-visual { display: none; }
  .boh-why-grid { grid-template-columns: 1fr; }
  .boh-hamburger { display: flex; }
  .site-nav { position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(13,13,13,0.97); backdrop-filter: blur(20px); flex-direction: column; gap: 0; padding: 1rem 0 1.5rem; border-bottom: 1px solid var(--border); transform: translateY(-100%); opacity: 0; transition: transform 0.35s ease, opacity 0.35s ease; pointer-events: none; }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .site-nav a { padding: 0.75rem 2rem; font-size: 1rem; width: 100%; }
  .site-nav a::after { display: none; }
  .cart-label { display: none; }
  .boh-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-header { padding: 0 1rem; }
  .boh-hero { padding: calc(var(--nav-h) + 2rem) 1.25rem 2.5rem; }
  .boh-section { padding: 2.5rem 1.25rem; }
  .boh-footer-inner { grid-template-columns: 1fr; }
  .woocommerce ul.products { padding: 0 1rem !important; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)) !important; }
  .boh-cta { padding: 2.5rem 1.25rem; }
  .boh-cta::before, .boh-cta::after { display: none; }
}
