/* ===================================
   CITY INFOTECH – STYLESHEET
   =================================== */

/* --- DESIGN TOKENS --- */
:root {
  --primary: hsl(215, 90%, 55%);
  --primary-light: hsl(215, 90%, 68%);
  --primary-dark: hsl(215, 90%, 42%);
  --accent: hsl(185, 85%, 50%);
  --accent-glow: hsl(185, 85%, 50%, 0.3);

  --bg-900: hsl(222, 30%, 5%);
  --bg-800: hsl(222, 28%, 8%);
  --bg-700: hsl(222, 25%, 12%);
  --bg-600: hsl(222, 22%, 16%);
  --bg-500: hsl(222, 20%, 22%);

  --text-100: hsl(210, 40%, 98%);
  --text-200: hsl(210, 30%, 88%);
  --text-300: hsl(210, 20%, 68%);
  --text-400: hsl(210, 15%, 48%);

  --border: hsl(222, 22%, 20%);
  --border-light: hsl(222, 22%, 28%);

  --glass-bg: hsla(222, 30%, 6%, 0.92);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-primary: 0 0 40px hsla(215,90%,55%,0.25);
  --shadow-accent: 0 0 40px hsla(185,85%,50%,0.2);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-main: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--bg-900);
  color: var(--text-200);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-800); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* --- TYPOGRAPHY UTILITIES --- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 20px hsla(215,90%,55%,0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px hsla(215,90%,55%,0.5); }
.btn-primary svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-200);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: hsla(215,90%,55%,0.08);
}

/* --- SECTION COMMONS --- */
.section-container { max-width: 1200px; margin: 0 auto; padding: 100px 24px; }

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: hsla(215,90%,55%,0.1);
  border: 1px solid hsla(215,90%,55%,0.25);
  border-radius: 100px;
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-100);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-300);
  max-width: 540px;
  margin: 0 auto;
}

/* ===========================================
   NAVIGATION
   =========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--primary-light);
}
.logo-icon svg { width: 100%; height: 100%; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
}
.logo-main { color: var(--text-100); }
.logo-accent { color: var(--primary-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-300);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text-100); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-nav {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 14px hsla(215,90%,55%,0.3);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px hsla(215,90%,55%,0.45); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-200);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsla(215,90%,55%,0.04) 1px, transparent 1px),
    linear-gradient(90deg, hsla(215,90%,55%,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: hsla(215, 90%, 55%, 0.12);
  top: -200px; right: -100px;
  animation: float-glow 8s ease-in-out infinite;
}
.glow-2 {
  width: 400px; height: 400px;
  background: hsla(185, 85%, 50%, 0.08);
  bottom: -100px; left: -100px;
  animation: float-glow 10s ease-in-out infinite reverse;
}
@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { display: flex; flex-direction: column; gap: 24px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: hsla(185,85%,50%,0.1);
  border: 1px solid hsla(185,85%,50%,0.25);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: fit-content;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--text-100);
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-300);
  line-height: 1.7;
  max-width: 500px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: fit-content;
  backdrop-filter: blur(10px);
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-light);
}
.stat-plus { font-size: 1.2rem; color: var(--primary-light); font-weight: 700; display: inline; }
.stat-label { font-size: 0.75rem; color: var(--text-400); font-weight: 500; text-align: center; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg), 0 0 60px hsla(215,90%,55%,0.1);
  animation: float-hero 6s ease-in-out infinite;
}
@keyframes float-hero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, hsla(215,90%,55%,0.12), transparent 70%);
  border-radius: var(--radius-xl);
  pointer-events: none;
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.floating-card.card-1 { top: 16%; left: -18%; animation: float-card 5s ease-in-out infinite; }
.floating-card.card-2 { bottom: 20%; right: -14%; animation: float-card 5s ease-in-out infinite 1.5s; }
.floating-card.card-3 { top: -5%; right: 10%; animation: float-card 5s ease-in-out infinite 3s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-icon { font-size: 1.4rem; }
.card-title { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-100); }
.card-sub { display: block; font-size: 0.72rem; color: var(--accent); font-weight: 500; }

/* Scroll Indicator */
.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 32px;
  color: var(--text-400);
  font-size: 0.75rem;
  animation: fade-in 1s ease 2s both;
}
@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid var(--border-light);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--primary-light);
  border-radius: 2px;
  animation: scroll-anim 1.5s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ===========================================
   BRANDS MARQUEE
   =========================================== */
.brands-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-800);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brands-label {
  flex-shrink: 0;
  padding-left: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-400);
  white-space: nowrap;
}
.marquee-wrapper {
  flex: 1;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-item {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-300);
  letter-spacing: 0.5px;
  transition: color 0.3s;
  white-space: nowrap;
}
.brand-item:hover { color: var(--primary-light); }
.brand-dot { color: var(--border-light); }

/* ===========================================
   CATEGORIES SECTION
   =========================================== */
