/* ===========================================
   SUROOFI LUXURY PERFUME — MAIN STYLESHEET
   Version: 1.0.0
   =========================================== */

/* =========================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================= */
:root {
  /* Brand Colors */
  --suroofi-gold:          #C8A14D;
  --suroofi-gold-light:    #E2C27D;
  --suroofi-gold-dark:     #9A7A35;
  --suroofi-gold-rgb:      200, 161, 77;
  --suroofi-black:         #0A0A0A;
  --suroofi-black-soft:    #141414;
  --suroofi-charcoal:      #1A1A1A;
  --suroofi-white:         #FFFFFF;
  --suroofi-cream:         #F5F0E8;
  --suroofi-cream-dark:    #E8E0D0;
  --suroofi-grey-100:      #F8F8F8;
  --suroofi-grey-200:      #EEEEEE;
  --suroofi-grey-400:      #AAAAAA;
  --suroofi-grey-600:      #666666;

  /* Typography */
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-full:9999px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.16);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.20);
  --shadow-gold:0 8px 32px rgba(200,161,77,.25);

  /* Glass Effect */
  --glass-bg:   rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.15);
  --glass-dark: rgba(10,10,10,.60);

  /* Transitions */
  --ease-out:   cubic-bezier(.16,1,.3,1);
  --ease-in-out:cubic-bezier(.65,0,.35,1);
  --duration-fast:  150ms;
  --duration-normal:300ms;
  --duration-slow:  500ms;

  /* Layout */
  --container-max:  1280px;
  --container-pad:  clamp(1rem, 4vw, 2rem);
  --header-height:  80px;
  --topbar-height:  40px;
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--suroofi-charcoal);
  background: var(--suroofi-white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}
a:hover { color: var(--suroofi-gold); }

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

ul, ol { list-style: none; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--suroofi-black);
}

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

/* =========================================
   LAYOUT — CONTAINER
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* =========================================
   TYPOGRAPHY SCALE
   ========================================= */
.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--suroofi-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--suroofi-black);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--suroofi-grey-600);
  max-width: 600px;
  margin-bottom: var(--space-2xl);
}

/* =========================================
   BUTTONS
   ========================================= */
.suroofi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.suroofi-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  transform: translateX(-100%);
  transition: transform var(--duration-normal) var(--ease-out);
}
.suroofi-btn:hover::before { transform: translateX(0); }

/* Gold */
.btn-gold, .suroofi-btn.btn-gold {
  background: var(--suroofi-gold);
  color: var(--suroofi-black);
  border-color: var(--suroofi-gold);
}
.btn-gold:hover, .suroofi-btn.btn-gold:hover {
  background: var(--suroofi-gold-dark);
  border-color: var(--suroofi-gold-dark);
  color: var(--suroofi-white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Dark */
.btn-dark {
  background: var(--suroofi-black);
  color: var(--suroofi-white);
  border-color: var(--suroofi-black);
}
.btn-dark:hover {
  background: var(--suroofi-charcoal);
  border-color: var(--suroofi-charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--suroofi-black);
  border-color: var(--suroofi-black);
}
.btn-outline:hover {
  background: var(--suroofi-black);
  color: var(--suroofi-white);
}

/* Outline Gold */
.btn-outline-gold {
  background: transparent;
  color: var(--suroofi-gold);
  border-color: var(--suroofi-gold);
}
.btn-outline-gold:hover {
  background: var(--suroofi-gold);
  color: var(--suroofi-black);
}

/* White */
.btn-white {
  background: var(--suroofi-white);
  color: var(--suroofi-black);
  border-color: var(--suroofi-white);
}
.btn-white:hover {
  background: var(--suroofi-cream);
  transform: translateY(-2px);
}

/* Small */
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
/* Large */
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1rem; }

/* =========================================
   STAR RATING
   ========================================= */
.star-rating {
  display: inline-flex;
  gap: 2px;
  color: var(--suroofi-grey-200);
}
.star-rating .star.filled { color: var(--suroofi-gold); }
.star-rating svg { width: 14px; height: 14px; }

/* =========================================
   TOP BAR
   ========================================= */
.suroofi-topbar {
  background: var(--suroofi-black);
  color: var(--suroofi-white);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.topbar-text {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--suroofi-cream);
  margin: 0;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.topbar-links a {
  font-size: 0.75rem;
  color: var(--suroofi-grey-400);
  letter-spacing: 0.05em;
}
.topbar-links a:hover { color: var(--suroofi-gold); }

/* =========================================
   HEADER
   ========================================= */
.site-header {
  background: var(--suroofi-white);
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--suroofi-grey-200);
  position: relative;
  z-index: 99;
  transition: background var(--duration-normal) ease, box-shadow var(--duration-normal) ease;
}

.site-header.sticky-header {
  position: sticky;
  top: 0;
}

.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border-bottom-color: transparent;
}

