/* =============================================
   SMI Clothing Store — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ---- CSS Variables: White/Black Theme (default) ---- */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --bg-card: #ffffff;
  --text: #111111;
  --text-muted: #777777;
  --accent: #111111;
  --accent-2: #444444;
  --border: #e0e0e0;
  --nav-bg: #ffffff;
  --nav-text: #111111;
  --btn-bg: #111111;
  --btn-text: #ffffff;
  --btn-hover: #333333;
  --badge: #111111;
  --badge-text: #ffffff;
  --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  --card-hover-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
  --gold: #111111;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
}

/* ---- Black/Gold Theme ---- */
body.theme-gold {
  --bg: #0d0d0d;
  --bg-soft: #181818;
  --bg-card: #161616;
  --text: #f0e6c8;
  --text-muted: #9a8a6a;
  --accent: #c9a84c;
  --accent-2: #e2c97a;
  --border: #2a2a2a;
  --nav-bg: #0d0d0d;
  --nav-text: #f0e6c8;
  --btn-bg: #c9a84c;
  --btn-text: #0d0d0d;
  --btn-hover: #e2c97a;
  --badge: #c9a84c;
  --badge-text: #0d0d0d;
  --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  --card-hover-shadow: 0 8px 40px rgba(201, 168, 76, 0.15);
  --gold: #c9a84c;
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
  padding-top: 70px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

/* =============================================
   NAVBAR
   ============================================= */
.smi-navbar {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  padding: 0 0;
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1050;
  transition: background var(--transition), box-shadow var(--transition);
}

.smi-navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
}

.navbar-brand-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-link-smi {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nav-text) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: color var(--transition);
}

.nav-link-smi::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link-smi:hover::after,
.nav-link-smi.active::after {
  transform: scaleX(1);
}

/* Navbar icons */
.nav-icon-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  padding: 6px 10px;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.nav-icon-btn:hover {
  color: var(--accent);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 2px;
  background: var(--badge);
  color: var(--badge-text);
  font-size: 0.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Theme Toggle */
.theme-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle-label {
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.theme-toggle {
  position: relative;
  width: 42px;
  height: 22px;
  cursor: pointer;
}

.theme-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 22px;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: var(--text);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}

.theme-toggle input:checked+.toggle-slider {
  background: #c9a84c;
}

.theme-toggle input:checked+.toggle-slider::before {
  transform: translateX(20px);
  background: #0d0d0d;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-smi {
  background: var(--btn-bg);
  color: var(--btn-text);
  border: 1.5px solid var(--btn-bg);
  padding: 12px 32px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}

.btn-smi:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--btn-text);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-smi-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 11px 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}

.btn-smi-outline:hover {
  background: var(--btn-bg);
  color: var(--btn-text);
  border-color: var(--btn-bg);
}

.btn-smi-gold {
  background: var(--gold);
  color: #fff;
  border: 1.5px solid var(--gold);
}

body.theme-gold .btn-smi-gold {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--bg-soft) 0%, var(--bg) 60%);
  z-index: 0;
}

body.theme-gold .hero-bg {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1400 60%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg,
      var(--text) 0px,
      var(--text) 1px,
      transparent 1px,
      transparent 60px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

body.theme-gold .hero-title em {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.3s ease both;
}

.hero-image-col {
  position: relative;
  z-index: 2;
}

.hero-image-frame {
  position: relative;
  animation: fadeInRight 1s 0.2s ease both;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 2px;
  z-index: -1;
  transition: border-color var(--transition);
}

body.theme-gold .hero-image-frame::before {
  border-color: var(--gold);
  opacity: 0.4;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #e8e4de 0%, #d0c8bc 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #999;
  letter-spacing: 2px;
  overflow: hidden;
  position: relative;
}

body.theme-gold .hero-img-placeholder {
  background: linear-gradient(160deg, #1e1a12 0%, #2a2214 100%);
  color: #5a4f38;
}

.hero-img-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 1s 0.4s ease both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 16px auto;
}

body.theme-gold .section-divider {
  background: var(--gold);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-4px);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-soft);
}

.product-img-wrap img,
.product-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f0ece6 0%, #e4ddd5 100%);
  color: #bbb;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

body.theme-gold .product-img-placeholder {
  background: linear-gradient(160deg, #1a1812 0%, #221e14 100%);
  color: #4a4030;
}

.product-card:hover .product-img-wrap img,
.product-card:hover .product-img-placeholder {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  transition: background var(--transition);
}

.product-card:hover .product-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.product-overlay-btn {
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.product-card:hover .product-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--badge);
  color: var(--badge-text);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.85rem;
}

.product-wishlist:hover {
  background: var(--btn-bg);
  color: var(--btn-text);
  border-color: var(--btn-bg);
}

.product-info {
  padding: 16px 16px 20px;
}