.categories { background: var(--bg-900); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, hsla(215,90%,55%,0.06), transparent);
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover {
  border-color: hsla(215,90%,55%,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 30px hsla(215,90%,55%,0.08);
}
.category-card:hover::before { opacity: 1; }

.cat-hover-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, hsla(215,90%,55%,0.08), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover .cat-hover-bg { opacity: 1; }

.cat-icon-wrap {
  width: 52px; height: 52px;
  background: hsla(215,90%,55%,0.1);
  border: 1px solid hsla(215,90%,55%,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.category-card:hover .cat-icon-wrap {
  background: hsla(215,90%,55%,0.18);
  border-color: hsla(215,90%,55%,0.4);
}
.cat-icon { font-size: 1.6rem; }

.cat-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-100);
  position: relative;
}
.cat-desc {
  font-size: 0.88rem;
  color: var(--text-300);
  line-height: 1.6;
  flex: 1;
}
.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cat-tags span {
  padding: 3px 10px;
  background: hsla(215,90%,55%,0.08);
  border: 1px solid hsla(215,90%,55%,0.15);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--primary-light);
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: var(--transition);
  position: relative;
}
.cat-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
.category-card:hover .cat-link svg { transform: translateX(4px); }

/* ===========================================
   FEATURED PRODUCTS
   =========================================== */
.featured { background: var(--bg-800); }

.products-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
  height: 360px;
}
.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.products-showcase:hover .showcase-img { transform: scale(1.03); }
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, hsla(222,30%,5%,0.85) 40%, transparent);
  display: flex;
  align-items: center;
  padding: 48px;
}
.showcase-content { max-width: 400px; }
.showcase-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-100);
  margin-bottom: 12px;
}
.showcase-content p {
  font-size: 0.95rem;
  color: var(--text-200);
  margin-bottom: 24px;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  position: relative;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.4s ease;
}
.product-card:hover {
  border-color: hsla(215,90%,55%,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.product-card:hover::after { width: 100%; }

.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.new-badge { background: linear-gradient(135deg, hsl(155,70%,40%), hsl(155,70%,30%)); }

.product-icon {
  font-size: 2rem;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(215,90%,55%,0.08);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.product-info { flex: 1; }
.product-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 4px;
}
.product-info p {
  font-size: 0.82rem;
  color: var(--text-300);
  margin-bottom: 12px;
  line-height: 1.5;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.product-features span {
  font-size: 0.78rem;
  color: var(--text-300);
}
.product-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: var(--transition);
}
.product-cta:hover { color: var(--accent); letter-spacing: 0.5px; }

/* ===========================================
   WHY US
   =========================================== */
.why-us {
  background: var(--bg-900);
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.why-glow {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, hsla(215,90%,55%,0.07), transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.why-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover {
  border-color: hsla(215,90%,55%,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: var(--text-300); line-height: 1.6; }

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about { background: var(--bg-800); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-side { position: relative; }
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}
.about-img-border {
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-xl) + 8px);
  border: 1px dashed hsla(215,90%,55%,0.25);
  pointer-events: none;
}
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-700);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.about-badge-icon { font-size: 1.8rem; }
.about-badge-float strong { display: block; font-size: 0.75rem; color: var(--text-300); font-weight: 500; }
.about-badge-float span { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--primary-light); }

.about-content-side { display: flex; flex-direction: column; gap: 20px; }
.about-text { font-size: 0.95rem; color: var(--text-300); line-height: 1.8; }

.about-highlights { display: flex; flex-direction: column; gap: 16px; }
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-600);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.highlight-item:hover { border-color: hsla(215,90%,55%,0.3); }
.highlight-icon { font-size: 1.5rem; flex-shrink: 0; }
.highlight-item strong { display: block; color: var(--text-100); font-weight: 600; margin-bottom: 4px; }
.highlight-item p { font-size: 0.85rem; color: var(--text-300); }

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact { background: var(--bg-900); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: hsla(215,90%,55%,0.3);
  transform: translateX(4px);
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-detail h4 { color: var(--text-100); font-weight: 600; margin-bottom: 4px; font-size: 0.9rem; }
.contact-detail p { font-size: 0.85rem; color: var(--text-300); line-height: 1.6; }
.contact-detail a { color: var(--text-300); transition: color 0.3s; }
.contact-detail a:hover { color: var(--primary-light); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-300);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-600);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-100);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(215,90%,55%,0.15);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-700); }

.btn-submit { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }

.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: hsla(155,70%,40%,0.12);
  border: 1px solid hsla(155,70%,40%,0.3);
  border-radius: var(--radius-md);
  color: hsl(155,70%,60%);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.show { display: flex; }

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--bg-800);
  border-top: 1px solid var(--border);
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 60px 24px 24px; }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 0.88rem; color: var(--text-400); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }

.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-600);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-300);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.social-link svg { width: 16px; height: 16px; }

.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 16px;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-group ul li a {
  font-size: 0.87rem;
  color: var(--text-400);
  transition: color 0.3s;
}
.footer-links-group ul li a:hover { color: var(--primary-light); }
.footer-contact-list li { font-size: 0.87rem; color: var(--text-400); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-400); }

