/* ================================================================
   JemcoTech Shop — Standalone Styles
   Includes base styles from the main site (nav, footer, variables)
   + all shop-specific styles (product grid, cart, modal, trust badges, toast)
   ================================================================ */

/* ========== VARIABLES ========== */
:root {
  --black: #000000;
  --deep: #0a0a0a;
  --card: #111111;
  --border: #1e1e1e;
  --orange: #e07b00;
  --orange-bright: #ff8c00;
  --red: #ff4500;
  --steel: #b0bec5;
  --steel-dark: #607d8b;
  --white: #f0f0f0;
  --muted: #888888;
  --topbar-bg: #06080d;
  --header-bg: rgba(8, 10, 15, 0.88);
  --header-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  --footer-bg: #06080d;
  --footer-bottom-bg: #040508;
  --hero-glow: radial-gradient(circle at 50% 0%, rgba(224, 123, 0, 0.15) 0%, transparent 70%);
  --badge-bg: rgba(255, 255, 255, 0.04);
  --input-focus-bg: #141824;
  --select-opt-bg: #121620;
  --workshop-gradient: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(24, 28, 40, 0.95) 100%);
  --workshop-item-bg: rgba(0, 0, 0, 0.35);
  --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(224, 123, 0, 0.25);
  --section-alt-bg: rgba(10, 12, 18, 0.5);
  --img-bg: #0a0a0a;
  --font-display: 'Orbitron', monospace;
  --font-body: 'Exo 2', sans-serif;
  --glow: 0 0 20px rgba(224, 123, 0, 0.4);
  --glow-red: 0 0 16px rgba(255, 69, 0, 0.5);
}

