/* ============================================
   SONAARAN — MAIN WordPress Theme Stylesheet
   Adapted from static main.css | 2026
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7B2E;
  --rose-gold: #D4A5A5;
  --rose-light: #F5E6E8;
  --cream: #FFF9F4;
  --cream-2: #FEFAF6;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #444444;
  --text-light: #777777;
  --text-xlight: #AAAAAA;
  --border: #EDE8E0;
  --border-light: #F5F0EA;
  --bg-section: #FAFAF8;
  --bg-cream: #FFF8F2;
  --success: #2E7D4F;
  --error: #C0392B;
  --warning: #E67E22;
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
  --header-height: 72px;
  --topbar-height: 36px;
  --max-width: 1440px;
  --container: 1280px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--gold-light); color: var(--text-dark); }

/* ---- Utility Classes ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-dark { color: var(--text-dark); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---- Badges ---- */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.badge-gold { background: var(--gold-light); color: var(--gold-dark); }
.badge-new { background: #E8F5E9; color: #2E7D4F; }
.badge-hot { background: #FFF3E0; color: #E65100; }
.badge-sale { background: #FFEBEE; color: #C62828; }
.badge-instock { background: #E8F5E9; color: #2E7D4F; }
.badge-trending { background: #FFF3E0; color: #E65100; }
.divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--rose-gold)); border-radius: 2px; margin: 16px auto; }
.divider-left { margin-left: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
p { color: var(--text-mid); line-height: 1.75; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--text-dark); }
.section-subtitle { color: var(--text-light); font-size: 1rem; margin-top: 12px; max-width: 560px; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; letter-spacing: 0.5px; transition: var(--transition); cursor: pointer; border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--text-dark); color: var(--white); border-color: var(--text-dark); }
.btn-dark:hover { background: #333; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-white { background: var(--white); color: var(--text-dark); border-color: var(--white); }
.btn-white:hover { background: var(--cream); }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }
.btn-add-cart { background: var(--text-dark); color: var(--white); border-radius: var(--radius-full); padding: 14px 24px; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; transition: var(--transition); border: 2px solid var(--text-dark); display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-add-cart:hover { background: var(--white); color: var(--text-dark); }

/* ============================================
   TOP ANNOUNCEMENT BAR
   ============================================ */
#topbar {
  background: linear-gradient(90deg, #1A1A1A 0%, #2C2C2C 50%, #1A1A1A 100%);
  color: var(--white);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1000;
}
.topbar-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.topbar-track span { font-size: 12px; font-weight: 500; letter-spacing: 0.8px; display: flex; align-items: center; gap: 8px; }
.topbar-track span::before { content: '✦'; color: var(--gold); font-size: 10px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
#topbar .topbar-close { position: absolute; right: 16px; color: rgba(255,255,255,0.6); font-size: 16px; cursor: pointer; z-index: 2; transition: color 0.2s; }
#topbar .topbar-close:hover { color: var(--white); }

/* ============================================
   HEADER
   ============================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo .logo-text { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--text-dark); letter-spacing: 1px; line-height: 1; }
.site-logo .logo-text span { color: var(--gold); }
.site-logo .logo-tagline { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); font-family: var(--font-body); margin-top: 2px; }
.custom-logo { max-height: 48px; width: auto; }

/* Search Bar */
.header-search { flex: 1; max-width: 500px; position: relative; }
.header-search input {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0 48px 0 20px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-section);
  transition: var(--transition);
  outline: none;
}
.header-search input:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.header-search input::placeholder { color: var(--text-xlight); }
.header-search .search-btn { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 18px; transition: color 0.2s; }
.header-search .search-btn:hover { color: var(--gold); }
.search-dropdown { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); z-index: 1000; display: none; padding: 16px 0; max-height: 480px; overflow-y: auto; }
.search-dropdown.open { display: block; }
.search-section-title { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); padding: 8px 20px 6px; }
.search-item { display: flex; align-items: center; gap: 12px; padding: 8px 20px; cursor: pointer; transition: background 0.2s; }
.search-item:hover { background: var(--bg-section); }
.search-item img { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; }
.search-item .item-name { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.search-item .item-price { font-size: 12px; color: var(--gold); margin-top: 2px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-action-btn { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background var(--transition); position: relative; color: var(--text-dark); font-size: 20px; }
.header-action-btn:hover { background: var(--bg-section); color: var(--gold); }
.action-count { position: absolute; top: 4px; right: 4px; background: var(--gold); color: var(--white); font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.header-account { display: flex; align-items: center; gap: 6px; padding: 0 12px; height: 44px; border-radius: var(--radius-full); font-size: 13px; font-weight: 500; color: var(--text-dark); transition: var(--transition); }
.header-account:hover { background: var(--bg-section); color: var(--gold); }

/* ============================================
   NAVIGATION / MEGA MENU
   ============================================ */
#main-nav { border-top: 1px solid var(--border-light); background: var(--white); }
.nav-list { display: flex; align-items: center; gap: 0; height: 48px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; height: 100%; }
.nav-link { display: flex; align-items: center; gap: 5px; height: 100%; padding: 0 16px; font-size: 13.5px; font-weight: 500; color: var(--text-dark); letter-spacing: 0.3px; transition: color var(--transition); white-space: nowrap; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-item:hover .nav-link { color: var(--gold); }
.nav-item:hover .nav-link::after { left: 0; right: 0; }
.nav-link.active::after { left: 0; right: 0; }
.nav-link .nav-arrow { font-size: 10px; transition: transform var(--transition); }
.nav-item:hover .nav-link .nav-arrow { transform: rotate(180deg); }
.nav-link.highlight { color: var(--error); }
/* Mega Menu */
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 760px; background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: 0 0 var(--radius-md) var(--radius-md); box-shadow: var(--shadow-lg); padding: 28px; display: none; z-index: 998; animation: megaFadeIn 0.25s ease; }
@keyframes megaFadeIn { from { opacity: 0; transform: translateX(-50%) translateY(8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.nav-item:hover .mega-menu { display: flex; gap: 32px; }
.mega-col { min-width: 160px; }
.mega-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); }
.mega-link { display: flex; align-items: center; padding: 5px 0; font-size: 13px; color: var(--text-mid); transition: var(--transition); gap: 6px; }
.mega-link:hover { color: var(--gold); padding-left: 4px; }
/* Simple dropdown */
.simple-dropdown { position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: 0 0 var(--radius-md) var(--radius-md); box-shadow: var(--shadow-lg); padding: 10px 0; display: none; z-index: 998; }
.nav-item:hover .simple-dropdown { display: block; }
.simple-dropdown a { display: block; padding: 9px 20px; font-size: 13.5px; color: var(--text-mid); transition: var(--transition); }
.simple-dropdown a:hover { background: var(--bg-section); color: var(--gold); padding-left: 24px; }
/* Mobile Nav */
#mobile-nav { position: fixed; top: 0; left: -320px; width: 320px; height: 100vh; background: var(--white); z-index: 1200; transition: left var(--transition-slow); overflow-y: auto; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
#mobile-nav.open { left: 0; }
#mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1199; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
#mobile-overlay.open { opacity: 1; pointer-events: all; }
#mobile-menu-btn { display: none; font-size: 22px; color: var(--text-dark); padding: 8px; align-items: center; justify-content: center; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border-light); }
.mobile-nav-close { font-size: 22px; color: var(--text-mid); }
.mobile-nav-list { padding: 12px 0; list-style: none; margin: 0; flex: 1; }
.mobile-nav-item { border-bottom: 1px solid var(--bg-section); }
.mobile-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; font-size: 15px; font-weight: 500; color: var(--text-dark); }
.mobile-sub { display: none; background: var(--bg-section); padding: 8px 0 8px 20px; }
.mobile-sub a { display: block; padding: 9px 20px; font-size: 13.5px; color: var(--text-mid); }
.mobile-nav-item.open .mobile-sub { display: block; }
.mobile-nav-footer { padding: 20px; border-top: 1px solid var(--border-light); }

/* ============================================
   HERO BANNER (front-page)
   ============================================ */
#hero { position: relative; height: min(92vh, 680px); overflow: hidden; background: var(--cream); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(255,249,244,0.92) 0%, rgba(255,249,244,0.65) 50%, rgba(255,249,244,0.1) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 60px; max-width: 620px; }
.hero-label { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 700; line-height: 1.1; color: var(--text-dark); margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc { font-size: 1rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 32px; max-width: 420px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(201,168,76,0.4); transition: var(--transition); cursor: pointer; }
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================
   TRUST BADGES
   ============================================ */
#trust-badges { background: var(--white); border-bottom: 1px solid var(--border-light); padding: 20px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 14px 24px; border-right: 1px solid var(--border-light); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 28px; flex-shrink: 0; }
.trust-text .t-title { font-size: 13.5px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.trust-text .t-sub { font-size: 12px; color: var(--text-light); }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-light); transition: var(--transition); position: relative; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border); }
.product-card-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-section); }
.product-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.product-card:hover .product-card-img-wrap img { transform: scale(1.05); }
.product-card-body { padding: 14px; background: var(--white); border: 1px solid var(--border-light); border-top: none; border-radius: 0 0 var(--radius-md) var(--radius-md); }
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.product-wishlist-btn { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.9); border: none; display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; transition: var(--transition); backdrop-filter: blur(4px); opacity: 0; }
.product-card:hover .product-wishlist-btn { opacity: 1; }
.product-card-actions { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px; background: linear-gradient(transparent,rgba(0,0,0,0.6)); opacity: 0; transition: opacity .25s; display: flex; gap: 6px; }
.product-card:hover .product-card-actions { opacity: 1; }
.product-category { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; }
.product-name { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; line-height: 1.35; }
.product-name a { color: inherit; text-decoration: none; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.product-price { display: flex; align-items: center; gap: 8px; }
.stars { display: flex; gap: 1px; color: var(--gold); font-size: 12px; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; gap: 20px; }
.section-header-left .section-label { margin-bottom: 8px; }
.section-header .view-all { font-size: 13.5px; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 6px; white-space: nowrap; flex-shrink: 0; transition: gap var(--transition); }
.section-header .view-all:hover { gap: 10px; }

/* ============================================
   CATEGORY GRID
   ============================================ */
.cat-grid-hero { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,0.65) 0%, transparent 60%); }
.cat-card-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px; color: var(--white); }
.cat-card-text h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.cat-card-text span { font-size: 12px; opacity: 0.85; }
.cat-no-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 60px; background: linear-gradient(135deg, var(--cream), var(--border-light)); }

