/*
Theme Name: Yaminte
Theme URI: https://yaminte.com
Author: Eftalia'nın Sandığı
Author URI: https://yaminte.com
Description: Yaminte.com - Eftalia'nın Sandığı için WooCommerce uyumlu, doğal ürün satış teması.
Version: 2.1.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
WC requires at least: 8.0
WC tested up to: 9.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yaminte
Tags: e-commerce, woocommerce, custom-menu, featured-images, theme-options
*/

/* ========================================
   1. CSS VARIABLES & RESET
   ======================================== */
:root {
  --c-cream: #FAF6F1;
  --c-warm: #F3EDE4;
  --c-blush: #E8C4B8;
  --c-rose: #C4917E;
  --c-sage: #A8B5A0;
  --c-sage-light: #D4DDD0;
  --c-sage-dark: #7A8F72;
  --c-charcoal: #2C2C2C;
  --c-dark: #1A1A1A;
  --c-text: #3D3D3D;
  --c-text-light: #8A8A8A;
  --c-white: #FFFFFF;
  --c-gold: #C9A96E;
  --c-border: rgba(0,0,0,0.06);
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Outfit', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.04);
  --shadow: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.08);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1280px;
  --header-h: 76px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
ul, ol { list-style: none; }
p { margin-bottom: 1rem; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-dark);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ========================================
   2. ACCESSIBILITY
   ======================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed !important; top: 8px; left: 8px;
  width: auto !important; height: auto !important;
  padding: 12px 24px; background: var(--c-charcoal); color: var(--c-cream);
  border-radius: 100px; z-index: 99999; clip: auto !important;
  font-size: 0.9rem; font-weight: 600; box-shadow: var(--shadow-lg);
}

/* ========================================
   3. HEADER & NAVIGATION
   ======================================== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--header-h);
  background: rgba(250,246,241,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--c-border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.site-logo {
  font-family: var(--f-display); font-size: 1.8rem;
  font-weight: 600; color: var(--c-dark);
  letter-spacing: 0.05em;
}
.site-logo span { font-style: italic; color: var(--c-rose); }
.site-logo img { max-height: 40px; width: auto; }

/* Navigation */
.main-nav ul {
  display: flex; gap: 4px; align-items: center;
}
.main-nav a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 20px; font-size: 0.88rem; font-weight: 500;
  color: var(--c-text-light); border-radius: 100px;
  transition: all 0.3s var(--ease); letter-spacing: 0.02em;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--c-dark); background: rgba(0,0,0,0.04);
}
.main-nav a.nav-cta {
  background: var(--c-charcoal); color: var(--c-cream);
  font-weight: 600; padding: 10px 24px;
}
.main-nav a.nav-cta:hover { background: var(--c-dark); }

/* Dropdown */
.main-nav li { position: relative; }
.nav-arrow { transition: transform 0.3s; flex-shrink: 0; }
.main-nav li.has-children:hover > a .nav-arrow { transform: rotate(180deg); }

.main-nav .sub-menu {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  min-width: 220px; background: var(--c-white);
  border-radius: var(--radius); box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  padding: 8px; z-index: 100;
  flex-direction: column;
}
.main-nav li.has-children:hover > .sub-menu {
  display: flex;
}
.main-nav .sub-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px; background: var(--c-white);
  border-radius: 2px; transform: translateX(-50%) rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0,0,0,0.03);
}
.main-nav .sub-menu li { margin: 0; }
.main-nav .sub-menu a {
  display: block; padding: 10px 16px; font-size: 0.85rem;
  color: var(--c-text-light); border-radius: 10px;
  background: none; font-weight: 400;
}
.main-nav .sub-menu a:hover {
  background: var(--c-warm); color: var(--c-dark);
}

/* Header Right: Cart + Toggle */
.header-right { display: flex; align-items: center; gap: 12px; }
.header-cart {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(0,0,0,0.03); color: var(--c-dark);
  transition: all 0.3s var(--ease);
}
.header-cart:hover { background: rgba(0,0,0,0.06); color: var(--c-rose); }
.header-cart svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  width: 18px; height: 18px; background: var(--c-rose); color: #fff;
  font-size: 0.65rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; width: 36px; height: 36px; z-index: 1001;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--c-dark); margin: 5px auto;
  transition: all 0.3s var(--ease); border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.3);
  z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* Desktop: always show nav */
