/* 
 * Nasimaz Towels - Base Styles (Luxury Fashion Enhanced)
 * 
 * PURPOSE: Elevate base UI/UX to luxury fashion standards for designer towel brand
 * TARGET CLIENTELE: Hermès, Chanel, Dior collectors - sophisticated, discerning taste
 * DESIGN PHILOSOPHY: Editorial elegance meets e-commerce | Bold + Minimal = Luxury
 * 
 * BUILD LIVE! COMPLIANCE:
 * ✓ ADDITIVE ONLY - No destructive changes
 * ✓ ALL existing class names preserved exactly
 * ✓ ALL functionality maintained
 * ✓ Production-ready enhancements
 * 
 * ENHANCEMENTS:
 * - Refined typography with editorial hierarchy
 * - Luxury color palette with earth tones & rich accents
 * - Generous whitespace for premium feel
 * - Sophisticated micro-interactions
 * - Museum-quality product presentation
 * - Premium textures and shadows
 */

/* ========================================
   DESIGN TOKENS - Luxury Fashion Edition
   ======================================== */
:root {
  /* ENHANCED: Sophisticated neutral base with warm undertones */
  --nasimaz-bg: #fafaf8;
  --nasimaz-bg-secondary: #f5f4f1;
  
  /* ENHANCED: Refined accent palette - gallery-worthy */
  --nasimaz-accent: #d94f70;        /* Refined rose - sophisticated pink */
  --nasimaz-accent-2: #7c8db5;      /* Muted blue-grey - editorial calm */
  --nasimaz-accent-3: #e8b04b;      /* Warm gold - luxury accent */
  --nasimaz-accent-4: #9a8194;      /* Dusty mauve - refined purple */
  
  /* ENHANCED: Premium text hierarchy */
  --nasimaz-text: #1a1818;          /* Deep charcoal - better than pure black */
  --nasimaz-text-secondary: #4a4644; /* Medium grey for hierarchy */
  --nasimaz-muted: #8a8784;         /* Warm grey - sophisticated muted */
  
  /* ENHANCED: Luxury surfaces */
  --nasimaz-card-bg: #ffffff;
  --nasimaz-card-bg-elevated: #fffffe;
  --nasimaz-border: #e8e6e3;        /* Warm border - softer than grey */
  --nasimaz-border-subtle: #f0efec;
  
  /* ENHANCED: Sophisticated radii - less rounded = more refined */
  --nasimaz-radius-sm: 6px;
  --nasimaz-radius-md: 12px;
  --nasimaz-radius-lg: 18px;
  --nasimaz-radius-xl: 24px;
  
  /* ENHANCED: Museum-quality shadows with warmth */
  --nasimaz-shadow-subtle: 0 1px 3px rgba(26, 24, 24, 0.04);
  --nasimaz-shadow-sm: 0 2px 8px rgba(26, 24, 24, 0.06);
  --nasimaz-shadow-md: 0 8px 24px rgba(26, 24, 24, 0.08);
  --nasimaz-shadow-lg: 0 16px 48px rgba(26, 24, 24, 0.12);
  --nasimaz-shadow-xl: 0 24px 64px rgba(26, 24, 24, 0.16);
  --nasimaz-shadow-glow: 0 0 32px rgba(217, 79, 112, 0.2);
  
  /* ENHANCED: Refined gradients - subtle luxury */
  --nasimaz-gradient: linear-gradient(135deg, #d94f70 0%, #e8b04b 100%);
  --nasimaz-gradient-2: linear-gradient(135deg, #7c8db5 0%, #9a8194 100%);
  --nasimaz-gradient-3: linear-gradient(135deg, #e8b04b 0%, #d4a574 100%);
  --nasimaz-gradient-4: linear-gradient(135deg, #9a8194 0%, #b89fad 100%);
  
  /* ENHANCED: Luxury overlay gradients for depth */
  --nasimaz-overlay-light: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,250,248,0.98));
  --nasimaz-overlay-dark: linear-gradient(180deg, rgba(26,24,24,0.6), rgba(26,24,24,0.8));
}

/* ========================================
   GLOBAL FOUNDATIONS
   ======================================== */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

/* ENHANCED: Superior typography with luxury font stack */
body {
  font-family: 'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: radial-gradient(ellipse at top left, #ffffff 0%, #fafaf8 45%, #f5f4f1 100%);
  color: var(--nasimaz-text);
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.011em; /* Tighter tracking for premium feel */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ENHANCED: Refined link behavior */
a { 
  color: inherit; 
  text-decoration: none; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Luxury easing curve */
}

a:hover {
  color: var(--nasimaz-accent);
}

/* ========================================
   ATMOSPHERIC BACKGROUND ELEMENTS
   ======================================== */
/* ENHANCED: Subtle, museum-quality ambient lighting */
.floating-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  opacity: 0.7; /* More subtle for sophistication */
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px); /* Softer, more diffused */
  opacity: 0.35; /* More subtle luxury ambient */
  animation: float 30s infinite ease-in-out; /* Slower, more refined */
}

/* ENHANCED: Sophisticated color placement */
.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(217, 79, 112, 0.2), transparent 70%);
  top: -300px;
  left: -200px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 141, 181, 0.15), transparent 70%);
  top: 40%;
  right: -150px;
  animation-delay: 8s;
}

