/*
Theme Name: BOO Bubble Tea – Full
Template: hello-elementor
Author: BOO Bubble Tea
Description: Kompletná Elementor Pro child téma pre BOO Bubble Tea e-shop – presná kópia dizajnu.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: boo-full
*/

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --pink:        #F53F7A;
  --pink-hover:  #e02e68;
  --pink-light:  #FF6B9D;
  --pink-pale:   #FFF0F5;
  --green:       #7DC04B;
  --yellow:      #F5C842;
  --orange:      #F5894A;
  --bg:          #FDF8F5;
  --white:       #FFFFFF;
  --dark:        #1A1A2E;
  --text:        #2D2D2D;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --gray-bg:     #F3F4F6;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 999px;

  --sh-xs: 0 1px 4px rgba(0,0,0,.06);
  --sh-sm: 0 2px 10px rgba(0,0,0,.08);
  --sh-md: 0 6px 24px rgba(0,0,0,.11);
  --sh-lg: 0 12px 48px rgba(0,0,0,.14);
  --sh-pink: 0 6px 24px rgba(245,63,122,.30);

  --ease: .2s ease;
  --font-h: 'Nunito', sans-serif;
  --font-b: 'DM Sans', sans-serif;
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); font-weight: 800; line-height: 1.2; color: var(--dark); }

/* =============================================
   UTILITY
============================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.hidden { display: none !important; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-pill);
  font-family: var(--font-h); font-weight: 700; font-size: 14px;
  border: 2px solid transparent; transition: all var(--ease); cursor: pointer; white-space: nowrap;
}
.btn-pink  { background: var(--pink); color: #fff; box-shadow: var(--sh-pink); }
.btn-pink:hover { background: var(--pink-hover); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,63,122,.38); color: #fff; }
.btn-outline { background: transparent; color: var(--pink); border-color: var(--pink); }
.btn-outline:hover { background: var(--pink); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* =============================================
   ── SITE HEADER ──
============================================= */
.site-header {
  background: #fff;
  box-shadow: var(--sh-xs);
  position: sticky; top: 0; z-index: 1000;
  transition: transform .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--sh-sm); }

.header-wrap {
  display: flex; align-items: center; height: 68px; gap: 0;
}

/* --- Logo --- */
.site-logo {
  display: flex; flex-direction: column; flex-shrink: 0;
  margin-right: 36px; text-decoration: none;
}
.logo-letters {
  font-family: var(--font-h); font-size: 34px; font-weight: 900; line-height: 1;
  display: flex; align-items: baseline; gap: 1px;
}
.logo-b  { color: var(--pink); }
.logo-o1 { color: var(--green); }
.logo-o2 { color: var(--yellow); }
.logo-dot{ color: var(--pink); }
.logo-sub {
  font-size: 8.5px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-top: -3px;
}

/* --- Primary Nav --- */
.primary-nav { flex: 1; }
.primary-nav ul {
  display: flex; gap: 2px; align-items: center;
}
.primary-nav a {
  display: block; padding: 7px 13px; border-radius: var(--r-pill);
  font-family: var(--font-h); font-weight: 700; font-size: 14px; color: var(--text);
  transition: all var(--ease); position: relative;
}
.primary-nav a:hover { color: var(--pink); background: var(--pink-pale); }
.primary-nav .current-menu-item > a,
.primary-nav .current-page-ancestor > a {
  color: var(--pink);
}
.primary-nav .current-menu-item > a::after {
  content: ''; display: block;
  position: absolute; bottom: -2px; left: 13px; right: 13px;
  height: 2px; background: var(--pink); border-radius: 2px;
}

