/*
Theme Name: LuxeShop
Theme URI: https://photographer.vn
Author: LuxeShop
Description: Sang trọng, tối giản sáng, WooCommerce-ready
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
WC requires at least: 8.0
Text Domain: luxeshop
*/

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --bg:           #f7f5f1;
  --surface:      #ffffff;
  --card:         #ffffff;
  --gold:         #b8872a;
  --gold-light:   #d4a843;
  --gold-pale:    #fdf3e0;
  --gold-dim:     rgba(184,135,42,.10);
  --text:         #1c1a18;
  --text-sub:     #4a4743;
  --text-muted:   #857f78;
  --text-dim:     #b5b0aa;
  --border:       #e2ddd6;
  --border-soft:  #ede9e3;
  --shadow-xs:    0 1px 3px rgba(0,0,0,.06);
  --shadow-card:  0 2px 10px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.04);
  --shadow-hover: 0 12px 32px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.07);
  --shadow-menu:  0 8px 24px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-xs:    6px;
  /* ── INTER ONLY ── */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --t:            .22s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }

/* ALL headings: Inter */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

ul { list-style: none; }
input, select, button, textarea { font-family: var(--font-body); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--border-soft); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   HEADER
============================================================ */
#site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}
.header-inner {
  display: flex; align-items: center; height: 64px; gap: 0;
}
.site-logo {
  font-family: var(--font-body); font-size: 19px; font-weight: 800;
  color: var(--text); letter-spacing: -.01em; white-space: nowrap;
  margin-right: 36px; flex-shrink: 0;
}
.site-logo:hover { color: var(--gold); }
.site-logo img { height: 40px; width: auto; }

/* ── NAV ── */
.site-nav { flex: 1; display: flex; align-items: center; height: 100%; }
.site-nav > ul { display: flex; align-items: center; height: 100%; gap: 0; margin: 0; padding: 0; }
.site-nav > ul > li { position: relative; height: 100%; display: flex; align-items: center; }
.site-nav > ul > li > a {
  display: flex; align-items: center; gap: 4px;
  height: 100%; padding: 0 14px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text-sub); white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.site-nav > ul > li > a:hover,
.site-nav > ul > li.current-menu-item > a,
.site-nav > ul > li.current-menu-ancestor > a { color: var(--gold); border-bottom-color: var(--gold); }

/* Carets */
.site-nav li.menu-item-has-children > a::after {
  content: ''; display: inline-block; width: 5px; height: 5px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); flex-shrink: 0; margin-left: 2px;
  transition: transform var(--t);
}
.site-nav > ul > li.menu-item-has-children:hover > a::after { transform: rotate(225deg) translateY(-2px); }

/* Dropdowns */
.site-nav ul ul {
  display: block; visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: calc(100% + 2px); left: 0;
  min-width: 200px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-menu); padding: 6px;
  transform: translateY(6px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 500; list-style: none;
}
.site-nav ul li:hover > ul, .site-nav ul li:focus-within > ul {
  visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0);
}
.site-nav ul ul li { position: relative; }
.site-nav ul ul li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; font-size: 13.5px; color: var(--text-sub);
  border-radius: var(--radius-xs); white-space: nowrap; gap: 8px;
  transition: background var(--t), color var(--t); border-bottom: none;
}
.site-nav ul ul li a:hover,
.site-nav ul ul li.current-menu-item > a { background: var(--gold-pale); color: var(--gold); }
.site-nav ul ul li.menu-item-has-children > a::after { transform: rotate(-45deg); }