[data-theme="light"] {
  --black: #eceff3;
  --deep: #ffffff;
  --card: #ffffff;
  --border: #d4dbe4;
  --orange: #f7902b;
  --orange-bright: #ea580c;
  --red: #dc2626;
  --steel: #475569;
  --steel-dark: #64748b;
  --white: #1e293b;
  --muted: #8c9ba9;
  --topbar-bg: #e2e7ef;
  --header-bg: rgba(244, 246, 250, 0.94);
  --header-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  --footer-bg: #e2e7ef;
  --footer-bottom-bg: #d7dde6;
  --hero-glow: radial-gradient(circle at 50% 0%, rgba(217, 107, 0, 0.07) 0%, transparent 70%);
  --badge-bg: #e4e9f0;
  --input-focus-bg: #ffffff;
  --select-opt-bg: #ffffff;
  --workshop-gradient: linear-gradient(135deg, #ffffff 0%, #f4f6fa 100%);
  --workshop-item-bg: #ffffff;
  --card-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
  --card-shadow-hover: 0 10px 24px rgba(15, 23, 42, 0.09), 0 0 12px rgba(217, 107, 0, 0.18);
  --section-alt-bg: #e9edf3;
  --img-bg: #e5eaf1;
  --glow: 0 0 16px rgba(217, 107, 0, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

::selection { background: var(--orange); color: #000; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--border);
  font-size: 0.74rem;
  color: var(--steel);
  padding: 0.45rem 1.5rem;
}

.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--steel);
}

.top-bar-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

.top-bar-item a {
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar-item a:hover {
  color: var(--orange);
}

/* ========== SITE HEADER & NAVBAR ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}

.site-header.scrolled {
  border-color: rgba(224, 123, 0, 0.5);
  box-shadow: var(--header-shadow);
}

.site-header nav,
#navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo .logo-img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
}

.nav-brand-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav-brand span { color: var(--orange); }

.nav-tagline {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--steel);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0.3rem 0;
}

.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle-btn {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 10px rgba(224, 123, 0, 0.25);
  transform: translateY(-1px);
}

.theme-toggle-btn svg {
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Default dark: show sun icon, hide moon */
.sun-icon {
  display: block;
}
.moon-icon {
  display: none;
}

/* Light mode: show moon icon, hide sun */
[data-theme="light"] .sun-icon {
  display: none;
}
[data-theme="light"] .moon-icon {
  display: block;
  color: var(--white);
}

.cart-btn {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-display);
}

.cart-btn:hover {
  border-color: var(--orange);
  box-shadow: 0 0 10px rgba(224, 123, 0, 0.2);
}

.cart-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-count {
  background: var(--orange);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 999;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* ========== HERO SECTION & HORIZONTAL CAROUSEL ========== */
.shop-hero {
  position: relative;
  padding: 3.5rem 1.5rem 2.5rem;
  background: var(--hero-glow);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-carousel-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0 3.5rem;
  opacity: 0.35;
  transform: scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-content {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-slide h1,
.hero-slide h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 2.7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.hero-slide h1 span,
.hero-slide h2 span { color: var(--orange); }

.hero-slide p {
  color: var(--steel);
  font-size: 0.98rem;
  max-width: 700px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
}

/* Controles flotantes del carrusel */
.hero-carousel-prev,
.hero-carousel-next {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  box-shadow: var(--card-shadow);
}

.hero-carousel-prev { left: 4px; }
.hero-carousel-next { right: 4px; }

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 14px rgba(224, 123, 0, 0.35);
  transform: translateY(-50%) scale(1.08);
}

/* Indicadores de puntos */
.hero-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-dot:hover {
  background: var(--orange-bright);
  opacity: 0.85;
}

.hero-dot.active {
  width: 28px;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(224, 123, 0, 0.45);
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  background: rgba(224,123,0,0.1);
  border: 1px solid rgba(224,123,0,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
  color: #000 !important;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(224, 123, 0, 0.35);
}

.btn-hero-primary:hover {
  box-shadow: 0 6px 25px rgba(224, 123, 0, 0.6);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white) !important;
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  border-color: var(--orange);
  color: var(--orange) !important;
  background: rgba(224, 123, 0, 0.08);
  transform: translateY(-2px);
}

.hero-trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--white);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}

.trust-badge svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* ========== SECTION HEADER REUSABLE ========== */
.section-header-center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.section-header-center h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* ========== SHOP SECTION & TOOLBAR ========== */
.shop-main {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.shop-container {
  max-width: 1280px;
  margin: 0 auto;
}

.shop-toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.shop-search-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.search-suggestions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.sugg-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sugg-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--steel);
  font-size: 0.72rem;
  padding: 0.22rem 0.65rem;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}

.sugg-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(224, 123, 0, 0.08);
}

.shop-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 480px;
}

.search-icon {
  position: absolute;
  left: 14px;
  color: var(--orange);
  pointer-events: none;
}

.shop-search input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.65rem 2.6rem 0.65rem 2.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.shop-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 14px rgba(224, 123, 0, 0.25);
  background: var(--input-focus-bg);
}

.search-clear {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.search-clear:hover { color: var(--orange); }

.shop-filters-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.shop-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--steel);
  padding: 0.5rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); color: #000; border-color: var(--orange); font-weight: 700; box-shadow: 0 0 10px rgba(224,123,0,0.3); }

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

#resultsCount {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--steel);
  text-transform: uppercase;
}

.shop-sort {
  display: flex;
  align-items: center;
}

.sort-select-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.styled-sort-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.55rem 2.4rem 0.55rem 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, color 0.25s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.styled-sort-select:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.styled-sort-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(224, 123, 0, 0.25);
}

.styled-sort-select option {
  background: var(--select-opt-bg);
  color: var(--white);
  padding: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: none;
}

.sort-arrow {
  position: absolute;
  right: 12px;
  pointer-events: none;
  color: var(--orange);
  transition: transform 0.2s;
}

.sort-select-wrapper:hover .sort-arrow {
  transform: translateY(1px);
}