/* --- Header Icons --- */
.header-icons {
  display: flex; align-items: center; gap: 2px; margin-left: 16px;
}
.hicon {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: all var(--ease); position: relative;
  text-decoration: none;
}
.hicon:hover { background: var(--gray-bg); color: var(--pink); }
.hicon svg { width: 19px; height: 19px; }
.cart-badge {
  position: absolute; top: 3px; right: 3px;
  background: var(--pink); color: #fff;
  font-size: 10px; font-weight: 800; font-family: var(--font-h);
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* --- Mobile hamburger --- */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 9px; }
.hamburger span { display: block; width: 21px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile Menu drawer --- */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 999; overflow-y: auto;
  padding: 20px 24px 40px;
  transform: translateX(-100%); transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 13px 16px; border-radius: var(--r-md);
  font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--dark);
}
.mobile-nav a:hover { background: var(--pink-pale); color: var(--pink); }
.mobile-nav .mobile-nav-actions {
  display: flex; gap: 10px; margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* =============================================
   ── SEARCH BAR ──
============================================= */
.search-bar {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 12px 0; display: none;
}
.search-bar.open { display: block; }
.search-form {
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-bg); border-radius: var(--r-pill); padding: 10px 18px;
  border: 2px solid transparent; transition: border-color var(--ease);
}
.search-form:focus-within { border-color: var(--pink); background: #fff; }
.search-form input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 15px; color: var(--text);
}
.search-form button { color: var(--muted); display: flex; }
.search-form button:hover { color: var(--pink); }
.search-close-btn {
  margin-left: 8px; color: var(--muted); font-size: 20px; line-height: 1;
  transition: color var(--ease);
}
.search-close-btn:hover { color: var(--pink); }

