/*
Theme Name: NOSM Lighting
Theme URI: https://nosm.com
Author: NOSM
Author URI: https://nosm.com
Description: Premium modern WordPress + WooCommerce theme for NOSM lighting brand. Minimal luxury UI with dark aesthetic, glassmorphism, and smooth animations.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nosm
Tags: woocommerce, ecommerce, custom-header, custom-menu, featured-images, threaded-comments, translation-ready

NOSM Lighting — Illuminate Your World
*/

/* ========================================
   CSS CUSTOM PROPERTIES
======================================== */
:root {
  /* Colors */
  --nosm-black: #0a0a0a;
  --nosm-dark: #111111;
  --nosm-dark-2: #1a1a1a;
  --nosm-dark-3: #222222;
  --nosm-dark-4: #2a2a2a;
  --nosm-gray: #888888;
  --nosm-gray-light: #b0b0b0;
  --nosm-white: #ffffff;
  --nosm-off-white: #f5f5f5;
  --nosm-gold: #c9a96e;
  --nosm-gold-light: #d4b87a;
  --nosm-gold-dark: #a8854f;
  --nosm-success: #4caf50;
  --nosm-danger: #f44336;
  --nosm-info: #2196f3;
  
  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg-light: rgba(255, 255, 255, 0.08);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.3);
  --shadow-glow: 0 0 30px rgba(201, 169, 110, 0.15);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing */
  --section-padding: 100px;
  --container-max: 1400px;
  --container-narrow: 1100px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

::selection {
  background-color: var(--nosm-gold);
  color: var(--nosm-black);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--nosm-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--nosm-dark-4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--nosm-gold);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.nosm-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nosm-container--narrow {
  max-width: var(--container-narrow);
}

.nosm-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.nosm-section--dark {
  background-color: var(--nosm-dark);
}

.nosm-section--darker {
  background-color: var(--nosm-black);
}

.nosm-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.nosm-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nosm-gold);
  margin-bottom: 16px;
  display: block;
}

.nosm-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--nosm-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.nosm-section-subtitle {
  font-size: 1.1rem;
  color: var(--nosm-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Glass Card */
.nosm-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* Buttons */
.nosm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nosm-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.nosm-btn:hover::before {
  opacity: 1;
}

.nosm-btn--primary {
  background: linear-gradient(135deg, var(--nosm-gold), var(--nosm-gold-dark));
  color: var(--nosm-black);
  box-shadow: var(--shadow-gold);
}

.nosm-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 169, 110, 0.4);
}

.nosm-btn--secondary {
  background: transparent;
  color: var(--nosm-white);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.nosm-btn--secondary:hover {
  border-color: var(--nosm-gold);
  color: var(--nosm-gold);
  transform: translateY(-2px);
}

.nosm-btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--nosm-white);
  border: 1px solid rgba(255,255,255,0.1);
}

.nosm-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.nosm-btn--sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.nosm-btn--lg {
  padding: 18px 42px;
  font-size: 1rem;
}

.nosm-btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* Badge */
.nosm-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nosm-badge--gold {
  background: var(--nosm-gold);
  color: var(--nosm-black);
}

.nosm-badge--sale {
  background: var(--nosm-danger);
  color: var(--nosm-white);
}

.nosm-badge--new {
  background: var(--nosm-info);
  color: var(--nosm-white);
}

/* Divider */
.nosm-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--nosm-gold), transparent);
  margin: 20px auto;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 110, 0.2); }
  50% { box-shadow: 0 0 40px rgba(201, 169, 110, 0.4); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ========================================
   HEADER / NAVIGATION
======================================== */
.nosm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: 0;
}

.nosm-header__top-bar {
  background: var(--nosm-gold);
  color: var(--nosm-black);
  text-align: center;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.nosm-header__main {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 24px;
  transition: all var(--transition-base);
}

.nosm-header.scrolled .nosm-header__main {
  padding: 0 24px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nosm-header.scrolled .nosm-header__top-bar {
  transform: translateY(-100%);
  height: 0;
  padding: 0;
  overflow: hidden;
}

.nosm-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nosm-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--nosm-white);
}

.nosm-logo__icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--nosm-gold), var(--nosm-gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--nosm-black);
  font-weight: 900;
}

