:root {
  --terracotta: #C4622D;
  --terracotta-light: #E8845A;
  --terracotta-dark: #9A4820;
  --sand: #F5EDDA;
  --sand-dark: #EAD9BE;
  --cream: #FAF7F2;
  --charcoal: #3D3530;
  --charcoal-light: #6B5E58;
  --gold: #B8860B;
  --gold-light: #D4A017;
  --dusty-rose: #C9908A;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;

  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 4px 24px rgba(61, 53, 48, 0.08);
  --shadow-medium: 0 8px 40px rgba(61, 53, 48, 0.14);
  --shadow-strong: 0 16px 60px rgba(61, 53, 48, 0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.75rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 0;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border: 2px solid var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  padding: 0.65rem 1.5rem;
}
.btn-ghost:hover {
  background: var(--terracotta);
  color: var(--white);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.85rem 4%;
  box-shadow: var(--shadow-soft);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo span { color: var(--terracotta); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-icon {
  width: 20px; height: 20px;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.nav-icon:hover { color: var(--terracotta); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 6% 6rem;
  position: relative;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--terracotta);
}

.hero-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--charcoal-light);
  max-width: 380px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand-dark);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--terracotta);
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--sand-dark);
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-img:hover { transform: scale(1.03); }

.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #E8D5C0 0%, #D4B896 40%, #C4A07A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--charcoal-light);
}
.hero-img-placeholder svg { width: 80px; height: 80px; opacity: 0.3; }
.hero-img-placeholder span { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.5; }

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 100px; height: 100px;
  background: var(--terracotta);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── MARQUEE ─── */
.marquee-section {
  background: var(--terracotta);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.marquee-track span::after {
  content: '✦';
  color: rgba(255,255,255,0.5);
  font-size: 0.5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
.section { padding: 6rem 6%; }
.section-sm { padding: 4rem 6%; }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--charcoal-light); max-width: 500px; font-size: 0.95rem; }

/* ─── CATEGORIES ─── */
.categories-section { background: var(--cream); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--sand-dark);
}

.category-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.category-card:nth-child(4) { grid-column: span 2; }

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

.category-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.6s ease;
}

.category-card:hover .category-img,
.category-card:hover .category-placeholder { transform: scale(1.08); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,53,48,0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(61,53,48,0.85) 0%, rgba(61,53,48,0.2) 60%);
}

.category-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: white;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.category-count {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.category-arrow {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: var(--transition);
}
.category-card:hover .category-arrow { opacity: 1; transform: translateY(0); }

/* ─── FEATURED PRODUCTS ─── */
.featured-section { background: var(--sand); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
  transition: transform 0.6s ease;
}
.product-card:hover .product-placeholder { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-new { background: var(--charcoal); color: white; }
.badge-sale { background: var(--terracotta); color: white; }
.badge-handmade { background: var(--gold); color: white; }

.product-actions {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  display: flex;
  gap: 0.5rem;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-actions { transform: translateY(0); opacity: 1; }

.product-actions .btn { flex: 1; justify-content: center; font-size: 0.7rem; padding: 0.6rem 1rem; }

.wishlist-btn {
  width: 38px; height: 38px;
  background: white;
  border: 1.5px solid var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--charcoal-light);
}
.wishlist-btn:hover { background: var(--dusty-rose); color: white; border-color: var(--dusty-rose); }

.product-info { padding: 1.25rem; }
.product-category {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.price-current {
  font-weight: 500;
  font-size: 1rem;
  color: var(--charcoal);
}
.price-original {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  text-decoration: line-through;
}

/* ─── MAKER'S STORY ─── */
.story-section {
  background: var(--charcoal);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.story-img-side {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-light);
  min-height: 500px;
}

.story-placeholder {
  width: 100%; height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, #5a4a42 0%, #3d3530 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.4;
}

.story-content {
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-content .section-label { color: var(--dusty-rose); }

.story-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.story-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.9;
}

.story-signature {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--dusty-rose);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

/* ─── TRUST BADGES ─── */
.trust-section {
  background: var(--sand);
  padding: 3.5rem 6%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--sand-dark);
  background: var(--cream);
  transition: var(--transition);
}
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.trust-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.trust-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.trust-item p {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-left: 3px solid var(--terracotta);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--charcoal-light);
}
.author-name { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); }
.author-location { font-size: 0.72rem; color: var(--charcoal-light); }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: var(--terracotta);
  padding: 5rem 6%;
  text-align: center;
}
.newsletter-section h2 { color: white; margin-bottom: 0.75rem; }
.newsletter-section p { color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; font-size: 0.95rem; }

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  border-right: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form .btn {
  background: var(--charcoal);
  color: white;
  border: 1px solid var(--charcoal);
  white-space: nowrap;
}
.newsletter-form .btn:hover { background: black; }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 5rem 6% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .nav-logo { color: white; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--terracotta); border-color: var(--terracotta); color: white; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--dusty-rose); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: var(--transition);
  animation: pulse-wa 2.5s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7); }
}

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61,53,48,0.5);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 420px; height: 100%;
  background: var(--cream);
  z-index: 1200;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-strong);
}
.cart-drawer.open { right: 0; }