/* =============================================
   ── HERO ──
============================================= */
.hero {
  background: linear-gradient(135deg, #FFF5F8 0%, #FFFBF0 55%, #F2FFF0 100%);
  overflow: hidden; position: relative; min-height: 540px;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(245,63,122,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -60px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(125,192,75,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px; padding: 64px 0 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pink-pale); color: var(--pink);
  padding: 5px 14px; border-radius: var(--r-pill);
  font-family: var(--font-h); font-size: 11.5px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(34px, 4.5vw, 58px); font-weight: 900; margin-bottom: 18px; color: var(--dark);
}
.hero-title .brand {
  font-style: italic;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 15.5px; color: var(--muted); max-width: 430px; margin-bottom: 32px; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding-top: 36px; border-top: 1px solid rgba(0,0,0,.07);
}
.hero-feat { display: flex; align-items: center; gap: 11px; }
.hero-feat-icon {
  width: 42px; height: 42px; border-radius: var(--r-md);
  background: #fff; box-shadow: var(--sh-xs); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.hero-feat strong { display: block; font-size: 13px; font-family: var(--font-h); font-weight: 800; color: var(--dark); }
.hero-feat span   { font-size: 11.5px; color: var(--muted); line-height: 1.4; }

.hero-image {
  display: flex; justify-content: center; align-items: center; position: relative;
}
.hero-img-wrap {
  position: relative; width: 100%; max-width: 480px;
}
.hero-img-wrap img {
  width: 100%; object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(245,63,122,.22));
  animation: float 4s ease-in-out infinite;
}
/* Decorative floaters */
.hero-floater {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: floatRand 5s ease-in-out infinite;
}
.hero-floater.f1 { width: 18px; height: 18px; background: var(--pink); opacity: .25; top: 15%; left: 5%; animation-delay: 0s; }
.hero-floater.f2 { width: 28px; height: 28px; background: var(--green); opacity: .2; top: 55%; right: 2%; animation-delay: 1s; }
.hero-floater.f3 { width: 12px; height: 12px; background: var(--yellow); opacity: .35; bottom: 15%; left: 15%; animation-delay: 2s; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes floatRand { 0%,100%{transform:translate(0,0)} 33%{transform:translate(6px,-8px)} 66%{transform:translate(-4px,5px)} }

/* =============================================
   ── HOW IT WORKS ──
============================================= */
.how-it-works { background: #fff; padding: 80px 0; }
.section-title-center {
  font-size: clamp(22px, 3vw, 34px); text-align: center; margin-bottom: 52px;
}
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; position: relative; }
.steps::before {
  content: ''; position: absolute;
  top: 28px; left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--pink), var(--yellow), var(--green));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  font-family: var(--font-h); font-size: 22px; font-weight: 900; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.step-num.s1 { background: var(--pink); box-shadow: 0 6px 20px rgba(245,63,122,.35); }
.step-num.s2 { background: var(--green); box-shadow: 0 6px 20px rgba(125,192,75,.35); }
.step-num.s3 { background: var(--yellow); color: var(--dark); box-shadow: 0 6px 20px rgba(245,200,66,.35); }
.step-emoji { font-size: 72px; margin-bottom: 18px; display: block; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* =============================================
   ── BOX BUILDER PAGE ──
============================================= */
.builder-page { padding: 40px 0 80px; }
.builder-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; }

/* --- Category tabs (top) --- */
.cat-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.cat-tab {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 10px 16px; border-radius: var(--r-md); border: 2px solid transparent;
  font-family: var(--font-h); font-size: 11.5px; font-weight: 700;
  color: var(--muted); background: var(--gray-bg); cursor: pointer;
  transition: all var(--ease);
}
.cat-tab .ti { font-size: 22px; }
.cat-tab:hover { color: var(--pink); border-color: var(--pink); background: var(--pink-pale); }
.cat-tab.active { color: var(--pink); border-color: var(--pink); background: var(--pink-pale); }

/* --- Sub-filters --- */
.sub-filters {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 20px;
}
.sf-pill {
  padding: 6px 16px; border-radius: var(--r-pill);
  border: 2px solid var(--border); background: #fff;
  font-family: var(--font-h); font-size: 12.5px; font-weight: 700;
  color: var(--muted); cursor: pointer; transition: all var(--ease);
}
.sf-pill:hover, .sf-pill.active { border-color: var(--pink); color: var(--pink); background: var(--pink-pale); }
.sf-sort {
  margin-left: auto; display: flex; align-items: center; gap: 6px;
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  color: var(--muted); cursor: pointer; padding: 6px 12px;
  border-radius: var(--r-pill); transition: background var(--ease);
}
.sf-sort:hover { background: var(--gray-bg); }

/* --- Products Grid --- */
.products-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 20px;
}
.prod-card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  border: 2px solid transparent; box-shadow: var(--sh-xs);
  transition: all var(--ease); position: relative;
}
.prod-card:hover { border-color: var(--pink); box-shadow: var(--sh-sm); transform: translateY(-3px); }
.prod-img-wrap {
  position: relative; background: var(--gray-bg); padding: 16px;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
}
.prod-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.06); }
.prod-badge {
  position: absolute; top: 9px; left: 9px; z-index: 1;
  padding: 3px 10px; border-radius: var(--r-pill);
  font-family: var(--font-h); font-size: 10.5px; font-weight: 800;
  letter-spacing: .03em; text-transform: uppercase;
}
.badge-bestseller { background: var(--yellow); color: var(--dark); }
.badge-new   { background: var(--green); color: #fff; }
.badge-sale  { background: var(--pink); color: #fff; }
.wish-btn {
  position: absolute; top: 9px; right: 9px; z-index: 1;
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; box-shadow: var(--sh-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); cursor: pointer; border: none;
  transition: all var(--ease); font-size: 14px;
}
.wish-btn:hover, .wish-btn.on { color: var(--pink); }
.prod-body { padding: 12px; }
.prod-name { font-family: var(--font-h); font-size: 13px; font-weight: 800; color: var(--dark); margin-bottom: 3px; line-height: 1.3; }
.prod-sub  { font-size: 11.5px; color: var(--muted); margin-bottom: 9px; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.prod-price { font-family: var(--font-h); font-size: 15px; font-weight: 900; color: var(--dark); }
.add-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 12px; border-radius: var(--r-pill);
  background: var(--pink); color: #fff;
  font-family: var(--font-h); font-size: 11.5px; font-weight: 800;
  border: none; cursor: pointer; transition: all var(--ease); white-space: nowrap;
}
.add-btn:hover { background: var(--pink-hover); transform: scale(1.04); }
.add-btn svg { width: 13px; height: 13px; }

/* Load more */
.load-more-wrap { text-align: center; padding-top: 8px; }

/* --- Box Summary Sidebar --- */
.box-sidebar {
  position: sticky; top: 86px;
  background: #fff; border-radius: var(--r-xl);
  box-shadow: var(--sh-md); overflow: hidden;
}
.sidebar-head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--border);
}
.sidebar-head h3 {
  font-size: 17px; font-weight: 900; margin-bottom: 10px;
}
.sidebar-preview {
  text-align: center; font-size: 56px; padding: 4px 0 8px;
}
.sidebar-count {
  font-size: 11.5px; color: var(--muted); text-align: center;
}
.sidebar-items {
  padding: 10px 14px; max-height: 380px; overflow-y: auto;
}
.sidebar-empty {
  text-align: center; padding: 24px 10px;
  font-size: 12.5px; color: var(--muted); line-height: 1.6;
}
.box-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.box-row:last-child { border-bottom: none; }
.box-row-img {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  object-fit: cover; flex-shrink: 0; background: var(--gray-bg);
}
.box-row-info { flex: 1; min-width: 0; }
.box-row-name {
  font-size: 11.5px; font-weight: 700; color: var(--dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.box-row-var { font-size: 10.5px; color: var(--muted); }
.box-row-qty { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; }
.q-btn {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gray-bg); border: none; cursor: pointer;
  font-size: 14px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.q-btn:hover { background: var(--pink-pale); color: var(--pink); }
.box-row-price { font-size: 12.5px; font-weight: 800; color: var(--dark); white-space: nowrap; }
.row-del { color: var(--muted); cursor: pointer; font-size: 17px; line-height: 1; background: none; border: none; transition: color var(--ease); padding: 2px; }
.row-del:hover { color: var(--pink); }
.sidebar-foot {
  padding: 14px 16px 18px; border-top: 1px solid var(--border); background: var(--gray-bg);
}
.sub-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 14.5px; margin-bottom: 12px; }
.ship-bar { margin-bottom: 14px; }
.ship-text { font-size: 11.5px; color: var(--muted); margin-bottom: 6px; }
.ship-text strong { color: var(--pink); }
.prog-track { height: 6px; background: var(--border); border-radius: var(--r-pill); overflow: hidden; }
.prog-fill  { height: 100%; background: linear-gradient(to right, var(--pink), var(--pink-light)); border-radius: var(--r-pill); transition: width .5s ease; }
.checkout-btn {
  width: 100%; padding: 14px; border-radius: var(--r-pill);
  background: var(--pink); color: #fff; border: none;
  font-family: var(--font-h); font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; box-shadow: var(--sh-pink); transition: all var(--ease);
  margin-bottom: 8px;
}
.checkout-btn:hover { background: var(--pink-hover); transform: translateY(-2px); }
.checkout-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.save-btn {
  width: 100%; padding: 11px; border-radius: var(--r-pill);
  background: #fff; color: var(--pink); border: 2px solid var(--pink);
  font-family: var(--font-h); font-size: 13px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: all var(--ease);
}
.save-btn:hover { background: var(--pink-pale); }

/* =============================================
   ── FEATURED BOXES (homepage) ──
============================================= */
.featured-boxes { padding: 80px 0; background: var(--bg); }
.section-hd {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px;
}
.section-hd h2 { font-size: clamp(20px,2.5vw,30px); }
.view-all {
  font-family: var(--font-h); font-size: 13.5px; font-weight: 700;
  color: var(--pink); display: flex; align-items: center; gap: 4px;
  transition: gap var(--ease);
}
.view-all:hover { gap: 8px; }
.boxes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.box-card {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  aspect-ratio: .85; cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease); box-shadow: var(--sh-xs);
}
.box-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.box-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.box-card:hover img { transform: scale(1.06); }
.box-card-ov {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%); color: #fff;
}
.box-card-ov h3 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.box-card-ov .desc { font-size: 11.5px; opacity: .82; margin-bottom: 6px; }
.box-card-ov .price { font-family: var(--font-h); font-size: 19px; font-weight: 900; color: #fff; }

/* =============================================
   ── TRUST SECTION ──
============================================= */
.trust { padding: 36px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-icon {
  width: 50px; height: 50px; border-radius: var(--r-md);
  background: var(--pink-pale); display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.trust-text strong { display: block; font-family: var(--font-h); font-size: 13.5px; font-weight: 800; color: var(--dark); }
.trust-text span   { font-size: 12px; color: var(--muted); }

/* =============================================
   ── FOOTER ──
============================================= */
.site-footer { background: var(--dark); color: rgba(255,255,255,.78); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-logo .logo-letters { font-size: 28px; }
.footer-logo .logo-sub { color: rgba(255,255,255,.35); }
.footer-desc { font-size: 13.5px; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,.55); }
.footer-col h4 { font-family: var(--font-h); font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color var(--ease); }
.footer-links a:hover { color: var(--pink-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,.3);
}

/* =============================================
   ── WOOCOMMERCE OVERRIDES ──
============================================= */
.woocommerce-store-notice { display: none !important; }

/* Shop loop */
.woocommerce ul.products li.product {
  border-radius: var(--r-lg) !important; background: #fff !important;
  box-shadow: var(--sh-xs) !important; overflow: hidden !important;
  border: 2px solid transparent !important; transition: all var(--ease) !important;
  padding: 0 0 14px !important;
}
.woocommerce ul.products li.product:hover {
  border-color: var(--pink) !important; box-shadow: var(--sh-sm) !important; transform: translateY(-3px);
}
.woocommerce ul.products li.product a img {
  border-radius: 0 !important; width: 100% !important; aspect-ratio: 1; object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-h) !important; font-size: 14px !important; font-weight: 800 !important;
  color: var(--dark) !important; padding: 12px 14px 4px !important;
}
.woocommerce ul.products li.product .price {
  font-family: var(--font-h) !important; font-size: 16px !important; font-weight: 900 !important;
  color: var(--pink) !important; padding: 0 14px !important;
}
.woocommerce ul.products li.product .button {
  margin: 10px 14px 0 !important; width: calc(100% - 28px) !important; display: block !important;
  background: var(--pink) !important; color: #fff !important;
  border-radius: var(--r-pill) !important; border: none !important;
  font-family: var(--font-h) !important; font-weight: 700 !important; font-size: 13px !important;
  padding: 10px 18px !important; text-align: center !important; transition: all var(--ease) !important;
}
.woocommerce ul.products li.product .button:hover { background: var(--pink-hover) !important; }
.woocommerce ul.products li.product .onsale {
  background: var(--pink) !important; border-radius: var(--r-pill) !important;
  font-family: var(--font-h) !important; font-weight: 800 !important;
  min-width: auto !important; min-height: auto !important; padding: 4px 12px !important; line-height: 1.5 !important;
}

/* Single Product */
.woocommerce div.product .product_title {
  font-family: var(--font-h) !important; font-size: clamp(26px,4vw,40px) !important;
  font-weight: 900 !important; color: var(--dark) !important;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
  font-family: var(--font-h) !important; font-size: 28px !important; font-weight: 900 !important; color: var(--pink) !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
  background: var(--pink) !important; border-radius: var(--r-pill) !important;
  font-family: var(--font-h) !important; font-weight: 800 !important; font-size: 16px !important;
  padding: 14px 34px !important; border: none !important; box-shadow: var(--sh-pink) !important;
  transition: all var(--ease) !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: var(--pink-hover) !important; transform: translateY(-2px) !important;
}
.woocommerce .quantity .qty {
  border: 2px solid var(--border) !important; border-radius: var(--r-md) !important;
  font-family: var(--font-h) !important; font-weight: 700 !important; padding: 10px 14px !important; width: 70px !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--pink) !important; border-color: var(--pink) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { font-family: var(--font-h) !important; font-weight: 700 !important; }
.woocommerce-product-gallery__image img { border-radius: var(--r-lg) !important; }

/* Cart */
.woocommerce-cart .woocommerce table.shop_table {
  border: none !important; border-radius: var(--r-lg) !important;
  overflow: hidden !important; box-shadow: var(--sh-sm) !important;
}
.woocommerce-cart .woocommerce table.shop_table th {
  background: var(--gray-bg) !important; font-family: var(--font-h) !important;
  font-size: 12px !important; font-weight: 800 !important; text-transform: uppercase !important;
  letter-spacing: .07em !important; color: var(--muted) !important; border: none !important;
}
.woocommerce-cart .woocommerce table.shop_table td { border-color: var(--border) !important; vertical-align: middle !important; }
.woocommerce-cart .woocommerce td.product-name a { font-family: var(--font-h) !important; font-weight: 700 !important; color: var(--dark) !important; }
.woocommerce-cart .woocommerce td.product-price,
.woocommerce-cart .woocommerce td.product-subtotal { font-family: var(--font-h) !important; font-weight: 900 !important; color: var(--pink) !important; }
.woocommerce-cart .woocommerce .cart_totals {
  background: #fff !important; border-radius: var(--r-xl) !important;
  box-shadow: var(--sh-md) !important; padding: 26px !important; border: none !important;
}
.woocommerce-cart .woocommerce .cart_totals h2 { font-family: var(--font-h) !important; font-size: 20px !important; font-weight: 900 !important; margin-bottom: 18px !important; }
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  background: var(--pink) !important; border-radius: var(--r-pill) !important;
  font-family: var(--font-h) !important; font-weight: 800 !important; font-size: 16px !important;
  padding: 14px 28px !important; box-shadow: var(--sh-pink) !important; border: none !important; transition: all var(--ease) !important;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover { background: var(--pink-hover) !important; transform: translateY(-2px) !important; }

/* Checkout */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
  font-family: var(--font-h) !important; font-size: 19px !important; font-weight: 900 !important;
  padding-bottom: 12px !important; border-bottom: 2px solid var(--border) !important; margin-bottom: 20px !important;
}
.woocommerce-checkout .woocommerce form .form-row input.input-text,
.woocommerce-checkout .woocommerce form .form-row textarea,
.woocommerce-checkout .woocommerce form .form-row select {
  border: 2px solid var(--border) !important; border-radius: var(--r-md) !important;
  padding: 11px 15px !important; font-size: 14px !important; transition: border-color var(--ease) !important;
}
.woocommerce-checkout .woocommerce form .form-row input.input-text:focus { border-color: var(--pink) !important; outline: none !important; box-shadow: 0 0 0 3px rgba(245,63,122,.12) !important; }
.woocommerce-checkout #payment { background: #fff !important; border-radius: var(--r-xl) !important; }
.woocommerce-checkout #payment #place_order {
  background: var(--pink) !important; border-radius: var(--r-pill) !important;
  font-family: var(--font-h) !important; font-weight: 800 !important; font-size: 16px !important;
  padding: 15px 34px !important; box-shadow: var(--sh-pink) !important; border: none !important;
  width: 100% !important; transition: all var(--ease) !important;
}
.woocommerce-checkout #payment #place_order:hover { background: var(--pink-hover) !important; transform: translateY(-2px) !important; }

/* My Account */
.woocommerce-MyAccount-navigation {
  background: #fff !important; border-radius: var(--r-xl) !important;
  box-shadow: var(--sh-sm) !important; overflow: hidden !important; padding: 8px !important;
}
.woocommerce-MyAccount-navigation ul li a {
  font-family: var(--font-h) !important; font-weight: 700 !important;
  display: block !important; padding: 10px 16px !important;
  border-radius: var(--r-md) !important; transition: all var(--ease) !important; color: var(--dark) !important;
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover { background: var(--pink-pale) !important; color: var(--pink) !important; }

/* WC notices */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  border-top-color: var(--pink) !important; border-radius: 0 var(--r-md) var(--r-md) 0 !important;
}
.woocommerce-message::before { color: var(--pink) !important; }
.woocommerce-message .button { background: var(--pink) !important; border-radius: var(--r-pill) !important; font-family: var(--font-h) !important; font-weight: 700 !important; }

/* =============================================
   ── RESPONSIVE ──
============================================= */
@media (max-width: 1100px) {
  .boxes-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .builder-layout { grid-template-columns: 1fr; }
  .box-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .boxes-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .cat-tabs { gap: 4px; }
  .cat-tab { padding: 8px 10px; font-size: 10.5px; }
}