@media (min-width: 769px) {
  .menu-toggle { display: none !important; }
  .main-nav {
    display: flex !important; position: static !important;
    width: auto !important; height: auto !important;
    background: none !important; padding: 0 !important;
    box-shadow: none !important;
  }
}

/* Mobile navigation */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 360px; height: 100vh;
    background: var(--c-cream); padding: 100px 32px 32px;
    box-shadow: var(--shadow-lg); transition: right 0.4s var(--ease); z-index: 1000;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { width: 100%; padding: 14px 18px; font-size: 1.05rem; }
  .main-nav .sub-menu {
    display: none;
    position: static; transform: none; box-shadow: none;
    background: rgba(0,0,0,0.02); border-radius: var(--radius);
    padding: 4px 0 4px 12px; margin-top: 4px; min-width: auto;
    flex-direction: column;
  }
  .main-nav .sub-menu.open { display: flex; }
  .main-nav .sub-menu::before { display: none; }
}

/* ========================================
   4. BUTTONS
   ======================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; font-family: var(--f-body);
  font-size: 0.9rem; font-weight: 600; border: none;
  border-radius: 100px; cursor: pointer;
  transition: all 0.3s var(--ease); letter-spacing: 0.03em; white-space: nowrap;
}
.btn-primary, .btn-dark {
  background: var(--c-charcoal); color: var(--c-cream);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-primary:hover, .btn-dark:hover {
  background: var(--c-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.btn-outline, .btn-ghost {
  background: transparent; color: var(--c-text);
  border: 1.5px solid var(--c-border); padding: 15px 35px;
}
.btn-outline:hover, .btn-ghost:hover {
  border-color: var(--c-charcoal); background: rgba(0,0,0,0.02);
}
.btn-rose {
  background: var(--c-rose); color: var(--c-white);
  box-shadow: 0 4px 20px rgba(196,145,126,0.35);
}
.btn-rose:hover { background: #b37e6b; transform: translateY(-2px); }
.btn-sm { padding: 12px 24px; font-size: 0.82rem; }
.btn-lg { padding: 18px 44px; font-size: 0.95rem; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px; padding: 14px 28px;
  background: transparent; color: var(--c-text);
  border: 1.5px solid var(--c-border); border-radius: 100px;
  font-family: var(--f-body); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
}
.btn-whatsapp:hover { border-color: var(--c-sage-dark); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }

/* ========================================
   5. HERO SECTION
   ======================================== */
.hero {
  padding: calc(var(--header-h) + 64px) 0 100px;
  position: relative; overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw; max-width: 700px;
  background: radial-gradient(circle, var(--c-blush) 0%, transparent 70%);
  opacity: 0.3; border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -15%; left: -5%;
  width: 40vw; height: 40vw; max-width: 500px;
  background: radial-gradient(circle, var(--c-sage-light) 0%, transparent 70%);
  opacity: 0.25; border-radius: 50%; pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--c-rose); margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1.5px; background: var(--c-rose);
}
.hero h1 { margin-bottom: 24px; }
.highlight { font-style: italic; color: var(--c-rose); }
.hero-desc {
  font-size: 1.1rem; color: var(--c-text-light);
  max-width: 480px; margin-bottom: 40px; line-height: 1.8; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-image-wrapper {
  background: var(--c-white); border-radius: var(--radius-xl);
  padding: 20px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-image-wrapper img {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 3/4; object-fit: cover;
}
.hero-trust {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 36px;
  border-top: 1px solid var(--c-border);
}
.trust-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--c-text-light); font-weight: 400;
}
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-sage); }

@media (max-width: 768px) {
  .hero { min-height: auto; padding: calc(var(--header-h) + 32px) 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .hero-visual { max-width: 360px; margin: 0 auto; order: -1; }
}

/* ========================================
   6. SECTIONS & LAYOUT
   ======================================== */
.section { padding: 100px 0; }
.section-white { background: var(--c-white); }
.section-warm { background: var(--c-warm); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--c-sage-dark); margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--c-text-light); font-size: 1rem; font-weight: 300; margin: 0;
}
.text-center { text-align: center; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 48px; }
}