/* Transparent on homepage hero */
body.suroofi-home .site-header:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: var(--topbar-height);
  left: 0;
  right: 0;
}
body.suroofi-home .site-header:not(.scrolled) .brand-text-logo,
body.suroofi-home .site-header:not(.scrolled) .primary-nav a,
body.suroofi-home .site-header:not(.scrolled) .header-action-btn {
  color: var(--suroofi-white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  height: 100%;
}

/* Branding */
.site-branding { flex-shrink: 0; }
.custom-logo { height: 56px; width: auto; }

.brand-text-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--suroofi-black);
  transition: color var(--duration-fast) ease;
}
.brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--suroofi-gold);
  margin-top: 2px;
}

/* Primary Navigation */
.main-navigation { flex: 1; display: flex; justify-content: center; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.primary-nav li { position: relative; }

.primary-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.75rem;
  color: var(--suroofi-charcoal);
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast) ease;
  position: relative;
}

.primary-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: var(--suroofi-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}
.primary-nav > li:hover > a::after,
.primary-nav > li.current-menu-item > a::after { transform: scaleX(1); }

.primary-nav > li > a:hover { color: var(--suroofi-gold); }

/* Dropdown */
.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--suroofi-white);
  border: 1px solid var(--suroofi-grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 200;
}
.primary-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav .sub-menu a {
  display: block;
  padding: 0.625rem var(--space-lg);
  font-size: 0.85rem;
  color: var(--suroofi-charcoal);
  transition: all var(--duration-fast) ease;
}
.primary-nav .sub-menu a:hover {
  color: var(--suroofi-gold);
  padding-left: calc(var(--space-lg) + 6px);
  background: var(--suroofi-grey-100);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.header-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--suroofi-charcoal);
  transition: all var(--duration-fast) ease;
}
.header-action-btn:hover {
  background: var(--suroofi-grey-100);
  color: var(--suroofi-gold);
}
.header-action-btn svg { width: 20px; height: 20px; }

.action-count, .cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  background: var(--suroofi-gold);
  color: var(--suroofi-black);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.action-count:empty, .cart-count:empty,
.action-count[data-count="0"], .cart-count:contains("0") { display: none; }

/* Mobile Menu Toggle — hidden by default */
.mobile-menu-toggle { display: none; }

/* =========================================
   SEARCH OVERLAY
   ========================================= */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.95);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.search-overlay[hidden] { display: none; }
.search-overlay.visible { display: flex; }

.search-overlay-inner {
  position: relative;
  width: 100%;
  max-width: 800px;
}

.search-form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--suroofi-gold);
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--suroofi-white);
  padding: var(--space-md) 0;
  outline: none;
}
.search-input::placeholder { color: rgba(255,255,255,.4); }

.search-submit {
  color: var(--suroofi-gold);
  padding: var(--space-sm);
}
.search-submit svg { width: 28px; height: 28px; }

.search-close {
  position: absolute;
  top: -60px;
  right: 0;
  color: var(--suroofi-white);
  opacity: .7;
  transition: opacity var(--duration-fast) ease;
}
.search-close:hover { opacity: 1; }
.search-close svg { width: 28px; height: 28px; }

/* =========================================
   MOBILE MENU DRAWER
   ========================================= */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  height: 100dvh;
  background: var(--suroofi-white);
  z-index: 600;
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu-drawer.open { transform: translateX(0); }

.drawer-inner { padding: var(--space-xl); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
}

.drawer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.drawer-close { color: var(--suroofi-grey-600); }
.drawer-close svg { width: 24px; height: 24px; }

