/*
Theme Name: szcrypgs
Theme URI: https://example.com/szcrypgs
Author: Custom
Author URI: https://example.com
Description: A vibrant adult toy e-commerce theme inspired by Babeland, with bold magenta/cyan branding, responsive layouts for homepage, category, and product detail pages.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: szcrypgs
Tags: e-commerce, woocommerce, responsive, custom-colors
*/

/* ===========================
   CSS Variables
=========================== */
:root {
  --primary: #e91e8c;
  --primary-dark: #c01575;
  --primary-light: #f472b6;
  --secondary: #00bcd4;
  --secondary-dark: #0097a7;
  --accent-yellow: #f9c22e;
  --accent-green: #4caf50;
  --bg-white: #ffffff;
  --bg-light: #f7f7f7;
  --bg-cyan-light: #e0f7fa;
  --text-dark: #222222;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e0e0e0;
  --sale-red: #e53935;
  --popular-pink: #e91e8c;
  --font-body: 'Nunito', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(233,30,140,0.18);
  --transition: 0.22s ease;
}

/* ===========================
   Reset & Base
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ===========================
   Typography
=========================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

/* ===========================
   Container
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   Top Bar
=========================== */
.top-bar {
  background: var(--text-dark);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  padding: 7px 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.top-bar a { color: var(--primary-light); }

/* ===========================
   Press Bar
=========================== */
.press-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 8px 20px;
}
.press-bar .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.press-bar img { height: 18px; width: auto; opacity: 0.5; filter: grayscale(1); transition: var(--transition); }
.press-bar img:hover { opacity: 0.85; filter: none; }
.press-bar-placeholder {
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap; justify-content: center;
}
.press-item {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
}

/* ===========================
   Header
=========================== */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo .logo-plus-minus {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 1.2rem;
  color: var(--text-dark);
}
.site-logo .logo-circle {
  width: 26px; height: 26px;
  border: 2.5px solid var(--text-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900;
}
.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 10px 42px 10px 16px;
  border: 2px solid var(--border);
  border-radius: 24px;
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.header-search input:focus { border-color: var(--primary); }
.header-search button {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--text-mid); font-size: 1.1rem;
}
.header-actions {
  display: flex; align-items: center; gap: 18px; margin-left: auto;
}
.header-action-item {
  display: flex; flex-direction: column; align-items: center;
  font-size: 0.68rem; color: var(--text-mid); cursor: pointer; gap: 2px;
  transition: var(--transition);
}
.header-action-item:hover { color: var(--primary); }
.header-action-item svg { width: 22px; height: 22px; }
.cart-count {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

/* ===========================
   Navigation
=========================== */
.main-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.main-nav .container {
  display: flex; align-items: center; gap: 0;
}
.main-nav ul { display: flex; gap: 0; }
.main-nav ul li a {
  display: block;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--primary); border-bottom-color: var(--primary); }
.main-nav ul li.sale a { color: var(--primary); }

