/*
Theme Name: Caroline Fine Jewelry
Theme URI: https://adamkarpovich.com
Author: Adam
Description: קרוליין — Light luxury Hebrew jewelry theme in platinum-silver & diamond-blue on a pearl backdrop, RTL layout, dramatic animations.
Version: 4.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: elia-jewelry
*/

/* ═══════════════════════════════════════════════════
   Caroline Fine Jewelry v4 — Platinum & Diamond Blue, Light Luxury RTL
   ═══════════════════════════════════════════════════ */

:root {
  /* ── Platinum, Silver & Diamond Blue ──
     NOTE: the historical "gold" variables now hold the diamond-blue
     primary, so existing rules recolor without being renamed. */
  --color-gold: #4F8FB8;          /* primary — diamond blue */
  --color-gold-light: #86BBDA;
  --color-gold-dark: #3A7297;
  --color-silver: #A6B4C0;        /* platinum */
  --color-silver-light: #D8E0E8;
  --color-silver-dark: #7C8A97;
  --color-diamond: #7FB6D6;       /* gem blue accent */
  --color-diamond-light: #ABD4EA;
  --color-diamond-dark: #5793B8;

  --color-primary: var(--color-gold);
  --color-primary-light: var(--color-gold-light);
  --color-primary-dark: var(--color-gold-dark);
  --color-accent: #233240;        /* cool slate (dark) */
  --color-accent-light: #36495A;

  /* Light pearl backgrounds */
  --color-bg: #F5F7FA;
  --color-bg-elevated: #FFFFFF;
  --color-bg-card: #FFFFFF;
  --color-bg-glass: rgba(255, 255, 255, 0.75);
  --color-surface: #ECF0F4;
  --color-surface-hover: #E3E9EF;
  --color-border: rgba(0, 0, 0, 0.07);
  --color-border-hover: rgba(79, 143, 184, 0.4);

  /* Cool slate text on light */
  --color-text: #233240;
  --color-text-secondary: #5A6B78;
  --color-text-muted: #97A4AE;

  /* Typography — Rubik / Inter (matching peer-jewelry.com) */
  --font-heading: 'Rubik', 'Inter', sans-serif;
  --font-body: 'Rubik', 'Inter', sans-serif;
  --font-accent: 'Rubik', 'Inter', 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: 5rem;
  --space-4xl: 8rem;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows — soft light shadows */
  --shadow-sm: 0 2px 8px 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.1);
  --shadow-glow: 0 0 40px rgba(79, 143, 184, 0.15);
  --shadow-gold: 0 0 40px rgba(79, 143, 184, 0.1);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Layout */
  --navbar-height: 80px;
  --max-width: 1280px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  direction: rtl;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  direction: rtl;
  text-align: right;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

input,
textarea,
select {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  outline: none;
  transition: border-color var(--transition-fast);
  direction: rtl;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79, 143, 184, 0.1);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--color-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--color-silver);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */

@keyframes textReveal {
  from {
    transform: translateY(120%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.text-reveal {
  overflow: hidden;
  display: inline-block;
}

.text-reveal>span {
  display: inline-block;
  animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes gradientShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.shimmer-text {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 20%, var(--color-gold-light) 35%, var(--color-diamond-light) 50%, var(--color-silver-light) 65%, var(--color-gold) 80%, var(--color-gold-dark) 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShimmer 4s ease infinite;
}

@keyframes aurora {

  0%,
  100% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 100%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 0%;
  }
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translate(var(--dx, 50px), var(--dy, -200px)) rotate(360deg);
    opacity: 0;
  }
}

@keyframes shimmerSweep {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }

  100% {
    transform: translateX(200%) rotate(25deg);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(79, 143, 184, 0.08);
  }

  50% {
    box-shadow: 0 0 40px rgba(79, 143, 184, 0.2), 0 0 80px rgba(184, 184, 192, 0.08);
  }
}

@keyframes rotateSpark {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Stagger children */
.stagger>* {
  opacity: 0;
}

.stagger.stagger--visible>* {
  animation: fadeInUp 0.6s ease forwards;
}

.stagger.stagger--visible>*:nth-child(1) {
  animation-delay: 0.05s;
}

.stagger.stagger--visible>*:nth-child(2) {
  animation-delay: 0.12s;
}

.stagger.stagger--visible>*:nth-child(3) {
  animation-delay: 0.19s;
}

.stagger.stagger--visible>*:nth-child(4) {
  animation-delay: 0.26s;
}

.stagger.stagger--visible>*:nth-child(5) {
  animation-delay: 0.33s;
}

.stagger.stagger--visible>*:nth-child(6) {
  animation-delay: 0.4s;
}

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.reveal--visible {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════
   BADGES & SPINNER
   ═══════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--color-primary);
  color: #fff;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-surface);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ═══════════════════════════════════════════════════
   PRELOADER / LOADING SCREEN
   ═══════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(137, 180, 212, 0.12) 0%, transparent 70%),
    var(--color-bg);
  opacity: 1;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-loading {
  overflow: hidden;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.preloader__logo {
  width: min(300px, 64vw);
  height: auto;
  animation: preloaderPulse 1.8s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.045); opacity: 1; }
}