.mobile-nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem var(--space-sm);
  border-bottom: 1px solid var(--suroofi-grey-200);
  color: var(--suroofi-charcoal);
}
.mobile-nav a:hover { color: var(--suroofi-gold); }

.drawer-actions {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.drawer-action-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
  padding: 0.625rem var(--space-sm);
  color: var(--suroofi-charcoal);
}
.drawer-action-link svg { width: 18px; height: 18px; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 590;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* =========================================
   QUICK VIEW MODAL
   ========================================= */
.suroofi-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}
.suroofi-modal[hidden] { display: none; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-container {
  position: relative;
  background: var(--suroofi-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  animation: modalIn var(--duration-normal) var(--ease-out);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--suroofi-grey-100);
  color: var(--suroofi-charcoal);
  z-index: 2;
}
.modal-close:hover { background: var(--suroofi-grey-200); }
.modal-close svg { width: 18px; height: 18px; }

.modal-content { padding: var(--space-2xl); }

.modal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--suroofi-grey-200);
  border-top-color: var(--suroofi-gold);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Quick View Inner */
.quick-view-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.qv-main-image img {
  width: 100%;
  border-radius: var(--radius-md);
}

.qv-thumbs {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}
.qv-thumb {
  width: 64px;
  height: 64px;
  border: 2px solid var(--suroofi-grey-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--duration-fast) ease;
}
.qv-thumb.active, .qv-thumb:hover { border-color: var(--suroofi-gold); }
.qv-thumb-img { width: 100%; height: 100%; object-fit: cover; }

.qv-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--suroofi-gold);
  margin-bottom: var(--space-sm);
}

.qv-title {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.qv-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--suroofi-gold);
  margin-bottom: var(--space-sm);
}

.qv-rating { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-md); }
.rating-count { font-size: 0.8rem; color: var(--suroofi-grey-600); }

.qv-short-desc { font-size: 0.9rem; color: var(--suroofi-grey-600); margin-bottom: var(--space-lg); }
.qv-short-desc p { margin-bottom: 0; }

.qv-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-md); }

.qv-cart-form { display: flex; align-items: center; gap: var(--space-sm); }

.qv-meta { display: flex; gap: var(--space-md); font-size: 0.8rem; color: var(--suroofi-grey-600); }
.in-stock { color: #2ecc71; }
.oos { color: #e74c3c; }

/* =========================================
   PAGE BANNERS (inner pages)
   ========================================= */
.inner-page-banner {
  background: linear-gradient(135deg, var(--suroofi-black) 0%, var(--suroofi-charcoal) 100%);
  padding: var(--space-4xl) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(var(--suroofi-gold-rgb),.15) 0%, transparent 60%);
}
.inner-page-banner .page-title,
.inner-page-banner .archive-title,
.inner-page-banner .search-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--suroofi-white);
  position: relative;
}

/* Breadcrumb */
.suroofi-breadcrumb { margin-bottom: var(--space-md); }
.suroofi-breadcrumb ol { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 4px; }
.suroofi-breadcrumb li { display: flex; align-items: center; gap: 4px; }
.suroofi-breadcrumb a { font-size: 0.8rem; color: rgba(255,255,255,.6); }
.suroofi-breadcrumb a:hover { color: var(--suroofi-gold); }
.suroofi-breadcrumb .sep, .suroofi-breadcrumb li span:not(:first-child) {
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.suroofi-hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--space-5xl) 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--suroofi-gold);
  margin-bottom: var(--space-lg);
  animation: fadeSlideUp 0.8s var(--ease-out) both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--suroofi-gold);
}

.hero-heading {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--suroofi-white);
  margin-bottom: var(--space-lg);
  animation: fadeSlideUp 0.8s 0.1s var(--ease-out) both;
}

.hero-heading em {
  font-style: italic;
  color: var(--suroofi-gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
  animation: fadeSlideUp 0.8s 0.2s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.3s var(--ease-out) both;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--suroofi-gold));
}

/* =========================================
   SECTION — SHOP BY CATEGORY
   ========================================= */
.category-section {
  padding: var(--space-5xl) 0;
  background: var(--suroofi-white);
}