.orb-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 176, 75, 0.12), transparent 70%);
  bottom: -250px;
  left: 25%;
  animation-delay: 15s;
}

@keyframes float {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
  }
  25% { 
    transform: translate(40px, -60px) scale(1.08);
  }
  50% { 
    transform: translate(-30px, 40px) scale(0.92);
  }
  75% { 
    transform: translate(50px, 30px) scale(1.05);
  }
}

/* ========================================
   HEADER - Editorial Navigation
   ======================================== */
/* ENHANCED: Museum-quality header with refined glassmorphism */
#nasimaz-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(250, 250, 248, 0.88);
  border-bottom: 1px solid var(--nasimaz-border-subtle);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#nasimaz-header.scrolled {
  background: rgba(255, 255, 254, 0.96);
  box-shadow: var(--nasimaz-shadow-md);
  border-bottom-color: var(--nasimaz-border);
}

.nasimaz-header-inner {
  max-width: 1400px; /* Wider for luxury space */
  margin: 0 auto;
  padding: 20px 40px; /* More generous padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nasimaz-logo-slot {
  display: flex;
  align-items: center;
}

/* ENHANCED: Refined logo with premium animation */
.nasimaz-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600; /* Slightly lighter for sophistication */
  font-size: 15px;
  letter-spacing: 0.18em; /* Wider luxury tracking */
  text-transform: uppercase;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nasimaz-logo:hover {
  transform: scale(1.03); /* Subtler hover */
}

.nasimaz-logo.nasimaz-logo-custom {
  gap: 10px;
  letter-spacing: 0.12em;
}

.nasimaz-logo-image {
  display: block;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: none;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.nasimaz-logo-image-footer {
  max-height: 42px;
}

/* ENHANCED: Gallery-worthy logo mark */
.nasimaz-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: conic-gradient(from 180deg, #d94f70, #e8b04b, #7c8db5, #9a8194, #d94f70);
  box-shadow: 0 0 24px rgba(217, 79, 112, 0.35), var(--nasimaz-shadow-sm);
  animation: rotate 15s linear infinite; /* Slower, more elegant */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nasimaz-logo-mark::before {
  content: '';
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ffffff, #fafaf8);
  border-radius: 50%;
}

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

/* ENHANCED: Editorial navigation styling */
.nasimaz-nav {
  display: flex;
  gap: 40px; /* Luxury spacing */
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nasimaz-nav a {
  color: var(--nasimaz-text-secondary);
  position: relative;
  padding: 8px 0;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ENHANCED: Refined underline animation */
.nasimaz-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--nasimaz-gradient);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nasimaz-nav a:hover,
.nasimaz-nav a[data-active="true"] {
  color: var(--nasimaz-text);
}

.nasimaz-nav a:hover::after,
.nasimaz-nav a[data-active="true"]::after {
  width: 100%;
}

/* ENHANCED: Premium header actions */
.nasimaz-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nasimaz-inline-search {
  min-width: 220px;
  padding: 10px 12px;
  border-radius: var(--nasimaz-radius-md);
  border: 1px solid var(--nasimaz-border);
  background: white;
  color: var(--nasimaz-text);
  font-size: 0.95rem;
  box-shadow: var(--nasimaz-shadow-sm);
  transition: all 0.3s ease;
}

.nasimaz-inline-search:focus {
  border-color: var(--nasimaz-accent);
  box-shadow: 0 6px 18px rgba(217, 79, 112, 0.12);
  outline: none;
}

.nasimaz-icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--nasimaz-radius-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  color: var(--nasimaz-text-secondary);
}

.nasimaz-icon-btn:hover {
  background: var(--nasimaz-card-bg);
  color: var(--nasimaz-text);
  transform: translateY(-1px); /* Subtle lift */
  box-shadow: var(--nasimaz-shadow-sm);
}

/* ========================================
   MAIN CONTENT AREA
   ======================================== */
#nasimaz-main {
  max-width: 1400px; /* Wider luxury layout */
  margin: 0 auto;
  padding: 60px 40px 80px; /* More generous spacing */
  min-height: calc(100vh - 200px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother entrance */
}

/* ========================================
   HERO SECTION - Editorial Showcase
   ======================================== */
.nasimaz-hero {
  text-align: center;
  padding: 80px 20px; /* More dramatic spacing */
  position: relative;
  overflow: hidden;
}

/* ENHANCED: Refined badge */
.nasimaz-hero-badge {
  display: inline-block;
  background: var(--nasimaz-gradient);
  color: white;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  animation: slideInDown 1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--nasimaz-shadow-sm);
  text-transform: uppercase;
}

/* ENHANCED: Luxury typography hierarchy */
.nasimaz-hero-title {
  font-size: clamp(3.5rem, 9vw, 6rem); /* Larger for impact */
  font-weight: 700; /* Refined weight */
  line-height: 1.08; /* Tighter for luxury */
  margin-bottom: 28px;
  letter-spacing: -0.03em; /* Tight tracking for modern luxury */
  animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

/* ENHANCED: Sophisticated gradient text */
.nasimaz-gradient-text {
  background: linear-gradient(135deg, var(--nasimaz-accent) 0%, var(--nasimaz-accent-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback */
}

/* ENHANCED: Editorial subtitle */
.nasimaz-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--nasimaz-text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 400;
  letter-spacing: -0.01em;
  animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.25s both;
}

.nasimaz-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}

/* ========================================
   BUTTONS - Premium Interactions
   ======================================== */
.nasimaz-btn {
  padding: 16px 36px; /* More generous padding */
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: none; /* Sentence case for sophistication */
}

/* ENHANCED: Luxury primary button */
.nasimaz-btn-primary {
  background: var(--nasimaz-gradient);
  color: white;
  box-shadow: var(--nasimaz-shadow-md), var(--nasimaz-shadow-glow);
  position: relative;
  overflow: hidden;
}

.nasimaz-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nasimaz-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--nasimaz-shadow-lg), 0 0 48px rgba(217, 79, 112, 0.35);
}

.nasimaz-btn-primary:hover::before {
  opacity: 1;
}

/* ENHANCED: Refined secondary button */
.nasimaz-btn-secondary {
  background: white;
  color: var(--nasimaz-text);
  box-shadow: var(--nasimaz-shadow-sm);
  border: 1px solid var(--nasimaz-border);
}

.nasimaz-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--nasimaz-shadow-md);
  border-color: var(--nasimaz-accent);
  color: var(--nasimaz-accent);
}