/* ========== PRODUCT GRID & CARDS ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

a.product-card,
.product-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  text-decoration: none !important;
  color: inherit;
}

a.product-card:hover,
a.product-card:focus,
a.product-card:active,
a.product-card:visited,
.product-card:hover {
  border-color: rgba(224,123,0,0.5);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  text-decoration: none !important;
  color: inherit;
}

/* Evitar subrayados no deseados en las tarjetas de catalogo y recomendados */
a.product-card,
a.product-card *,
.product-card,
.product-card * {
  text-decoration: none !important;
}

.product-badge-stock {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(37,211,102,0.4);
  color: #25d366;
  font-size: 0.6rem;
  font-family: var(--font-display);
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-badge-stock .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}

.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--img-bg);
  display: block;
}

.product-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-dark);
}

.product-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }

.product-info {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-tag {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  text-decoration: none !important;
}

.product-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  text-decoration: none !important;
}

.product-desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
  line-height: 1.5;
  flex: 1;
  text-decoration: none !important;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
  text-decoration: none !important;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--orange);
  text-decoration: none !important;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-card-wa {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-card-wa:hover {
  background: #25d366;
  color: #000;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

.add-to-cart {
  background: var(--orange);
  color: #000;
  border: none;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.add-to-cart:hover {
  background: var(--orange-bright);
  box-shadow: var(--glow);
}

.no-products {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
  font-size: 1rem;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: 8px;
}

/* ========== BENEFITS SECTION ========== */
.section-benefits {
  padding: 4rem 1.5rem;
  background: radial-gradient(circle at 50% 50%, rgba(224,123,0,0.04) 0%, transparent 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem 1.5rem;
  text-align: left;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(224, 123, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(224, 123, 0, 0.1);
  border: 1px solid rgba(224, 123, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.2rem;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.55;
}

/* ========== WORKSHOP SECTION ========== */
.section-workshop {
  padding: 4rem 1.5rem;
}

.workshop-card-main {
  background: var(--workshop-gradient);
  border: 1px solid rgba(224, 123, 0, 0.35);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), 0 0 35px rgba(224, 123, 0, 0.08);
}

.workshop-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workshop-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--white);
}

.workshop-content p {
  font-size: 0.95rem;
  color: var(--steel);
  max-width: 720px;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.workshop-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 680px;
  margin-bottom: 2rem;
  text-align: left;
}

.workshop-service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--workshop-item-bg);
  border: 1px solid var(--border);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--white);
}

.workshop-service-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

.workshop-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
  color: #000 !important;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(224, 123, 0, 0.4);
  transition: all 0.25s ease;
}

.workshop-cta:hover {
  box-shadow: 0 6px 28px rgba(224, 123, 0, 0.65);
  transform: translateY(-2px);
}