.category-section .section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-lg);
}

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

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.category-card:hover .category-card-img { transform: scale(1.08); }

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  transition: background var(--duration-normal) ease;
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 70%, transparent 100%);
}

.category-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  transform: translateY(8px);
  transition: transform var(--duration-normal) var(--ease-out);
}
.category-card:hover .category-card-body { transform: translateY(0); }

.category-count {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--suroofi-gold);
  margin-bottom: 4px;
  display: block;
}

.category-name {
  font-size: 1.4rem;
  color: var(--suroofi-white);
  margin-bottom: var(--space-sm);
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--suroofi-gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-out);
}
.category-card:hover .category-link { opacity: 1; transform: translateY(0); }
.category-link svg { width: 14px; height: 14px; }

/* =========================================
   SECTION — PRODUCTS GRID
   ========================================= */
.products-section {
  padding: var(--space-5xl) 0;
}

.products-section.bg-cream {
  background: var(--suroofi-cream);
}

.products-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-3xl);
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-xl);
}

/* =========================================
   PRODUCT CARD
   ========================================= */
.suroofi-product-card {
  background: var(--suroofi-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.suroofi-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.suroofi-product-card:hover .product-image-wrap img { transform: scale(1.05); }

/* Badges */
.badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 1;
}
.sale-badge { background: #e74c3c; color: var(--suroofi-white); }
.new-badge { background: var(--suroofi-gold); color: var(--suroofi-black); }

/* Product Actions (hover overlay) */
.product-actions {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 2;
}
.suroofi-product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--suroofi-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  color: var(--suroofi-charcoal);
  transition: all var(--duration-fast) ease;
}
.action-btn:hover { background: var(--suroofi-gold); color: var(--suroofi-black); }
.action-btn.active { color: #e74c3c; }
.action-btn svg { width: 16px; height: 16px; }

/* Product Info */
.product-info {
  padding: var(--space-lg);
}

.woocommerce-loop-product__title,
.product-info .woocommerce-loop-product__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--suroofi-black);
  margin-bottom: var(--space-xs);
  transition: color var(--duration-fast) ease;
}
.suroofi-product-card:hover .woocommerce-loop-product__title { color: var(--suroofi-gold); }

.woocommerce-loop-category__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--suroofi-grey-600);
  margin-bottom: var(--space-xs);
}

.price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--suroofi-gold);
  margin-bottom: var(--space-sm);
}
.price del { color: var(--suroofi-grey-400); font-weight: 400; font-size: .85em; margin-right: 6px; }

.product-info .button,
.product-info .add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 0.75rem;
  background: var(--suroofi-black);
  color: var(--suroofi-white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid var(--suroofi-black);
  transition: all var(--duration-fast) ease;
  cursor: pointer;
  margin-top: var(--space-sm);
}
.product-info .button:hover,
.product-info .add_to_cart_button:hover {
  background: var(--suroofi-gold);
  border-color: var(--suroofi-gold);
  color: var(--suroofi-black);
}
.product-info .added { background: var(--suroofi-gold); border-color: var(--suroofi-gold); color: var(--suroofi-black); }

/* =========================================
   SECTION — WHY CHOOSE SUROOFI
   ========================================= */
.why-section {
  padding: var(--space-5xl) 0;
  background: var(--suroofi-black);
  color: var(--suroofi-white);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--suroofi-gold-rgb),.08), transparent 70%);
  transform: translateX(-50%);
}

.why-section .section-title { color: var(--suroofi-white); }

.why-section .section-header { text-align: center; margin-bottom: var(--space-4xl); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-2xl);
}

.why-card {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--duration-normal) var(--ease-out);
}
.why-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(var(--suroofi-gold-rgb),.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--suroofi-gold-rgb),.15);
  border-radius: var(--radius-full);
  border: 1px solid rgba(var(--suroofi-gold-rgb),.3);
  color: var(--suroofi-gold);
}
.why-icon svg { width: 28px; height: 28px; }

.why-title {
  font-size: 1.15rem;
  color: var(--suroofi-white);
  margin-bottom: var(--space-sm);
}

.why-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0;
}

/* =========================================
   SECTION — TESTIMONIALS
   ========================================= */