/* Navigation */
.nosm-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nosm-nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--nosm-gray-light);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nosm-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--nosm-gold);
  transition: width var(--transition-base);
}

.nosm-nav__link:hover,
.nosm-nav__link.active {
  color: var(--nosm-white);
}

.nosm-nav__link:hover::after,
.nosm-nav__link.active::after {
  width: 100%;
}

/* Header Actions */
.nosm-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nosm-header__action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-gray-light);
  transition: all var(--transition-fast);
  position: relative;
  background: transparent;
}

.nosm-header__action-btn:hover {
  color: var(--nosm-white);
  background: rgba(255, 255, 255, 0.06);
}

.nosm-header__action-btn .count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--nosm-gold);
  color: var(--nosm-black);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.nosm-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 8px 0;
}

.nosm-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--nosm-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nosm-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nosm-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nosm-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
======================================== */
.nosm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--nosm-black);
}

.nosm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nosm-hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, var(--nosm-black), rgba(17, 17, 17, 0.95));
  z-index: 1;
}

.nosm-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.nosm-hero__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--nosm-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.nosm-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 140px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nosm-hero__text {
  animation: fadeInUp 1s ease-out;
}

.nosm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--nosm-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.nosm-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nosm-gold);
  animation: pulse 2s ease-in-out infinite;
}

.nosm-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--nosm-white);
  margin-bottom: 24px;
}

.nosm-hero__title span {
  background: linear-gradient(135deg, var(--nosm-gold), var(--nosm-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nosm-hero__description {
  font-size: 1.1rem;
  color: var(--nosm-gray);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.nosm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.nosm-hero__stats {
  display: flex;
  gap: 40px;
}

.nosm-hero__stat {
  text-align: left;
}

.nosm-hero__stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--nosm-white);
  line-height: 1;
  margin-bottom: 4px;
}

.nosm-hero__stat-number span {
  color: var(--nosm-gold);
}

.nosm-hero__stat-label {
  font-size: 0.75rem;
  color: var(--nosm-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nosm-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s ease-out 0.3s both;
}

.nosm-hero__product-showcase {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
}

.nosm-hero__product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(201, 169, 110, 0.2));
  animation: float 6s ease-in-out infinite;
}

.nosm-hero__product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
  animation: glow 4s ease-in-out infinite;
  pointer-events: none;
}

.nosm-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--nosm-gray);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 1s both;
}

.nosm-hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--nosm-gold), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

/* ========================================
   PRODUCT CARDS
======================================== */
.nosm-product-card {
  position: relative;
  background: var(--nosm-dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
  group: true;
}

.nosm-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.nosm-product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--nosm-dark-3), var(--nosm-dark));
}

.nosm-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.nosm-product-card:hover .nosm-product-card__image {
  transform: scale(1.08);
}

.nosm-product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.nosm-product-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  z-index: 2;
}

.nosm-product-card:hover .nosm-product-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.nosm-product-card__action {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--nosm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.nosm-product-card__action:hover {
  background: var(--nosm-gold);
  color: var(--nosm-black);
  border-color: var(--nosm-gold);
}

.nosm-product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  z-index: 2;
}

.nosm-product-card:hover .nosm-product-card__quick-add {
  transform: translateY(0);
}

.nosm-product-card__quick-add-btn {
  width: 100%;
  padding: 12px;
  background: rgba(201, 169, 110, 0.95);
  backdrop-filter: blur(10px);
  color: var(--nosm-black);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nosm-product-card__quick-add-btn:hover {
  background: var(--nosm-gold-light);
}

.nosm-product-card__info {
  padding: 20px;
}

.nosm-product-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nosm-gold);
  margin-bottom: 6px;
}

.nosm-product-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--nosm-white);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nosm-product-card__title a:hover {
  color: var(--nosm-gold);
}

.nosm-product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.nosm-product-card__stars {
  display: flex;
  gap: 2px;
  color: var(--nosm-gold);
  font-size: 0.75rem;
}

.nosm-product-card__rating-count {
  font-size: 0.75rem;
  color: var(--nosm-gray);
}

.nosm-product-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nosm-product-card__price-current {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nosm-white);
}

.nosm-product-card__price-old {
  font-size: 0.9rem;
  color: var(--nosm-gray);
  text-decoration: line-through;
}