.preloader__bar {
  width: 140px;
  height: 2px;
  background: rgba(79, 143, 184, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-diamond), transparent);
  animation: preloaderBar 1.1s ease-in-out infinite;
}

@keyframes preloaderBar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(25deg);
  pointer-events: none;
}

.btn:hover::after {
  animation: shimmerSweep 0.6s ease forwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(79, 143, 184, 0.3);
}

.btn-outline {
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(35, 50, 64, 0.2);
}

.btn-ghost {
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

.btn-ghost:hover {
  color: var(--color-text);
  background: var(--color-surface);
  border-color: var(--color-border-hover);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* RTL: flip arrow icons in buttons */
.btn svg {
  transform: scaleX(-1);
}

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 100;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(79, 143, 184, 0.12);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  flex-direction: row-reverse;
  /* RTL flip */
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  z-index: 101;
  flex-direction: row-reverse;
}

.navbar__logo-icon {
  color: var(--color-gold);
  display: flex;
  align-items: center;
  animation: rotateSpark 20s linear infinite;
}

.navbar__logo-icon svg {
  width: 26px;
  height: 26px;
}

/* Brand logo image — CJ monogram icon */
.navbar__logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.navbar__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: right;
}

.navbar__brand-name {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold), var(--color-diamond));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__brand-sub {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  flex-direction: row-reverse;
}

.navbar__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-base);
  padding: var(--space-xs) 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-diamond));
  transition: all var(--transition-base);
  transform: translateX(50%);
  border-radius: 1px;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--color-text);
}

.navbar__link.active::after,
.navbar__link:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__cart-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.navbar__cart-link:hover {
  color: var(--color-gold);
}

.navbar__cart-link .badge {
  position: absolute;
  top: -8px;
  left: -10px;
  font-size: 0.6rem;
  min-width: 18px;
  height: 18px;
}

.navbar__menu-toggle {
  display: none;
  color: var(--color-text);
  z-index: 101;
  background: none;
  border: none;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.home__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.home__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(79, 143, 184, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 40%, rgba(137, 180, 212, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(184, 184, 192, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(250, 250, 248, 0.98) 0%, var(--color-bg) 100%);
  background-size: 200% 200%;
  animation: aurora 20s ease infinite;
}

.home__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home__particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home__particle--dot {
  width: 3px;
  height: 3px;
  background: var(--color-gold);
  opacity: 0;
  animation: floatParticle var(--duration, 8s) var(--delay, 0s) ease-in-out infinite;
}

.home__particle--diamond {
  width: 6px;
  height: 6px;
  background: var(--color-silver);
  opacity: 0;
  transform: rotate(45deg);
  border-radius: 1px;
  animation: floatParticle var(--duration, 10s) var(--delay, 0s) ease-in-out infinite;
}

.home__particle--ring {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(137, 180, 212, 0.35);
  background: transparent;
  opacity: 0;
  animation: floatParticle var(--duration, 12s) var(--delay, 0s) ease-in-out infinite;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  padding: calc(var(--navbar-height) + var(--space-xl)) 0 var(--space-3xl);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--space-xl);
}

.hero__label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 0.6s 0.2s ease forwards;
}

.hero__label-diamond {
  display: inline-block;
  animation: rotateSpark 6s linear infinite;
  margin-left: var(--space-xs);
}

.hero__title {
  margin-bottom: var(--space-lg);
}

/* Hero brand logo (replaces the "Caroline" wordmark) */
.hero__logo-line {
  display: block;
  margin-bottom: var(--space-md);
}