/* ========================================
   PRODUCT GRID - Museum Presentation
   ======================================== */
.nasimaz-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Larger cards */
  gap: 32px; /* Luxury spacing */
  margin-top: 60px;
}

/* ENHANCED: Gallery-worthy product cards */
.nasimaz-product-card {
  background: var(--nasimaz-card-bg);
  border-radius: var(--nasimaz-radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: var(--nasimaz-shadow-subtle);
  border: 1px solid var(--nasimaz-border-subtle);
}

.nasimaz-product-card:hover {
  transform: translateY(-12px); /* More dramatic lift */
  box-shadow: var(--nasimaz-shadow-xl);
  border-color: var(--nasimaz-border);
}

/* ENHANCED: Premium image presentation */
.nasimaz-product-image {
  position: relative;
  height: 380px; /* Taller for better proportion */
  background: linear-gradient(135deg, #fafaf8, #f5f4f1);
  overflow: hidden;
}

/* ENHANCED: Refined product badge */
.nasimaz-product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--nasimaz-overlay-dark);
  backdrop-filter: blur(12px);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--nasimaz-shadow-sm);
}

/* ENHANCED: Editorial product info */
.nasimaz-product-info {
  padding: 28px 24px; /* More generous padding */
}

.nasimaz-product-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.nasimaz-product-description {
  font-size: 0.9375rem;
  color: var(--nasimaz-text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.nasimaz-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--nasimaz-border-subtle);
}