.nosm-product-card__swatches {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.nosm-product-card__swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nosm-product-card__swatch:hover,
.nosm-product-card__swatch.active {
  border-color: var(--nosm-gold);
  transform: scale(1.2);
}

/* Products Grid */
.nosm-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ========================================
   CATEGORIES SECTION
======================================== */
.nosm-categories {
  padding: var(--section-padding) 0;
  background: var(--nosm-dark);
}

.nosm-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.nosm-category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: all var(--transition-base);
}

.nosm-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.nosm-category-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--nosm-dark-2), var(--nosm-dark-4));
}

.nosm-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.nosm-category-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.nosm-category-card:hover .nosm-category-card__image {
  transform: scale(1.1);
}

.nosm-category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.nosm-category-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 4px;
}

.nosm-category-card__count {
  font-size: 0.8rem;
  color: var(--nosm-gold);
}

.nosm-category-card__arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-white);
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.nosm-category-card:hover .nosm-category-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   WHY NOSM SECTION
======================================== */
.nosm-features {
  padding: var(--section-padding) 0;
  background: var(--nosm-black);
}

.nosm-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.nosm-feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.nosm-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nosm-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nosm-feature-card:hover::before {
  opacity: 1;
}

.nosm-feature-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-4px);
}

.nosm-feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--nosm-gold);
}

.nosm-feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 10px;
}

.nosm-feature-card__desc {
  font-size: 0.85rem;
  color: var(--nosm-gray);
  line-height: 1.6;
}

/* ========================================
   INSPIRATION GALLERY
======================================== */
.nosm-gallery {
  padding: var(--section-padding) 0;
  background: var(--nosm-dark);
}

.nosm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}

.nosm-gallery-grid__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.nosm-gallery-grid__item:first-child {
  grid-row: span 2;
}

.nosm-gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.nosm-gallery-grid__item:hover img {
  transform: scale(1.05);
}

.nosm-gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nosm-gallery-grid__item:hover::after {
  opacity: 1;
}

.nosm-gallery-grid__overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.nosm-gallery-grid__item:hover .nosm-gallery-grid__overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   TESTIMONIALS
======================================== */
.nosm-testimonials {
  padding: var(--section-padding) 0;
  background: var(--nosm-black);
}

.nosm-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nosm-testimonial-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--nosm-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.nosm-testimonial-card:hover {
  border-color: rgba(201, 169, 110, 0.15);
  transform: translateY(-4px);
}

.nosm-testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--nosm-gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.nosm-testimonial-card__text {
  font-size: 0.95rem;
  color: var(--nosm-gray-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.nosm-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nosm-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nosm-gold), var(--nosm-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--nosm-black);
  font-size: 0.9rem;
}

.nosm-testimonial-card__name {
  font-weight: 600;
  color: var(--nosm-white);
  font-size: 0.9rem;
}

.nosm-testimonial-card__role {
  font-size: 0.75rem;
  color: var(--nosm-gray);
}

/* ========================================
   CTA BANNER
======================================== */
.nosm-cta {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.nosm-cta__inner {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.02));
  border: 1px solid rgba(201, 169, 110, 0.15);
  text-align: center;
  overflow: hidden;
}

.nosm-cta__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.nosm-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 16px;
}

.nosm-cta__text {
  font-size: 1.05rem;
  color: var(--nosm-gray);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.nosm-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
======================================== */
.nosm-footer {
  background: var(--nosm-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nosm-footer__newsletter {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nosm-footer__newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nosm-footer__newsletter-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 4px;
}

.nosm-footer__newsletter-text {
  font-size: 0.9rem;
  color: var(--nosm-gray);
}

.nosm-footer__newsletter-form {
  display: flex;
  gap: 12px;
  min-width: 400px;
}

.nosm-footer__newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--nosm-white);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.nosm-footer__newsletter-input:focus {
  border-color: var(--nosm-gold);
}

.nosm-footer__newsletter-input::placeholder {
  color: var(--nosm-gray);
}

.nosm-footer__main {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.nosm-footer__brand-desc {
  font-size: 0.9rem;
  color: var(--nosm-gray);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 320px;
}

.nosm-footer__social {
  display: flex;
  gap: 12px;
}

.nosm-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-gray-light);
  transition: all var(--transition-fast);
}

.nosm-footer__social a:hover {
  background: var(--nosm-gold);
  border-color: var(--nosm-gold);
  color: var(--nosm-black);
}

.nosm-footer__heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.nosm-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nosm-footer__links a {
  font-size: 0.85rem;
  color: var(--nosm-gray);
  transition: all var(--transition-fast);
}

.nosm-footer__links a:hover {
  color: var(--nosm-gold);
  padding-left: 4px;
}

.nosm-footer__bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nosm-footer__copy {
  font-size: 0.8rem;
  color: var(--nosm-gray);
}

.nosm-footer__payments {
  display: flex;
  gap: 12px;
}

.nosm-footer__payment {
  width: 40px;
  height: 26px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--nosm-gray);
}