.testimonials-section {
  padding: var(--space-5xl) 0;
  background: var(--suroofi-cream);
}

.testimonials-section .section-header { text-align: center; margin-bottom: var(--space-4xl); }

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--suroofi-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration-normal) ease, transform var(--duration-normal) ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--suroofi-charcoal);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--suroofi-gold);
  opacity: .3;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.author-avatar { width: 48px; height: 48px; border-radius: var(--radius-full); object-fit: cover; }
.author-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--suroofi-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--suroofi-black);
}
.author-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.author-meta { font-size: 0.75rem; color: var(--suroofi-grey-600); }

/* =========================================
   SECTION — NEWSLETTER
   ========================================= */
.newsletter-section {
  background: linear-gradient(135deg, var(--suroofi-black), var(--suroofi-charcoal));
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4xl);
  position: relative;
  z-index: 1;
}

.newsletter-content { flex: 1; }

.newsletter-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--suroofi-white);
  margin-bottom: var(--space-sm);
}

.newsletter-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.newsletter-form .form-group {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.875rem var(--space-lg);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  color: var(--suroofi-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--duration-fast) ease;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input[type="email"]:focus { border-color: var(--suroofi-gold); }

.form-note { font-size: 0.75rem; color: rgba(255,255,255,.4); margin-top: var(--space-sm); margin-bottom: 0; }

.form-message { font-size: 0.875rem; margin-top: var(--space-sm); }
.form-message.success { color: #2ecc71; }
.form-message.error { color: #e74c3c; }

.newsletter-decoration {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.deco-circle {
  border-radius: var(--radius-full);
  border: 1px solid rgba(var(--suroofi-gold-rgb),.15);
  position: absolute;
}
.circle-1 { width: 400px; height: 400px; top: -200px; right: 0; }
.circle-2 { width: 600px; height: 600px; top: -300px; right: -100px; border-color: rgba(var(--suroofi-gold-rgb),.07); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--suroofi-black);
  color: rgba(255,255,255,.7);
}

.footer-top { padding: var(--space-5xl) 0 var(--space-4xl); }

.footer-top-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
}

.footer-logo { margin-bottom: var(--space-md); }
.footer-logo img { filter: brightness(0) invert(1); }

.footer-brand-link { display: inline-block; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--suroofi-white);
  display: block;
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--suroofi-gold);
  margin-bottom: var(--space-md);
}

.footer-about { font-size: 0.875rem; line-height: 1.8; margin-bottom: var(--space-xl); }

.footer-social { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  transition: all var(--duration-fast) ease;
}
.social-link:hover {
  background: var(--suroofi-gold);
  border-color: var(--suroofi-gold);
  color: var(--suroofi-black);
  transform: translateY(-3px);
}
.social-link svg { width: 16px; height: 16px; }
.social-icon-wrap { display: flex; }

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--suroofi-white);
  margin-bottom: var(--space-lg);
}

.footer-nav { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  transition: all var(--duration-fast) ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-nav a::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--suroofi-gold);
  transition: width var(--duration-fast) ease;
}
.footer-nav a:hover { color: var(--suroofi-white); padding-left: 4px; }
.footer-nav a:hover::before { width: 12px; }

.footer-address address { font-style: normal; }
.contact-item { display: flex; flex-direction: column; margin-bottom: var(--space-md); font-size: 0.875rem; }
.contact-item strong { color: rgba(255,255,255,.4); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.contact-item a { color: rgba(255,255,255,.7); }
.contact-item a:hover { color: var(--suroofi-gold); }

.trust-badges { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-top: var(--space-xl); }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: rgba(255,255,255,.5); }
.trust-badge svg { width: 16px; height: 16px; color: var(--suroofi-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--space-lg) 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.copyright { font-size: 0.8rem; margin: 0; }

.payment-icons { display: flex; align-items: center; gap: var(--space-sm); }
.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,.1);
}

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  background: var(--suroofi-gold);
  color: var(--suroofi-black);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 400;
  transition: all var(--duration-normal) var(--ease-out);
  transform: rotate(-90deg);
}
.back-to-top[hidden] { display: none; }
.back-to-top:hover { background: var(--suroofi-gold-dark); transform: rotate(-90deg) translateY(4px); }
.back-to-top svg { width: 20px; height: 20px; }