/* ===========================================
   ANIMATIONS & REVEAL
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { align-items: center; }
  .hero-visual { display: none; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-image-side { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 80px 24px 40px;
    gap: 16px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: -1;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }
  .btn-nav { display: none !important; }

  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  
  .hero-stats { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
    width: 100%; 
    justify-items: center;
  }
  .stat-divider { display: none; }
  .stat-item:last-child { grid-column: 1 / -1; }
  
  .nav-container { padding: 0 16px; }
  .nav-actions { gap: clamp(10px, 4vw, 24px); }
  .logo-name { font-size: 24px !important; }
  .brands-label { padding-left: 0; }
  
  .nav-link { width: 100%; text-align: center; }
  .nav-link::after { display: none; }
  .products-showcase { height: 240px; }
  .showcase-overlay { padding: 24px; }
  .showcase-content h3 { font-size: 1.3rem; }
}

@media (max-width: 520px) {
  .section-container { padding: 70px 16px; }
  .categories-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrapper { padding: 24px; }
  .hero-stats { width: 100%; }
}

/* ===========================================
   PAGE HERO BANNER (inner pages)
   =========================================== */
.page-hero {
  position: relative;
  padding: 160px 24px 80px;
  overflow: hidden;
  background: var(--bg-900);
}
.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(hsla(215,90%,55%,0.04) 1px, transparent 1px),
    linear-gradient(90deg, hsla(215,90%,55%,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-glow {
  position: absolute;
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, hsla(215,90%,55%,0.12), transparent 60%);
  top: -100px; right: -100px;
  filter: blur(60px);
}
.page-hero-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--text-400); margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: var(--primary-light); transition: color 0.3s; }
.page-hero-breadcrumb a:hover { color: var(--accent); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900; color: var(--text-100);
  line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.5px;
}
.page-hero-subtitle { font-size: 1.05rem; color: var(--text-300); max-width: 560px; line-height: 1.7; }

/* ===========================================
   CATEGORY TEASER (home page)
   =========================================== */
.cat-teaser-section { background: var(--bg-800); }
.cat-teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.cat-teaser-card {
  position: relative;
  background: var(--bg-700); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
  overflow: hidden; transition: var(--transition);
}
.cat-teaser-card:hover {
  border-color: hsla(215,90%,55%,0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 40px hsla(215,90%,55%,0.08);
}
.featured-teaser {
  background: linear-gradient(135deg, hsla(215,90%,55%,0.1), var(--bg-700));
  border-color: hsla(215,90%,55%,0.25);
}
.cat-teaser-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: 100px; font-size: 0.7rem; font-weight: 700;
}
.cat-teaser-icon {
  font-size: 2.4rem; width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: hsla(215,90%,55%,0.1); border: 1px solid hsla(215,90%,55%,0.2);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.cat-teaser-card:hover .cat-teaser-icon { background: hsla(215,90%,55%,0.18); transform: scale(1.05); }
.cat-teaser-body h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-100); margin-bottom: 6px; }
.cat-teaser-body p { font-size: 0.88rem; color: var(--text-300); line-height: 1.6; }
.cat-teaser-link { font-size: 0.88rem; font-weight: 600; color: var(--primary-light); transition: var(--transition); margin-top: auto; }
.cat-teaser-card:hover .cat-teaser-link { color: var(--accent); letter-spacing: 0.5px; }
.cat-teaser-glow {
  position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px;
  background: radial-gradient(circle, hsla(215,90%,55%,0.1), transparent 70%); pointer-events: none;
}
.teaser-footer { text-align: center; }

/* ===========================================
   CTA BANNER (home page)
   =========================================== */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--bg-800);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-banner-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-glow-1 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, hsla(215,90%,55%,0.12), transparent 60%);
  top: -200px; left: -100px; filter: blur(60px);
}
.cta-glow-2 {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, hsla(185,85%,50%,0.08), transparent 60%);
  bottom: -150px; right: -100px; filter: blur(60px);
}
.cta-banner-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; position: relative; z-index: 1; }
.cta-banner-content { display: flex; flex-direction: column; gap: 20px; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--text-100); line-height: 1.2; }
.cta-subtitle { font-size: 1rem; color: var(--text-300); max-width: 520px; line-height: 1.7; }
.cta-info-row { display: flex; gap: 24px; flex-wrap: wrap; }
.cta-info-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-300); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta-store-card {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 32px; background: var(--bg-700);
  border: 1px solid var(--border-light); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); min-width: 260px;
}
.cta-store-icon { font-size: 2.4rem; }
.cta-store-info { display: flex; flex-direction: column; gap: 4px; }
.cta-store-info strong { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-100); }
.cta-store-info span { font-size: 0.8rem; color: var(--text-400); }
.cta-store-rating { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; }
.cta-store-rating span { font-size: 0.85rem; }
.cta-store-rating small { font-size: 0.75rem; color: var(--accent); font-weight: 600; }