/* Content + Sidebar Layout */
.content-with-sidebar {
  display: grid !important;
  grid-template-columns: 1fr 280px !important;
  gap: 48px; align-items: start;
}
.content-with-sidebar .main-content { min-width: 0; grid-column: 1; }
.content-with-sidebar .sidebar { position: sticky; top: calc(var(--header-h) + 24px); grid-column: 2; }
.shop-layout { grid-template-columns: 260px 1fr !important; }
.shop-layout .main-content { grid-column: 2 !important; order: 2; }
.shop-layout .sidebar { grid-column: 1 !important; order: 1; }

@media (max-width: 968px) {
  .content-with-sidebar,
  .shop-layout {
    grid-template-columns: 1fr !important;
  }
  .content-with-sidebar .sidebar,
  .shop-layout .sidebar {
    position: static; grid-column: 1 !important; order: 99;
  }
  .content-with-sidebar .main-content,
  .shop-layout .main-content {
    grid-column: 1 !important; order: 1;
  }
}

/* ========================================
   7. INGREDIENTS STRIP
   ======================================== */
.ingredients-strip {
  padding: 52px 0; background: var(--c-charcoal);
  color: var(--c-cream); overflow: hidden;
}
.ingredients-scroll {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 25s linear infinite; white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ingr-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 300; letter-spacing: 0.05em;
  flex-shrink: 0; opacity: 0.7;
}
.ingr-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-sage); flex-shrink: 0;
}

/* ========================================
   8. CATEGORY CARDS
   ======================================== */
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px;
}
.cat-card {
  display: block; background: var(--c-white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  border: 1px solid var(--c-border); transition: all 0.4s var(--ease);
}
.cat-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow);
  border-color: transparent;
}
.cat-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--c-sage-light), var(--c-blush));
  border-radius: 20px; display: flex;
  align-items: center; justify-content: center; font-size: 28px;
}
.cat-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cat-card p { font-size: 0.78rem; color: var(--c-text-light); font-weight: 300; margin: 0; }
.cat-count {
  font-size: 0.72rem; color: var(--c-rose);
  font-weight: 600; margin-top: 8px; display: block;
}

/* ========================================
   9. FEATURES
   ======================================== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 32px;
}
.feature-card {
  padding: 40px 32px; text-align: center;
  border-radius: var(--radius-xl); background: var(--c-cream);
  border: 1px solid var(--c-border); transition: all 0.4s var(--ease);
}
.feature-card:hover {
  background: var(--c-white); box-shadow: var(--shadow);
  border-color: transparent; transform: translateY(-4px);
}
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--c-sage-light), var(--c-blush));
  border-radius: 20px; display: flex;
  align-items: center; justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--c-charcoal); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.feature-card p {
  font-size: 0.88rem; color: var(--c-text-light);
  font-weight: 300; line-height: 1.7; margin: 0;
}

/* ========================================
   10. TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px;
}
.testimonial-card {
  background: var(--c-cream); padding: 36px;
  border-radius: var(--radius-xl); border: 1px solid var(--c-border);
  transition: all 0.4s var(--ease);
}
.testimonial-card:hover { background: var(--c-white); box-shadow: var(--shadow); }
.testimonial-quote {
  font-family: var(--f-display); font-size: 3rem;
  color: var(--c-blush); line-height: 1; margin-bottom: 8px;
}
.testimonial-stars { color: var(--c-gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.92rem; color: var(--c-text); line-height: 1.8;
  margin-bottom: 24px; font-style: italic; font-weight: 300;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blush), var(--c-sage-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 600; color: var(--c-white); font-size: 1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--c-text-light); }

/* ========================================
   11. CTA BANNER
   ======================================== */
.cta-banner {
  padding: 80px 0; text-align: center;
  background: linear-gradient(160deg, var(--c-charcoal), #3a3a3a);
  color: var(--c-cream); position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--c-rose) 0%, transparent 70%);
  opacity: 0.08; border-radius: 50%;
}
.cta-banner h2 { color: var(--c-cream); margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.6); font-size: 1rem;
  max-width: 480px; margin: 0 auto 36px; font-weight: 300;
}

/* ========================================
   12. PAGE HEADER
   ======================================== */