.hero__logo-img {
  width: min(360px, 72vw);
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 10px 32px rgba(79, 143, 184, 0.22));
  opacity: 0;
  animation: fadeInUp 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__title-line {
  display: block;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.9;
  overflow: hidden;
  color: var(--color-accent);
}

.hero__title-line>span {
  display: inline-block;
  opacity: 0;
  animation: textReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}

.hero__title-line--accent {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--color-text-secondary);
  margin-top: var(--space-md);
}

.hero__title-line--accent>span {
  animation-delay: 0.8s;
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: var(--space-xl) auto;
  opacity: 0;
  animation: fadeIn 1s 1s ease forwards;
}

.hero__slogan {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--color-gold-dark);
  opacity: 0;
  animation: fadeInUp 0.6s 1.1s ease forwards;
}

.hero__subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  animation: fadeInUp 0.6s 1.3s ease forwards;
}

.hero__actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.6s 1.5s ease forwards;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.hero__scroll-line::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 50%;
  margin-right: -1px;
  animation: floatParticle 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
  white-space: nowrap;
  background: var(--color-bg-elevated);
}

.marquee__track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0 var(--space-2xl);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
}

.marquee__item svg {
  color: var(--color-gold);
}

.marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-diamond-dark);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--color-accent);
}

.section-title--gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-diamond-dark) 40%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-diamond), var(--color-silver));
  margin: var(--space-md) auto 0;
  border-radius: 1px;
}

/* ═══════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════ */
.features {
  padding: var(--space-3xl) 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.feature::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(79, 143, 184, 0.08), transparent);
  transform: rotate(25deg);
  pointer-events: none;
}

.feature:hover::after {
  animation: shimmerSweep 0.8s ease forwards;
}

.feature__icon {
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
}

.feature__icon svg {
  width: 32px;
  height: 32px;
}

.feature h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.02em;
}

.feature p {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   CATEGORY CARDS
   ═══════════════════════════════════════════════════ */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.category-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  text-decoration: none;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: rgba(79, 143, 184, 0.3);
}

.category-card__image-wrap {
  position: absolute;
  inset: 0;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.15);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(35, 50, 64, 0.3) 60%, rgba(35, 50, 64, 0.85) 100%);
  transition: background 0.5s ease;
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(180deg, transparent 0%, transparent 20%, rgba(35, 50, 64, 0.2) 50%, rgba(35, 50, 64, 0.8) 100%);
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-xl) var(--space-2xl);
  z-index: 1;
  text-align: right;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-card__content {
  transform: translateY(0);
}

.category-card__content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: #fff;
}

.category-card__content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.1s ease;
}

.category-card:hover .category-card__content p {
  opacity: 1;
  transform: translateY(0);
}

.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.78rem;
  color: var(--color-gold-light);
  font-weight: 500;
  transition: gap 0.3s ease;
}

.category-card:hover .category-card__link {
  gap: var(--space-sm);
}

/* ═══════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 143, 184, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-15deg);
  z-index: 2;
  pointer-events: none;
}

.product-card:hover::before {
  animation: shimmerSweep 0.7s ease forwards;
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-surface);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card__image {
  transform: scale(1.1);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(79, 143, 184, 0.3);
}

.product-card__info {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  min-height: 150px;
  text-align: right;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__pricing {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.product-card__price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-gold-dark);
}

.product-card__original-price {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-card__actions-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-direction: row-reverse;
}

.product-card__view-btn {
  flex: 1;
  padding: 11px;
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.8rem;
  text-align: center;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover .product-card__view-btn {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #fff;
  border-color: var(--color-gold);
}

.product-card__cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--transition-base);
}

.product-card__cart-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(79, 143, 184, 0.08);
}

/* ═══════════════════════════════════════════════════
   FEATURED
   ═══════════════════════════════════════════════════ */
.featured__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ═══════════════════════════════════════════════════
   BRAND STORY
   ═══════════════════════════════════════════════════ */
.brand-story {
  position: relative;
  overflow: hidden;
}

.brand-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(79, 143, 184, 0.04), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(184, 184, 192, 0.03), transparent 60%);
  pointer-events: none;
}

.brand-story__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.brand-story__desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 2;
  margin-bottom: var(--space-md);
}

.brand-story__highlight {
  color: var(--color-gold-dark);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--color-accent);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-gold-light);
  text-decoration: none;
  margin-bottom: var(--space-md);
  flex-direction: row-reverse;
}