.cart-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 { font-size: 1.25rem; }
.cart-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal-light);
  font-size: 1.2rem;
  transition: var(--transition);
}
.cart-close:hover { color: var(--terracotta); }

.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--charcoal-light);
}
.cart-empty span { font-size: 3rem; display: block; margin-bottom: 1rem; }
.cart-empty p { font-size: 0.9rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand-dark);
}
.cart-item-img {
  width: 70px; height: 90px;
  object-fit: cover;
  background: var(--sand-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.25rem; }
.cart-item-price { font-size: 0.85rem; color: var(--terracotta); font-weight: 500; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--sand-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--terracotta); color: white; border-color: var(--terracotta); }
.qty-num { font-size: 0.85rem; min-width: 20px; text-align: center; }
.cart-item-remove { color: var(--charcoal-light); font-size: 0.75rem; cursor: pointer; margin-top: 0.4rem; }
.cart-item-remove:hover { color: var(--terracotta); }

.cart-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--sand-dark);
  background: var(--white);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.cart-total span { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.cart-total strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--charcoal); }
.cart-footer .btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; }
.cart-note { font-size: 0.72rem; color: var(--charcoal-light); text-align: center; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--sand);
  padding: 10rem 6% 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: var(--sand-dark);
  opacity: 0.4;
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--charcoal-light); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ─── SHOP PAGE ─── */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  padding: 4rem 6%;
}

.shop-sidebar h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sand-dark);
}

.filter-group { margin-bottom: 2rem; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--charcoal-light);
  transition: color 0.2s;
}
.filter-option:hover { color: var(--terracotta); }
.filter-option input[type="checkbox"] { accent-color: var(--terracotta); }

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.results-count { font-size: 0.85rem; color: var(--charcoal-light); }
.sort-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--sand-dark);
  background: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--charcoal);
  outline: none;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ─── PRODUCT DETAIL ─── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 8rem 6% 5rem;
  align-items: start;
}

.product-gallery { position: sticky; top: 100px; }
.main-image {
  aspect-ratio: 3/4;
  background: var(--sand);
  overflow: hidden;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.thumb {
  aspect-ratio: 1;
  background: var(--sand-dark);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.thumb.active, .thumb:hover { border-color: var(--terracotta); }

.product-detail-info .product-category { margin-bottom: 0.5rem; }
.product-detail-info h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.detail-price .price-current { font-size: 1.8rem; }

.handmade-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
}

.product-description { color: var(--charcoal-light); font-size: 0.93rem; line-height: 1.9; margin-bottom: 2rem; }

.variant-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; font-weight: 500; }
.variant-options { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.variant-btn {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--sand-dark);
  font-size: 0.82rem;
  color: var(--charcoal);
  background: white;
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}
.variant-btn.active, .variant-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
  border: 1.5px solid var(--sand-dark);
  width: fit-content;
}
.qty-selector button {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: white;
}
.qty-selector button:hover { background: var(--sand); }
.qty-selector span { width: 44px; text-align: center; font-weight: 500; }

.add-to-cart-section { display: flex; gap: 0.75rem; margin-bottom: 2rem; }
.add-to-cart-section .btn-primary { flex: 1; justify-content: center; }

.product-meta { border-top: 1px solid var(--sand-dark); padding-top: 1.5rem; }
.meta-row {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand-dark);
}
.meta-row strong { min-width: 100px; color: var(--charcoal); }
.meta-row span { color: var(--charcoal-light); }

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 6%;
}
.about-img-wrap {
  aspect-ratio: 4/5;
  background: var(--sand-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--terracotta);
  z-index: -1;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  padding: 5rem 6%;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info p { color: var(--charcoal-light); margin-bottom: 2rem; font-size: 0.93rem; line-height: 1.9; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.1rem; margin-top: 0.15rem; }
.contact-detail strong { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 0.2rem; }
.contact-detail p { font-size: 0.88rem; color: var(--charcoal-light); margin: 0; }

.contact-form { background: var(--white); padding: 3rem; box-shadow: var(--shadow-soft); }
.contact-form h3 { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; display: block; margin-bottom: 0.5rem; color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--sand-dark);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--terracotta);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .category-card:first-child { grid-column: span 2; grid-row: span 1; }
  .category-card:nth-child(4) { grid-column: span 1; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-content { padding: 4rem; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 50vw; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .category-card:first-child, .category-card:nth-child(4) { grid-column: span 1; }
  .products-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .story-section { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; padding: 6rem 5% 3rem; }
  .shop-layout { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; right: -100%; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid, .shop-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.3); border-bottom: none; }
}