/* ========================================
   SLIDE CART SIDEBAR
======================================== */
.nosm-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nosm-cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nosm-slide-cart {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 90vw;
  background: var(--nosm-dark);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.nosm-slide-cart.active {
  transform: translateX(0);
}

.nosm-slide-cart__header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nosm-slide-cart__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nosm-white);
}

.nosm-slide-cart__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nosm-slide-cart__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--nosm-white);
}

.nosm-slide-cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.nosm-slide-cart__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nosm-slide-cart__item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: var(--nosm-dark-3);
  object-fit: cover;
  flex-shrink: 0;
}

.nosm-slide-cart__item-info {
  flex: 1;
}

.nosm-slide-cart__item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nosm-white);
  margin-bottom: 4px;
}

.nosm-slide-cart__item-variant {
  font-size: 0.75rem;
  color: var(--nosm-gray);
  margin-bottom: 8px;
}

.nosm-slide-cart__item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nosm-slide-cart__item-price {
  font-weight: 700;
  color: var(--nosm-gold);
  font-size: 0.95rem;
}

.nosm-slide-cart__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  padding: 4px 8px;
}

.nosm-slide-cart__qty button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-gray-light);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.nosm-slide-cart__qty button:hover {
  color: var(--nosm-white);
}

.nosm-slide-cart__qty span {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.nosm-slide-cart__footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.3);
}

.nosm-slide-cart__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.nosm-slide-cart__subtotal-label {
  font-size: 0.9rem;
  color: var(--nosm-gray);
}

.nosm-slide-cart__subtotal-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nosm-white);
}

.nosm-slide-cart__shipping {
  font-size: 0.8rem;
  color: var(--nosm-gray);
  margin-bottom: 20px;
}

.nosm-slide-cart__checkout-btn {
  width: 100%;
  margin-bottom: 10px;
}

.nosm-slide-cart__continue {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: var(--nosm-gray);
  padding: 10px;
}

.nosm-slide-cart__continue:hover {
  color: var(--nosm-gold);
}

/* ========================================
   SEARCH MODAL
======================================== */
.nosm-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
}

.nosm-search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nosm-search-modal {
  width: 100%;
  max-width: 640px;
  padding: 0 24px;
  transform: translateY(-20px);
  transition: transform var(--transition-base);
}

.nosm-search-overlay.active .nosm-search-modal {
  transform: translateY(0);
}

.nosm-search-input-wrap {
  position: relative;
}

.nosm-search-input {
  width: 100%;
  padding: 20px 24px 20px 56px;
  background: var(--nosm-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--nosm-white);
  font-size: 1.1rem;
  transition: border-color var(--transition-fast);
}

.nosm-search-input:focus {
  border-color: var(--nosm-gold);
}

.nosm-search-input::placeholder {
  color: var(--nosm-gray);
}

.nosm-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--nosm-gray);
  font-size: 1.2rem;
}

.nosm-search-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-gray);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nosm-search-results {
  margin-top: 16px;
  background: var(--nosm-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  max-height: 400px;
  overflow-y: auto;
}

.nosm-search-result {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  transition: background var(--transition-fast);
  cursor: pointer;
}

.nosm-search-result:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nosm-search-result__img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--nosm-dark-3);
  object-fit: cover;
  flex-shrink: 0;
}

.nosm-search-result__info {
  flex: 1;
}

.nosm-search-result__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nosm-white);
}

.nosm-search-result__price {
  font-size: 0.85rem;
  color: var(--nosm-gold);
  font-weight: 600;
}