.footer__logo-icon svg {
  width: 28px;
  height: 28px;
}

.footer__logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer__logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-silver-light), var(--color-silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
}

.footer__slogan {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__slogan-en {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  margin-top: var(--space-xs);
}

.footer__nav h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-gold-light);
  margin-bottom: var(--space-lg);
}

.footer__nav a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  margin-bottom: var(--space-sm);
  padding-right: 0;
}

.footer__nav a:hover {
  color: var(--color-gold-light);
  padding-right: 6px;
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
}

.footer__socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
}

.footer__socials a:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold);
  background: rgba(79, 143, 184, 0.15);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  flex-direction: row-reverse;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--color-gold-light);
}

/* ═══════════════════════════════════════════════════
   SINGLE PRODUCT
   ═══════════════════════════════════════════════════ */
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  padding-top: calc(var(--navbar-height) + var(--space-2xl));
  direction: rtl;
}

.product-gallery__main {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.product-gallery__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.product-gallery__thumb:hover,
.product-gallery__thumb--active {
  border-color: var(--color-gold);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info__category {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.product-info__title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.product-info__price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-xl);
}

.product-info__price del {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-right: var(--space-sm);
}

.product-info__desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-xl);
}

.product-info__meta {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
}

.product-info__meta-item {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}

.product-info__meta-label {
  color: var(--color-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.single_add_to_cart_button {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 18px 40px !important;
  border-radius: var(--radius-full) !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.06em !important;
  transition: all var(--transition-base) !important;
  border: none !important;
  cursor: pointer;
  width: 100%;
}

.single_add_to_cart_button:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold)) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79, 143, 184, 0.3);
}

.quantity input[type="number"] {
  background: var(--color-bg-elevated) !important;
  border: 1px solid var(--color-border) !important;
  color: var(--color-text) !important;
  border-radius: var(--radius-full) !important;
  padding: 12px !important;
  width: 80px !important;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE OVERRIDES
   ═══════════════════════════════════════════════════ */
.woocommerce-result-count,
.woocommerce-ordering {
  color: var(--color-text-secondary);
}

.woocommerce-ordering select {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 8px 12px;
  border-radius: var(--radius-full);
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: none !important;
}

.woocommerce-cart .woocommerce {
  padding-top: calc(var(--navbar-height) + var(--space-2xl));
}

.woocommerce table.shop_table {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-collapse: collapse;
  direction: rtl;
}

.woocommerce table.shop_table th {
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.woocommerce table.shop_table td {
  color: var(--color-text);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.woocommerce table.shop_table img {
  border-radius: var(--radius-md);
  width: 72px;
}

.woocommerce a.checkout-button {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full) !important;
}

.page-content {
  padding-top: calc(var(--navbar-height) + var(--space-2xl));
  min-height: 60vh;
}

.page-content h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-xl);
}

.page-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

/* WC Notices */
.woocommerce-message,
.woocommerce-info {
  background: var(--color-bg-elevated) !important;
  border: 1px solid var(--color-border) !important;
  border-right: 3px solid var(--color-gold) !important;
  color: var(--color-text) !important;
  border-radius: var(--radius-md);
  direction: rtl;
}

.woocommerce-error {
  background: var(--color-bg-elevated) !important;
  border: 1px solid rgba(220, 38, 38, 0.2) !important;
  border-right: 3px solid #dc2626 !important;
  color: var(--color-text) !important;
  border-radius: var(--radius-md);
}

.woocommerce-message a,
.woocommerce-info a {
  color: var(--color-gold-dark);
}

/* ═══════════════════════════════════════════════════
   BLOG — listing + cards
   ═══════════════════════════════════════════════════ */
.blog-intro {
  max-width: 620px;
  margin: var(--space-md) auto 0;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.blog-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.blog-card__link-wrap { display: block; text-decoration: none; color: inherit; }

.blog-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-surface);
}

.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.06); }

.blog-card__body { padding: var(--space-lg); text-align: right; }

.blog-card__cat {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--color-diamond-dark);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.blog-card__date { font-size: 0.74rem; color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.blog-card__excerpt { font-size: 0.88rem; color: var(--color-text-secondary); line-height: 1.7; margin-bottom: var(--space-md); }

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-dark);
}
.blog-card__link svg { transform: scaleX(-1); }