.product-category {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.product-price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.stars {
  color: #f5c842;
}

/* =============================================
   SECTIONS GENERAL
   ============================================= */
.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.bg-soft {
  background: var(--bg-soft);
}

/* =============================================
   FEATURED STRIP
   ============================================= */
.features-strip {
  background: var(--accent);
  color: var(--btn-text);
  padding: 18px 0;
  overflow: hidden;
}

body.theme-gold .features-strip {
  background: var(--gold);
  color: #0d0d0d;
}

.features-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.strip-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =============================================
   CATEGORY GRID
   ============================================= */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1/1.3;
  cursor: pointer;
  background: var(--bg-soft);
}

.category-card:hover .cat-img-placeholder {
  transform: scale(1.06);
}

.cat-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #e8e4de 0%, #c8c0b4 100%);
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

body.theme-gold .cat-img-placeholder {
  background: linear-gradient(160deg, #1e1a12 0%, #2e2618 100%);
}

.cat-img-placeholder.cat-2 {
  background: linear-gradient(160deg, #e4ece8 0%, #c8d8cc 100%);
}

.cat-img-placeholder.cat-3 {
  background: linear-gradient(160deg, #ece4e8 0%, #d8c8cc 100%);
}

.cat-img-placeholder.cat-4 {
  background: linear-gradient(160deg, #e8ece4 0%, #ccd8c8 100%);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 4px;
}

.cat-count {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-3px);
}

.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--bg-soft);
  overflow: hidden;
}

.blog-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, #f0ece6 0%, #e0d8ce 100%);
  transition: transform 0.4s ease;
}