/* ========================================
   SINGLE PRODUCT PAGE
======================================== */
.nosm-single-product {
  padding: 140px 0 80px;
  background: var(--nosm-black);
}

.nosm-single-product__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Product Gallery */
.nosm-product-gallery {
  position: sticky;
  top: 100px;
}

.nosm-product-gallery__main {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--nosm-dark-2);
  margin-bottom: 16px;
}

.nosm-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.nosm-product-gallery__main:hover img {
  transform: scale(1.05);
}

.nosm-product-gallery__zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-white);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.nosm-product-gallery__zoom:hover {
  background: var(--nosm-gold);
  color: var(--nosm-black);
}

.nosm-product-gallery__thumbs {
  display: flex;
  gap: 10px;
}

.nosm-product-gallery__thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--nosm-dark-2);
}

.nosm-product-gallery__thumb.active,
.nosm-product-gallery__thumb:hover {
  border-color: var(--nosm-gold);
}

.nosm-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.nosm-product-info {
  padding: 20px 0;
}

.nosm-product-info__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: var(--nosm-gray);
}

.nosm-product-info__breadcrumb a:hover {
  color: var(--nosm-gold);
}

.nosm-product-info__breadcrumb .separator {
  color: var(--nosm-dark-4);
}

.nosm-product-info__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.nosm-product-info__sku {
  font-size: 0.8rem;
  color: var(--nosm-gray);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.nosm-product-info__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.nosm-product-info__stars {
  display: flex;
  gap: 3px;
  color: var(--nosm-gold);
}

.nosm-product-info__rating-text {
  font-size: 0.85rem;
  color: var(--nosm-gray);
}

.nosm-product-info__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nosm-product-info__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--nosm-white);
}

.nosm-product-info__price-old {
  font-size: 1.2rem;
  color: var(--nosm-gray);
  text-decoration: line-through;
}