/* ════════════════════════════════════════════════════════════════
   NEW ADDITIONS — Search, Account, Blog, Auth, Custom Order, 404
   ════════════════════════════════════════════════════════════════ */

/* MOBILE NAV OPEN */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
  font-size: 1.1rem;
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 8000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 12vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}
.search-close:hover { color: white; }
.search-inner { width: 90%; max-width: 640px; }
.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 300;
  padding: 0.5rem 0;
  outline: none;
  letter-spacing: 0.03em;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.search-input::placeholder { color: rgba(255,255,255,0.35); }
.search-input:focus { border-color: var(--terracotta-light); }
.search-results {
  margin-top: 1rem;
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  transition: background 0.15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--sand); }
.sr-emoji { font-size: 1.5rem; flex-shrink: 0; }
.sr-info { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; }
.sr-name { font-family: var(--font-display); font-size: 1rem; color: var(--charcoal); }
.sr-cat { font-size: 0.75rem; color: var(--charcoal-light); letter-spacing: 0.05em; text-transform: uppercase; }
.sr-price { font-size: 0.9rem; font-weight: 500; color: var(--terracotta); flex-shrink: 0; }
.search-no-results { padding: 1.5rem; text-align: center; color: var(--charcoal-light); font-size: 0.9rem; }

/* AUTH LAYOUT */
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-brand {
  background: linear-gradient(160deg, var(--terracotta-dark) 0%, var(--terracotta) 60%, var(--terracotta-light) 100%);
  display: flex; align-items: center; justify-content: center; padding: 3rem;
}
.auth-brand-inner { max-width: 380px; }
.auth-logo {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: white; margin-bottom: 2rem; display: block;
}
.auth-logo span { color: var(--sand); }
.auth-brand h2 {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 300;
  color: white; line-height: 1.2; margin-bottom: 1rem;
}
.auth-tagline { color: rgba(255,255,255,0.75); font-style: italic; font-size: 1rem; margin-bottom: 2.5rem; font-family: var(--font-display); }
.auth-features { display: flex; flex-direction: column; gap: 0.85rem; }
.auth-feature-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.85); font-size: 0.88rem; }
.auth-feature-item span:first-child { font-size: 1.1rem; }
.auth-form-panel { display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; background: white; }
.auth-form-wrap { width: 100%; max-width: 420px; }
.auth-form-title { font-family: var(--font-display); font-size: 2.4rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.25rem; }
.auth-form-subtitle { font-size: 0.88rem; color: var(--charcoal-light); margin-bottom: 2rem; }
.auth-form-subtitle a { color: var(--terracotta); text-decoration: none; }
.auth-form-subtitle a:hover { text-decoration: underline; }
.btn-google {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem; border: 1.5px solid #e0e0e0; background: white; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal); cursor: pointer;
  transition: background 0.2s, border-color 0.2s; margin-bottom: 1.5rem;
}
.btn-google:hover { background: var(--cream); border-color: #bdbdbd; }
.auth-divider { text-align: center; position: relative; margin-bottom: 1.5rem; }
.auth-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--sand-dark);
}
.auth-divider span {
  background: white; padding: 0 1rem; position: relative;
  font-size: 0.78rem; color: var(--charcoal-light); letter-spacing: 0.05em; text-transform: uppercase;
}
.auth-form .form-group { margin-bottom: 1.1rem; }
@media (max-width: 768px) {
  .auth-layout { grid-template-columns: 1fr; }
  .auth-brand { display: none; }
}

