/* ============================================
   AURA STONE — Design System & Global Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* --- CSS Variables (Design Tokens) --- */
:root {
  /* Colors */
  --color-green:   #1F3A2E;
  --color-gold:    #B08D57;
  --color-ivory:   #F7F4ED;
  --color-beige:   #CBB89A;
  --color-charcoal:#1C1C1C;
  --color-white:   #FFFFFF;

  --color-success: #2E7D32;
  --color-error:   #C62828;
  --color-warning: #ED6C02;

  --gradient-premium: linear-gradient(135deg, #1F3A2E 0%, #B08D57 100%);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  /* Type Scale */
  --text-h1:    48px;
  --text-h2:    36px;
  --text-h3:    28px;
  --text-h4:    22px;
  --text-body:  16px;
  --text-small: 14px;

  /* Spacing (8px grid) */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   32px;
  --space-xxl:  48px;
  --space-xxxl: 64px;

  /* Shadows */
  --shadow-soft:    0 4px 20px rgba(0,0,0,0.05);
  --shadow-premium: 0 10px 40px rgba(0,0,0,0.10);
  --shadow-card:    0 2px 12px rgba(0,0,0,0.06);

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }

p { font-size: var(--text-body); line-height: 1.8; }

.text-gold   { color: var(--color-gold); }
.text-green  { color: var(--color-green); }
.text-center { text-align: center; }

.section-label {
  font-size: 11px;
  font-family: var(--font-body);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  display: block;
  margin-bottom: var(--space-md);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  height: 48px;
  padding: 0 var(--space-lg);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
}
.btn-primary:hover {
  background: #162c22;
  transform: translateY(-1px);
  box-shadow: var(--shadow-premium);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}
.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-premium {
  background: var(--gradient-premium);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(31,58,46,0.25);
}
.btn-premium:hover {
  box-shadow: 0 8px 32px rgba(31,58,46,0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-charcoal);
  border: 1.5px solid rgba(28,28,28,0.2);
}
.btn-ghost:hover {
  border-color: var(--color-charcoal);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-green);
}
.btn-white:hover {
  background: var(--color-ivory);
  transform: translateY(-1px);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(247, 244, 237, 0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-green);
}

.nav-logo .logo-sub {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 400;
  margin-top: 2px;
}

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

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

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-charcoal);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-green);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-charcoal);
  transition: all var(--transition);
}

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-ivory);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-charcoal);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--color-gold); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-charcoal);
  background: none;
  border: none;
  font-family: var(--font-body);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--color-ivory);
  overflow: hidden;
  position: relative;
}

.hero-content {
  padding: 120px 0 80px var(--space-xl);
  max-width: 560px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xxl);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  color: var(--color-green);
  margin-bottom: var(--space-lg);
  font-style: italic;
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-gold);
}

.hero-subtitle {
  font-size: 15px;
  color: #5a5a5a;
  font-weight: 300;
  max-width: 420px;
  margin-bottom: var(--space-xl);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-visual {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-ivory) 0%, transparent 15%);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0.5;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-charcoal);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTION COMMON
   ============================================ */

.section {
  padding: var(--space-xxxl) 0;
}

.section-lg {
  padding: 96px 0;
}

.section-header {
  margin-bottom: var(--space-xxl);
}

.section-header h2 {
  color: var(--color-green);
  margin-bottom: var(--space-md);
}

.section-header p {
  color: #6b6b6b;
  font-weight: 300;
  max-width: 500px;
  font-size: 15px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin: 0 auto;
}

/* Divider line */
.divider {
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-md) 0;
}

.divider.centered { margin: var(--space-md) auto; }

/* ============================================
   CATEGORY CARDS
   ============================================ */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

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

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,58,46,0.85) 0%, rgba(31,58,46,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
}

.category-card-overlay h3 {
  color: var(--color-white);
  font-size: 22px;
  margin-bottom: var(--space-xs);
  font-weight: 400;
}

.category-card-overlay span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.category-card-overlay .arrow {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition);
}

.category-card:hover .arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

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

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

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-gold);
  color: white;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

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