/* Level 3 fly-out */
.site-nav ul ul ul { top: -6px; left: calc(100% + 4px); }
.site-nav ul ul li:last-child > ul,
.site-nav ul ul li:nth-last-child(-n+2) > ul { left: auto; right: calc(100% + 4px); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: 16px; }
.header-search-btn {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; padding: 8px; border-radius: var(--radius-xs);
  display: flex; align-items: center; transition: background var(--t), color var(--t);
}
.header-search-btn:hover { background: var(--border-soft); color: var(--gold); }
.header-cart {
  display: flex; align-items: center; gap: 7px;
  background: var(--gold-pale); border: 1px solid rgba(184,135,42,.22);
  padding: 7px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--gold);
  transition: background var(--t), box-shadow var(--t);
}
.header-cart:hover { background: #fdebc4; box-shadow: 0 2px 8px rgba(184,135,42,.2); color: var(--gold); }
.cart-count {
  background: var(--gold); color: #fff; font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 50px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.mobile-menu-btn {
  display: none; background: none; border: none; color: var(--text);
  cursor: pointer; padding: 8px; border-radius: var(--radius-xs);
}
.mobile-menu-btn:hover { background: var(--border-soft); }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,.35);
  display: none; align-items: flex-start; justify-content: center; padding-top: 80px;
}
.search-overlay.active { display: flex; }
.search-overlay-box {
  background: var(--surface); border-radius: var(--radius);
  width: 100%; max-width: 640px;
  padding: 6px; display: flex; gap: 6px; box-shadow: var(--shadow-hover);
}
.search-overlay-box input {
  flex: 1; border: none; outline: none; font-size: 16px;
  padding: 10px 14px; color: var(--text); background: transparent;
  font-family: var(--font-body);
}
.search-overlay-close {
  background: var(--border-soft); border: none; border-radius: var(--radius-xs);
  color: var(--text-muted); width: 42px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   HERO BANNER
============================================================ */
.hero-banner {
  position: relative; min-height: 520px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #fffbf3 0%, #fdf6e7 50%, #fef9f0 100%);
  overflow: hidden;
}
.hero-banner::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,135,42,.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero-banner::after {
  content: ''; position: absolute; bottom: -80px; left: 30%;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,135,42,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-banner-bg {
  position: absolute; right: 0; top: 0;
  width: 48%; height: 100%;
  background-size: cover; background-position: center;
}
.hero-banner-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, #fdf6e7 0%, rgba(253,246,231,.3) 40%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 580px; padding: 64px 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale); border: 1px solid rgba(184,135,42,.2);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(30px, 4.2vw, 52px); font-weight: 800;
  line-height: 1.1; color: var(--text); margin-bottom: 16px; letter-spacing: -.02em;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 700; }
.hero-subtitle { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; max-width: 460px; line-height: 1.75; }

/* ============================================================
   SEARCH BOX
============================================================ */
.search-box {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 5px 5px 5px 6px;
  max-width: 600px; box-shadow: var(--shadow-card);
  transition: border-color var(--t), box-shadow var(--t);
}
.search-box:focus-within {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(184,135,42,.1), var(--shadow-card);
}
.search-category {
  background: var(--bg); border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm); color: var(--text-sub);
  font-size: 13px; padding: 9px 10px; outline: none;
  cursor: pointer; min-width: 140px; max-width: 160px; font-weight: 500;
  font-family: var(--font-body);
}
.search-category option { background: var(--surface); color: var(--text); }
.search-input-wrap { flex: 1; min-width: 0; }
.search-input-wrap input {
  width: 100%; background: transparent; border: none; outline: none;
  font-size: 14.5px; color: var(--text); padding: 10px 10px;
  font-family: var(--font-body);
}
.search-input-wrap input::placeholder { color: var(--text-dim); }
.search-btn {
  background: var(--gold); border: none; border-radius: 10px;
  color: #fff; font-size: 13.5px; font-weight: 600; padding: 10px 20px;
  cursor: pointer; display: flex; align-items: center; gap: 7px;
  white-space: nowrap; flex-shrink: 0; font-family: var(--font-body);
  transition: background var(--t), transform var(--t);
}
.search-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px; gap: 16px;
}
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.section-title { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.section-link {
  font-size: 13px; font-weight: 500; color: var(--gold);
  display: flex; align-items: center; gap: 5px;
  padding: 6px 14px; border: 1px solid rgba(184,135,42,.25);
  border-radius: 50px; white-space: nowrap; transition: background var(--t);
}
.section-link:hover { background: var(--gold-pale); color: var(--gold); }

/* ============================================================
   CATEGORY GRID
============================================================ */
.category-section { padding: 64px 0 48px; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.category-grid.featured .category-card:first-child { grid-row: span 2; aspect-ratio: auto; }
.category-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; display: block;
  box-shadow: var(--shadow-card); transition: transform var(--t), box-shadow var(--t);
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.category-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.category-card:hover .category-card-img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
}
.category-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px; }
.category-card-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.category-card-count { font-size: 12px; color: rgba(255,255,255,.7); }

/* ============================================================
   VIEW TOGGLE
============================================================ */
.view-toggle {
  display: flex; align-items: center; gap: 3px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 3px;
}
.view-toggle-btn {
  background: transparent; border: none; color: var(--text-muted);
  cursor: pointer; padding: 6px 9px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t);
}
.view-toggle-btn.active, .view-toggle-btn:hover {
  background: var(--surface); color: var(--gold); box-shadow: var(--shadow-xs);
}