/* ========== FAQ SECTION ========== */
.section-faq {
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: rgba(224, 123, 0, 0.45);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.faq-question {
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  color: var(--orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--steel);
  font-size: 0.88rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 0.4rem;
  padding-top: 0.8rem;
}

/* ========== CART SIDEBAR ========== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 1500;
}

.cart-overlay.open { display: block; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: var(--card);
  border-left: 1px solid var(--border);
  z-index: 1501;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-close:hover { color: var(--orange); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 0;
  font-size: 0.85rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 60px;
  height: 45px;
  object-fit: cover;
  background: var(--img-bg);
  flex-shrink: 0;
  border-radius: 4px;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  background: var(--deep);
  border: 1px solid var(--border);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.qty-btn:hover { border-color: var(--orange); color: var(--orange); }

.cart-item-qty span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.2rem;
  align-self: flex-start;
}

.cart-item-remove:hover { color: var(--red); }

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--deep);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-total span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--steel);
}

.cart-total strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--orange);
}

.cart-checkout {
  width: 100%;
  padding: 0.8rem;
  background: var(--orange);
  color: #000;
  border: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.cart-checkout:hover {
  background: var(--orange-bright);
  box-shadow: var(--glow);
}

/* ========== PRODUCT MODAL ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
}

.modal-overlay.open { display: block; }

.product-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 2001;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.product-modal.open { display: block; }

.modal-wrapper {
  position: relative;
  padding: 2rem;
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--deep);
  border: 1px solid var(--border);
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  z-index: 5;
}

.modal-close:hover { border-color: var(--orange); color: var(--orange); }

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 700px) {
  .modal-body { grid-template-columns: 1fr; }
}

.modal-gallery { display: flex; flex-direction: column; gap: 0.8rem; }

.modal-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--img-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.modal-main-image img {
  width: 100%; height: 100%; object-fit: cover;
}

.modal-nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.modal-prev { left: 10px; }
.modal-next { right: 10px; }

.modal-image-counter {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.modal-thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.modal-thumb {
  width: 60px; height: 45px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
}

.modal-thumb.active,
.modal-thumb:hover { border-color: var(--orange); opacity: 1; }

.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }

.modal-info { display: flex; flex-direction: column; }

.modal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.stock-badge {
  color: #25d366;
  font-size: 0.7rem;
  font-weight: 600;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.modal-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 1rem;
}

.modal-desc {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.modal-actions-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal-add-btn {
  width: 100%;
  justify-content: center;
  padding: 0.8rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.modal-wa-btn {
  border-color: rgba(37,211,102,0.4);
  color: #25d366;
}

.modal-wa-btn:hover {
  background: rgba(37,211,102,0.1);
  border-color: #25d366;
}

.btn-share {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--steel);
  padding: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-share:hover { border-color: var(--orange); color: var(--orange); }

/* ========== TOAST NOTIFICATIONS ========== */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: var(--card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--orange);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success svg { color: #25d366; }
.toast-info svg { color: var(--orange); }

/* ========== MULTI-COLUMN SITE FOOTER ========== */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}

.footer-top {
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.3fr;
  gap: 2.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-footer {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--steel);
  line-height: 1.55;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--steel-dark);
}

.footer-location svg {
  color: var(--orange);
  flex-shrink: 0;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-muted-text {
  font-size: 0.78rem;
  color: var(--steel-dark);
}

.footer-sm-text {
  font-size: 0.8rem;
  color: var(--steel);
  line-height: 1.5;
}

.payment-badges,
.shipping-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.pay-badge,
.ship-badge {
  display: inline-flex;
  align-items: center;
  background: var(--badge-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  color: var(--steel);
  letter-spacing: 0.04em;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--footer-bottom-bg);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-copy span { color: var(--orange); }

.footer-security-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--steel-dark);
}