/* ============================================
   CREATOR CARDS (homepage featured)
   ============================================ */
.creator-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); transition: var(--transition); text-align: center; }
.creator-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.creator-cover { height: 120px; background: linear-gradient(135deg, var(--gold), var(--rose-gold)); position: relative; }
.creator-avatar-wrap { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); }
.creator-avatar { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--white); overflow: hidden; background: var(--bg-section); box-shadow: var(--shadow-md); }
.creator-avatar img { width: 100%; height: 100%; object-fit: cover; }
.creator-body { padding: 40px 16px 20px; }
.creator-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.creator-niche { font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.creator-tier { display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; }
.creator-tier.diamond { background: linear-gradient(135deg, #E8F4FD, #BEE3F8); color: #2C7BE5; }
.creator-tier.gold { background: var(--gold-light); color: var(--gold-dark); }
.creator-tier.silver { background: #F5F5F5; color: #666; }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-light); transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.blog-card-meta span { font-size: 12px; color: var(--text-light); }
.blog-card-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { font-size: 13.5px; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { font-size: 13px; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.blog-card:hover .blog-read-more { gap: 10px; }

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.insta-post { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.insta-post img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.insta-post:hover img { transform: scale(1.08); }
.insta-hover { position: absolute; inset: 0; background: rgba(26,26,26,0.55); display: flex; align-items: center; justify-content: center; gap: 16px; opacity: 0; transition: opacity var(--transition); }
.insta-post:hover .insta-hover { opacity: 1; }
.insta-stat { color: var(--white); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 5px; }

/* ============================================
   FOOTER
   ============================================ */
#footer { background: #F9F6F2; border-top: 1px solid var(--border); }
.footer-main { padding: 64px 0 40px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .logo-text { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--text-dark); }
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p { font-size: 14px; color: var(--text-light); line-height: 1.75; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--text-mid); transition: var(--transition); }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dark); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; margin: 0; padding: 0; }
.footer-links li a, .footer-link { font-size: 13.5px; color: var(--text-light); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links li a:hover, .footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom-left { font-size: 13px; color: var(--text-light); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 13px; color: var(--text-light); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-categories { padding: 32px 0; border-top: 1px solid var(--border); }
.footer-cat-title { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dark); margin-bottom: 14px; }
.footer-cat-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-cat-link { padding: 6px 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-full); font-size: 12.5px; color: var(--text-mid); transition: var(--transition); }
.footer-cat-link:hover { background: var(--gold-light); border-color: var(--gold); color: var(--gold-dark); }
.footer-seo-text { padding: 28px 0 40px; border-top: 1px solid var(--border); }
.footer-seo-text p { font-size: 12.5px; color: var(--text-xlight); line-height: 1.8; }

/* ============================================
   CART SIDEBAR
   ============================================ */
#cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); z-index: 1099; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
#cart-overlay.show { opacity: 1; pointer-events: all; }
#cart-sidebar { position: fixed; top: 0; right: -480px; width: min(480px, 100vw); height: 100vh; background: var(--white); z-index: 1100; transition: right var(--transition-slow); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
#cart-sidebar.open { right: 0; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-family: var(--font-heading); font-size: 1.4rem; }
.cart-close { font-size: 22px; color: var(--text-mid); cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 16px; text-align: center; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }

/* ============================================
   MODALS & OVERLAYS
   ============================================ */
.overlay-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.overlay-modal.show { display: flex; }
.modal-box { background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 640px; max-height: 85vh; overflow-y: auto; animation: modalIn 0.3s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
.modal-box-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--white); z-index: 1; }
.modal-box-header h3 { font-family: var(--font-heading); font-size: 1.3rem; }
.modal-box-body { padding: 24px; }
.modal-close { font-size: 22px; color: var(--text-light); cursor: pointer; }

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast { display: flex; align-items: center; gap: 12px; padding: 14px 20px; background: var(--text-dark); color: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); font-size: 14px; animation: toastIn 0.3s ease; max-width: 320px; }
.toast.success { background: var(--success); }
.toast.error { background: var(--error); }
.toast.warning { background: var(--warning); }
@keyframes toastIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ============================================
   COOKIE CONSENT
   ============================================ */
#cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--text-dark); color: var(--white); padding: 16px 24px; z-index: 2500; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; transform: translateY(100%); transition: transform var(--transition); }
#cookie-bar.show { transform: translateY(0); }
.cookie-text { font-size: 13.5px; color: rgba(255,255,255,0.85); }
.cookie-text a { color: var(--gold); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================
   BACK TO TOP + WHATSAPP
   ============================================ */
#back-to-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--gold); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; z-index: 1000; opacity: 0; transform: translateY(20px); transition: var(--transition); cursor: pointer; box-shadow: var(--shadow-gold); }
#back-to-top.show { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--gold-dark); transform: translateY(-4px); }
#whatsapp-float { position: fixed; bottom: 80px; right: 24px; width: 52px; height: 52px; background: #25D366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; z-index: 1000; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); }
#whatsapp-float:hover { transform: scale(1.1); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.6s ease; }
.fade-in.visible { opacity: 1; }
.skeleton { background: linear-gradient(90deg, var(--border-light) 25%, var(--bg-section) 50%, var(--border-light) 75%); background-size: 200% 100%; animation: skeleton 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============================================
   BREADCRUMBS
   ============================================ */
.sonaaran-breadcrumbs { display: flex; align-items: center; gap: 6px; font-size: 13px; flex-wrap: wrap; padding: 12px 0; }
.sonaaran-breadcrumbs a { color: var(--text-light); transition: color 0.2s; }
.sonaaran-breadcrumbs a:hover { color: var(--gold); }
.sonaaran-breadcrumbs .sep { color: var(--text-xlight); font-size: 10px; }
.sonaaran-breadcrumbs .current { color: var(--text-mid); font-weight: 500; }

/* ============================================
   AI FEATURES
   ============================================ */
.nav-ai-btn { background: linear-gradient(135deg, var(--gold), #E8B94F); color: var(--text-dark) !important; border-radius: var(--radius-full); padding: 6px 14px !important; font-size: 12.5px !important; font-weight: 700; transition: opacity .2s, transform .2s; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; font-family: var(--font-body); }
.nav-ai-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-section); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1280px) {
  .footer-main { grid-template-columns: repeat(3, 1fr); }
  .footer-main .footer-brand { grid-column: 1 / -1; max-width: 600px; }
  .cat-grid-hero { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  :root { --header-height: 64px; }
  .header-search { max-width: 340px; }
  #main-nav { display: none; }
  #mobile-menu-btn { display: flex; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  /* product detail */
  .pd-layout { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  :root { --header-height: 58px; --topbar-height: 32px; }
  .header-search { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 2rem; }
  .section-pad { padding: 56px 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cat-grid-hero { grid-template-columns: repeat(3, 1fr); }
  #hero { height: min(70vh, 520px); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  #cart-sidebar { width: 100vw; right: -100vw; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .product-grid { gap: 10px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .footer-main { grid-template-columns: 1fr; }
  .cat-grid-hero { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
}
