/*
Theme Name: ShopMitch
Theme URI: https://shopmitch.com.ng
Author: ShopMitch
Author URI: https://shopmitch.com.ng
Description: A modern dark WooCommerce theme for ShopMitch with app-style design, orange/gold branding, and full product sync.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
WC tested up to: 8.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shopmitch
Tags: woocommerce, dark, ecommerce, nigeria, shopping
*/

/* ══════════════════════════════════════════════════════════
   FONTS & VARIABLES
══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800;900&display=swap');

:root {
  --orange: #FF8C00;
  --gold:   #FFD700;
  --dark:   #0A0A0F;
  --card:   #12121C;
  --input:  #1E1E2E;
  --border: #2A2A3A;
  --text:   #F0F0F0;
  --muted:  #888888;
  --red:    #FF3B30;
  --green:  #22C55E;
  --white:  #FFFFFF;
  --black:  #000000;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* ══════════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Sora', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }
::selection { background: var(--orange); color: var(--black); }

/* ══════════════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

/* ══════════════════════════════════════════════════════════
   TOP ANNOUNCEMENT BAR
══════════════════════════════════════════════════════════ */
.announcement-bar {
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.5px;
  overflow: hidden;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.announcement-bar .marquee { display: inline-block; white-space: nowrap; }

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1117 100%);
  border-bottom: 1px solid rgba(255, 140, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  object-fit: cover;
}
.site-logo .logo-text {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.site-logo .logo-sub {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  margin-top: -2px;
}

/* Header Search */
.header-search {
  flex: 1;
  max-width: 500px;
  position: relative;
}
.header-search input {
  width: 100%;
  background: var(--input);
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 12px;
  padding: 11px 16px 11px 44px;
  color: var(--text);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.header-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}
.header-search input::placeholder { color: var(--muted); }
.header-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 16px;
}
.header-search button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
  background: none;
  border: none;
  text-decoration: none;
}
.header-action-btn:hover { color: var(--orange); }
.header-action-btn .icon { font-size: 22px; }
.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.site-nav {
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.site-nav .nav-inner {
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-nav .nav-inner::-webkit-scrollbar { display: none; }
.site-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a:hover,
.site-nav a.current-menu-item {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.site-nav .nav-all-cats {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-weight: 700;
  padding: 12px 16px;
  cursor: pointer;
  background: rgba(255, 140, 0, 0.1);
  border-right: 1px solid var(--border);
}
.site-nav .nav-contact {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-nav .nav-contact a {
  font-size: 11px;
  border: none;
  padding: 12px 8px;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ══════════════════════════════════════════════════════════
   HERO / BANNER SECTION
══════════════════════════════════════════════════════════ */
.hero-section {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1117 60%, #0a1525 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero-tag {
  background: var(--orange);
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title span {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: var(--black);
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
  color: var(--black);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid rgba(255, 140, 0, 0.5);
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: inline-block;
  text-decoration: none;
}
.btn-outline:hover {
  background: rgba(255, 140, 0, 0.1);
  border-color: var(--orange);
  color: var(--orange);
}

/* ══════════════════════════════════════════════════════════
   PROMO PERKS BAR
══════════════════════════════════════════════════════════ */
.perks-bar {
  background: #1a0a00;
  border-top: 1px solid rgba(255, 140, 0, 0.1);
  border-bottom: 1px solid rgba(255, 140, 0, 0.1);
  padding: 16px 20px;
}
.perks-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.perk-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.perk-text { }
.perk-title { font-size: 13px; font-weight: 800; color: var(--text); }
.perk-sub { font-size: 11px; color: var(--muted); }

/* ══════════════════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════════════════ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.section-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
  margin-top: 6px;
}
.section-tag {
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.section-link {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.section-link:hover { gap: 8px; color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   CATEGORY SECTION
══════════════════════════════════════════════════════════ */
.categories-section { padding: 50px 20px; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}
.category-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
}
.category-card:hover {
  border-color: var(--orange);
  background: rgba(255, 140, 0, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.15);
}
.category-emoji { font-size: 32px; margin-bottom: 10px; }
.category-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.category-count {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}

/* ══════════════════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════════════════ */
.products-section { padding: 20px 20px 50px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(255, 140, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 140, 0, 0.1);
}
.product-card .sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
  letter-spacing: 0.5px;
}
.product-card .featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: var(--black);
  font-size: 9px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
}
.product-card .product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #1a1a2e;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover img { transform: scale(1.05); }
.product-card .product-body { padding: 14px; }
.product-card .product-cats {
  font-size: 10px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card .product-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.product-card .price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.product-card .price {
  font-size: 18px;
  font-weight: 900;
  color: var(--orange);
}
.product-card .old-price {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
}
.product-card .discount-pct {
  background: rgba(255, 59, 48, 0.15);
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}
.product-card .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.product-card .stars { color: var(--gold); font-size: 12px; }
.product-card .review-count { font-size: 10px; color: var(--muted); }
.product-card .add-to-cart-btn {
  width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 10px;
  padding: 11px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.product-card .add-to-cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.35);
}
.product-card .add-to-cart-btn.loading { opacity: 0.7; pointer-events: none; }
.product-card .wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(10, 10, 15, 0.7);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.product-card .wishlist-btn:hover { background: rgba(255, 59, 48, 0.2); border-color: var(--red); }
.product-card .in-stock { color: var(--green); font-size: 10px; font-weight: 600; margin-bottom: 8px; }
.product-card .out-of-stock { color: var(--red); font-size: 10px; font-weight: 600; margin-bottom: 8px; }

/* ══════════════════════════════════════════════════════════
   DEALS SECTION
══════════════════════════════════════════════════════════ */
.deals-section {
  background: linear-gradient(135deg, #1a0500, #120d00);
  padding: 50px 20px;
  border-top: 1px solid rgba(255, 140, 0, 0.1);
  border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}
.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.countdown-label { font-size: 13px; color: var(--muted); font-weight: 600; }
.countdown-timer { display: flex; align-items: center; gap: 6px; }
.timer-block {
  background: var(--input);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  min-width: 60px;
}
.timer-block .val {
  font-size: 24px;
  font-weight: 900;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.timer-block .lbl { font-size: 9px; color: var(--muted); letter-spacing: 1px; margin-top: 2px; }
.timer-sep { font-size: 20px; font-weight: 900; color: var(--orange); }
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.deal-card {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(255, 140, 0, 0.02));
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
}
.deal-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.15);
}
.deal-card img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 140, 0, 0.2);
  background: #1a1a2e;
}
.deal-card .deal-info { flex: 1; min-width: 0; }
.deal-card .deal-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.deal-card .deal-badge {
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}
.deal-card .deal-prices { display: flex; align-items: center; gap: 8px; }
.deal-card .deal-price { font-size: 16px; font-weight: 900; color: var(--orange); }
.deal-card .deal-old { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.deal-card .deal-add {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: var(--black);
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   WOOCOMMERCE OVERRIDES
══════════════════════════════════════════════════════════ */
/* Shop page */
.woocommerce-page .page-title,
.woocommerce .page-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 24px;
  padding: 30px 20px 0;
}
.woocommerce-notices-wrapper { padding: 0 20px; }
.woocommerce-info,
.woocommerce-message {
  background: rgba(255, 140, 0, 0.1);
  border-left: 4px solid var(--orange);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 16px;
}
.woocommerce-error {
  background: rgba(255, 59, 48, 0.1);
  border-left: 4px solid var(--red);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}

/* WC Product loop */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 20px;
}
.woocommerce ul.products li.product {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
  margin: 0;
  float: none;
  width: auto;
}
.woocommerce ul.products li.product:hover {
  border-color: rgba(255, 140, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s;
  margin: 0;
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.05); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 14px 6px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.woocommerce ul.products li.product .price {
  padding: 0 14px 10px;
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: var(--orange);
}
.woocommerce ul.products li.product .price del {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  margin-right: 4px;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: var(--orange);
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  display: block;
  width: calc(100% - 28px);
  margin: 0 14px 14px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 10px;
  padding: 11px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: inherit;
  text-decoration: none;
}
.woocommerce ul.products li.product .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.35);
  color: var(--black);
}
.woocommerce span.onsale {
  background: var(--red);
  color: var(--white);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  min-height: auto;
  min-width: auto;
  line-height: 1.4;
  top: 10px;
  left: 10px;
}