body.theme-gold .blog-img-placeholder {
  background: linear-gradient(135deg, #1a1812 0%, #221e14 100%);
}

.blog-card:hover .blog-img-placeholder {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 24px;
}

.blog-tag {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

body.theme-gold .blog-tag {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.read-more {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.read-more:hover {
  color: var(--accent);
  gap: 10px;
}

body.theme-gold .read-more:hover {
  color: var(--gold);
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: var(--accent);
  color: var(--btn-text);
  padding: 80px 0;
  text-align: center;
}

body.theme-gold .newsletter-section {
  background: linear-gradient(135deg, #1a1400 0%, #0d0d0d 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

body.theme-gold .newsletter-title {
  color: var(--gold);
}

.newsletter-sub {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 36px;
}

body.theme-gold .newsletter-sub {
  color: var(--text-muted);
  opacity: 1;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  outline: none;
  border-radius: var(--radius) 0 0 var(--radius);
}

body.theme-gold .newsletter-input {
  border-color: var(--border);
  background: var(--bg-card);
  color: var(--text);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

body.theme-gold .newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-btn {
  background: #fff;
  color: #111;
  border: none;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: all var(--transition);
}

body.theme-gold .newsletter-btn {
  background: var(--gold);
  color: #0d0d0d;
}

.newsletter-btn:hover {
  opacity: 0.9;
}

/* =============================================
   FOOTER
   ============================================= */
.smi-footer {
  background: #111;
  color: #f0f0f0;
  padding: 80px 0 30px;
}

body.theme-gold .smi-footer {
  background: #060606;
  border-top: 1px solid #1a1a1a;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: #fff;
}

body.theme-gold .footer-brand {
  color: var(--gold);
}

.footer-desc {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

body.theme-gold .social-link:hover {
  background: var(--gold);
  color: #0d0d0d;
  border-color: var(--gold);
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

body.theme-gold .footer-heading {
  color: var(--gold);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: #888;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

body.theme-gold .footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: #555;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: #555;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: #888;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #20bc5a;
  transform: scale(1.08);
  color: #fff;
}

.whatsapp-tooltip {
  background: #fff;
  color: #111;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   SHOP PAGE
   ============================================= */
.shop-header {
  background: var(--bg-soft);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--text);
}

.page-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.page-breadcrumb a {
  color: var(--text-muted);
}

.page-breadcrumb a:hover {
  color: var(--text);
}

.filter-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 80px;
}

.filter-section {
  margin-bottom: 28px;
}

.filter-section:last-child {
  margin-bottom: 0;
}

.filter-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.filter-check label {
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-check label:hover {
  color: var(--text);
}

.filter-check .form-check-input {
  border-color: var(--border);
  background-color: var(--bg);
}

.filter-check .form-check-input:checked {
  background-color: var(--btn-bg);
  border-color: var(--btn-bg);
}

.count-badge {
  font-size: 0.65rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 1px 7px;
  border-radius: 10px;
}

.size-btn {
  width: auto;
  padding: 0 10px;
  height: 38px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-btn:hover,
.size-btn.active {
  background: var(--btn-bg);
  color: var(--btn-text);
  border-color: var(--btn-bg);
}

.price-range {
  margin-top: 8px;
}

.price-range input[type=range] {
  width: 100%;
  accent-color: var(--accent);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 12px;
}

.result-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sort-select {
  font-size: 0.8rem;
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
}

.view-toggle {
  display: flex;
  gap: 6px;
}

.view-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.85rem;
}

.view-btn.active,
.view-btn:hover {
  background: var(--btn-bg);
  color: var(--btn-text);
  border-color: var(--btn-bg);
}

/* =============================================
   PRODUCT DETAILS PAGE
   ============================================= */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-image-wrap {
  aspect-ratio: 3/4;
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.main-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f0ece6 0%, #e4ddd5 100%);
  font-size: 4rem;
}

body.theme-gold .main-img-placeholder {
  background: linear-gradient(160deg, #1a1812 0%, #221e14 100%);
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.thumb-item {
  aspect-ratio: 3/4;
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.thumb-item.active,
.thumb-item:hover {
  border-color: var(--accent);
}

body.theme-gold .thumb-item.active,
body.theme-gold .thumb-item:hover {
  border-color: var(--gold);
}

.product-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.product-detail-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.product-detail-price .original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}

.option-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.size-guide-link {
  font-size: 0.68rem;
  text-decoration: underline;
  cursor: pointer;
  color: var(--text-muted);
}

.size-guide-link:hover {
  color: var(--text);
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.color-options {
  display: flex;
  gap: 10px;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
}

.color-swatch.active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 40px;
  height: 44px;
  background: var(--bg-soft);
  border: none;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
}

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

.qty-input {
  width: 50px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.product-tabs {
  margin-top: 40px;
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  gap: 0;
  margin-bottom: 24px;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Poppins', sans-serif;
}

.tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

body.theme-gold .tab-btn.active {
  border-bottom-color: var(--gold);
}

.tab-content-panel {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   CART SIDEBAR
   ============================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-card);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.2);
}

.cart-sidebar.open {
  transform: translateX(0);
}

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

.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text);
}

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

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

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

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

.cart-item-img {
  width: 70px;
  flex-shrink: 0;
  aspect-ratio: 3/4;
  background: var(--bg-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color var(--transition);
  align-self: flex-start;
}

.cart-item-remove:hover {
  color: #e44;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text);
}

.cart-subtotal strong {
  font-weight: 600;
}

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-hero {
  background: var(--bg-soft);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.blog-sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* AD PLACEHOLDERS */
.ad-slot {
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin: 24px 0;
}

.ad-slot-label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.ad-slot-placeholder {
  width: 100%;
  height: 90px;
  background: var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.ad-slot-placeholder.tall {
  height: 250px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: var(--bg-soft);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-4px);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  transition: background var(--transition);
}

body.theme-gold .value-icon {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

.value-card:hover .value-icon {
  background: var(--btn-bg);
  color: var(--btn-text);
}

body.theme-gold .value-card:hover .value-icon {
  background: var(--gold);
  color: #0d0d0d;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg-soft);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 3px solid var(--border);
  transition: border-color var(--transition);
}

.team-card:hover .team-avatar {
  border-color: var(--accent);
}

body.theme-gold .team-card:hover .team-avatar {
  border-color: var(--gold);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.smi-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}

.smi-input:focus {
  border-color: var(--accent);
}

body.theme-gold .smi-input:focus {
  border-color: var(--gold);
}

.smi-input::placeholder {
  color: var(--text-muted);
}

.form-label-smi {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

body.theme-gold .contact-icon {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

/* =============================================
   CHECKOUT
   ============================================= */
.checkout-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.checkout-step.active {
  background: var(--btn-bg);
  color: var(--btn-text);
}

body.theme-gold .checkout-step.active {
  background: var(--gold);
  color: #0d0d0d;
}

.checkout-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.checkout-step.active .checkout-step-num {
  background: rgba(255, 255, 255, 0.25);
}

.order-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 80px;
}

/* =============================================
   MODALS
   ============================================= */
.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.modal-footer {
  border-top: 1px solid var(--border);
}

.modal-title {
  font-family: 'Playfair Display', serif;
}

.btn-close {
  filter: none;
  opacity: 0.5;
}

body.theme-gold .btn-close {
  filter: invert(1);
}

/* Size guide table */
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.size-table th,
.size-table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: center;
}

.size-table th {
  background: var(--bg-soft);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease both;
}

/* Intersection observer animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* =============================================
   UTILITY
   ============================================= */
.text-accent {
  color: var(--accent);
}

body.theme-gold .text-accent {
  color: var(--gold);
}

.border-accent {
  border-color: var(--accent) !important;
}

body.theme-gold .border-accent {
  border-color: var(--gold) !important;
}

.bg-card {
  background: var(--bg-card);
}

.sticky-top-80 {
  position: sticky;
  top: 80px;
}

/* Toasts */
.smi-toast {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 10px 0 60px;
  }

  .hero-stats {
    gap: 24px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .filter-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 24px;
  }

  .cart-sidebar {
    width: 100vw;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-radius: var(--radius);
  }

  .newsletter-btn {
    border-radius: var(--radius);
  }

  .hero-image-col {
    display: none;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .features-strip-inner {
    gap: 24px;
  }

  .footer-brand>img {
    margin: auto;
  }

  .footer-desc {
    text-align: center;
    max-width: 100% !important;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    margin-left: 15px;
  }

  .footer-heading {
    margin-left: 15px;
  }

  .footer-bottom {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .brand-name {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}/ *  
 P R O D U C T  
 D E T A I L S  
 C S S  
 * /  
 