/* ===========================
   Hero / Homepage Sections
=========================== */
.hero-banner {
  background: linear-gradient(135deg, var(--bg-cyan-light) 0%, #fff5f9 60%, #fff 100%);
  padding: 40px 20px;
  display: flex;
  align-items: center;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}
.hero-content { max-width: 480px; z-index: 2; }
.hero-content .tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.5;
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-content h1 span { color: var(--primary); }
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(233,30,140,0.3); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-dark {
  background: var(--text-dark);
  color: #fff;
}
.btn-dark:hover { background: #444; color: #fff; }

/* ===========================
   Promo Split — full bleed edge-to-edge
=========================== */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.promo-block {
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: center;
}
.promo-block h3 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
}
.promo-block p { font-size: 0.85rem; margin-bottom: 14px; }
.promo-block.pink-bg  { background: var(--primary); color: #fff; }
.promo-block.cyan-bg  { background: var(--secondary); color: #fff; }
.promo-block.dark-bg  { background: var(--text-dark); color: #fff; }
.promo-block.yellow-bg { background: var(--accent-yellow); color: var(--text-dark); }
.promo-block.light-bg  { background: var(--bg-light); color: var(--text-dark); }

/* ===========================
   Category Grid (Homepage - not used for shop page)
=========================== */
.promo-banner {
  background: var(--accent-yellow);
  text-align: center;
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}
.promo-banner span { color: var(--primary); }

/* ===========================
   Section Titles
=========================== */
.section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-title .badge-new {
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  vertical-align: middle;
}

/* ===========================
   Product Cards
=========================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 0;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}
.product-card .card-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px; z-index: 2;
}
.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-popular { background: var(--popular-pink); color: #fff; }
.badge-sale { background: var(--sale-red); color: #fff; }
.badge-off {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-direction: column;
  line-height: 1;
}
.card-wishlist {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  color: var(--text-light);
}
.card-wishlist:hover { color: var(--primary); border-color: var(--primary); }
.card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.card-title a:hover { color: var(--primary); }
.card-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-current { font-size: 1rem; font-weight: 800; color: var(--primary); }
.price-old { font-size: 0.82rem; text-decoration: line-through; color: var(--text-light); }
.card-colors {
  display: flex; gap: 5px; align-items: center;
}
.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  outline: 1px solid #ccc;
  cursor: pointer;
}
.card-footer { padding: 0 14px 14px; }
.btn-buy {
  width: 100%;
  padding: 9px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.btn-buy:hover { background: var(--secondary-dark); transform: translateY(-1px); }

/* ===========================
   Deals Slider
=========================== */
.hot-deals-section {
  background: #fff;
  padding: 40px 0;
}
.deals-slider {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory;
}
.deals-slider::-webkit-scrollbar { height: 4px; }
.deals-slider::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }
.deals-slider .product-card {
  flex: 0 0 200px; scroll-snap-align: start;
}

/* ===========================
   Category Grid (Homepage)
=========================== */
.category-grid-section { padding: 50px 0; background: var(--bg-light); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.category-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.category-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: var(--primary-light); }
.category-card .cat-img {
  aspect-ratio: 1; overflow: hidden; background: var(--bg-cyan-light);
  display: flex; align-items: center; justify-content: center;
}
.category-card .cat-img img { width: 100%; height: 100%; object-fit: cover; }
.category-card .cat-name { padding: 10px 8px; font-size: 0.78rem; font-weight: 700; color: var(--text-dark); }

/* ===========================
   Promo Split Banners
=========================== */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px 0;
}
.promo-block {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: center;
}
.promo-block h3 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 6px;
}
.promo-block p { font-size: 0.82rem; color: inherit; margin-bottom: 16px; }
.promo-block.pink-bg { background: var(--primary); color: #fff; }
.promo-block.cyan-bg { background: var(--secondary); color: #fff; }
.promo-block.dark-bg { background: var(--text-dark); color: #fff; }
.promo-block.yellow-bg { background: var(--accent-yellow); color: var(--text-dark); }
.promo-block.light-bg { background: var(--bg-light); color: var(--text-dark); }

/* ===========================
   What's Your Vibe Section
=========================== */
.vibe-section { padding: 50px 0; background: #fff; }
.vibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.vibe-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 0.8;
  cursor: pointer;
  transition: var(--transition);
}
.vibe-card:hover { transform: scale(1.03); box-shadow: var(--shadow-hover); }
.vibe-card img { width: 100%; height: 100%; object-fit: cover; }
.vibe-card .vibe-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 20px 10px 10px;
  text-align: center;
}

/* ===========================
   Blog Section
=========================== */
.blog-section { padding: 50px 0; background: var(--bg-light); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.blog-card .blog-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .blog-body { padding: 16px; }
.blog-card .blog-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 6px; }
.blog-card .blog-title { font-size: 0.9rem; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.blog-card .blog-excerpt { font-size: 0.8rem; color: var(--text-mid); }

/* ===========================
   CATEGORY PAGE
=========================== */
.page-hero-small {
  background: var(--bg-light);
  padding: 28px 20px;
  border-bottom: 1px solid var(--border);
}
.page-hero-small .breadcrumb {
  font-size: 0.78rem; color: var(--text-mid); margin-bottom: 8px;
}
.page-hero-small .breadcrumb a:hover { color: var(--primary); }
.page-hero-small h1 { font-size: 1.6rem; font-weight: 900; }
.page-hero-small .result-count { font-size: 0.85rem; color: var(--text-mid); }
.category-top-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  overflow-x: auto;
  white-space: nowrap;
}
.category-top-nav .container { display: flex; gap: 0; overflow-x: auto; }
.cat-top-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  flex-shrink: 0;
}
.cat-top-item:hover { border-bottom-color: var(--primary); color: var(--primary); }
.cat-top-item .cat-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--bg-light);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cat-top-item .cat-icon img { width: 100%; height: 100%; object-fit: cover; }
.cat-top-item span { font-size: 0.72rem; font-weight: 700; text-align: center; }
.filters-bar {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.filter-btn {
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 5px;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--primary); color: var(--primary); background: #fff5f9; }
.filter-btn svg { width: 14px; height: 14px; }
.category-layout { display: flex; gap: 28px; align-items: flex-start; padding: 32px 0; }
.category-sidebar { width: 220px; flex-shrink: 0; }
.sidebar-widget { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; }
.sidebar-widget h4 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; color: var(--text-dark); }
.sidebar-widget ul li { margin-bottom: 6px; }
.sidebar-widget ul li a { font-size: 0.82rem; color: var(--text-mid); transition: var(--transition); }
.sidebar-widget ul li a:hover { color: var(--primary); }
.price-range input { width: 100%; }
.category-products { flex: 1; }

/* ===========================
   PRODUCT DETAIL PAGE
=========================== */
.product-detail {
  padding: 40px 0;
}
.product-detail .pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.pd-gallery { position: sticky; top: 80px; }
.pd-main-img {
  aspect-ratio: 1;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.pd-thumbs { display: flex; gap: 8px; }
.pd-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-light);
}
.pd-thumb:hover, .pd-thumb.active { border-color: var(--primary); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-info { }
.pd-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.pd-badge-exclusive {
  background: var(--secondary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pd-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 10px; }
.pd-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 0.85rem; }
.stars { color: #f9c22e; letter-spacing: -1px; }
.pd-rating a { color: var(--secondary); text-decoration: underline; font-size: 0.82rem; }
.pd-features { margin-bottom: 20px; }
.pd-features ul { padding-left: 0; }
.pd-features ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 5px;
  display: flex; align-items: flex-start; gap: 6px;
}
.pd-features ul li::before { content: '•'; color: var(--primary); font-size: 1.2rem; line-height: 1; flex-shrink: 0; }
.pd-pricing { margin-bottom: 18px; }
.pd-price-old { font-size: 1rem; text-decoration: line-through; color: var(--text-light); }
.pd-price-new { font-size: 2rem; font-weight: 900; color: var(--primary); }
.pd-afterpay { font-size: 0.8rem; color: var(--text-mid); margin-top: 4px; }
.pd-afterpay strong { color: var(--text-dark); }
.pd-protection { background: var(--bg-light); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 18px; font-size: 0.82rem; color: var(--text-mid); }
.pd-protection a { color: var(--secondary); text-decoration: underline; }
.pd-add-to-cart-row { display: flex; gap: 10px; align-items: center; margin-bottom: 18px; }
.btn-add-to-cart {
  flex: 1;
  padding: 14px 20px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-add-to-cart:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,188,212,0.3); }