/* =========================================
   BLOG GRID
   ========================================= */
.blog-card {
  background: var(--suroofi-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) ease;
  border: 1px solid var(--suroofi-grey-200);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card-image-link { display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.blog-card:hover .blog-card-img { transform: scale(1.06); }

.blog-card-body { padding: var(--space-xl); }

.blog-card-meta { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-sm); }
.blog-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--suroofi-gold); }
.blog-date { font-size: 0.75rem; color: var(--suroofi-grey-600); }

.blog-card-title { font-size: 1.15rem; margin-bottom: var(--space-sm); }
.blog-card-title a { color: var(--suroofi-black); }
.blog-card-title a:hover { color: var(--suroofi-gold); }

.blog-card-excerpt { font-size: 0.875rem; color: var(--suroofi-grey-600); margin-bottom: var(--space-lg); }

.read-more-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--suroofi-gold); }
.read-more-link svg { width: 14px; height: 14px; transition: transform var(--duration-fast) ease; }
.read-more-link:hover svg { transform: translateX(4px); }
.read-more-link:hover { color: var(--suroofi-gold-dark); }

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

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

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

/* Scroll-triggered animation hooks (JS adds these classes) */
.animate-on-scroll { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.animate-on-scroll.in-view { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* =========================================
   ERROR 404
   ========================================= */
.error-404 { padding: var(--space-5xl) 0; text-align: center; }
.error-content { max-width: 600px; margin: 0 auto; }
.error-number { font-family: var(--font-serif); font-size: clamp(6rem, 15vw, 10rem); font-weight: 800; color: var(--suroofi-grey-200); display: block; line-height: 1; }
.error-title { font-size: 2rem; margin-bottom: var(--space-md); }
.error-desc { color: var(--suroofi-grey-600); margin-bottom: var(--space-2xl); }
.error-actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* =========================================
   SCENT NOTES TAB
   ========================================= */
.scent-notes-tab { padding: var(--space-lg) 0; }
.scent-family { margin-bottom: var(--space-lg); }
.scent-pyramid { display: flex; flex-direction: column; gap: var(--space-md); }
.scent-level {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--suroofi-grey-100);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--suroofi-gold);
}
.level-label { font-weight: 600; font-size: 0.85rem; min-width: 100px; }
.level-notes { font-size: 0.9rem; color: var(--suroofi-grey-600); }

/* =========================================
   SINGLE PRODUCT — CUSTOM STYLES
   ========================================= */
.single-product-actions { display: flex; gap: var(--space-sm); margin-bottom: var(--space-lg); }

.buy-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem var(--space-2xl);
  background: var(--suroofi-black);
  color: var(--suroofi-white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid var(--suroofi-black);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  margin-left: var(--space-sm);
}
.buy-now-btn:hover {
  background: var(--suroofi-gold);
  border-color: var(--suroofi-gold);
  color: var(--suroofi-black);
}

/* =========================================
   THANK YOU PAGE
   ========================================= */
.suroofi-thankyou-banner {
  text-align: center;
  padding: var(--space-3xl);
  background: linear-gradient(135deg, var(--suroofi-cream), var(--suroofi-white));
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3xl);
  border: 1px solid var(--suroofi-cream-dark);
}
.thankyou-icon { color: var(--suroofi-gold); margin-bottom: var(--space-md); }
.thankyou-icon svg { width: 56px; height: 56px; }
.thankyou-title { font-size: 2rem; margin-bottom: var(--space-sm); }
.thankyou-subtitle { color: var(--suroofi-grey-600); }

/* =========================================
   PAGINATION
   ========================================= */
.navigation { margin: var(--space-3xl) 0; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: var(--space-sm); flex-wrap: wrap; }
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--suroofi-charcoal);
  border: 1px solid var(--suroofi-grey-200);
  transition: all var(--duration-fast) ease;
}
.page-numbers:hover { background: var(--suroofi-gold); color: var(--suroofi-black); border-color: var(--suroofi-gold); }
.page-numbers.current { background: var(--suroofi-gold); color: var(--suroofi-black); border-color: var(--suroofi-gold); }
.page-numbers.dots { border: none; }