/* WC Single Product */
.woocommerce div.product {
  padding: 30px 20px;
}
.woocommerce div.product .woocommerce-product-gallery {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.woocommerce div.product .woocommerce-product-gallery img {
  background: #1a1a2e;
}
.woocommerce div.product .product_title {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 30px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 16px;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: var(--black);
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce button.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
  color: var(--black);
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.woocommerce div.product .product_meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.woocommerce div.product .product_meta span { color: var(--orange); }
.woocommerce-tabs .tabs {
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.woocommerce-tabs .tabs li { background: transparent; border: none; }
.woocommerce-tabs .tabs li a {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
}
.woocommerce-tabs .tabs li.active a {
  color: var(--orange);
  border-bottom-color: var(--orange);
  background: transparent;
}
.woocommerce-Tabs-panel {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* WC Cart */
.woocommerce table.shop_table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  margin: 20px;
  width: calc(100% - 40px);
}
.woocommerce table.shop_table th {
  background: var(--input);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 16px;
  border: none;
}
.woocommerce table.shop_table td {
  color: var(--text);
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
.woocommerce table.shop_table .product-name a { color: var(--text); font-weight: 700; }
.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal { color: var(--orange); font-weight: 900; }
.woocommerce .cart-collaterals { padding: 20px; }
.woocommerce .cart_totals { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.woocommerce .cart_totals h2 { font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 16px; }
.woocommerce .cart_totals table { width: 100%; }
.woocommerce .cart_totals table th { color: var(--muted); font-size: 13px; padding: 8px 0; text-align: left; }
.woocommerce .cart_totals table td { color: var(--orange); font-weight: 900; text-align: right; }

/* WC Checkout */
.woocommerce form .form-row label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  background: var(--input);
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 10px;
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
  width: 100%;
  font-family: inherit;
  transition: border-color 0.2s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

/* WC My Account */
.woocommerce-MyAccount-navigation {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--orange);
  background: rgba(255, 140, 0, 0.05);
}
.woocommerce-MyAccount-content { color: var(--text); font-size: 14px; }

/* ══════════════════════════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════════════════════════ */
.sm-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  pointer-events: none;
}
.sm-toast.show { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: linear-gradient(135deg, #0d0520, #0a0a0f);
  border-top: 1px solid rgba(255, 140, 0, 0.15);
  padding: 50px 20px 20px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo-wrap img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--orange); }
.footer-brand .logo-wrap span {
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.footer-social a:hover { background: rgba(255, 140, 0, 0.15); border-color: var(--orange); }
.footer-col h4 { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--muted); font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact { color: var(--muted); font-size: 13px; line-height: 2; }
.footer-contact a { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom .payment-icons { display: flex; gap: 8px; align-items: center; }
.footer-bottom .payment-icons span { font-size: 20px; }

/* ══════════════════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════════════════ */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open { display: block; }
.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: var(--card);
  border-right: 1px solid var(--border);
  z-index: 999;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding: 20px 0;
}
.mobile-menu.open { left: 0; }
.mobile-menu .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.mobile-menu .close-btn { background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s;
}
.mobile-menu a:hover { color: var(--orange); background: rgba(255, 140, 0, 0.05); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-search { display: none; }
  .site-nav { display: none; }
  .hamburger { display: block; }
  .hero-section { padding: 40px 16px; }
  .hero-title { font-size: 26px; }
  .perks-inner { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr; gap: 12px; padding: 12px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 11px; padding: 8px 10px 4px; }
  .woocommerce ul.products li.product .price { padding: 0 10px 8px; font-size: 14px; }
  .woocommerce ul.products li.product .button { font-size: 10px; padding: 9px; margin: 0 10px 10px; width: calc(100% - 20px); }
  .deals-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .countdown-wrap { flex-wrap: wrap; }
  .sm-toast { bottom: 20px; right: 16px; left: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; width: 100%; }
  .perks-inner { gap: 14px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .perk-item { flex-shrink: 0; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; }
}

/* ══════════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════════ */
.text-orange { color: var(--orange); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.hidden { display: none !important; }
.fade-in { animation: fadeIn 0.3s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