/* ===========================================
   MILESTONES (about page)
   =========================================== */
.milestones-section { background: var(--bg-800); }
.milestones-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative;
}
.milestones-grid::before {
  content: ''; position: absolute; top: 56px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-light), var(--primary), var(--border-light), transparent);
}
.milestone-card {
  background: var(--bg-700); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center; display: flex; flex-direction: column; align-items: center;
  gap: 12px; transition: var(--transition); position: relative;
}
.milestone-card:hover { border-color: hsla(215,90%,55%,0.4); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.milestone-year {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--primary-light);
  background: hsla(215,90%,55%,0.1); border: 1px solid hsla(215,90%,55%,0.2); padding: 4px 14px; border-radius: 100px;
}
.milestone-icon { font-size: 1.8rem; }
.milestone-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text-100); }
.milestone-card p { font-size: 0.8rem; color: var(--text-400); line-height: 1.5; }

/* ===========================================
   MINI CTA STRIP
   =========================================== */
.mini-cta { background: var(--bg-800); border-top: 1px solid var(--border); }
.mini-cta .section-container { padding: 48px 24px; }
.mini-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 36px 48px;
  background: linear-gradient(135deg, hsla(215,90%,55%,0.08), hsla(185,85%,50%,0.05));
  border: 1px solid hsla(215,90%,55%,0.2); border-radius: var(--radius-xl); flex-wrap: wrap;
}
.mini-cta-inner h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-100); margin-bottom: 6px; }
.mini-cta-inner p { font-size: 0.9rem; color: var(--text-300); }

/* ===========================================
   CONTACT PAGE LAYOUT
   =========================================== */
.contact { background: var(--bg-900); }
.contact-cards-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px;
}
.contact-cards-row .contact-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 24px 20px; background: var(--bg-700); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.contact-cards-row .contact-card:hover { border-color: hsla(215,90%,55%,0.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-icon { font-size: 1.6rem; }
.contact-detail h4 { color: var(--text-100); font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.contact-detail p { font-size: 0.85rem; color: var(--text-300); line-height: 1.6; }
.contact-detail small { font-size: 0.78rem; color: var(--text-400); }
.contact-detail a { color: var(--text-300); transition: color 0.3s; }
.contact-detail a:hover { color: var(--primary-light); }
.contact-main-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.map-side { display: flex; flex-direction: column; gap: 20px; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.map-wrapper iframe { display: block; }
.quick-contact { background: var(--bg-700); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.quick-contact h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-100); margin-bottom: 16px; }
.quick-contact-btns { display: flex; flex-direction: column; gap: 10px; }
.quick-btn {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border-radius: var(--radius-md); border: 1px solid var(--border);
  background: var(--bg-600); transition: var(--transition); font-size: 0.88rem;
}
.quick-btn:hover { transform: translateX(4px); border-color: var(--primary); }
.quick-btn > span { font-size: 1.3rem; }
.quick-btn strong { display: block; color: var(--text-100); font-size: 0.88rem; margin-bottom: 2px; }
.quick-btn small { color: var(--text-400); font-size: 0.75rem; }
.call-btn:hover { background: hsla(215,90%,55%,0.08); }
.wa-btn:hover { background: hsla(145,70%,40%,0.1); border-color: hsl(145,70%,50%); }
.map-btn:hover { background: hsla(185,85%,50%,0.08); border-color: var(--accent); }

/* ===========================================
   RESPONSIVE – NEW MULTI-PAGE COMPONENTS
   =========================================== */
@media (max-width: 1024px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-store-card { display: none; }
  .milestones-grid { grid-template-columns: repeat(3, 1fr); }
  .milestones-grid::before { display: none; }
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
  .contact-main-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .cat-teaser-grid { grid-template-columns: 1fr; }
  .milestones-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-cta-inner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .cta-info-row { justify-content: center; }
  .cta-actions { justify-content: center; }
  .page-hero { padding: 140px 20px 60px; }
}
@media (max-width: 520px) {
  .milestones-grid { grid-template-columns: 1fr; }
  .contact-cards-row { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 2rem; }
  h1.hero-title { font-size: 2.5rem; }
}

/* ===========================================
   NUMBERED WHY-US CARDS
   =========================================== */
.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: hsla(215, 90%, 55%, 0.15);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
  transition: color var(--transition);
}
.why-card:hover .why-num { color: hsla(215, 90%, 55%, 0.3); }

/* ===========================================
   6-COLUMN CATEGORY TEASER GRID
   =========================================== */
.cat-teaser-grid-6 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}

/* ===========================================
   ABOUT PAGE HERO STATS
   =========================================== */
.about-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  padding: 24px 40px;
  width: fit-content;
  flex-wrap: wrap;
  gap: 0;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
}
.about-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.75rem;
  color: var(--text-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ===========================================
   ABOUT PAGE HERO – EXTENDED HEIGHT
   =========================================== */
.page-hero-about {
  padding-bottom: 60px;
}

/* ===========================================
   ABOUT CTA SECTION
   =========================================== */
.about-cta-section {
  background: var(--bg-800);
  border-top: 1px solid var(--border);
}
.about-cta-section .section-container { padding: 60px 24px; }
.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 48px;
  background: linear-gradient(135deg, hsla(215,90%,55%,0.08), hsla(185,85%,50%,0.04));
  border: 1px solid hsla(215,90%,55%,0.2);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}