.nosm-product-info__discount {
  padding: 4px 12px;
  background: rgba(244, 67, 54, 0.15);
  color: var(--nosm-danger);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.nosm-product-info__stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.nosm-product-info__stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.nosm-product-info__stock-dot--in {
  background: var(--nosm-success);
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.nosm-product-info__stock-dot--out {
  background: var(--nosm-danger);
}

.nosm-product-info__stock--in {
  color: var(--nosm-success);
}

.nosm-product-info__stock--out {
  color: var(--nosm-danger);
}

.nosm-product-info__desc {
  font-size: 0.95rem;
  color: var(--nosm-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Variation Swatches */
.nosm-variation {
  margin-bottom: 24px;
}

.nosm-variation__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nosm-white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nosm-variation__selected {
  color: var(--nosm-gold);
  font-weight: 400;
}

.nosm-variation__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Dropdown style */
.nosm-variation__select {
  width: 100%;
  padding: 12px 16px;
  background: var(--nosm-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--nosm-white);
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color var(--transition-fast);
}

.nosm-variation__select:focus {
  border-color: var(--nosm-gold);
}

/* Button swatch style */
.nosm-variation__swatch {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--nosm-dark-2);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: var(--nosm-gray-light);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.nosm-variation__swatch:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--nosm-white);
}

.nosm-variation__swatch.active {
  border-color: var(--nosm-gold);
  color: var(--nosm-gold);
  background: rgba(201, 169, 110, 0.1);
}

.nosm-variation__swatch.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Color swatch */
.nosm-variation__color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.nosm-variation__color-swatch:hover {
  transform: scale(1.1);
}

.nosm-variation__color-swatch.active {
  border-color: var(--nosm-gold);
  box-shadow: 0 0 0 2px var(--nosm-dark), 0 0 0 4px var(--nosm-gold);
}

.nosm-variation__color-swatch--white { background: #ffffff; }
.nosm-variation__color-swatch--black { background: #1a1a1a; }
.nosm-variation__color-swatch--rose-gold { background: linear-gradient(135deg, #b76e79, #e8c4b8); }
.nosm-variation__color-swatch--gun-black { background: linear-gradient(135deg, #2c2c2c, #4a4a4a); }

/* Quantity & Add to Cart */
.nosm-product-info__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: stretch;
}

.nosm-qty-control {
  display: flex;
  align-items: center;
  background: var(--nosm-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.nosm-qty-control button {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-gray-light);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.nosm-qty-control button:hover {
  color: var(--nosm-white);
  background: rgba(255, 255, 255, 0.05);
}

.nosm-qty-control input {
  width: 50px;
  height: 48px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--nosm-white);
  font-weight: 600;
  font-size: 0.95rem;
}

.nosm-add-to-cart-btn {
  flex: 1;
}

.nosm-wishlist-btn {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--nosm-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-gray-light);
  transition: all var(--transition-fast);
}

.nosm-wishlist-btn:hover {
  border-color: var(--nosm-danger);
  color: var(--nosm-danger);
}

.nosm-wishlist-btn.active {
  background: rgba(244, 67, 54, 0.1);
  border-color: var(--nosm-danger);
  color: var(--nosm-danger);
}

/* Product Meta */
.nosm-product-meta {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nosm-product-meta__item {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--nosm-gray);
}

.nosm-product-meta__label {
  font-weight: 600;
  color: var(--nosm-gray-light);
  min-width: 90px;
}

/* Product Tabs */
.nosm-product-tabs {
  margin-top: 60px;
}

.nosm-product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nosm-product-tabs__tab {
  padding: 16px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nosm-gray);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.nosm-product-tabs__tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--nosm-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nosm-product-tabs__tab.active {
  color: var(--nosm-white);
}

.nosm-product-tabs__tab.active::after {
  transform: scaleX(1);
}

.nosm-product-tabs__content {
  padding: 32px 0;
}

.nosm-product-tabs__panel {
  display: none;
}

.nosm-product-tabs__panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ========================================
   SHOP PAGE
======================================== */
.nosm-shop {
  padding: 140px 0 80px;
  background: var(--nosm-black);
}

.nosm-shop__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* Shop Sidebar / Filters */
.nosm-shop-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.nosm-filter-group {
  margin-bottom: 32px;
}

.nosm-filter-group__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.nosm-filter-group__title svg {
  transition: transform var(--transition-fast);
}

.nosm-filter-group.collapsed .nosm-filter-group__title svg {
  transform: rotate(180deg);
}

.nosm-filter-group__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nosm-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--nosm-gray);
  transition: color var(--transition-fast);
}

.nosm-filter-option:hover {
  color: var(--nosm-white);
}

.nosm-filter-option__check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.nosm-filter-option.active .nosm-filter-option__check {
  background: var(--nosm-gold);
  border-color: var(--nosm-gold);
}

.nosm-filter-option__count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--nosm-dark-4);
}

/* Price Range Slider */
.nosm-price-slider {
  padding: 10px 0;
}

.nosm-price-slider__track {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-bottom: 16px;
}

.nosm-price-slider__fill {
  position: absolute;
  height: 100%;
  background: var(--nosm-gold);
  border-radius: 2px;
  left: 10%;
  right: 30%;
}

.nosm-price-slider__values {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--nosm-gray);
}

/* Shop Toolbar */
.nosm-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nosm-shop-toolbar__result {
  font-size: 0.85rem;
  color: var(--nosm-gray);
}

.nosm-shop-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nosm-shop-toolbar__sort {
  padding: 8px 16px;
  background: var(--nosm-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--nosm-white);
  font-size: 0.8rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.nosm-shop-toolbar__view {
  display: flex;
  gap: 4px;
}

.nosm-shop-toolbar__view-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-gray);
  background: transparent;
  transition: all var(--transition-fast);
}

.nosm-shop-toolbar__view-btn.active,
.nosm-shop-toolbar__view-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--nosm-white);
}

/* ========================================
   CART PAGE
======================================== */
.nosm-cart-page {
  padding: 140px 0 80px;
  background: var(--nosm-black);
}

.nosm-cart-table {
  width: 100%;
  border-collapse: collapse;
}

.nosm-cart-table th {
  text-align: left;
  padding: 16px 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nosm-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nosm-cart-table td {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.nosm-cart-product {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nosm-cart-product__img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--nosm-dark-2);
  object-fit: cover;
}

.nosm-cart-product__name {
  font-weight: 600;
  color: var(--nosm-white);
  font-size: 0.95rem;
}

.nosm-cart-product__variant {
  font-size: 0.8rem;
  color: var(--nosm-gray);
  margin-top: 4px;
}

.nosm-cart-total-section {
  max-width: 400px;
  margin-left: auto;
  margin-top: 40px;
  padding: 32px;
  background: var(--nosm-dark-2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nosm-cart-total-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 20px;
}

.nosm-cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--nosm-gray);
}