.blog-pagination { margin-top: var(--space-2xl); text-align: center; }
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  margin: 0 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-base);
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #fff;
  border-color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════
   BLOG — single post
   ═══════════════════════════════════════════════════ */
.single-post__container { max-width: 820px; }

.single-post__crumbs {
  display: flex;
  gap: var(--space-sm);
  flex-direction: row-reverse;
  justify-content: flex-end;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}
.single-post__crumbs a { color: var(--color-text-secondary); }
.single-post__crumbs a:hover { color: var(--color-gold-dark); }

.single-post__header { text-align: right; margin-bottom: var(--space-xl); }

.single-post__cat {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--color-diamond-dark);
  margin-bottom: var(--space-sm);
}

.single-post__title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.single-post__meta {
  display: flex;
  gap: var(--space-sm);
  flex-direction: row-reverse;
  justify-content: flex-end;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.single-post__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-diamond));
  margin-top: var(--space-lg);
  margin-right: 0;
  border-radius: 1px;
}

.single-post__hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  border: 1px solid var(--color-border);
}
.single-post__hero-image img { width: 100%; height: auto; display: block; }

/* Article body typography */
.post-content { text-align: right; color: var(--color-text-secondary); font-size: 1.02rem; line-height: 1.95; }
.post-content > * + * { margin-top: var(--space-lg); }
.post-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: var(--space-2xl);
  line-height: 1.3;
}
.post-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: var(--space-xl);
}
.post-content p { color: var(--color-text-secondary); }
.post-content strong { color: var(--color-text); font-weight: 600; }
.post-content a { color: var(--color-gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: var(--color-gold); }
.post-content ul, .post-content ol { padding-right: var(--space-xl); }
.post-content li { margin-bottom: var(--space-sm); }
.post-content ul li::marker { color: var(--color-gold); }
.post-content blockquote {
  border-right: 3px solid var(--color-gold);
  background: var(--color-surface);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-style: italic;
  color: var(--color-text);
}
.post-content img { border-radius: var(--radius-lg); }

.single-post__tags { margin-top: var(--space-2xl); font-size: 0.82rem; color: var(--color-text-muted); }
.single-post__tags a { color: var(--color-gold-dark); }
.single-post__tags-label { font-weight: 600; color: var(--color-text-secondary); }

.single-post__cta {
  margin-top: var(--space-3xl);
  background: linear-gradient(135deg, var(--color-surface), var(--color-bg-elevated));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
}
.single-post__cta h3 { font-size: 1.4rem; color: var(--color-accent); margin-bottom: var(--space-sm); }
.single-post__cta p { color: var(--color-text-secondary); max-width: 480px; margin: 0 auto var(--space-lg); }

.single-post__related { margin-top: var(--space-3xl); }
.single-post__related-title { font-size: 1.6rem; color: var(--color-accent); margin-bottom: var(--space-xl); text-align: right; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-product-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 64px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .navbar__menu-toggle {
    display: flex;
  }

  .navbar__logo-img {
    height: 46px;
  }

  .navbar__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2xl);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    z-index: 100;
  }

  .navbar__links--open {
    transform: translateX(0);
  }

  .navbar__link {
    font-size: 1.2rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .feature {
    padding: var(--space-xl) var(--space-lg);
  }

  .feature h3 {
    font-size: 1rem;
  }

  .feature p {
    font-size: 0.85rem;
  }

  .categories__grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .single-post__cta {
    padding: var(--space-xl) var(--space-lg);
  }

  .category-card {
    aspect-ratio: 16/9;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .product-card__name {
    font-size: 0.8rem;
  }

  .product-card__view-btn {
    padding: 9px;
    font-size: 0.72rem;
  }

  .product-card__cart-btn {
    width: 38px;
  }

  .product-card__info {
    padding: var(--space-sm) var(--space-md) var(--space-md);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.88rem;
  }

  .hero {
    padding: calc(var(--navbar-height) + var(--space-lg)) 0 var(--space-2xl);
  }

  .hero__content {
    padding: 0 var(--space-md);
  }

  .hero__title-line {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .hero__title-line--accent {
    letter-spacing: 0.2em;
    font-size: clamp(1rem, 4vw, 1.4rem);
  }

  .hero__slogan {
    font-size: 1.15rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: var(--space-md);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .marquee__item {
    padding: 0 var(--space-lg);
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }
}