.about-cta-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}
.about-cta-icon { font-size: 2.8rem; flex-shrink: 0; }
.about-cta-left h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 6px;
}
.about-cta-left p { font-size: 0.9rem; color: var(--text-300); margin-bottom: 14px; }
.about-cta-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-cta-address span { font-size: 0.82rem; color: var(--text-400); }
.about-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

/* ===========================================
   RESPONSIVE – POLISH ADDITIONS
   =========================================== */
@media (max-width: 1024px) {
  .cat-teaser-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .about-hero-stats { padding: 20px 24px; }
  .about-stat { padding: 0 20px; }
  .about-cta-inner { padding: 28px; }
}
@media (max-width: 768px) {
  .cat-teaser-grid-6 { grid-template-columns: 1fr; }
  .about-hero-stats { width: 100%; justify-content: center; }
  .about-stat { padding: 12px 16px; }
  .about-cta-inner { flex-direction: column; }
  .about-cta-left { flex-direction: column; gap: 12px; }
  .about-cta-buttons { width: 100%; justify-content: center; }
}

/* ===========================================
   CART & SHOP CSS
   =========================================== */
/* Shop Grid */
.shop-section { padding: 40px 24px; background: var(--bg-900); min-height: 500px; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; }
.filter-btn { padding: 10px 18px; background: var(--bg-800); border: 1px solid var(--border); border-radius: 100px; color: var(--text-200); font-weight: 500; font-size: 14px; transition: var(--transition); white-space: nowrap; }
.filter-btn:hover { background: var(--bg-700); border-color: var(--border-light); }
.filter-btn.active { background: hsla(215,90%,55%,0.15); border-color: var(--primary); color: var(--primary-light); }
.shop-search-wrap { flex: 0 0 320px; max-width: 100%; position: relative; }
.shop-search { width: 100%; padding: 12px 16px 12px 40px; background: var(--bg-800); border: 1px solid var(--border); border-radius: 100px; color: var(--text-100); font-size: 15px; outline: none; transition: var(--transition); }
.shop-search:focus { border-color: var(--primary); background: var(--bg-700); box-shadow: 0 0 0 3px hsla(215,90%,55%,0.15); }
.shop-search-wrap::before { content: "🔍"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 14px; opacity: 0.6; }
.shop-count { font-size: 14px; color: var(--text-400); margin-bottom: 20px; font-weight: 500; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.shop-loading { grid-column: 1/-1; text-align: center; padding: 60px 24px; color: var(--text-400); }
.loading-spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Shop Card */
.shop-card { background: var(--bg-800); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; position: relative; }
.shop-card:hover { transform: translateY(-6px); border-color: var(--border-light); box-shadow: var(--shadow-md); }
.shop-card-badge { position: absolute; top: 16px; left: 16px; background: hsla(215,90%,55%,0.15); border: 1px solid var(--primary); color: var(--primary-light); padding: 4px 10px; border-radius: 100px; font-size: 12px; font-weight: 700; z-index: 2; backdrop-filter: blur(4px); }
.discount-badge { left: auto; right: 16px; background: hsla(145,70%,45%,0.15); border-color: hsl(145,70%,45%); color: hsl(145,70%,60%); }
.shop-card-image { height: 220px; background: var(--bg-900); display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid var(--border); padding: 24px; }
.shop-card-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.shop-card-emoji { font-size: 5rem; opacity: 0.8; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4)); }
.shop-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.shop-card-brand { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-400); margin-bottom: 6px; }
.shop-card-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-100); margin-bottom: 8px; line-height: 1.3; }
.shop-card-desc { font-size: 13px; color: var(--text-300); margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.shop-card-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; gap: 12px; }
.shop-card-price { display: flex; flex-direction: column; }
.price-main { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text-100); line-height: 1; }
.price-mrp { font-size: 13px; color: var(--text-400); text-decoration: line-through; margin-top: 4px; }
.stock-badge { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 6px; }
.stock-badge.in { background: hsla(145,70%,45%,0.1); color: hsl(145,70%,60%); }
.stock-badge.low { background: hsla(38,90%,50%,0.1); color: hsl(38,90%,60%); }
.stock-badge.out { background: hsla(0,80%,55%,0.1); color: hsla(0,80%,70%); }
.btn-add-cart { width: 100%; padding: 12px; background: var(--bg-700); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text-100); font-weight: 600; font-size: 14px; transition: var(--transition); cursor: pointer; }
.btn-add-cart:hover:not(:disabled) { background: var(--primary); border-color: var(--primary); }
.btn-add-cart:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-add-cart.added { background: hsl(145,70%,45%); border-color: hsl(145,70%,45%); color: #fff; }

/* Cart Toast */
.cart-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(40px); background: var(--bg-700); border: 1px solid var(--border); border-radius: 100px; padding: 12px 24px; color: var(--text-100); font-weight: 600; font-size: 14px; box-shadow: var(--shadow-lg); z-index: 9999; opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; gap: 8px; }
.cart-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Nav Cart Icon */
.cart-icon-wrapper { position: relative; cursor: pointer; padding: 8px; display: flex; align-items: center; justify-content: center; }
.cart-icon-wrapper svg { width: 24px; height: 24px; color: var(--text-200); transition: var(--transition); }
.cart-icon-wrapper:hover svg { color: var(--primary); }
.cart-badge { position: absolute; top: 0; right: 0; background: var(--primary); color: #fff; font-size: 11px; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--bg-900); }

/* Cart Page */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
@media (max-width: 1024px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-items-wrap { background: var(--bg-800); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.cart-item-row { display: grid; grid-template-columns: 80px 1fr auto auto; gap: 20px; align-items: center; padding: 24px; border-bottom: 1px solid var(--border); }
.cart-item-row:last-child { border-bottom: none; }
.cart-item-img { width: 80px; height: 80px; background: var(--bg-900); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-item-img span { font-size: 2.5rem; }
.cart-item-info h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-100); margin-bottom: 4px; }
.cart-item-info p { font-size: 13px; color: var(--text-400); }
.cart-qty-ctrl { display: flex; align-items: center; background: var(--bg-900); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: transparent; color: var(--text-200); font-size: 16px; cursor: pointer; transition: background 0.2s; border: none; }
.qty-btn:hover { background: var(--bg-700); }
.qty-val { width: 40px; text-align: center; font-weight: 600; color: var(--text-100); font-size: 14px; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.cart-item-total { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-100); min-width: 100px; text-align: right; }
.cart-item-del { background: hsla(0,80%,55%,0.1); color: hsla(0,80%,65%); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 1px solid hsla(0,80%,55%,0.3); transition: var(--transition); }
.cart-item-del:hover { background: hsla(0,80%,55%,0.2); }
.cart-summary { background: var(--bg-800); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; position: sticky; top: 100px; }
.cart-summary h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-100); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 15px; color: var(--text-300); }
.summary-total { border-top: 1px solid var(--border); margin-top: 24px; padding-top: 24px; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--text-100); }
.btn-checkout { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; background: linear-gradient(135deg, var(--primary), hsl(215,90%,45%)); border-radius: var(--radius-md); color: #fff; font-size: 16px; font-weight: 700; margin-top: 32px; transition: var(--transition); }
.btn-checkout:hover { transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.empty-cart { text-align: center; padding: 80px 24px; }
.empty-cart-icon { font-size: 4rem; margin-bottom: 24px; opacity: 0.5; }
.empty-cart h2 { font-family: var(--font-display); font-size: 2rem; color: var(--text-100); margin-bottom: 16px; }
.empty-cart p { color: var(--text-400); margin-bottom: 32px; font-size: 1.1rem; }

/* Checkout Page */
.checkout-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-section { background: var(--bg-800); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; margin-bottom: 32px; }
.checkout-section-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-100); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cfield { display: flex; flex-direction: column; gap: 8px; }
.cfield-full { grid-column: 1/-1; }
.cfield label { font-size: 13px; font-weight: 600; color: var(--text-300); }
.cfield .req { color: var(--primary); }
.cfield input, .cfield textarea { padding: 14px 16px; background: var(--bg-900); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text-100); font-family: inherit; outline: none; transition: var(--transition); }
.cfield input:focus, .cfield textarea:focus { border-color: var(--primary); background: var(--bg-800); }
.payment-options { display: flex; flex-direction: column; gap: 16px; }
.payment-option { display: block; cursor: pointer; }
.payment-option input { display: none; }
.payment-option-body { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--bg-900); border: 2px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); position: relative; }
.payment-option-icon { font-size: 1.8rem; background: var(--bg-800); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.payment-option-body strong { display: block; font-size: 1.1rem; color: var(--text-100); margin-bottom: 4px; }
.payment-option-body span { font-size: 13px; color: var(--text-400); }
.payment-badge { position: absolute; top: -10px; right: 20px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.payment-selected .payment-option-body { border-color: var(--primary); background: hsla(215,90%,55%,0.05); }
.btn-place-order { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px; background: linear-gradient(135deg, hsl(145,70%,40%), hsl(145,70%,30%)); border-radius: var(--radius-md); color: #fff; font-size: 1.1rem; font-weight: 700; border: none; cursor: pointer; transition: var(--transition); margin-top: 16px; }
.btn-place-order:hover { transform: translateY(-2px); box-shadow: 0 10px 30px hsla(145,70%,40%,0.3); }
.btn-place-order:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }
.checkout-note { text-align: center; font-size: 13px; color: var(--text-400); margin-top: 16px; }
.checkout-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.checkout-item:last-child { border-bottom: none; }
.checkout-item-img { width: 40px; height: 40px; background: var(--bg-900); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.checkout-item-info { flex: 1; }
.checkout-item-name { font-weight: 600; color: var(--text-100); font-size: 14px; margin-bottom: 4px; }
.checkout-item-meta { font-size: 12px; color: var(--text-400); }
.checkout-item-total { font-weight: 700; color: var(--text-100); }
.trust-badges { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.trust-badge { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: hsla(145,70%,45%,0.1); border: 1px solid hsla(145,70%,45%,0.2); border-radius: var(--radius-sm); color: hsl(145,70%,60%); font-weight: 600; font-size: 13px; }
.checkout-error { background: hsla(0,80%,55%,0.1); border: 1px solid hsla(0,80%,55%,0.3); color: hsl(0,80%,70%); padding: 16px; border-radius: var(--radius-md); margin-bottom: 24px; font-weight: 500; font-size: 14px; }
.order-success-box { max-width: 600px; margin: 0 auto; text-align: center; background: var(--bg-800); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 60px 40px; box-shadow: var(--shadow-lg); }
.success-icon { font-size: 5rem; margin-bottom: 24px; animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popIn { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.order-success-box h2 { font-family: var(--font-display); font-size: 2.2rem; color: hsl(145,70%,55%); margin-bottom: 16px; }
.order-success-box p { color: var(--text-300); font-size: 1.1rem; margin-bottom: 32px; }
.success-ref { display: inline-block; background: var(--bg-900); border: 1px dashed var(--border-light); padding: 16px 32px; border-radius: var(--radius-lg); font-size: 1.2rem; margin-bottom: 40px; color: var(--text-200); }
.success-ref strong { color: var(--primary-light); font-family: var(--font-display); letter-spacing: 1px; }
.success-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: hsl(142, 70%, 40%); color: #fff; font-weight: 700; border-radius: var(--radius-md); transition: var(--transition); }
.btn-wa:hover { background: hsl(142, 70%, 35%); transform: translateY(-2px); box-shadow: 0 8px 24px hsla(142,70%,40%,0.3); }
.btn-secondary-out { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--bg-700); border: 1px solid var(--border); color: var(--text-100); font-weight: 600; border-radius: var(--radius-md); transition: var(--transition); }
.btn-secondary-out:hover { background: var(--bg-600); border-color: var(--primary); }

@media (max-width: 600px) {
  .shop-toolbar { flex-direction: column; }
  .shop-search-wrap { width: 100%; flex: 1; }
  .checkout-fields { grid-template-columns: 1fr; }
  .cart-item-row { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 12px; }
  .cart-item-img { width: 100px; height: 100px; margin: 0 auto; }
  .cart-qty-ctrl { grid-column: 1; margin: 0 auto; }
  .cart-item-total { grid-column: 1; text-align: center; }
  .cart-item-del { grid-column: 1; grid-row: auto; justify-self: center; }
}


/* Fix SVG sizes in buttons */
.btn-primary svg, .btn-secondary svg, .btn-secondary-out svg, .btn-submit svg, .btn-nav svg { width: 20px; height: 20px; flex-shrink: 0; }

/* =========================================
   AUTH & ACCOUNT STYLES
   ========================================= */
.auth-box {
  max-width: 420px;
  width: 100%;
  padding: 40px;
  text-align: center;
}

.auth-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--text-50);
}

.auth-sub {
  color: var(--text-400);
  margin-bottom: 24px;
  font-size: 14px;
}

.auth-switch {
  margin-top: 24px;
  color: var(--text-400);
  font-size: 14px;
}

.auth-switch button {
  background: none;
  border: none;
  color: var(--primary-light);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
}

.auth-switch button:hover {
  text-decoration: underline;
}

/* Account Page */
.account-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
}

.account-sidebar {
  background: var(--bg-800);
  border: 1px solid var(--bg-700);
  border-radius: 16px;
  padding: 24px;
  height: max-content;
}

.acc-user-info {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg-700);
}

.acc-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-50);
  font-family: 'Outfit', sans-serif;
}