.nosm-cart-total-row--total {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--nosm-white);
  font-size: 1.1rem;
}

.nosm-coupon-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.nosm-coupon-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--nosm-white);
  font-size: 0.85rem;
}

/* ========================================
   CHECKOUT PAGE
======================================== */
.nosm-checkout {
  padding: 140px 0 80px;
  background: var(--nosm-black);
}

.nosm-checkout__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.nosm-checkout__section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 24px;
}

.nosm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.nosm-form-row--single {
  grid-template-columns: 1fr;
}

.nosm-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nosm-form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--nosm-gray-light);
  letter-spacing: 0.3px;
}

.nosm-form-input {
  padding: 14px 16px;
  background: var(--nosm-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--nosm-white);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.nosm-form-input:focus {
  border-color: var(--nosm-gold);
}

/* Order Summary */
.nosm-order-summary {
  background: var(--nosm-dark-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 100px;
}

/* ========================================
   MY ACCOUNT
======================================== */
.nosm-account {
  padding: 140px 0 80px;
  background: var(--nosm-black);
}

.nosm-account__layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

.nosm-account__sidebar {
  background: var(--nosm-dark-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 100px;
  align-self: start;
}

.nosm-account__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nosm-gold), var(--nosm-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nosm-black);
  margin: 0 auto 16px;
}

.nosm-account__name {
  text-align: center;
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 4px;
}

.nosm-account__email {
  text-align: center;
  font-size: 0.8rem;
  color: var(--nosm-gray);
  margin-bottom: 24px;
}

.nosm-account__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nosm-account__nav-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--nosm-gray);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nosm-account__nav-link:hover,
.nosm-account__nav-link.active {
  background: rgba(201, 169, 110, 0.1);
  color: var(--nosm-gold);
}

/* ========================================
   ABOUT PAGE
======================================== */
.nosm-about-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--nosm-black);
  text-align: center;
}

.nosm-about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 16px;
}

.nosm-about-hero__text {
  font-size: 1.1rem;
  color: var(--nosm-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.nosm-about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 80px 0;
}

.nosm-about-value {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--nosm-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.nosm-about-value__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.nosm-about-value__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 10px;
}

.nosm-about-value__desc {
  font-size: 0.9rem;
  color: var(--nosm-gray);
  line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
======================================== */
.nosm-contact {
  padding: 140px 0 80px;
  background: var(--nosm-black);
}

.nosm-contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.nosm-contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--nosm-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
}

.nosm-contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nosm-contact-info-card__title {
  font-weight: 700;
  color: var(--nosm-white);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.nosm-contact-info-card__text {
  font-size: 0.85rem;
  color: var(--nosm-gray);
  line-height: 1.5;
}

.nosm-contact-form {
  background: var(--nosm-dark-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   WISHLIST PAGE
======================================== */
.nosm-wishlist {
  padding: 140px 0 80px;
  background: var(--nosm-black);
}

.nosm-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ========================================
   QUICK VIEW MODAL
======================================== */
.nosm-quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: 24px;
}

.nosm-quickview-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nosm-quickview {
  width: 100%;
  max-width: 900px;
  background: var(--nosm-dark);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform var(--transition-base);
  max-height: 90vh;
  overflow-y: auto;
}

.nosm-quickview-overlay.active .nosm-quickview {
  transform: scale(1);
}

.nosm-quickview__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nosm-white);
  cursor: pointer;
  z-index: 2;
}

/* ========================================
   MOBILE STICKY ADD TO CART
======================================== */
.nosm-mobile-sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--nosm-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  z-index: 999;
  display: none;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(20px);
}

.nosm-mobile-sticky-cart__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nosm-white);
  white-space: nowrap;
}

.nosm-mobile-sticky-cart__btn {
  flex: 1;
}