.page-header {
  padding: calc(var(--header-h) + 48px) 0 48px;
  background: var(--c-warm); text-align: center;
}
.page-header h1 { margin-bottom: 12px; }
.page-header p {
  color: var(--c-text-light); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto; font-weight: 300;
}

/* ========================================
   13. BLOG
   ======================================== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px;
}
.content-with-sidebar .blog-grid { grid-template-columns: 1fr !important; }
@media (min-width: 768px) {
  .content-with-sidebar .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
.blog-card {
  background: var(--c-white); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.4s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-image { aspect-ratio: 16/9; overflow: hidden; background: var(--c-warm); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 0.78rem; color: var(--c-text-light); margin-bottom: 10px; font-weight: 300; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card-body h3 a:hover { color: var(--c-rose); }
.blog-card-excerpt {
  color: var(--c-text-light); font-size: 0.85rem;
  font-weight: 300; line-height: 1.6; margin: 0;
}

/* Single Post */
.single-post-content { max-width: 740px; }
.single-post-content h2 { margin-top: 40px; margin-bottom: 16px; }
.single-post-content p {
  font-size: 1.05rem; line-height: 1.9;
  color: var(--c-text-light); font-weight: 300;
}
.single-post-content img { border-radius: var(--radius-lg); margin: 24px 0; }

/* ========================================
   14. SIDEBAR
   ======================================== */
.sidebar { font-size: 0.9rem; }
.sidebar-widget {
  background: var(--c-white); border-radius: 20px;
  padding: 24px; margin-bottom: 20px; border: 1px solid var(--c-border);
}
.widget-title {
  font-family: var(--f-display); font-size: 1.1rem;
  font-weight: 600; color: var(--c-dark); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--c-border);
}
.sidebar-cat-list { padding: 0; margin: 0; list-style: none; }
.sidebar-cat-list li { margin-bottom: 2px; }
.sidebar-cat-list li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; color: var(--c-text-light); border-radius: 10px;
  transition: all 0.2s; font-weight: 400; font-size: 0.88rem;
}
.sidebar-cat-list li a:hover,
.sidebar-cat-list li.active a,
.sidebar-cat-list li.current-cat a {
  background: var(--c-warm); color: var(--c-dark); font-weight: 500;
}
.sidebar-cat-list .cat-count,
.sidebar-cat-list .count {
  font-size: 0.72rem; background: var(--c-warm); color: var(--c-text-light);
  padding: 2px 8px; border-radius: 100px; font-weight: 500;
}

/* ========================================
   15. CONTACT
   ======================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; }
.contact-info-card:not(:last-child) { border-bottom: 1px solid var(--c-border); }
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--c-sage-light), var(--c-blush));
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--c-charcoal); }
.contact-label { font-size: 0.78rem; color: var(--c-text-light); margin-bottom: 4px; font-weight: 300; }
.contact-value { font-weight: 600; font-size: 0.92rem; }
.yaminte-form {
  background: var(--c-white); padding: 40px;
  border-radius: var(--radius-xl); box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--c-dark); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px; font-family: var(--f-body);
  font-size: 0.9rem; border: 1.5px solid var(--c-border);
  border-radius: var(--radius); background: var(--c-cream);
  color: var(--c-text); transition: all 0.3s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-rose); background: var(--c-white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-message {
  padding: 14px 20px; border-radius: var(--radius); font-size: 0.9rem;
  margin-top: 16px; display: none;
}
.form-message.success { background: rgba(122,143,114,0.1); color: var(--c-sage-dark); display: block; }
.form-message.error { background: rgba(196,100,90,0.1); color: #C4645A; display: block; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .yaminte-form { padding: 28px 20px; }
}

/* ========================================
   16. ABOUT
   ======================================== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--c-text-light); font-weight: 300; }
.about-counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.counter-box { text-align: center; padding: 24px 16px; background: var(--c-warm); border-radius: var(--radius); }
.counter-box strong { display: block; font-family: var(--f-display); font-size: 1.75rem; color: var(--c-rose); }
.counter-box span { font-size: 0.82rem; color: var(--c-text-light); font-weight: 300; }

@media (max-width: 768px) { .about-content { grid-template-columns: 1fr; gap: 32px; } }

/* ========================================
   17. PRODUCT TRUST BADGES
   ======================================== */