.acc-email {
  color: var(--text-400);
  font-size: 14px;
  margin-top: 4px;
}

.acc-nav button {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  background: none;
  border: none;
  color: var(--text-300);
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 8px;
}

.acc-nav button:hover {
  background: var(--bg-700);
  color: var(--text-50);
}

.acc-nav button.active {
  background: var(--primary);
  color: white;
}

.account-content {
  background: var(--bg-800);
  border: 1px solid var(--bg-700);
  border-radius: 16px;
  padding: 32px;
}

.account-content h2 {
  font-family: 'Outfit', sans-serif;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-700);
}

.order-history-card {
  background: var(--bg-900);
  border: 1px solid var(--bg-700);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.order-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-800);
}

.order-history-id {
  font-family: monospace;
  color: var(--primary-light);
  font-size: 16px;
  font-weight: bold;
}

.order-history-date {
  color: var(--text-400);
  font-size: 14px;
}

@media (max-width: 768px) {
  .account-container {
    grid-template-columns: 1fr;
  }
}

/* Modal Overlay & Auth Box */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--bg-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: modal-pop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modal-pop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-900);
  color: var(--text-300);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
  font-size: 14px;
}

.modal-close:hover {
  background: hsla(0, 80%, 55%, 0.1);
  color: hsla(0, 80%, 70%, 1);
  border-color: hsla(0, 80%, 55%, 0.3);
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-300);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-900);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-100);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--primary);
  background: var(--bg-800);
  outline: none;
}