/* ========================================
   LOADING STATES
======================================== */
.nosm-skeleton {
  background: linear-gradient(90deg, var(--nosm-dark-2) 25%, var(--nosm-dark-3) 50%, var(--nosm-dark-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

.nosm-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--nosm-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Toast Notification */
.nosm-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  background: var(--nosm-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--nosm-white);
  font-size: 0.9rem;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-spring);
}

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

.nosm-toast--success {
  border-left: 3px solid var(--nosm-success);
}

.nosm-toast--error {
  border-left: 3px solid var(--nosm-danger);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .nosm-hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 160px;
  }
  
  .nosm-hero__text {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .nosm-hero__description {
    margin: 0 auto 36px;
  }
  
  .nosm-hero__cta {
    justify-content: center;
  }
  
  .nosm-hero__stats {
    justify-content: center;
  }
  
  .nosm-hero__visual {
    display: none;
  }
  
  .nosm-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .nosm-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nosm-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nosm-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nosm-single-product__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nosm-product-gallery {
    position: relative;
    top: auto;
  }
  
  .nosm-shop__layout {
    grid-template-columns: 1fr;
  }
  
  .nosm-shop-sidebar {
    position: relative;
    top: auto;
  }
  
  .nosm-checkout__layout {
    grid-template-columns: 1fr;
  }
  
  .nosm-contact__layout {
    grid-template-columns: 1fr;
  }
  
  .nosm-footer__main {
    grid-template-columns: 1fr 1fr;
  }
  
  .nosm-footer__newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .nosm-footer__newsletter-form {
    min-width: auto;
    width: 100%;
    max-width: 400px;
  }
  
  .nosm-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .nosm-gallery-grid__item:first-child {
    grid-row: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .nosm-nav {
    display: none;
  }
  
  .nosm-menu-toggle {
    display: flex;
  }
  
  /* Mobile Nav Drawer */
  .nosm-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--nosm-dark);
    z-index: 9998;
    padding: 100px 24px 40px;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
  }
  
  .nosm-mobile-nav.active {
    transform: translateX(0);
  }
  
  .nosm-mobile-nav__link {
    display: block;
    padding: 16px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nosm-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nosm-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .nosm-categories-grid {
    grid-template-columns: 1fr;
  }
  
  .nosm-features-grid {
    grid-template-columns: 1fr;
  }
  
  .nosm-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .nosm-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .nosm-product-card__info {
    padding: 14px;
  }
  
  .nosm-product-card__title {
    font-size: 0.9rem;
  }
  
  .nosm-product-card__price-current {
    font-size: 1rem;
  }
  
  .nosm-hero__title {
    font-size: 2rem;
  }
  
  .nosm-hero__stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .nosm-footer__main {
    grid-template-columns: 1fr;
  }
  
  .nosm-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .nosm-account__layout {
    grid-template-columns: 1fr;
  }
  
  .nosm-wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nosm-about-values {
    grid-template-columns: 1fr;
  }
  
  .nosm-quickview {
    grid-template-columns: 1fr;
  }
  
  .nosm-mobile-sticky-cart {
    display: flex;
  }
  
  .nosm-cta__inner {
    padding: 40px 24px;
  }
  
  .nosm-form-row {
    grid-template-columns: 1fr;
  }
  
  .nosm-product-gallery__thumbs {
    gap: 6px;
  }
  
  .nosm-product-gallery__thumb {
    width: 60px;
    height: 60px;
  }
  
  .nosm-product-info__actions {
    flex-wrap: wrap;
  }
  
  .nosm-cart-table {
    display: block;
  }
  
  .nosm-cart-table thead {
    display: none;
  }
  
  .nosm-cart-table tbody,
  .nosm-cart-table tr,
  .nosm-cart-table td {
    display: block;
  }
  
  .nosm-cart-total-section {
    max-width: none;
    margin-left: 0;
  }
  
  .nosm-slide-cart {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .nosm-products-grid {
    grid-template-columns: 1fr;
  }
  
  .nosm-wishlist-grid {
    grid-template-columns: 1fr;
  }
  
  .nosm-hero__content {
    padding-top: 130px;
  }
  
  .nosm-hero__badge {
    font-size: 0.65rem;
  }
  
  .nosm-section-title {
    font-size: 1.8rem;
  }
  
  .nosm-product-info__price {
    font-size: 1.5rem;
  }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
  .nosm-header,
  .nosm-footer,
  .nosm-slide-cart,
  .nosm-mobile-sticky-cart,
  .nosm-toast {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}