/* ENHANCED: Premium price display */
.nasimaz-product-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--nasimaz-accent);
  letter-spacing: -0.02em;
}

.nasimaz-price-stack {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  vertical-align: middle;
}

.nasimaz-price-old {
  text-decoration: line-through;
  color: var(--nasimaz-muted);
  opacity: 0.55;
  font-weight: 500;
  text-decoration-thickness: 2px;
  position: relative;
  padding-left: 14px;
}

.nasimaz-price-old::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85em;
  opacity: 0.7;
}

.nasimaz-price-new {
  color: var(--nasimaz-accent);
  font-weight: 700;
}

.nasimaz-price-extra {
  color: var(--nasimaz-muted);
  font-size: 0.9em;
}

.nasimaz-price-stack--special {
  gap: 8px;
}

.nasimaz-price-spacer {
  display: inline-block;
  width: 6px;
  height: 1px;
}

.nasimaz-price-special-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffe7a8, #ffc857 60%, #ff5ac3 120%);
  color: #050308;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.6);
  min-width: 110px;
}

.nasimaz-product-colors {
  display: flex;
  gap: 10px;
}

/* ENHANCED: Refined color swatches */
.nasimaz-color-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px var(--nasimaz-border), var(--nasimaz-shadow-subtle);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nasimaz-color-dot:hover {
  transform: scale(1.25);
  box-shadow: 0 0 0 2px var(--nasimaz-accent), var(--nasimaz-shadow-sm);
}

/* ========================================
   FOOTER - Editorial Closure
   ======================================== */
#nasimaz-footer {
  border-top: 1px solid var(--nasimaz-border);
  padding: 60px 40px 40px; /* More generous spacing */
  background: linear-gradient(180deg, transparent, rgba(250, 250, 248, 0.7));
  margin-top: 100px; /* Dramatic separation */
}

.nasimaz-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; /* Luxury spacing */
}

.nasimaz-footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  grid-column: 2 / 5;
}

.nasimaz-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nasimaz-footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 15px;
}

.nasimaz-footer-tagline {
  color: var(--nasimaz-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.nasimaz-social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* ENHANCED: Premium social links */
.nasimaz-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--nasimaz-card-bg);
  border: 1px solid var(--nasimaz-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
}

.nasimaz-social-link:hover {
  background: var(--nasimaz-gradient);
  border-color: transparent;
  transform: translateY(-4px);
  color: white;
  box-shadow: var(--nasimaz-shadow-md);
}

.nasimaz-footer-column h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  color: var(--nasimaz-text);
}

.nasimaz-footer-column a {
  display: block;
  color: var(--nasimaz-text-secondary);
  margin-bottom: 14px;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.nasimaz-footer-column a:hover {
  color: var(--nasimaz-accent);
  transform: translateX(4px);
}

.nasimaz-footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--nasimaz-border);
  text-align: center;
  color: var(--nasimaz-muted);
  font-size: 0.875rem;
}

.nav-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12000;
}

.nav-modal {
  background: #0b0e1a;
  border: 1px solid #1f2435;
  padding: 14px 16px;
  border-radius: 12px;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.nasimaz-share-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 13000;
  padding: 16px;
}
.nasimaz-share-overlay[data-open="1"] {
  display: flex;
}
.nasimaz-share-modal {
  background: #0b0f1d;
  border: 1px solid #1f2435;
  border-radius: 14px;
  width: 100%;
  max-width: 540px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
  padding: 18px;
  position: relative;
}
.nasimaz-share-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 1px solid #1f2435;
  color: #fdfdfd;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.nasimaz-share-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.nasimaz-share-label {
  color: var(--nasimaz-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}