.product-card-category {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.product-card-body h3 {
  font-size: 20px;
  color: var(--color-green);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.product-card-body p {
  font-size: 13px;
  color: #7a7a7a;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-charcoal);
  font-weight: 500;
}

.product-price .currency {
  font-size: 14px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 16px;
}

.btn-icon:hover {
  background: var(--color-gold);
  color: white;
}

/* ============================================
   CRAFTSMANSHIP SECTION
   ============================================ */

.craft-section {
  background: var(--color-white);
  padding: 96px 0;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xxxl);
}

.craft-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-image-badge {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  background: var(--color-green);
  color: white;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
}

.craft-image-badge .number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-gold);
  display: block;
  line-height: 1;
}

.craft-image-badge .label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.craft-content h2 {
  color: var(--color-green);
  margin-bottom: var(--space-lg);
}

.craft-content > p {
  color: #6b6b6b;
  font-weight: 300;
  font-size: 15px;
  margin-bottom: var(--space-xl);
  line-height: 1.9;
}

.craft-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.craft-point {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.craft-point-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: rgba(176,141,87,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 16px;
}

.craft-point-text h4 {
  font-size: 16px;
  color: var(--color-green);
  margin-bottom: 4px;
  font-weight: 500;
}

.craft-point-text p {
  font-size: 13px;
  color: #7a7a7a;
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
  background: var(--color-ivory);
  padding: 96px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-premium);
}

.testimonial-quote {
  font-size: 40px;
  color: var(--color-gold);
  line-height: 1;
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  opacity: 0.4;
}

.testimonial-card p {
  font-size: 14px;
  color: #5a5a5a;
  font-weight: 300;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-green);
}

.testimonial-info h4 {
  font-size: 15px;
  color: var(--color-green);
  font-weight: 500;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 12px;
  color: #9a9a9a;
  font-weight: 300;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: var(--space-sm);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--color-green);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: rgba(176,141,87,0.05);
  transform: rotate(-20deg);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: rgba(176,141,87,0.05);
  transform: rotate(-20deg);
}

.cta-banner .section-label { color: rgba(176,141,87,0.7); }

.cta-banner h2 {
  color: var(--color-white);
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-group {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-green);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xxxl);
  margin-bottom: var(--space-xxl);
}

.footer-brand .nav-logo .logo-main {
  color: var(--color-white);
  font-size: 24px;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-top: var(--space-md);
  max-width: 280px;
}

.footer-col h4 {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: var(--color-gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.footer-contact-item .icon {
  color: var(--color-gold);
  font-size: 14px;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(176,141,87,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(176,141,87,0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

/* ============================================
   FORM INPUTS
   ============================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-charcoal);
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-md);
  border: 1.5px solid rgba(28,28,28,0.15);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-charcoal);
  font-weight: 300;
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(176,141,87,0.1);
}

.form-input::placeholder {
  color: #b0b0b0;
}

textarea.form-input {
  height: 140px;
  padding: var(--space-md);
  resize: vertical;
  line-height: 1.7;
}

/* ============================================
   SHOP PAGE
   ============================================ */

.page-hero {
  padding: 140px 0 80px;
  background: var(--color-ivory);
  border-bottom: 1px solid rgba(203,184,154,0.3);
}

.page-hero h1 {
  color: var(--color-green);
  font-style: italic;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-xxxl);
  padding: var(--space-xxxl) 0;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 100px;
}

.filter-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(28,28,28,0.08);
}

.filter-section:last-child {
  border-bottom: none;
}

.filter-section h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 0;
  cursor: pointer;
  font-size: 13px;
  color: #6b6b6b;
  font-weight: 300;
  transition: color var(--transition);
}

.filter-option:hover { color: var(--color-green); }

.filter-option input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 14px;
  height: 14px;
}

.price-range {
  padding: var(--space-sm) 0;
}

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

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #9a9a9a;
  margin-top: var(--space-sm);
}

.shop-main {}

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

.shop-count {
  font-size: 13px;
  color: #9a9a9a;
  font-weight: 300;
}

.shop-sort select {
  border: 1.5px solid rgba(28,28,28,0.15);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-charcoal);
  background: white;
  cursor: pointer;
  outline: none;
}