/* =========================================
   RELATED POSTS
   ========================================= */
.related-posts { margin-top: var(--space-4xl); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); margin-top: var(--space-xl); }
.related-card { border-radius: var(--radius-md); overflow: hidden; background: var(--suroofi-white); border: 1px solid var(--suroofi-grey-200); }
.related-img-link { display: block; aspect-ratio: 16/10; overflow: hidden; }
.related-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) ease; }
.related-card:hover .related-img { transform: scale(1.05); }
.related-body { padding: var(--space-md); }
.related-date { font-size: 0.75rem; color: var(--suroofi-grey-600); }
.related-title { font-size: 0.95rem; margin-top: 4px; }
.related-title a { color: var(--suroofi-black); }
.related-title a:hover { color: var(--suroofi-gold); }

/* =========================================
   ARTICLE — SINGLE POST
   ========================================= */
.suroofi-article { max-width: 800px; margin: 0 auto; padding: var(--space-4xl) 0; }
.article-header { margin-bottom: var(--space-2xl); }
.article-meta { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-md); }
.article-category a { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--suroofi-gold); }
.article-date, .article-read-time { font-size: 0.8rem; color: var(--suroofi-grey-600); }
.article-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: var(--space-lg); }
.article-excerpt { font-size: 1.1rem; color: var(--suroofi-grey-600); font-style: italic; margin-bottom: var(--space-lg); }
.article-author { display: flex; align-items: center; gap: var(--space-md); }
.article-author .author-avatar { border-radius: var(--radius-full); }
.article-author .author-name { font-weight: 600; font-size: 0.9rem; }
.article-featured-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--space-2xl); }
.article-body { font-size: 1rem; line-height: 1.9; color: var(--suroofi-charcoal); }
.article-body h2, .article-body h3, .article-body h4 { margin: var(--space-2xl) 0 var(--space-md); }
.article-body blockquote { border-left: 4px solid var(--suroofi-gold); padding: var(--space-lg) var(--space-xl); background: var(--suroofi-cream); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: var(--space-xl) 0; font-style: italic; }
.article-footer { margin-top: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid var(--suroofi-grey-200); }
.article-tags { font-size: 0.85rem; color: var(--suroofi-grey-600); }
.article-tags a { display: inline-flex; margin: 2px; padding: 4px 12px; background: var(--suroofi-grey-100); border-radius: var(--radius-full); color: var(--suroofi-charcoal); font-size: 0.8rem; }
.article-tags a:hover { background: var(--suroofi-gold); color: var(--suroofi-black); }

/* =========================================
   NO RESULTS / EMPTY STATES
   ========================================= */
.no-results { text-align: center; padding: var(--space-4xl) 0; }
.no-results h2, .not-found h2 { font-size: 1.5rem; margin-bottom: var(--space-md); }
.no-results p, .not-found p { color: var(--suroofi-grey-600); margin-bottom: var(--space-xl); }

/* =========================================
   SEARCH PAGE
   ========================================= */
.search-count { font-size: 0.9rem; color: var(--suroofi-grey-600); margin-bottom: var(--space-xl); }
.inline-search { display: flex; gap: var(--space-sm); margin-top: var(--space-lg); }
.inline-search input { flex: 1; padding: 0.75rem var(--space-lg); border: 1px solid var(--suroofi-grey-200); border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 0.9rem; }

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 1024px) {
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .newsletter-inner { flex-direction: column; }
  .newsletter-decoration { display: none; }
  .quick-view-inner { grid-template-columns: 1fr; }
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .topbar-links { display: none; }
  .main-navigation { display: none; }
  .mobile-menu-toggle { display: flex; }

  .footer-top-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .hero-content { padding: calc(var(--space-5xl) * 1.5) 0 var(--space-5xl); }
  .hero-actions { flex-direction: column; }
  .hero-actions .suroofi-btn { justify-content: center; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .newsletter-form .form-group { flex-direction: column; }
  .newsletter-form input[type="email"] { width: 100%; }

  .related-grid { grid-template-columns: 1fr; }

  .back-to-top { bottom: var(--space-lg); right: var(--space-lg); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .why-grid { grid-template-columns: 1fr; }
}