/* --- LIGHT THEME OVERRIDES --- */
[data-theme="light"] {
  --bg-900: hsl(0, 0%, 98%);
  --bg-800: hsl(0, 0%, 100%);
  --bg-700: hsl(210, 20%, 96%);
  --bg-600: hsl(210, 20%, 94%);
  --bg-500: hsl(210, 20%, 90%);

  --text-100: hsl(222, 30%, 10%);
  --text-200: hsl(222, 20%, 25%);
  --text-300: hsl(222, 15%, 40%);
  --text-400: hsl(222, 10%, 55%);

  --border: hsl(210, 15%, 85%);
  --border-light: hsl(210, 15%, 90%);

  --glass-bg: hsla(0, 0%, 100%, 0.92);
}

/* =========================================
   SINGLE PRODUCT PAGE (.sp-)
========================================= */
.sp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sp-breadcrumb { margin-bottom: 20px; font-size: 14px; color: var(--text-50); }
.sp-breadcrumb a { color: var(--text-50); text-decoration: none; transition: color 0.2s; }
.sp-breadcrumb a:hover { color: var(--text-100); }
.sp-breadcrumb span { margin: 0 8px; opacity: 0.5; }

.sp-grid { display: grid; grid-template-columns: 450px 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .sp-grid { grid-template-columns: 1fr; } }