.product-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding-top: 20px; margin-top: 16px; border-top: 1px solid var(--c-border);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--c-text-light); }
.trust-item svg { width: 18px; height: 18px; color: var(--c-sage-dark); }

/* ========================================
   18. FAQ
   ======================================== */
.yaminte-faq-section { margin-top: 32px; }
.yaminte-faq-section h2 { font-size: 1.5rem; margin-bottom: 16px; }
.faq-list { margin-top: 16px; }
.faq-item {
  border: 1px solid var(--c-border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; padding: 18px 24px;
  font-family: var(--f-body); font-size: 0.95rem; font-weight: 600;
  color: var(--c-dark); text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s;
}
.faq-question:hover { background: rgba(0,0,0,0.02); }
.faq-question svg { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
  padding: 0 24px 18px; color: var(--c-text-light);
  font-size: 0.9rem; line-height: 1.8; font-weight: 300;
}

/* ========================================
   19. FOOTER
   ======================================== */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.5); padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .site-logo { color: var(--c-cream); margin-bottom: 16px; display: inline-block; }
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; font-weight: 300; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--c-rose); color: var(--c-cream); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-heading {
  font-family: var(--f-body); font-size: 0.82rem; font-weight: 600;
  color: var(--c-cream); text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 24px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.88rem; font-weight: 300; transition: color 0.3s; }
.footer-links a:hover { color: var(--c-blush); }
.footer-bottom { padding: 28px 0; text-align: center; font-size: 0.78rem; font-weight: 300; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ========================================
   20. WHATSAPP & BACK TO TOP
   ======================================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex;
  align-items: center; justify-content: center;
  z-index: 900; box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--c-white); }

.back-to-top {
  position: fixed; bottom: 28px; left: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--c-charcoal); color: var(--c-cream); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 800; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.3s var(--ease);
  opacity: 0; visibility: hidden; transform: translateY(12px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--c-rose); transform: translateY(-2px); }

/* ========================================
   21. COOKIE NOTICE
   ======================================== */
.cookie-notice {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--c-dark); color: rgba(255,255,255,0.7);
  padding: 16px 0; z-index: 9999;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-notice.show { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.82rem; margin: 0; flex: 1; min-width: 280px; font-weight: 300; }
.cookie-inner a { color: var(--c-blush); }
.cookie-buttons { display: flex; gap: 10px; }

/* ========================================
   22. 404 PAGE
   ======================================== */
.page-404 {
  text-align: center; padding: calc(var(--header-h) + 80px) 0 80px;
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
}
.page-404 .error-code {
  font-family: var(--f-display); font-size: 8rem; font-weight: 700;
  color: var(--c-border); line-height: 1; margin-bottom: 16px;
}

/* ========================================
   23. PAGINATION
   ======================================== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 0.9rem; border: 1px solid var(--c-border);
  color: var(--c-text-light); transition: all 0.3s;
}
.pagination a:hover { border-color: var(--c-rose); color: var(--c-rose); }
.pagination .current { background: var(--c-charcoal); color: var(--c-cream); border-color: var(--c-charcoal); }

/* ========================================
   24. COMMENTS
   ======================================== */
.comments-area { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--c-border); }
.comments-title { font-family: var(--f-display); font-size: 1.5rem; margin-bottom: 24px; }
.comment-list { list-style: none; padding: 0; }
.comment-list li { padding: 20px 0; border-bottom: 1px solid var(--c-border); }
.comment-list .comment-author { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.comment-list .comment-author img { border-radius: 50%; width: 40px; height: 40px; }
.comment-list .fn { font-weight: 600; font-size: 0.92rem; }
.comment-list .comment-metadata { font-size: 0.78rem; color: var(--c-text-light); }
.comment-list .comment-content { font-size: 0.92rem; color: var(--c-text-light); line-height: 1.7; font-weight: 300; }
.comment-form .form-submit .btn { width: 100%; padding: 14px; border-radius: 100px; }

/* ========================================
   25. ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   26. PRINT
   ======================================== */
@media print {
  .site-header, .site-footer, .whatsapp-float, .cookie-notice, .back-to-top { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; }
}