/* ACCOUNT PAGE */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.account-sidebar { background: white; border: 1px solid var(--sand-dark); border-radius: 4px; overflow: hidden; position: sticky; top: 6rem; }
.account-avatar-wrap { background: var(--sand); padding: 2rem 1.5rem; text-align: center; }
.account-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--terracotta); color: white;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem;
}
.account-avatar-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--charcoal); font-weight: 500; }
.account-avatar-email { font-size: 0.78rem; color: var(--charcoal-light); margin-top: 0.2rem; }
.account-nav { padding: 0.5rem 0; }
.account-nav-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.5rem; color: var(--charcoal-light); text-decoration: none;
  font-size: 0.88rem; transition: all 0.15s; border-left: 3px solid transparent;
}
.account-nav-link:hover { background: var(--cream); color: var(--charcoal); }
.account-nav-link.active { color: var(--terracotta); border-left-color: var(--terracotta); background: rgba(196,98,45,0.05); font-weight: 500; }
.account-nav-logout { color: #e53e3e !important; }
.account-nav-logout:hover { background: #fff5f5 !important; }
.account-tab-title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--sand-dark); }
.orders-list { display: flex; flex-direction: column; gap: 1.25rem; }
.order-card { border: 1px solid var(--sand-dark); border-radius: 4px; padding: 1.5rem; background: white; }
.order-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.order-number { font-weight: 500; font-size: 0.95rem; color: var(--charcoal); }
.order-date { font-size: 0.8rem; color: var(--charcoal-light); margin-top: 0.2rem; }
.order-status { font-size: 0.75rem; font-weight: 500; padding: 0.3rem 0.75rem; border-radius: 20px; letter-spacing: 0.05em; text-transform: uppercase; flex-shrink: 0; }
.status-delivered { background: #d4edda; color: #155724; }
.status-shipped { background: #fff3cd; color: #856404; }
.status-processing { background: #cce5ff; color: #004085; }
.order-items-preview { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.order-item-emoji { font-size: 1.6rem; }
.order-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 0.75rem; border-top: 1px solid var(--sand); }
.order-total { font-size: 0.9rem; color: var(--charcoal-light); }
.order-total strong { color: var(--charcoal); }
.address-card { border: 1.5px solid var(--sand-dark); border-radius: 4px; padding: 1.5rem; background: white; position: relative; }
.address-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.address-card p { font-size: 0.85rem; color: var(--charcoal-light); line-height: 1.8; }
.address-card-badge { position: absolute; top: 1rem; right: 1rem; background: var(--terracotta); color: white; font-size: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 20px; letter-spacing: 0.05em; }
.address-card-add { border: 2px dashed var(--sand-dark); background: var(--cream); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; cursor: pointer; color: var(--charcoal-light); min-height: 160px; transition: all 0.2s; }
.address-card-add:hover { border-color: var(--terracotta); color: var(--terracotta); }
@media (max-width: 768px) { .account-layout { grid-template-columns: 1fr; } .account-sidebar { position: static; } }

/* BLOG PAGE */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.featured-post { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; background: white; border: 1px solid var(--sand-dark); border-radius: 4px; overflow: hidden; margin-bottom: 2.5rem; }
.featured-post-img { background: linear-gradient(135deg, var(--sand), var(--sand-dark)); display: flex; align-items: center; justify-content: center; font-size: 5rem; min-height: 280px; }
.featured-post-content { padding: 2rem 2rem 2rem 0; display: flex; flex-direction: column; justify-content: center; }
.featured-post-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: var(--charcoal); margin: 0.75rem 0; line-height: 1.3; }
.featured-post-excerpt { font-size: 0.9rem; color: var(--charcoal-light); line-height: 1.8; margin-bottom: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.post-card { background: white; border: 1px solid var(--sand-dark); border-radius: 4px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(61,53,48,0.1); }
.post-card-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.post-card-content { padding: 1.25rem; }
.post-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--charcoal); margin: 0.6rem 0; line-height: 1.35; }
.post-card-excerpt { font-size: 0.83rem; color: var(--charcoal-light); line-height: 1.7; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-tag { font-size: 0.7rem; font-weight: 500; padding: 0.25rem 0.65rem; border-radius: 20px; letter-spacing: 0.05em; text-transform: uppercase; display: inline-block; }
.tag-tips { background: #e8f5e9; color: #2e7d32; }
.tag-story { background: #fce4ec; color: #ad1457; }
.tag-gifts { background: #fff8e1; color: #f57f17; }
.tag-tutorial { background: #e3f2fd; color: #1565c0; }
.post-meta { font-size: 0.75rem; color: var(--charcoal-light); display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem; margin-bottom: 0.5rem; }
.post-dot { opacity: 0.5; }
.post-read-more { font-size: 0.82rem; color: var(--terracotta); text-decoration: none; font-weight: 500; letter-spacing: 0.03em; }
.post-read-more:hover { text-decoration: underline; }
.blog-sidebar { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.5rem; }
.blog-widget { background: white; border: 1px solid var(--sand-dark); border-radius: 4px; padding: 1.5rem; }
.widget-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--charcoal); margin-bottom: 1rem; border-bottom: 2px solid var(--terracotta); padding-bottom: 0.5rem; display: inline-block; }
.widget-list { list-style: none; padding: 0; margin: 0; }
.widget-list li { border-bottom: 1px solid var(--sand); }
.widget-list li:last-child { border-bottom: none; }
.widget-list a { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; font-size: 0.85rem; color: var(--charcoal-light); text-decoration: none; transition: color 0.15s; }
.widget-list a:hover { color: var(--terracotta); }
.widget-list a span { background: var(--sand); padding: 0.1rem 0.5rem; border-radius: 10px; font-size: 0.75rem; }
.recent-posts-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.recent-posts-list a { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--charcoal-light); font-size: 0.83rem; line-height: 1.5; transition: color 0.15s; }
.recent-posts-list a:hover { color: var(--terracotta); }
.recent-post-emoji { font-size: 1.2rem; flex-shrink: 0; }
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post-content { padding: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* CUSTOM ORDER PAGE */
.custom-order-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.how-steps { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.how-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.how-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--terracotta); color: white; font-family: var(--font-display); font-size: 1rem; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.how-step h4 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--charcoal); }
.how-step p { font-size: 0.85rem; color: var(--charcoal-light); line-height: 1.7; }
.custom-info-cards { display: flex; flex-direction: column; gap: 0.85rem; }
.custom-info-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; background: var(--sand); border-radius: 4px; }
.custom-info-card span { font-size: 1.4rem; flex-shrink: 0; }
.custom-info-card strong { font-size: 0.9rem; display: block; margin-bottom: 0.2rem; }
.custom-info-card p { font-size: 0.82rem; color: var(--charcoal-light); line-height: 1.6; margin: 0; }
.custom-order-form-wrap { background: white; border: 1px solid var(--sand-dark); border-radius: 4px; padding: 2.5rem; position: sticky; top: 6rem; }
.custom-order-success { text-align: center; padding: 2rem 1rem; }
.success-checkmark { margin: 0 auto 1.5rem; width: 80px; height: 80px; }
.checkmark-svg { width: 80px; height: 80px; animation: scaleIn 0.4s ease; }
@keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.checkmark-circle { stroke: var(--terracotta); stroke-width: 2; stroke-dasharray: 166; stroke-dashoffset: 166; animation: strokeDraw 0.6s ease forwards; }
.checkmark-check { stroke: var(--terracotta); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; animation: strokeDraw 0.5s 0.4s ease forwards; }
@keyframes strokeDraw { to { stroke-dashoffset: 0; } }
.custom-order-success h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.75rem; }
.success-ref { display: inline-block; background: var(--sand); border: 1.5px solid var(--terracotta); color: var(--charcoal); padding: 0.75rem 2rem; font-size: 1rem; letter-spacing: 0.05em; border-radius: 4px; margin: 1rem 0; }
@media (max-width: 768px) { .custom-order-layout { grid-template-columns: 1fr; } .custom-order-form-wrap { position: static; } }