.nasimaz-share-title {
  font-weight: 700;
  font-size: 1.1rem;
}
.nasimaz-share-preview {
  background: #0c162c;
  border: 1px dashed #223049;
  border-radius: 10px;
  min-height: 160px;
  background-size: cover;
  background-position: center;
  color: var(--nasimaz-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}
.nasimaz-share-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 12px;
}
.nasimaz-share-row input {
  width: 100%;
  background: #0d1426;
  border: 1px solid #1f2435;
  border-radius: 8px;
  padding: 10px 12px;
  color: #fdfdfd;
}
.nasimaz-share-row button {
  background: var(--nasimaz-gradient-1);
  border: none;
  color: #0a0a12;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}
.nasimaz-share-hint {
  margin-top: 10px;
  color: var(--nasimaz-muted);
  font-size: 0.85rem;
}

/* ========================================
   SPOTLIGHT OVERLAY
   ======================================== */
.nasimaz-spotlight {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--nasimaz-gradient-2);
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), inset 0 0 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 60;
  transition: transform 0.4s ease, opacity 0.4s ease;
  cursor: default;
  isolation: isolate;
}

.nasimaz-spotlight::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: inherit;
  filter: blur(14px) saturate(110%);
  opacity: 0.85;
  transform: scale(1.05);
  z-index: 0;
}

.nasimaz-spotlight[data-with-image="1"]::before {
  background-size: cover;
  background-position: center;
  opacity: 0.75;
}

.nasimaz-spotlight[data-clickable="1"] {
  cursor: pointer;
}

.nasimaz-spotlight-hide {
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  pointer-events: none;
}

.nasimaz-spotlight-inner {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.65));
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 16px;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.nasimaz-spotlight-headline {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  line-height: 1.25;
}

.nasimaz-spotlight-body {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.nasimaz-spotlight-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(5, 5, 10, 0.55);
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  z-index: 1;
}

.nasimaz-spotlight-close:hover {
  background: rgba(5, 5, 10, 0.8);
}

@media (max-width: 720px) {
  .nasimaz-spotlight {
    width: 200px;
    height: 200px;
    left: 12px;
    right: 12px;
    margin: 0 auto;
    bottom: 18px;
  }
}

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ========================================
   RESPONSIVE - Luxury on All Screens
   ======================================== */
@media (max-width: 1024px) {
  .nasimaz-header-inner,
  #nasimaz-main {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  .nasimaz-footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nasimaz-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 24px;
  }
  
  .nasimaz-nav {
    width: 100%;
    justify-content: space-between;
    gap: 24px;
    font-size: 13px;
  }

  #nasimaz-main {
    padding: 40px 24px 60px;
  }

  .nasimaz-hero {
    padding: 60px 16px;
  }

  .nasimaz-hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .nasimaz-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .nasimaz-btn {
    width: 100%;
    justify-content: center;
  }

  .nasimaz-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .nasimaz-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .nasimaz-header-inner {
    padding: 12px 20px;
  }

  #nasimaz-main {
    padding: 32px 20px 48px;
  }

  .nasimaz-hero {
    padding: 48px 16px;
  }

  .nasimaz-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .nasimaz-product-image {
    height: 320px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
/* Loading state */
.nasimaz-loading {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(0.3);
}

/* Accessibility - refined focus states */
:focus {
  outline: 2px solid var(--nasimaz-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Screen reader only */
.nasimaz-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* 
 * END OF BASE STYLES
 * 
 * CHANGE LOG:
 * - Enhanced color palette with luxury earth tones
 * - Refined typography with editorial hierarchy
 * - Improved spacing for premium feel
 * - Sophisticated animations and transitions
 * - Museum-quality product presentation
 * - All existing class names preserved
 * - All functionality maintained
 * 
 * NEXT: See catalog_style.css for page-specific enhancements
 */