/* ============================================================
   PRODUCTS GRID / LIST
============================================================ */
.products-section { padding: 48px 0; }
.products-section + .products-section { padding-top: 8px; }
.products-grid { display: grid; gap: 20px; }
.products-grid.view-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.products-grid.view-list { grid-template-columns: 1fr; gap: 14px; }

.product-card {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border-soft); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--border); }
.product-card-img-wrap { position: relative; overflow: hidden; background: var(--bg); }
.view-grid .product-card-img-wrap { aspect-ratio: 1; }
.view-list .product-card-img-wrap { width: 200px; flex-shrink: 0; aspect-ratio: 1; }
.product-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .42s; }
.product-card:hover .product-card-img-wrap img { transform: scale(1.05); }

.product-card-actions {
  position: absolute; bottom: -52px; left: 0; right: 0;
  display: flex; gap: 8px; padding: 10px; transition: bottom var(--t);
}
.product-card:hover .product-card-actions { bottom: 0; }

.btn-add-cart {
  flex: 1; background: var(--gold); border: none; border-radius: var(--radius-sm);
  color: #fff; font-size: 12.5px; font-weight: 600; padding: 9px 12px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px;
  font-family: var(--font-body); transition: background var(--t);
  box-shadow: 0 2px 8px rgba(184,135,42,.3);
}
.btn-add-cart:hover { background: var(--gold-light); }

.btn-wishlist {
  background: rgba(255,255,255,.92); border: none; border-radius: var(--radius-sm);
  color: var(--text-muted); width: 36px; flex-shrink: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--t); box-shadow: var(--shadow-xs);
}
.btn-wishlist:hover, .btn-wishlist.wishlisted { color: #e05555; }

.product-card-body { padding: 14px 16px 16px; }
.product-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 50px; margin-bottom: 7px;
}
.badge-new  { background: #e8f5e9; color: #2e7d32; }
.badge-sale { background: #fce4ec; color: #c62828; }
.badge-hot  { background: var(--gold-pale); color: var(--gold); }

.product-cat { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 5px; }
.product-name {
  font-size: 14.5px; font-weight: 600; color: var(--text); margin-bottom: 7px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--gold); }
.product-desc {
  display: none; font-size: 13.5px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 10px;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.view-list .product-desc { display: -webkit-box; }
.product-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.product-price .woocommerce-Price-amount { font-size: 15px; font-weight: 700; color: var(--gold); }
.product-price del .woocommerce-Price-amount { font-size: 13px; font-weight: 400; color: var(--text-dim); text-decoration: line-through; }
.product-price ins { text-decoration: none; }
.product-rating { display: flex; align-items: center; gap: 5px; margin-top: 8px; }
.stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.rating-count { font-size: 11.5px; color: var(--text-dim); }

/* LIST mode */
.view-list .product-card { display: flex; align-items: stretch; }
.view-list .product-card-body { flex: 1; display: flex; flex-direction: column; padding: 20px 22px; }
.view-list .product-name { font-size: 16px; -webkit-line-clamp: 1; }
.view-list .product-card-actions { position: static; background: transparent; padding: 0; margin-top: auto; padding-top: 14px; }
.view-list .product-card:hover .product-card-actions { bottom: auto; }

/* ============================================================
   DIVIDER
============================================================ */
.gold-divider {
  border: none; height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0 28px;
}

/* ============================================================
   SINGLE PRODUCT SIDEBAR
============================================================ */
.single-product-layout {
  display: grid; grid-template-columns: 1fr 315px;
  gap: 36px; align-items: start; padding: 36px 0 64px;
}
.single-product-sidebar { position: sticky; top: 82px; display: flex; flex-direction: column; gap: 14px; }

.sidebar-widget {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden;
}
.sidebar-widget-head {
  padding: 13px 18px; border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(to right, var(--gold-pale), transparent);
}
.sidebar-widget-head svg { color: var(--gold); flex-shrink: 0; }
.sidebar-widget-head h4 { font-size: 14px; font-weight: 700; color: var(--text); }
.sidebar-widget-body { padding: 14px 18px 18px; }

.contact-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border-soft);
  font-size: 13.5px; color: var(--text-sub);
}
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-row svg { color: var(--gold); flex-shrink: 0; }
.contact-row a { color: var(--gold); font-weight: 600; }
.contact-row a:hover { color: var(--gold-light); }
.contact-label { font-size: 11px; color: var(--text-dim); margin-bottom: 1px; }