.footer-security-note svg {
  color: #25d366;
  flex-shrink: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .top-bar { padding: 0.4rem 0.75rem; }
  .top-bar-item:not(:first-child) { display: none !important; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-bar-item { font-size: 0.68rem; justify-content: center; text-align: center; }
  .top-bar-item span { white-space: normal; line-height: 1.3; }
  nav { padding: 0 0.85rem; height: 64px; }
  .nav-logo .logo-img { width: 34px; height: 34px; }
  .nav-brand { font-size: 0.9rem; }
  .nav-tagline { font-size: 0.5rem; }
  .nav-actions { gap: 0.6rem; margin-left: auto; }
  .theme-toggle-btn { width: 34px; height: 34px; }
  .cart-label { display: none; }
  .cart-btn { padding: 0.4rem 0.65rem; }
  .shop-hero { padding: 2rem 0.5rem 1.8rem; overflow: hidden; }
  .hero-slide { padding: 0 1.8rem; }
  .hero-slide h1, .hero-slide h2 { font-size: clamp(1.2rem, 5.2vw, 1.75rem); line-height: 1.3; margin-bottom: 0.8rem; }
  .hero-slide p { font-size: 0.84rem; padding: 0; margin-bottom: 1.3rem; }
  .hero-carousel-prev,
  .hero-carousel-next { width: 34px; height: 34px; }
  .hero-carousel-prev { left: 0; }
  .hero-carousel-next { right: 0; }
  .hero-carousel-dots { margin-top: 1.4rem; }
  .shop-main { padding-top: 2rem; padding-bottom: 3rem; }
  .shop-badge { font-size: 0.58rem; padding: 0.25rem 0.6rem; line-height: 1.3; max-width: 100%; white-space: normal; }
  .hero-actions { flex-direction: column; width: 100%; gap: 0.75rem; }
  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; justify-content: center; padding: 0.75rem 1rem; font-size: 0.75rem; }
  .hero-trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; width: 100%; }
  .trust-badge { justify-content: center; font-size: 0.68rem; padding: 0.35rem 0.4rem; text-align: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .shop-toolbar { gap: 1rem; width: 100%; }
  .shop-search { max-width: 100%; width: 100%; }
  .shop-filters { justify-content: center; }
  .results-bar { padding: 0.6rem 0; gap: 0.8rem; }
  .workshop-card-main { padding: 2rem 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-trust-badges { gap: 0.5rem; }
  .trust-badge { font-size: 0.72rem; padding: 0.3rem 0.65rem; }
  .results-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .shop-sort {
    width: 100%;
    justify-content: center;
  }
  .sort-select-wrapper {
    width: 100%;
    max-width: 280px;
  }
  .styled-sort-select {
    width: 100%;
    text-align: center;
  }
  .workshop-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.75rem;
    padding: 0.8rem 1rem;
    text-align: center;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== LIGHT THEME COMPONENT POLISH ========== */
[data-theme="light"] .shop-badge {
  background: rgba(217, 107, 0, 0.08);
  border-color: rgba(217, 107, 0, 0.25);
}

[data-theme="light"] .hero-carousel-prev,
[data-theme="light"] .hero-carousel-next {
  background: #ffffff;
  border-color: var(--border);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .hero-dot {
  background: #cbd5e1;
}

[data-theme="light"] .hero-dot.active {
  background: var(--orange);
  box-shadow: 0 0 10px rgba(217, 107, 0, 0.35);
}

[data-theme="light"] .btn-hero-secondary {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .trust-badge {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .shop-search input {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .styled-sort-select {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .filter-btn {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .filter-btn.active {
  background: var(--orange);
  color: #000;
  box-shadow: 0 2px 8px rgba(217, 107, 0, 0.3);
}

[data-theme="light"] .results-bar {
  border-bottom-color: var(--border);
}

[data-theme="light"] a.product-card,
[data-theme="light"] .product-card {
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
  border-color: var(--border);
  text-decoration: none !important;
  color: inherit;
}

[data-theme="light"] a.product-card:hover,
[data-theme="light"] a.product-card:visited,
[data-theme="light"] a.product-card:active,
[data-theme="light"] a.product-card:focus,
[data-theme="light"] .product-card:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1), 0 0 12px rgba(217, 107, 0, 0.18);
  text-decoration: none !important;
  color: inherit;
}

[data-theme="light"] .product-card * {
  text-decoration: none !important;
}

[data-theme="light"] .workshop-card-main {
  border-color: rgba(217, 107, 0, 0.25);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05), 0 0 25px rgba(217, 107, 0, 0.05);
}

[data-theme="light"] .workshop-service-item {
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  border-color: var(--border);
}

[data-theme="light"] .benefit-card {
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .benefit-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(217, 107, 0, 0.35);
}

[data-theme="light"] .faq-item {
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .faq-item[open] {
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  border-color: rgba(217, 107, 0, 0.35);
}

[data-theme="light"] .product-modal {
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

[data-theme="light"] .cart-sidebar {
  box-shadow: -5px 0 25px rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .product-badge-stock {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(37, 211, 102, 0.5);
  color: #16a34a;
}

[data-theme="light"] .product-placeholder {
  background: linear-gradient(135deg, #e8ecf2 0%, #dde2eb 100%);
  color: #8c9ba9;
}

[data-theme="light"] .nav-links {
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .toast {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

/* ========== PRODUCT DEDICATED PAGE STYLES ========== */
.product-page-main {
  padding: 2rem 0 4rem 0;
  min-height: 80vh;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.product-breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-breadcrumbs a:hover {
  color: var(--orange);
}

.breadcrumb-sep {
  color: var(--border);
  user-select: none;
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 600;
}

.product-detail-section {
  margin-bottom: 3.5rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.75rem;
  align-items: start;
}

.product-gallery-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: var(--card-shadow);
}

.product-main-view {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--img-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.product-main-view img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-main-view:hover img {
  transform: scale(1.02);
}

.product-thumbs-wrap {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-thumb-item {
  width: 72px;
  height: 54px;
  border-radius: 6px;
  border: 2px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--img-bg);
  opacity: 0.75;
  transition: all 0.2s ease;
}

.product-thumb-item.active,
.product-thumb-item:hover {
  border-color: var(--orange);
  opacity: 1;
  box-shadow: 0 0 8px rgba(217, 107, 0, 0.35);
}

.product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-page-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.01em;
}

.product-page-price {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.product-page-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  white-space: pre-wrap;
}

.product-highlights-box {
  background: rgba(217, 107, 0, 0.05);
  border: 1px solid rgba(217, 107, 0, 0.2);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.4;
}

.highlight-item svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-purchase-area {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.product-qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qty-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.qty-picker {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  overflow: hidden;
}

.qty-picker .qty-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qty-picker .qty-btn:hover {
  background: rgba(217, 107, 0, 0.15);
  color: var(--orange);
}

.qty-picker input {
  width: 48px;
  height: 38px;
  border: none;
  background: transparent;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
}

.product-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-product-wa {
  flex: 1 1 200px;
  padding: 0.9rem 1.5rem;
  background: #25d366;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  text-decoration: none;
}

.btn-product-wa:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.38);
}

.btn-product-cart {
  flex: 1 1 180px;
  padding: 0.9rem 1.5rem;
  background: var(--orange);
  color: #000000;
  border: none;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.25s ease;
}

.btn-product-cart:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.product-cta-buttons .btn-share {
  padding: 0.9rem 1.25rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.product-cta-buttons .btn-share:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.product-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-strip-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* Workshop Banner in Product Page */
.product-workshop-banner {
  background: linear-gradient(135deg, rgba(217, 107, 0, 0.08) 0%, rgba(20, 24, 33, 0.7) 100%);
  border: 1px solid rgba(217, 107, 0, 0.25);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--card-shadow);
}

.workshop-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.workshop-banner-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.5rem 0 0.35rem 0;
  color: var(--white);
}

.workshop-banner-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.5;
}

.workshop-cta-btn {
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  background: var(--orange);
  color: #000000;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.workshop-cta-btn:hover {
  background: var(--orange-bright);
  box-shadow: var(--glow);
  transform: translateY(-2px);
  color: #000000;
}

/* Recommendations Section */
.product-recommendations-section {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.product-recommendations-section .section-header-center {
  margin-bottom: 2.25rem;
}

/* Light Theme overrides for Product Page */
[data-theme="light"] .product-gallery-box {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .product-main-view {
  background: var(--img-bg);
  border-color: var(--border);
}

[data-theme="light"] .product-thumb-item {
  border-color: var(--border);
  background: var(--img-bg);
}

[data-theme="light"] .product-highlights-box {
  background: rgba(217, 107, 0, 0.06);
  border-color: rgba(217, 107, 0, 0.22);
}

[data-theme="light"] .qty-picker {
  background: #ffffff;
  border-color: var(--border);
}

[data-theme="light"] .product-workshop-banner {
  background: linear-gradient(135deg, rgba(217, 107, 0, 0.07) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(217, 107, 0, 0.25);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .product-cta-buttons .btn-share {
  background: #ffffff;
  border-color: var(--border);
}

/* Responsive Styles for Product Page */
@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-page-title {
    font-size: 1.6rem;
  }

  .product-page-price {
    font-size: 1.85rem;
  }

  .product-workshop-banner {
    padding: 1.5rem;
  }
}