.btn-wishlist-pd {
  width: 48px; height: 48px;
  border: 2px solid var(--border);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--text-light);
}
.btn-wishlist-pd:hover { border-color: var(--primary); color: var(--primary); }
.pd-rewards { background: linear-gradient(135deg, #fff5f9, #fff); border: 1px solid var(--primary-light); border-radius: var(--radius); padding: 12px 16px; font-size: 0.82rem; color: var(--text-mid); margin-bottom: 18px; }
.pd-rewards strong { color: var(--primary); }
.pd-upsells { }
.pd-upsells h4 { font-size: 0.9rem; font-weight: 800; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.pd-upsell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pd-upsell-item {
  display: flex; flex-direction: column; align-items: center;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 10px; gap: 6px;
  transition: var(--transition);
}
.pd-upsell-item:hover { border-color: var(--primary); }
.pd-upsell-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 4px; }
.pd-upsell-item .upsell-name { font-size: 0.72rem; text-align: center; font-weight: 600; }
.pd-upsell-item .upsell-price { font-size: 0.78rem; color: var(--text-mid); }
.pd-upsell-item .btn-upsell-add { font-size: 0.7rem; padding: 4px 10px; background: var(--primary); color: #fff; border: none; border-radius: 12px; cursor: pointer; }

/* Description & Details Tabs */
.pd-tabs-section { padding: 40px 0; border-top: 1px solid var(--border); }
.tab-buttons { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-btn {
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: var(--text-mid);
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.product-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.meta-item { display: flex; gap: 10px; align-items: flex-start; }
.meta-label { font-size: 0.78rem; font-weight: 700; color: var(--text-dark); min-width: 120px; }
.meta-value { font-size: 0.78rem; color: var(--text-mid); }

/* Reviews */
.review-stars-big { font-size: 3rem; font-weight: 900; color: var(--text-dark); }
.review-avg-row { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.review-bars { flex: 1; }
.review-bar-row { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; margin-bottom: 5px; }
.review-bar { flex: 1; height: 8px; background: var(--bg-light); border-radius: 4px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--accent-yellow); border-radius: 4px; }
.review-item { border-top: 1px solid var(--border); padding: 16px 0; }
.review-header { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 6px; }
.review-title { font-weight: 700; font-size: 0.88rem; }
.review-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
.review-meta { font-size: 0.75rem; color: var(--text-light); margin-top: 6px; }

/* ===========================
   Frequently Bought With
=========================== */
.freq-bought-section { padding: 40px 0; background: var(--bg-light); }

/* ===========================
   Footer
=========================== */
.site-footer {
  background: var(--secondary);
  color: #fff;
  padding: 50px 20px 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 30px;
}
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  color: #fff;
}
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.8); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-bottom: 16px; }
.social-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-icon:hover { background: rgba(255,255,255,0.4); }
.footer-email-form { display: flex; flex-direction: column; gap: 8px; }
.footer-email-form input {
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  outline: none;
}
.footer-email-form button {
  padding: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.footer-email-form button:hover { background: var(--primary-dark); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-icon {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 1100px) {
  .products-grid[style*="repeat(5"] { grid-template-columns: repeat(4,1fr) !important; }
}
@media (max-width: 900px) {
  .promo-split { grid-template-columns: 1fr; }
  .product-detail .pd-layout { grid-template-columns: 1fr; }
  .pd-gallery { position: static; }
  .category-layout { flex-direction: column; }
  .category-sidebar { width: 100%; }
  .product-meta { grid-template-columns: 1fr; }
  .products-grid[style*="repeat(5"] { grid-template-columns: repeat(3,1fr) !important; }
}
@media (max-width: 700px) {
  .main-nav ul { flex-wrap: nowrap; overflow-x: auto; }
  .header-inner { flex-wrap: wrap; }
  .hero-content h1 { font-size: 1.7rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid[style*="repeat(5"] { grid-template-columns: repeat(2,1fr) !important; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pd-upsell-grid { grid-template-columns: 1fr 1fr; }
  .promo-block { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .vibe-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Product Image Sale Badge Overlay
=========================== */
.pd-gallery-wrap { position: relative; }
.pd-sale-overlay {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 5;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(233,30,140,0.3);
}

/* ===========================
   In Stock Badge
=========================== */
.pd-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 10px;
}
.pd-stock.out { color: var(--sale-red); }

/* ===========================
   Payment Icons Row
=========================== */
.pd-payment-icons {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.pd-pay-icon {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 7px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-mid);
}

/* ===========================
   WooCommerce Loop Override — remove default ul wrapper styles
=========================== */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: contents !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ===========================
   Pagination Styling
=========================== */
.woocommerce-pagination ul,
.page-numbers {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.woocommerce-pagination ul li,
.page-numbers li { display: inline; }
.woocommerce-pagination a,
.woocommerce-pagination span,
.page-numbers a,
.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px; height: 36px;
  padding: 0 10px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  background: #fff;
}
.woocommerce-pagination a:hover,
.page-numbers a:hover { border-color: var(--primary); color: var(--primary); }
.woocommerce-pagination span.current,
.page-numbers span.current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.page-numbers .dots { border: none; background: none; }

/* ===========================
   Ready to Ship Badge
=========================== */
.ready-to-ship {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.ready-to-ship::before {
  content: '';
  width: 8px; height: 8px;
  background: #43a047;
  border-radius: 50%;
  display: inline-block;
}

/* ===========================
   Color Variant Swatches on Cards
=========================== */
.card-variants {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}
.variant-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  outline: 1.5px solid #ccc;
  cursor: pointer;
  transition: outline-color 0.15s;
}
.variant-dot:hover { outline-color: var(--primary); }
.variant-dot.active { outline-color: var(--primary); outline-width: 2px; }

/* ===========================
   Carousel / Slider Arrows
=========================== */
.slider-wrapper {
  position: relative;
}
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: var(--text-dark);
}
.slider-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.slider-arrow.prev { left: -18px; }
.slider-arrow.next { right: -18px; }
@media (max-width: 700px) {
  .slider-arrow.prev { left: 4px; }
  .slider-arrow.next { right: 4px; }
}

/* ===========================
   Brand Logo Area (Product Detail)
=========================== */
.pd-brand {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-mid);
}
.pd-brand strong { color: var(--text-dark); }
.pd-brand a { color: var(--secondary); font-weight: 700; }

/* ===========================
   Quantity Stepper
=========================== */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.qty-stepper button {
  width: 36px; height: 36px;
  background: var(--bg-light);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-stepper button:hover { background: var(--border); }
.qty-stepper input {
  width: 48px; height: 36px;
  border: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  outline: none;
}

/* ===========================
   WooCommerce Overrides
=========================== */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  border-top-color: var(--primary);
  background: #fff5f9;
}
.woocommerce .woocommerce-message::before { color: var(--primary); }
.woocommerce-page .woocommerce-breadcrumb { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 12px; }
.woocommerce-page .woocommerce-breadcrumb a { color: var(--secondary); }
.woocommerce ul.products li.product .price { color: var(--primary); font-weight: 800; }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce .button { background: var(--secondary); color: #fff; border-radius: var(--radius); font-weight: 700; transition: var(--transition); }
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: var(--secondary-dark); color: #fff; }
.woocommerce .single_add_to_cart_button { background: var(--secondary); color: #fff; border-radius: 30px; font-size: 1rem; font-weight: 800; padding: 14px 32px; transition: var(--transition); }
.woocommerce .single_add_to_cart_button:hover { background: var(--secondary-dark); }
.woocommerce-page h1.page-title { font-family: var(--font-heading); font-weight: 900; }
.woocommerce ul.products li.product a img { border-radius: var(--radius); }
.woocommerce span.onsale { background: var(--primary); border-radius: 20px; padding: 4px 10px; font-size: 0.72rem; font-weight: 700; }