.support-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.support-badge {
  background: var(--bg); border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm); padding: 12px 10px; text-align: center;
}
.support-badge svg { color: var(--gold); margin: 0 auto 6px; }
.support-badge span { display: block; font-size: 11.5px; font-weight: 500; color: var(--text-sub); line-height: 1.3; }

.consult-form { display: flex; flex-direction: column; gap: 10px; }
.consult-form label { font-size: 11.5px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 3px; }
.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 12px; font-size: 13.5px;
  color: var(--text); outline: none; font-family: var(--font-body);
  transition: border-color var(--t), background var(--t);
}
.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus { border-color: var(--gold-light); background: var(--surface); }
.consult-form textarea { resize: vertical; min-height: 76px; }
.consult-submit {
  background: var(--gold); border: none; border-radius: var(--radius-sm);
  color: #fff; font-size: 14px; font-weight: 600; padding: 12px;
  cursor: pointer; width: 100%; display: flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font-body); transition: background var(--t), box-shadow var(--t);
}
.consult-submit:hover { background: var(--gold-light); box-shadow: 0 4px 14px rgba(184,135,42,.3); }
.consult-note { font-size: 11.5px; color: var(--text-dim); text-align: center; line-height: 1.5; margin-top: 2px; }
.consult-success {
  display: none; background: #e8f5e9; border: 1px solid #a5d6a7;
  color: #2e7d32; border-radius: var(--radius-sm); padding: 12px; font-size: 13.5px; text-align: center; margin-bottom: 12px;
}

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: #1c1a18; color: rgba(255,255,255,.65);
  padding: 56px 0 28px; margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-logo { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 12px; display: block; letter-spacing: -.01em; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 260px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: .06em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.5); transition: color var(--t); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.35);
}

/* ============================================================
   WOO BASE OVERRIDES
============================================================ */
.woocommerce-message, .woocommerce-info {
  background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--gold);
  color: var(--text); padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; list-style: none;
}
.woocommerce a.button, .woocommerce button.button {
  background: var(--gold) !important; color: #fff !important;
  border-radius: var(--radius-sm) !important; font-weight: 600 !important;
  font-family: var(--font-body) !important; transition: background var(--t) !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--gold-light) !important; }
.woocommerce .price { color: var(--gold) !important; }

/* ============================================================
   MOBILE NAV
============================================================ */
.mobile-nav {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100%;
  background: var(--surface); border-left: 1px solid var(--border);
  z-index: 9999; transition: right .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,.1);
}
.mobile-nav.open { right: 0; }
.mobile-nav-inner { padding: 20px 16px; }
.mobile-nav-close {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  margin-bottom: 20px; display: flex; padding: 8px; border-radius: var(--radius-xs);
}
.mobile-nav-close:hover { background: var(--bg); }
.mobile-nav-links, .mobile-nav-links ul { list-style: none; padding: 0; }
.mobile-nav-links li { border-bottom: 1px solid var(--border-soft); }
.mobile-nav-links li:last-child { border-bottom: none; }
.mobile-nav-links a { display: block; padding: 12px 8px; color: var(--text-sub); font-size: 15px; font-weight: 500; }
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-nav-links ul { padding-left: 14px; }
.mobile-nav-links ul a { font-size: 14px; color: var(--text-muted); padding: 9px 8px; }
.mobile-nav-links ul ul { padding-left: 12px; }
.mobile-nav-links ul ul a { font-size: 13px; padding: 8px; }
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 9998; display: none; backdrop-filter: blur(2px);
}
.mobile-nav-overlay.show { display: block; }