/* Left Column */
.sp-image-column { position: sticky; top: 100px; }
.sp-main-image-wrapper { background: var(--bg-800); border: 1px solid var(--border); border-radius: 12px; padding: 20px; text-align: center; position: relative; cursor: zoom-in; }
.sp-main-image { max-width: 100%; max-height: 400px; object-fit: contain; }
.sp-image-zoom-hint { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.6); color: #fff; padding: 4px 8px; border-radius: 4px; font-size: 12px; pointer-events: none; }
#sp-badge-container { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; }
.sp-badge { background: #6ea8ff; color: #fff; padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.sp-badge-featured { background: #eab308; }

/* Right Column */
.sp-brand { color: var(--primary); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.sp-title { font-size: 28px; font-weight: 700; color: var(--text-100); line-height: 1.3; margin-bottom: 20px; }
.sp-divider { height: 1px; background: var(--border); margin: 20px 0; }

/* Pricing */
.sp-price-main { font-size: 32px; font-weight: 800; color: var(--text-100); }
.sp-mrp-block { display: flex; align-items: center; gap: 8px; margin-top: 4px; font-size: 14px; }
.sp-mrp-label { color: var(--text-50); }
.sp-mrp-value { text-decoration: line-through; color: var(--text-50); }
.sp-discount { color: #ef4444; font-weight: 600; }
.sp-taxes-hint { font-size: 12px; color: var(--text-50); margin-top: 4px; }
.sp-stock-status { margin: 20px 0; }

/* Action Card */
.sp-action-card { border: 1px solid var(--border); border-radius: 12px; padding: 20px; background: var(--bg-800); margin-top: 24px; display: flex; flex-direction: column; gap: 15px; }
.sp-delivery-info { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-100); }
.sp-delivery-info svg { stroke: var(--primary); }

.sp-btn-cart, .sp-btn-buy { width: 100%; padding: 14px; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; }
.sp-btn-cart { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.sp-btn-cart:hover { background: rgba(110, 168, 255, 0.1); }
.sp-btn-buy { background: var(--primary); color: #fff; }
.sp-btn-buy:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(110,168,255,0.3); }

.sp-secure-transaction { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-50); justify-content: center; margin-top: 5px; }

/* Trust Badges */
.sp-trust-badges { display: flex; gap: 10px; margin-top: 24px; justify-content: space-between; flex-wrap: wrap; }
.sp-trust-item { flex: 1; min-width: 75px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 6px; background: rgba(110, 168, 255, 0.04); border-radius: 8px; border: 1px solid var(--border-light); transition: all 0.2s ease; }
.sp-trust-item:hover { background: rgba(110, 168, 255, 0.08); transform: translateY(-2px); border-color: rgba(110, 168, 255, 0.3); }
.sp-trust-icon { font-size: 24px; line-height: 1; }
.sp-trust-text { font-size: 11px; font-weight: 600; color: var(--text-50); line-height: 1.3; }

/* Description */
.sp-description-block h3 { font-size: 18px; margin-bottom: 12px; color: var(--text-100); }
.sp-description-content { font-size: 15px; color: var(--text-50); line-height: 1.6; }