/* 404 PAGE */
.not-found-page { min-height: calc(100vh - 4.5rem); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; padding-top: 6rem; }
.not-found-num { font-family: var(--font-display); font-size: clamp(6rem,18vw,12rem); font-weight: 300; color: var(--terracotta); line-height: 1; letter-spacing: -0.03em; margin-bottom: 0; }
.not-found-title { font-family: var(--font-display); font-size: clamp(1.5rem,4vw,2.4rem); font-weight: 400; color: var(--charcoal); line-height: 1.3; margin: 0.5rem 0 1rem; }
.not-found-msg { max-width: 480px; font-size: 0.95rem; color: var(--charcoal-light); line-height: 1.8; margin-bottom: 2.5rem; }
.not-found-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.not-found-illustration { margin-bottom: 1rem; opacity: 0.9; }

/* CUSTOM ORDER CTA BANNER */
.custom-cta-banner { background: var(--charcoal); padding: 5rem 6%; text-align: center; }
.custom-cta-banner .section-label { color: rgba(255,255,255,0.5); }
.custom-cta-banner h2 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3rem); font-weight: 300; color: white; margin: 0.5rem 0; }
.custom-cta-banner h2 em { color: var(--terracotta-light); font-style: italic; }
.custom-cta-banner p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 2rem; font-size: 0.95rem; line-height: 1.8; }
.custom-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