/* ============================================================
   ANIMATIONS
============================================================ */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.visible { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }
.spin { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .category-grid.featured .category-card:first-child { grid-row: auto; }
  .single-product-layout { grid-template-columns: 1fr 280px; gap: 24px; }
}
@media (max-width: 900px) {
  .single-product-layout { grid-template-columns: 1fr; }
  .single-product-sidebar { position: static; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-banner { min-height: 440px; }
  .hero-banner-bg { display: none; }
  .search-box { flex-wrap: wrap; }
  .search-category { min-width: unset; width: 100%; max-width: unset; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .view-list .product-card { flex-direction: column; }
  .view-list .product-card-img-wrap { width: 100%; aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid.view-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   WIDGET KILL – target only WP default widget classes
   (safe selectors, won't break layout elements)
============================================================ */
.widget_pages,
.widget_archives,
.widget_archive,
.widget_categories,
.widget_meta,
.widget_recent_entries,
.widget_recent_comments,
.widget_rss,
.widget_tag_cloud,
.widget_nav_menu,
.widget_calendar,
.widget_text,
.widget_links,
.elementor-widget-wp-widget-pages,
.elementor-widget-wp-widget-archives,
.elementor-widget-wp-widget-categories,
.elementor-widget-wp-widget-meta,
.elementor-widget-wp-widget-recent-posts,
.elementor-widget-wp-widget-recent-comments,
.elementor-widget-wp-widget-nav_menu,
#secondary,
.secondary {
    display: none !important;
}

/* ============================================================
   SINGLE PRODUCT – WooCommerce element fixes
   Prevents WC default styles from breaking our grid layout
============================================================ */
.single-product-main .woocommerce-notices-wrapper,
.single-product-main .woocommerce-breadcrumb { width: 100%; }

/* WC single product inner layout */
.single-product-main div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}
.single-product-main div.product .woocommerce-product-gallery {
    grid-column: 1;
    grid-row: 1;
}
.single-product-main div.product .summary {
    grid-column: 2;
    grid-row: 1;
}
.single-product-main div.product .woocommerce-tabs,
.single-product-main div.product .related.products,
.single-product-main div.product .upsells.products {
    grid-column: 1 / -1;
}

/* Summary text styles */
.single-product-main .summary .product_title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
}
.single-product-main .summary .price {
    font-size: 24px !important;
    font-weight: 700;
    color: var(--gold) !important;
    margin-bottom: 16px;
    display: block;
}
.single-product-main .summary .woocommerce-product-details__short-description {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.single-product-main .summary .cart {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.single-product-main .summary .qty {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 15px;
    font-family: var(--font-body);
    width: 80px;
    text-align: center;
    outline: none;
    color: var(--text);
}
.single-product-main .summary .qty:focus { border-color: var(--gold-light); }
.single-product-main .summary .single_add_to_cart_button {
    background: var(--gold) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 28px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: var(--font-body) !important;
    cursor: pointer;
    transition: background var(--t), box-shadow var(--t) !important;
    box-shadow: 0 4px 14px rgba(184,135,42,.3);
    flex: 1;
}
.single-product-main .summary .single_add_to_cart_button:hover {
    background: var(--gold-light) !important;
    box-shadow: 0 6px 20px rgba(184,135,42,.4) !important;
}

/* Product meta */
.single-product-main .summary .product_meta {
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-soft);
    padding-top: 16px;
}
.single-product-main .summary .product_meta span { display: block; margin-bottom: 4px; }
.single-product-main .summary .product_meta a { color: var(--gold); }

/* Tabs */
.single-product-main .woocommerce-tabs ul.tabs {
    display: flex; gap: 0; border-bottom: 2px solid var(--border);
    margin-bottom: 24px; padding: 0;
}
.single-product-main .woocommerce-tabs ul.tabs li {
    list-style: none; margin-bottom: -2px;
}
.single-product-main .woocommerce-tabs ul.tabs li a {
    display: block; padding: 10px 20px;
    font-size: 14px; font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: color var(--t), border-color var(--t);
}
.single-product-main .woocommerce-tabs ul.tabs li.active a,
.single-product-main .woocommerce-tabs ul.tabs li a:hover {
    color: var(--gold); border-bottom-color: var(--gold);
}
.single-product-main .woocommerce-tabs .panel {
    color: var(--text-sub); font-size: 14.5px; line-height: 1.75;
}

/* Related products */
.single-product-main .related.products > h2,
.single-product-main .upsells.products > h2 {
    font-size: 22px; font-weight: 700; margin-bottom: 20px;
    padding-top: 32px; border-top: 1px solid var(--border-soft);
}
.single-product-main .related.products ul.products,
.single-product-main .upsells.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    list-style: none; padding: 0;
}
.single-product-main .related.products ul.products li.product,
.single-product-main .upsells.products ul.products li.product {
    background: var(--card); border-radius: var(--radius);
    border: 1px solid var(--border-soft); overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--t), box-shadow var(--t);
}
.single-product-main .related.products ul.products li.product:hover,
.single-product-main .upsells.products ul.products li.product:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-hover);
}

/* Responsive single product */
@media (max-width: 768px) {
    .single-product-main div.product {
        grid-template-columns: 1fr;
    }
    .single-product-main div.product .summary { grid-column: 1; }
}