.products-grid-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-detail {
  padding: 120px 0 var(--space-xxxl);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-images {
  position: sticky;
  top: 100px;
}

.product-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: var(--space-md);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.product-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.product-thumb.active { border-color: var(--color-gold); }

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {}

.product-breadcrumb {
  font-size: 12px;
  color: #9a9a9a;
  margin-bottom: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.product-breadcrumb a:hover { color: var(--color-gold); }

.product-info h1 {
  font-size: 38px;
  color: var(--color-green);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.product-info .price {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-charcoal);
  margin-bottom: var(--space-xl);
}

.product-info .price .currency {
  font-size: 18px;
  color: var(--color-gold);
  font-family: var(--font-body);
}

.product-divider {
  width: 100%;
  height: 1px;
  background: rgba(28,28,28,0.08);
  margin: var(--space-xl) 0;
}

.product-description {
  font-size: 15px;
  color: #5a5a5a;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: var(--space-xl);
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.product-spec {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(28,28,28,0.06);
}

.product-spec .spec-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9a9a;
  font-weight: 500;
}

.product-spec .spec-value {
  font-size: 13px;
  color: var(--color-charcoal);
  font-weight: 400;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  height: 52px;
  border-radius: var(--radius-md);
  background: #25D366;
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  width: 100%;
}

.whatsapp-btn:hover {
  background: #20b858;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}

.whatsapp-icon {
  font-size: 18px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  padding: 140px 0 96px;
  background: var(--color-green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: 'AURA';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 200px;
  color: rgba(255,255,255,0.03);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.about-hero .section-label { color: rgba(176,141,87,0.7); }

.about-hero h1 {
  color: var(--color-white);
  font-size: clamp(36px, 4vw, 56px);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.about-hero p {
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  font-size: 16px;
  max-width: 560px;
  margin: var(--space-lg) auto 0;
  position: relative;
  z-index: 1;
}

.about-story {
  padding: 96px 0;
  background: var(--color-white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-content h2 {
  color: var(--color-green);
  margin-bottom: var(--space-lg);
}

.about-story-content p {
  color: #6b6b6b;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.about-values {
  padding: 96px 0;
  background: var(--color-ivory);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.value-card {
  text-align: center;
  padding: var(--space-xxl) var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition);
}

.value-card:hover { box-shadow: var(--shadow-premium); }

.value-icon {
  font-size: 32px;
  margin-bottom: var(--space-lg);
}

.value-card h3 {
  color: var(--color-green);
  margin-bottom: var(--space-md);
  font-size: 22px;
}

.value-card p {
  color: #7a7a7a;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
  padding: 140px 0 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h1 {
  color: var(--color-green);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.contact-info > p {
  color: #6b6b6b;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: var(--space-xxl);
  max-width: 380px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition);
}

.contact-method:hover { box-shadow: var(--shadow-premium); }

.contact-method-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: rgba(176,141,87,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 18px;
}

.contact-method-text h4 {
  font-size: 15px;
  color: var(--color-green);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-method-text p, .contact-method-text a {
  font-size: 13px;
  color: #7a7a7a;
  font-weight: 300;
  transition: color var(--transition);
}

.contact-method-text a:hover { color: var(--color-gold); }

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xxl);
  box-shadow: var(--shadow-soft);
}

.contact-form-card h2 {
  color: var(--color-green);
  font-size: 28px;
  margin-bottom: var(--space-xxl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  background: var(--color-green);
  padding: var(--space-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-gold);
  font-weight: 500;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  display: block;
}

/* ============================================
   MISC UTILITIES
   ============================================ */

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-xxl);
}

/* ============================================
   PLACEHOLDER IMAGES (SVG backgrounds)
   ============================================ */

.img-placeholder {
  background: var(--color-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(31,58,46,0.25);
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 45vh; }
  .hero-visual-overlay { background: linear-gradient(to bottom, var(--color-ivory) 0%, transparent 20%); }
  .hero-content { padding: 120px var(--space-xl) 48px; max-width: 100%; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .craft-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-images { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */

@media (max-width: 768px) {
  :root {
    --text-h1: 34px;
    --text-h2: 28px;
    --text-h3: 22px;
  }

  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-xxl) 0; }
  .section-lg { padding: var(--space-xxl) 0; }

  /* Navbar */
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 100px var(--space-md) var(--space-xxl); }
  .hero-visual { height: 320px; }
  .hero h1 { font-size: 34px; }

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

  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  .products-grid-4 { grid-template-columns: 1fr 1fr; gap: var(--space-md); }

  /* Testimonials — horizontal scroll */
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: var(--space-md);
    padding-bottom: var(--space-sm);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    min-width: 280px;
    scroll-snap-align: start;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

  /* About/Contact */
  .about-story-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Shop */
  .shop-layout { grid-template-columns: 1fr; }

  /* Product detail */
  .product-detail-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .product-thumbnails { grid-template-columns: repeat(4, 1fr); }

  .cta-banner { padding: var(--space-xxl) 0; }
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Arabic:wght@300;400;500;600&display=swap');

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1.5px solid rgba(28,28,28,0.15);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 11px;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-toggle:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.lt-sep { color: rgba(28,28,28,0.2); font-size: 10px; }
.lt-active { color: var(--color-gold); font-weight: 600; }
.lt-en, .lt-ar { transition: color var(--transition); color: rgba(28,28,28,0.35); }

/* scrolled navbar: same toggle but on ivory bg */
.navbar.scrolled .lang-toggle { border-color: rgba(28,28,28,0.15); }

/* Mobile-right: lang toggle + hamburger side by side */
.nav-mobile-right {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .nav-mobile-right { display: flex; }
  .nav-menu .lang-toggle { display: none; }
}

/* ============================================
   RTL — Arabic Layout Overrides
   ============================================ */

[dir="rtl"] body,
[dir="rtl"] p,
[dir="rtl"] span,
[dir="rtl"] a,
[dir="rtl"] label,
[dir="rtl"] button,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select,
[dir="rtl"] .btn {
  font-family: 'IBM Plex Arabic', sans-serif;
  letter-spacing: 0;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: 'IBM Plex Arabic', sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
}

/* Hero eyebrow: flip line to right side */
[dir="rtl"] .hero-eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .hero-eyebrow::before { display: none; }
[dir="rtl"] .hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

/* Dividers */
[dir="rtl"] .divider { margin-left: unset; margin-right: 0; }
[dir="rtl"] .divider.centered { margin: var(--space-md) auto; }

/* Section label */
[dir="rtl"] .section-label { text-align: right; }
[dir="rtl"] .section-header.centered .section-label { text-align: center; }

/* Nav links underline */
[dir="rtl"] .nav-links a::after {
  left: unset;
  right: 0;
}

/* Timeline: flip padding and absolute positions */
[dir="rtl"] .timeline { padding-left: 0; padding-right: 40px; }
[dir="rtl"] .timeline::before { left: unset; right: 7px; }
[dir="rtl"] .timeline-item::before { left: unset; right: -36px; }
[dir="rtl"] .timeline-year { text-align: right; }

/* Craft image badge */
[dir="rtl"] .craft-image-badge { left: unset; right: var(--space-xl); }

/* Product breadcrumb */
[dir="rtl"] .product-breadcrumb { flex-direction: row-reverse; }

/* Contact method icon */
[dir="rtl"] .footer-contact-item .icon { margin-left: 0; }

/* Scroll hint */
[dir="rtl"] .hero-scroll-hint { left: unset; right: 25%; }

/* Footer social — keep ltr icons readable */
[dir="rtl"] .footer-social { flex-direction: row-reverse; }

/* Hero visual overlay: flip gradient */
[dir="rtl"] .hero-visual-overlay {
  background: linear-gradient(to left, var(--color-ivory) 0%, transparent 15%);
}

/* Shop sidebar sticky */
[dir="rtl"] .shop-sidebar { direction: rtl; }

/* Lang toggle active states per direction */
[dir="rtl"] .lt-ar { color: var(--color-gold); font-weight: 600; }
[dir="rtl"] .lt-en { color: rgba(28,28,28,0.35); font-weight: 400; }
[dir="ltr"] .lt-en { color: var(--color-gold); font-weight: 600; }

/* ============================================
   CART & CHECKOUT ADDITIONS
   ============================================ */

/* Cart icon in navbar */
.cart-nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-charcoal);
  text-decoration: none;
  padding: 4px;
  transition: color var(--transition);
}
.cart-nav-btn:hover { color: var(--color-green); }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-gold);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

/* Add to cart button on product cards */
.add-to-cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(31,58,46,.2);
  background: white;
  color: var(--color-green);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.add-to-cart-btn:hover {
  background: var(--color-green);
  color: var(--color-gold);
  border-color: var(--color-green);
  transform: scale(1.1);
}

/* Footer legal links */
.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255,255,255,.4);
  font-size: 12px;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }
[dir="ltr"] .lt-ar { color: rgba(28,28,28,0.35); font-weight: 400; }
