/* ==========================================================================
   MURAT ZEYTIN TARIM — app.css
   ========================================================================== */

:root{
  --color-cream: #F6F1E4;
  --color-cream-2: #EFE7D3;
  --color-olive: #5B6B37;
  --color-olive-dark: #37411F;
  --color-olive-light: #8A9A5B;
  --color-terracotta: #B5673A;
  --color-sun: #D9A441;
  --color-sun-light: #F0C868;
  --color-ink: #2E2417;
  --color-ink-soft: #5A4E3C;
  --color-white: #FFFDF8;
  --color-line: #D8CBAA;
  --color-danger: #A83232;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-card: 'DM Sans', 'Segoe UI', sans-serif;

  --radius-organic: 60% 40% 55% 45% / 45% 55% 40% 60%;
  --radius-soft: 10px;
  --radius-pill: 999px;
  --radius-lg: 18px;
  --shadow-card: 0 4px 16px rgba(46,36,23,0.07);
  --shadow-lift: 0 20px 48px rgba(46,36,23,0.16);
  --shadow-lift-sm: 0 10px 24px rgba(46,36,23,0.12);
  --ease: cubic-bezier(.4,0,.2,1);
  --header-h: 92px;
  --header-h-scrolled: 68px;
}

/* ---------------- Reset ---------------- */
*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul, ol{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; background:none; border:none; }
input, textarea, select{ font-family:inherit; font-size:1rem; }
h1, h2, h3, h4, h5, h6{
  font-family: var(--font-card);
  color: var(--color-ink);
  margin:0;
  line-height:1.2;
  font-weight:700;
}
p{ margin:0; }

.container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 24px;
}

.section{ padding:88px 0; }
.page-section{ padding:80px 0; }

.eyebrow{
  display:inline-block;
  font-family: var(--font-card);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--color-olive);
  margin-bottom:12px;
}
.eyebrow-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-card);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  background: rgba(255,255,255,.16);
  color:#fff;
  margin-bottom:18px;
}
.eyebrow-badge--sun{ background: var(--color-sun); color: var(--color-olive-dark); }

.section-heading{ margin-bottom:44px; }
.section-heading--center{ text-align:center; max-width:640px; margin-left:auto; margin-right:auto; }
.section-heading h2{ font-size:2.4rem; margin-bottom:12px; }
.section-heading p{ color: var(--color-ink-soft); font-size:1.02rem; }
.section-title{ font-size:2rem; margin-bottom:28px; }

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-card);
  font-weight:700;
  font-size:.95rem;
  border:2px solid transparent;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--color-olive); color:#fff; box-shadow: var(--shadow-card); }
.btn-primary:hover{ background: var(--color-olive-dark); }
.btn-secondary{ background:transparent; border-color: var(--color-olive); color: var(--color-olive); }
.btn-secondary:hover{ background: var(--color-olive); color:#fff; }
.btn-sun{ background: var(--color-sun); color: var(--color-olive-dark); box-shadow: var(--shadow-card); }
.btn-sun:hover{ background: var(--color-sun-light); }
.btn-block{ width:100%; }
.btn:disabled{ opacity:.6; cursor:not-allowed; transform:none; }

.btn-spinner{
  width:16px; height:16px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.4);
  border-top-color:#fff;
  animation: spin .7s linear infinite;
  display:inline-block;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-card);
  font-size:.78rem;
  font-weight:700;
  background: var(--color-line);
  color: var(--color-ink);
  cursor:default;
}
.badge-olive{ background: rgba(91,107,55,.14); color: var(--color-olive); }
.badge-sun{ background: rgba(217,164,65,.18); color:#8a6417; }
.badge-danger{ background: rgba(168,50,50,.12); color: var(--color-danger); }
[data-faq-cat]{ cursor:pointer; }

/* ---------------- Alerts ---------------- */
.alert{
  padding:14px 18px;
  border-radius: var(--radius-soft);
  font-size:.92rem;
  margin-bottom:20px;
  font-weight:500;
}
.alert-success{ background: rgba(91,107,55,.12); color: var(--color-olive-dark); border:1px solid rgba(91,107,55,.3); }
.alert-error{ background: rgba(168,50,50,.08); color: var(--color-danger); border:1px solid rgba(168,50,50,.25); }

#contactFormGenericError{
  background: rgba(168,50,50,.06);
  color: var(--color-danger);
  border: 1px solid rgba(168,50,50,.2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  font-size: .88rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ---------------- Breadcrumb ---------------- */
.breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  font-size:.85rem;
  color: var(--color-ink-soft);
  margin-bottom:28px;
}
.breadcrumb a{ color: var(--color-ink-soft); transition: color .2s var(--ease); }
.breadcrumb a:hover{ color: var(--color-olive); }
.breadcrumb__sep{ font-size:.7rem; color: var(--color-line); }
.breadcrumb__current{ color: var(--color-ink); font-weight:600; }

/* ---------------- Forms (shared) ---------------- */
.form-row{ margin-bottom:18px; display:flex; flex-direction:column; gap:6px; }
.form-row label{ font-size:.85rem; font-weight:600; color: var(--color-ink); }
.form-row input,
.form-row textarea,
.form-row select{
  padding:12px 14px;
  border:1.5px solid var(--color-line);
  border-radius: var(--radius-soft);
  background:#fff;
  color: var(--color-ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-row textarea,
textarea{
  resize: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus{
  outline:none;
  border-color: var(--color-olive);
  box-shadow: 0 0 0 3px rgba(91,107,55,0.12);
}
.form-row.has-error input,
.form-row.has-error textarea,
.form-row.has-error select{ border-color: var(--color-danger); }
.form-row.has-error label{ color: var(--color-danger); }
.form-error{ font-size:.78rem; color: var(--color-danger); }
.form-grid-2{ display:grid; grid-template-columns:minmax(0, 1fr) minmax(0, 1fr); gap:0 16px; }
.form-grid-2 > *{ min-width:0; }
.form-row--honeypot{ position:absolute; left:-9999px; opacity:0; height:0; overflow:hidden; }

/* ---------------- Modal (shared) ---------------- */
.modal-overlay{
  position:fixed; inset:0;
  background: rgba(46,36,23,.55);
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  opacity:0; visibility:hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
  z-index:1000;
}
.modal-overlay.is-open{ opacity:1; visibility:visible; }
.modal{
  background: var(--color-white);
  border-radius:20px;
  max-width:560px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  padding:32px;
  box-shadow: var(--shadow-lift);
  transform: translateY(24px);
  transition: transform .3s var(--ease);
}
.modal-overlay.is-open .modal{ transform: translateY(0); }
.modal__head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:24px;
}
.modal__head h3{ font-size:1.4rem; }
.modal__close{
  width:36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background: var(--color-cream);
  color: var(--color-ink-soft);
  transition: background-color .2s var(--ease);
}
.modal__close:hover{ background: var(--color-line); }

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar{
  background: var(--color-olive-dark);
  color: rgba(255,255,255,.85);
  font-size:.82rem;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:9px 24px;
  gap:16px;
}
.topbar__contact{ display:flex; align-items:center; gap:24px; }
.topbar__contact a{ display:flex; align-items:center; gap:7px; transition: color .2s var(--ease); }
.topbar__contact a:hover{ color: var(--color-sun-light); }
.topbar__meta{ display:flex; align-items:center; gap:22px; }
.topbar__badge{ display:flex; align-items:center; gap:7px; font-weight:500; }
.topbar__social{ display:flex; align-items:center; gap:14px; }
.topbar__social a{
  width:28px; height:28px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background: rgba(255,255,255,.1);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.topbar__social a:hover{ background: var(--color-sun); color: var(--color-olive-dark); }
.topbar__whatsapp:hover{ background:#25D366 !important; color:#fff !important; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position: sticky; top:0; z-index:220;
  background: var(--color-cream);
  border-bottom:1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled{
  box-shadow: 0 4px 20px rgba(46,36,23,.08);
  border-bottom-color: var(--color-line);
  background: rgba(246,241,228,.97);
  backdrop-filter: blur(6px);
}
.site-header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:32px;
  height: var(--header-h);
  transition: height .3s var(--ease);
}
.site-header.is-scrolled .site-header__inner{ height: var(--header-h-scrolled); }

.brand{ display:flex; align-items:center; flex-shrink:0; }
.brand__logo{ height:56px; width:auto; transition: height .3s var(--ease); }
.site-header.is-scrolled .brand__logo{ height:42px; }

.main-nav{ flex:1; display:flex; justify-content:center; }
.main-nav ul{ display:flex; align-items:center; gap:36px; }
.main-nav a{
  position:relative;
  font-family: var(--font-card);
  font-weight:600;
  font-size:.95rem;
  color: var(--color-ink);
  padding:8px 0;
  transition: color .2s var(--ease);
}
.main-nav a::after{
  content:'';
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--color-olive);
  transition: width .25s var(--ease);
}
.main-nav a:hover, .main-nav a.is-active{ color: var(--color-olive); }
.main-nav a:hover::after, .main-nav a.is-active::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:8px; flex-shrink:0; }
.icon-btn{
  position:relative;
  width:42px; height:42px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  color: var(--color-ink);
  font-size:1.05rem;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.icon-btn:hover{ background: var(--color-cream-2); color: var(--color-olive); }
.cart-btn{ position:relative; }
.cart-btn__count{
  position:absolute; top:-2px; right:-2px;
  min-width:18px; height:18px;
  border-radius:50%;
  background: var(--color-terracotta);
  color:#fff;
  font-size:.65rem;
  font-weight:700;
  display:flex; align-items:center; justify-content:center;
  padding:0 4px;
}

.hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:42px; height:42px;
  border-radius:50%;
}
.hamburger span{
  width:20px; height:2px;
  background: var(--color-ink);
  margin:0 auto;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  border-radius:2px;
}
.hamburger.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity:0; }
.hamburger.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Mobile nav ---------------- */
.mobile-nav{
  position:fixed; top:0; right:0;
  width:min(320px, 84vw); height:100vh;
  background: var(--color-white);
  box-shadow: -8px 0 32px rgba(46,36,23,.16);
  z-index:240;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  padding:100px 28px 28px;
  overflow-y:auto;
}
.mobile-nav.is-open{ transform: translateX(0); }
.mobile-nav ul{ display:flex; flex-direction:column; gap:6px; }
.mobile-nav a{
  display:block;
  padding:14px 16px;
  border-radius: var(--radius-soft);
  font-family: var(--font-card);
  font-weight:600;
  font-size:1.02rem;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.mobile-nav a:hover{ background: var(--color-cream); color: var(--color-olive); }
.mobile-nav-backdrop{
  position:fixed; inset:0;
  background: rgba(46,36,23,.5);
  z-index:210;
  opacity:0; visibility:hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.mobile-nav-backdrop.is-open{ opacity:1; visibility:visible; }

/* ---------------- Search overlay ---------------- */
.search-overlay{
  position:fixed; inset:0;
  background: rgba(46,36,23,.6);
  backdrop-filter: blur(4px);
  z-index:500;
  display:flex; align-items:flex-start; justify-content:center;
  padding:80px 24px;
  opacity:0; visibility:hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.search-overlay.is-open{ opacity:1; visibility:visible; }
.search-overlay__inner{
  width:100%; max-width:680px;
  background: var(--color-white);
  border-radius:20px;
  padding:28px;
  box-shadow: var(--shadow-lift);
  position:relative;
}
.search-overlay__box{
  display:flex; align-items:center; gap:14px;
  border-bottom:2px solid var(--color-line);
  padding-bottom:16px;
  margin-bottom:16px;
}
.search-overlay__icon{ color: var(--color-olive); font-size:1.2rem; }
.search-overlay__input{
  flex:1; border:none; background:transparent;
  font-size:1.2rem; color: var(--color-ink);
  font-family: var(--font-body);
}
.search-overlay__input:focus{ outline:none; }
.search-overlay__spinner{ color: var(--color-olive); }
.search-overlay__results{ max-height:60vh; overflow-y:auto; }
.search-hint, .search-empty{ padding:32px 8px; text-align:center; color: var(--color-ink-soft); }
.search-group{ margin-bottom:20px; }
.search-group__title{
  font-family: var(--font-card);
  font-weight:700;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.05em;
  color: var(--color-olive);
  margin-bottom:10px;
}
.search-group__list{ display:flex; flex-direction:column; gap:4px; }
.search-result-item{
  display:flex; align-items:center; gap:14px;
  padding:10px;
  border-radius: var(--radius-soft);
  transition: background-color .2s var(--ease);
}
.search-result-item:hover{ background: var(--color-cream); }
.search-result-item__thumb{
  width:48px; height:48px;
  border-radius:8px;
  object-fit:cover;
  flex-shrink:0;
  background: var(--color-cream-2);
}
.search-result-item__icon{
  width:48px; height:48px;
  border-radius:8px;
  background: var(--color-cream-2);
  color: var(--color-olive);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.search-result-item__body{ flex:1; min-width:0; }
.search-result-item__title{
  display:block;
  font-weight:600;
  font-size:.92rem;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.search-result-item__price{ font-family: var(--font-card); font-weight:700; color: var(--color-olive); font-size:.92rem; }

/* ==========================================================================
   FOOTER COMBINED WRAPPER (dealer/cta + footer, tek arka plan resmi)
   ========================================================================== */
.footer-combined-wrapper{
  position:relative;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  overflow:hidden;
}
.footer-combined-wrapper::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(55,65,31,.82), rgba(55,65,31,.92));
  z-index:0;
}
.footer-combined-wrapper .dealer-section,
.footer-combined-wrapper .contact-whatsapp-cta,
.footer-combined-wrapper .site-footer{
  background:transparent;
  position:relative;
  z-index:1;
}

/* ==========================================================================
   DEALER SECTION + FOOTER (birleşik koyu blok, aralarında sınır yok)
   ========================================================================== */
.dealer-section{
  background: var(--color-olive-dark);
  padding:64px 0;
  margin-bottom:0;
  position:relative;
  overflow:hidden;
}
.dealer-section__inner{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:24px;
}
.dealer-section__text h2{ color:#fff; font-size:2rem; margin-bottom:10px; max-width:640px; }
.dealer-section__text p{ color: rgba(255,255,255,.72); max-width:560px; }
.dealer-section__cta{
  flex-shrink:0;
  background: var(--color-sun);
  color: var(--color-olive-dark);
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-family: var(--font-card);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-card);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.dealer-section__cta:hover{
  background: var(--color-sun-light);
  transform: translateY(-2px);
}
.dealer-section__action{ flex-shrink:0; }
.about-cta{ padding-bottom:0; }

.site-footer{ background: var(--color-olive-dark); color: rgba(255,255,255,.78); margin-top:0; border:none; position:relative; overflow:hidden; }
.footer-main{ position:relative; z-index:1; padding:64px 0 40px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap:40px;
}
.footer-col h4{
  color:#fff;
  font-size:1rem;
  margin-bottom:20px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ color: rgba(255,255,255,.72); font-size:.92rem; transition: color .2s var(--ease); }
.footer-col a:hover{ color: var(--color-sun-light); }
.footer-brand{ display:inline-block; margin-bottom:18px; }
.footer-brand__logo{ height:48px; filter: brightness(0) invert(1); opacity:.92; }
.footer-col--brand p{ font-size:.9rem; line-height:1.7; color: rgba(255,255,255,.65); margin-bottom:20px; }
.footer-social{ display:flex; gap:12px; }
.footer-social a{
  width:36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background: rgba(255,255,255,.08);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.footer-social a:hover{ background: var(--color-sun); color: var(--color-olive-dark); }
.footer-contact li{ display:flex; align-items:flex-start; gap:10px; font-size:.9rem; color: rgba(255,255,255,.72); }
.footer-contact li i{ margin-top:3px; color: var(--color-sun-light); flex-shrink:0; }
.footer-contact a{ color: rgba(255,255,255,.72); }

/* Local SEO pages */
.local-seo-page{ padding:34px 0 70px; background:var(--color-cream); }
.local-seo-hero{
  margin:26px 0 28px;
  max-width:860px;
}
.local-seo-hero h1{
  font-size:clamp(2rem, 4vw, 3.2rem);
  margin:10px 0 14px;
}
.local-seo-hero p{
  color:var(--color-ink-soft);
  font-size:1.05rem;
  line-height:1.75;
  max-width:780px;
  margin-bottom:22px;
}
.local-seo-content{ align-items:stretch; gap:24px; margin-top:24px; }
.local-seo-content--detail{ margin-top:24px; }
.local-seo-card{
  background:#fff;
  border:1px solid var(--color-line);
  border-radius:14px;
  padding:28px;
  box-shadow:var(--shadow-card);
}
.local-seo-card h2{ font-size:1.35rem; margin-bottom:12px; }
.local-seo-card p{ color:var(--color-ink-soft); line-height:1.75; margin-bottom:14px; }
.local-seo-card ul{ display:grid; gap:10px; margin-top:18px; }
.local-seo-card li{ display:flex; gap:9px; align-items:flex-start; color:var(--color-ink); }
.local-seo-card li i{ color:var(--color-olive); margin-top:3px; }
.local-seo-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.local-seo-tags span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(88,117,64,.1);
  color:var(--color-olive-dark);
  font-size:.88rem;
  font-weight:700;
}
.local-seo-strip{
  margin-top:26px;
  padding:26px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:var(--color-olive-dark);
  color:#fff;
  border-radius:18px;
  box-shadow:var(--shadow-card);
}
.local-seo-strip h2{ color:#fff; font-size:1.35rem; margin-bottom:8px; }
.local-seo-strip p{ color:rgba(255,255,255,.76); line-height:1.65; max-width:760px; }
.local-seo-strip .btn{ flex-shrink:0; }
.local-seo-directory{ padding:34px 0 72px; background:var(--color-cream); }
.local-seo-directory__hero{ max-width:880px; margin:26px 0 28px; }
.local-seo-directory__hero h1{ font-size:clamp(2rem, 4vw, 3.2rem); margin:10px 0 14px; }
.local-seo-directory__hero p{ color:var(--color-ink-soft); font-size:1.05rem; line-height:1.75; }
.local-seo-directory__section{ margin-top:28px; }
.local-seo-directory__section h2{ font-size:1.45rem; margin-bottom:16px; }
.local-seo-directory__grid{ display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:18px; }
.local-seo-directory-card{
  display:flex;
  flex-direction:column;
  min-height:190px;
  padding:22px;
  background:#fff;
  border:1px solid var(--color-line);
  border-radius:14px;
  box-shadow:var(--shadow-card);
  color:inherit;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.local-seo-directory-card:hover{ transform:translateY(-3px); border-color:rgba(88,117,64,.35); box-shadow:var(--shadow-soft); }
.local-seo-directory-card strong{ font-size:1.05rem; color:var(--color-ink); margin-bottom:8px; }
.local-seo-directory-card span{ color:var(--color-ink-soft); line-height:1.55; font-size:.92rem; }
.local-seo-directory-card small{ margin-top:auto; padding-top:16px; color:var(--color-olive); font-weight:800; }

.footer-bottom{ position:relative; z-index:1; border-top:1px solid rgba(255,255,255,.1); padding:22px 0; }
.footer-bottom__inner{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;
  font-size:.82rem;
  color: rgba(255,255,255,.6);
}
.payment-icons{ display:flex; align-items:center; gap:14px; font-size:1.5rem; color: rgba(255,255,255,.55); }
.payment-icons__troy{ font-size:.78rem; font-weight:700; border:1px solid rgba(255,255,255,.3); border-radius:4px; padding:2px 6px; }
.footer-bottom__credit{ display:flex; align-items:center; gap:6px; color: rgba(255,255,255,.6); transition: color .2s var(--ease); }
.footer-bottom__credit:hover{ color: var(--color-sun-light); }
.footer-bottom__copy{ color: rgba(255,255,255,.6); }

/* ---------------- Dealer modal / form ---------------- */
.dealer-modal .dealer-form__success{
  text-align:center; padding:24px 8px;
}
.dealer-form__success i{ font-size:2.6rem; color: var(--color-olive); margin-bottom:14px; display:block; }
.dealer-form__generic-error{
  display:none;
  align-items:center; gap:8px;
  background: rgba(168,50,50,.08);
  color: var(--color-danger);
  padding:10px 14px;
  border-radius: var(--radius-soft);
  font-size:.85rem;
  margin-bottom:16px;
}
.dealer-form__generic-error.is-visible{ display:flex; }
.dealer-form__submit{ width:100%; margin-top:8px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{ padding:32px 0 72px; background: var(--color-cream); }
.hero__grid{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:24px;
  height:560px;
}
.hero__main{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: var(--color-olive-dark);
}
.hero__main-track{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0;
  opacity:0; visibility:hidden;
  background-size: cover;
  background-position: center;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.hero-slide.is-active{ opacity:1; visibility:visible; }
.hero-slide__img{ width:100%; height:100%; object-fit:cover; }
.hero-slide__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(46,36,23,.05) 0%, rgba(46,36,23,.65) 100%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:48px;
}
.hero-slide__tag{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255,255,255,.15);
  color:#fff;
  padding:6px 14px;
  border-radius:100px;
  font-size:.78rem;
  font-weight:600;
  width:fit-content;
  margin-bottom:16px;
  backdrop-filter: blur(4px);
}
.hero-slide__title{ color:#fff; font-size:2.6rem; max-width:560px; margin-bottom:14px; }
.hero-slide__desc{ color: rgba(255,255,255,.82); max-width:460px; margin-bottom:24px; font-size:1.02rem; }
.hero__dots{
  position:absolute; bottom:24px; left:48px; z-index:5;
  display:flex; gap:8px;
}
.hero__dot{
  width:8px; height:8px; border-radius:50%;
  background: rgba(255,255,255,.4);
  transition: background-color .2s var(--ease), width .3s var(--ease);
}
.hero__dot.is-active{ background:#fff; width:24px; border-radius:100px; }
.hero__arrow{
  position:absolute; top:50%; transform: translateY(-50%);
  width:44px; height:44px;
  border-radius:50%;
  background: rgba(255,255,255,.15);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  z-index:5;
  transition: background-color .2s var(--ease);
  backdrop-filter: blur(4px);
}
.hero__arrow:hover{ background: rgba(255,255,255,.3); }
.hero__arrow--prev{ left:20px; }
.hero__arrow--next{ right:20px; }

.hero__side{ display:flex; flex-direction:column; gap:24px; height:100%; }
.hero__side-card{
  flex:1;
  border-radius: var(--radius-lg);
  padding:28px;
  display:flex; flex-direction:column; justify-content:flex-end;
  position:relative;
  overflow:hidden;
  color:#fff;
  background-size: cover;
  background-position: center;
  transition: transform .3s var(--ease);
}
.hero__side-card:hover{ transform: translateY(-4px); }
.hero__side-card i{ font-size:1.8rem; margin-bottom:12px; opacity:.9; }
.hero__side-card h3{ color:#fff; font-size:1.15rem; margin-bottom:6px; }
.hero__side-card p{ color: rgba(255,255,255,.8); font-size:.88rem; }

/* ==========================================================================
   PARTNERS BAND
   ========================================================================== */
.partners-band{ background: var(--color-cream); padding:32px 0; border:none; }
.partners-band__inner, .partners-band__container{ display:flex; align-items:center; justify-content:center; gap:48px; flex-wrap:wrap; overflow-x:auto; }
.partners-band__label{ font-weight:600; color: var(--color-ink-soft); flex-shrink:0; font-size:.85rem; white-space:nowrap; }
.partners-band__logos{ display:flex; align-items:center; gap:48px; flex-shrink:0; }
.partners-band__logos img, .partners-band__logo img{ height:32px; max-height:32px; max-width:120px; width:auto; object-fit:contain; opacity:.55; filter:grayscale(1); transition: opacity .2s var(--ease); }
.partners-band__logos img:hover, .partners-band__logo img:hover{ opacity:.9; }
.partners-band__logo{ display:flex; align-items:center; flex-shrink:0; }

/* ==========================================================================
   SECTION HEADER (paylaşılan)
   ========================================================================== */
.section-header{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:40px; flex-wrap:wrap; }
.section-header__tag{
  display:inline-flex; align-items:center; gap:8px;
  color: var(--color-olive);
  font-weight:700;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:10px;
}
.section-header__tag i{ font-size:.9rem; }
.section-header h2{ font-size:2rem; max-width:520px; }
.section-header p{ color: var(--color-ink-soft); max-width:440px; }

/* ==========================================================================
   FEATURED / PRODUCT GRID (Anasayfa)
   ========================================================================== */
.featured-section{ padding:88px 0; }
.featured-heading{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:40px; flex-wrap:wrap; }
.featured-heading h2{ font-size:2rem; }
.section-heading__cta{ font-weight:700; font-size:.9rem; color: var(--color-olive); display:inline-flex; align-items:center; gap:6px; transition: gap .2s var(--ease); }
.section-heading__cta:hover{ gap:10px; }
.product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:24px;
}
.product-grid-more{
  display:block;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition: max-height .5s var(--ease), opacity .4s var(--ease), margin-top .4s var(--ease);
}
.product-grid-more.is-expanded{ max-height:2000px; opacity:1; margin-top:24px; }
.product-grid-toggle{ display:flex; justify-content:center; margin-top:40px; }
.show-more-wrap{ display:flex; justify-content:center; margin-top:40px; }
.btn-show-more{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 30px;
  border:1.5px solid var(--color-olive);
  border-radius:100px;
  color: var(--color-olive);
  font-weight:600;
  font-family: var(--font-card);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.btn-show-more:hover{ background: var(--color-olive); color:#fff; }
.btn-show-more__label{ font-weight:600; }
.btn-show-more i{ transition: transform .3s var(--ease); }
.btn-show-more.is-expanded i{ transform: rotate(180deg); }

.product-card{
  position:relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border:1px solid var(--color-line);
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.product-card__media{ position:relative; aspect-ratio:1/1; overflow:hidden; background: var(--color-cream-2); display:flex; align-items:center; justify-content:center; }
.product-card__media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.product-card:hover .product-card__media img{ transform: scale(1.06); }
.product-card__icon{ font-size:2.2rem; color: var(--color-line); }
.product-card__badge{
  position:absolute; top:12px; left:12px; z-index:2;
  padding:5px 12px;
  border-radius:100px;
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.03em;
  color:#fff;
  background: var(--color-terracotta);
}
.product-card__badge--new{ background: var(--color-olive); }
.product-card__badge--sale{ background: var(--color-terracotta); }
.product-card__wishlist{
  position:absolute; top:12px; right:12px; z-index:2;
  width:36px; height:36px;
  border-radius:50%;
  background: rgba(255,255,255,.9);
  display:flex; align-items:center; justify-content:center;
  color: var(--color-ink-soft);
  opacity:0; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), color .2s var(--ease);
}
.product-card:hover .product-card__wishlist{ opacity:1; transform:translateY(0); }
.product-card__wishlist:hover, .product-card__wishlist.is-active{ color: var(--color-terracotta); }
.product-card__quick-add{
  position:absolute; left:12px; right:12px; bottom:12px; z-index:2;
  opacity:0; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.product-card:hover .product-card__quick-add{ opacity:1; transform: translateY(0); }
.product-card__quick-add button{
  width:100%;
  padding:11px;
  border-radius: var(--radius-soft);
  background: var(--color-ink);
  color:#fff;
  font-weight:600;
  font-size:.85rem;
  display:flex; align-items:center; justify-content:center; gap:8px;
  transition: background-color .2s var(--ease);
}
.product-card__quick-add button:hover{ background: var(--color-olive); }
.product-card__body{ padding:18px; }
.product-card__cat{ font-size:.72rem; text-transform:uppercase; letter-spacing:.05em; color: var(--color-olive); font-weight:700; margin-bottom:6px; }
.product-card__title{ font-size:1rem; margin-bottom:8px; line-height:1.35; }
.product-card__title a{ color: var(--color-ink); transition: color .2s var(--ease); }
.product-card__title a:hover{ color: var(--color-olive); }
.product-card__desc{ font-size:.85rem; color: var(--color-ink-soft); line-height:1.5; margin-bottom:12px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.product-card__rating{ display:flex; align-items:center; gap:6px; font-size:.78rem; color: var(--color-ink-soft); margin-bottom:10px; }
.product-card__rating .stars{ color: var(--color-sun); }
.product-card__footer{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:8px; }
.product-card__price-row{ display:flex; align-items:center; gap:10px; }
.product-card__price{ font-family: var(--font-card); font-weight:700; font-size:1.15rem; color: var(--color-ink); }
.product-card__price--old{ font-family: var(--font-body); font-weight:400; font-size:.88rem; color: var(--color-ink-soft); text-decoration: line-through; }
.product-card__addbtn{
  width:40px; height:40px; flex-shrink:0;
  border-radius:50%;
  background: var(--color-olive);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:.95rem;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.product-card__addbtn:hover{ background: var(--color-olive-dark); transform: scale(1.08); }

/* ==========================================================================
   ABOUT SECTION (anasayfa özet)
   ========================================================================== */
.about-section{ padding:88px 0; background: var(--color-cream-2); overflow:hidden; }
.about-section__grid{ display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:center; }
.about-section__media{ position:relative; }
.about-section__media img{ width:100%; border-radius: var(--radius-lg); }
.about-section__visual{ position:relative; border-radius: var(--radius-lg); overflow:hidden; }
.about-section__visual img{ width:100%; border-radius: var(--radius-lg); display:block; }
.about-section__media-badge{
  position:absolute; bottom:-24px; right:-24px;
  background: var(--color-olive);
  color:#fff;
  padding:20px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.about-section__media-badge strong{ display:block; font-family: var(--font-card); font-size:1.8rem; }
.about-section__media-badge span{ font-size:.78rem; color: rgba(255,255,255,.8); }
.about-section__body .section-header{ margin-bottom:24px; }
.about-section__body p{ color: var(--color-ink-soft); margin-bottom:24px; }
.about-section__content{ display:flex; flex-direction:column; }
.about-section__eyebrow{
  display:inline-block;
  font-family: var(--font-card);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--color-olive);
  margin-bottom:12px;
}
.about-section__content h2{ font-size:2rem; margin-bottom:20px; }
.about-section__text--primary,
.about-section__text--secondary{ color: var(--color-ink-soft); margin-bottom:20px; line-height:1.7; }
.about-section__cta{
  align-self: flex-start;
  margin-top: 8px;
  background: var(--color-olive);
  color: #fff;
  padding: 16px 36px;
  box-shadow: var(--shadow-card);
  font-size: 1rem;
}
.about-section__cta:hover{
  background: var(--color-olive-dark);
  box-shadow: var(--shadow-lift-sm);
}
.about-feature-list{ display:flex; flex-direction:column; gap:18px; margin-bottom:32px; }
.about-feature-list li{ display:flex; align-items:flex-start; gap:14px; }
.about-feature-list i{
  width:38px; height:38px; flex-shrink:0;
  border-radius:50%;
  background: var(--color-olive);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.about-feature-list strong{ display:block; font-family: var(--font-card); margin-bottom:2px; }
.about-feature-list span{ color: var(--color-ink-soft); font-size:.9rem; }

/* ==========================================================================
   TESTIMONIALS + MARQUEE
   ========================================================================== */
.testimonials-section{ padding:88px 0; overflow:hidden; }
.testimonials-section .section-header{ text-align:center; justify-content:center; flex-direction:column; align-items:center; }
.testimonials-heading{ margin-bottom:44px; }
.testimonials-heading__eyebrow{ display:block; }
.testimonials-heading__title{ font-size:2rem; margin-bottom:12px; }
.testimonials-heading__divider{
  display:block;
  width:56px; height:3px;
  background: var(--color-olive);
  border-radius:100px;
  margin:0 auto;
}
.marquee{ display:flex; flex-direction:column; gap:20px; overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__row{ display:flex; width:max-content; gap:20px; }
.marquee__row--left{ animation: marquee-left 42s linear infinite; }
.marquee__row--right{ animation: marquee-right 42s linear infinite; }
.marquee:hover .marquee__row{ animation-play-state: paused; }
.marquee__track{ display:flex; gap:20px; flex-shrink:0; }
@keyframes marquee-left{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@keyframes marquee-right{ from{ transform: translateX(-50%); } to{ transform: translateX(0); } }

.testimonial-card{
  width:340px; flex-shrink:0;
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:26px;
}
.testimonial-card__stars{ color: var(--color-sun); margin-bottom:14px; font-size:.9rem; }
.testimonial-card__text{ color: var(--color-ink); font-size:.94rem; line-height:1.6; margin-bottom:18px; }
.testimonial-card__author{ display:flex; align-items:center; gap:12px; }
.testimonial-card__avatar{ width:42px; height:42px; border-radius:50%; object-fit:cover; background: var(--color-cream-2); }
.testimonial-card__name{ font-weight:700; font-size:.9rem; }
.testimonial-card__role{ font-size:.78rem; color: var(--color-ink-soft); }

.testimonial-chip{
  width:340px; flex-shrink:0;
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:26px;
  box-sizing:border-box;
  transition: border-color .25s var(--ease), border-width .15s var(--ease), box-shadow .25s var(--ease), padding .15s var(--ease);
}
.testimonial-chip:hover{
  border-color: var(--color-olive);
  border-width: 2px;
  padding:25px;
  box-shadow: var(--shadow-card);
}
.testimonial-chip .rating-stars{ margin-bottom:14px; }
.testimonial-chip p{ color: var(--color-ink); font-size:.94rem; line-height:1.6; margin-bottom:18px; }
.testimonial-chip strong{ display:block; font-weight:700; font-size:.9rem; }
.testimonial-chip__meta{ font-size:.78rem; color: var(--color-ink-soft); }
.rating-stars{ color: var(--color-sun); font-size:.85rem; display:flex; gap:2px; }

/* ==========================================================================
   JOURNAL (blog özet - anasayfa)
   ========================================================================== */
.journal-section{ padding:88px 0; background: var(--color-cream-2); }
.journal-heading{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:44px; flex-wrap:wrap; }
.journal-heading__main{ max-width:560px; }
.journal-heading__eyebrow{
  display:block;
  font-family: var(--font-card);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--color-olive);
  margin-bottom:8px;
}
.journal-heading__title{ font-size:2rem; margin-bottom:12px; }
.journal-heading__divider{ display:block; width:56px; height:3px; background: var(--color-olive); border-radius:100px; }
.journal-heading__cta{ font-weight:700; font-size:.9rem; color: var(--color-olive); display:inline-flex; align-items:center; gap:6px; transition: gap .2s var(--ease); }
.journal-heading__cta:hover{ gap:10px; }
.journal-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:28px; }
.journal-card{
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--color-line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.journal-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.journal-card__media{ position:relative; aspect-ratio:16/10; overflow:hidden; background: var(--color-cream-2); display:flex; align-items:center; justify-content:center; color: var(--color-line); font-size:2rem; }
.journal-card__media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.journal-card:hover .journal-card__media img{ transform: scale(1.06); }
.journal-card__badge{
  position:absolute; top:12px; left:12px; z-index:2;
  padding:5px 12px;
  border-radius:100px;
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.03em;
  color:#fff;
  background: var(--color-olive);
}
.journal-card__body{ padding:22px; }
.journal-card__meta{ display:flex; align-items:center; gap:14px; font-size:.78rem; color: var(--color-ink-soft); margin-bottom:10px; }
.journal-card__meta span{ display:flex; align-items:center; gap:6px; }
.journal-card__date{ display:flex; align-items:center; gap:6px; font-size:.78rem; color: var(--color-ink-soft); margin-bottom:10px; }
.journal-card__title{ font-size:1.1rem; margin-bottom:10px; line-height:1.4; }
.journal-card__title a{ color: var(--color-ink); transition: color .2s var(--ease); }
.journal-card__title a:hover{ color: var(--color-olive); }
.journal-card__excerpt, .journal-card__desc{ color: var(--color-ink-soft); font-size:.88rem; margin-bottom:14px; }
.journal-card__link{ font-weight:600; font-size:.85rem; color: var(--color-olive); display:inline-flex; align-items:center; gap:6px; }
.journal-card__link i{ transition: transform .2s var(--ease); }
.journal-card__link:hover i{ transform: translateX(4px); }

/* ==========================================================================
   CTA BANNER (paylaşılan - sayfa altı çağrılar)
   ========================================================================== */
.cta-banner{
  background: linear-gradient(120deg, var(--color-olive), var(--color-olive-dark));
  border-radius: var(--radius-lg);
  padding:56px;
  text-align:center;
  color:#fff;
  margin:88px auto;
  max-width:1240px;
}
.cta-banner h2{ color:#fff; font-size:2rem; margin-bottom:12px; }
.cta-banner p{ color: rgba(255,255,255,.8); max-width:520px; margin:0 auto 28px; }
.cta-banner__actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ==========================================================================
   PAGE SECTION / SECTION HEADING (paylaşılan)
   ========================================================================== */
.page-section{ padding:88px 0; }
.section-heading{ margin-bottom:40px; }
.section-heading--center{ text-align:center; max-width:640px; margin-left:auto; margin-right:auto; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  color: var(--color-olive);
  font-weight:700;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:10px;
}
.section-heading h2{ font-size:2rem; margin-bottom:10px; }
.section-heading p{ color: var(--color-ink-soft); }

/* ==========================================================================
   ABOUT PAGE (Hakkımızda)
   ========================================================================== */
.about-hero{ position:relative; padding:140px 0 90px; overflow:hidden; }
.about-hero__media{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.about-hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(55,65,31,.72), rgba(55,65,31,.85));
}
.about-hero__inner{ position:relative; z-index:2; text-align:center; }
.about-hero h1{ color:#fff; font-size:2.8rem; max-width:760px; margin:0 auto 16px; }
.about-hero h1 span{ color: var(--color-sun-light); }
.about-hero__inner > p{ color: rgba(255,255,255,.82); max-width:600px; margin:0 auto 40px; font-size:1.05rem; }
.about-hero__stats{ display:flex; justify-content:center; gap:56px; flex-wrap:wrap; }
.about-hero__stat{ text-align:center; }
.about-hero__stat-num{ display:block; font-family: var(--font-card); font-weight:700; font-size:2.4rem; color:#fff; }
.about-hero__stat-label{ font-size:.85rem; color: rgba(255,255,255,.72); }

.about-story{ padding:88px 0; }
.about-story__grid{ display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:center; }
.about-story__media{ position:relative; }
.about-story__media img{ width:100%; border-radius: var(--radius-lg); }
.about-story__media-badge{
  position:absolute; bottom:-20px; left:-20px;
  background: var(--color-terracotta);
  color:#fff;
  padding:18px 24px;
  border-radius: var(--radius-lg);
  text-align:center;
  box-shadow: var(--shadow-soft);
}
.about-story__media-badge-year{ display:block; font-family: var(--font-card); font-weight:700; font-size:1.4rem; }
.about-story__media-badge-text{ font-size:.75rem; color: rgba(255,255,255,.85); }
.about-story__text p{ color: var(--color-ink-soft); margin-bottom:18px; }
.about-story__link{ display:inline-flex; align-items:center; gap:8px; font-weight:700; color: var(--color-olive); margin-top:8px; }
.about-story__link i{ transition: transform .2s var(--ease); }
.about-story__link:hover i{ transform: translateX(4px); }

.about-values{ background: var(--color-cream-2); }
.about-values__grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:24px; }
.about-values__more{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:24px;
  max-height:0; overflow:hidden; opacity:0;
  transition: max-height .5s var(--ease), opacity .4s var(--ease), margin-top .4s var(--ease);
}
.about-values__more.is-expanded{
  max-height:1400px; opacity:1; margin-top:24px;
}
.about-values__toggle{ display:flex; justify-content:center; margin-top:32px; }
.about-value-card{
  position:relative;
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:32px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.about-value-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.about-value-card__num{
  position:absolute; top:18px; right:22px;
  font-family: var(--font-card); font-weight:700;
  font-size:1.6rem; color: var(--color-line);
}
.about-value-card__icon{
  width:52px; height:52px;
  border-radius:50%;
  background: var(--color-cream);
  color: var(--color-olive);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem;
  margin-bottom:18px;
}
.about-value-card h4{ margin-bottom:8px; }
.about-value-card p{
  color: var(--color-ink-soft);
  font-size:.9rem;
  line-height: 1.5;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-mission{ background: var(--color-cream-2); }
.about-mission__grid{ display:grid; grid-template-columns: 1fr 1fr; gap:24px; }
.about-mission-card{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  min-height:340px;
  background-color: var(--color-olive-dark);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:flex; align-items:flex-end;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.about-mission-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(55,65,31,0.25);
}
.about-mission-card__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(55,65,31,.7), rgba(55,65,31,.92));
}
.about-mission-card__content{ position:relative; z-index:2; padding:32px; }
.about-mission-card__icon{
  width:56px; height:56px;
  border-radius:50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-sun-light);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem;
  margin-bottom:16px;
}
.about-mission-card h3{ color:#fff; margin-bottom:10px; }
.about-mission-card p{ color: rgba(255,255,255,.82); }

.about-roadmap{ background: var(--color-cream); }
.about-roadmap__track{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 40px;
}
.about-roadmap__line{
  position: absolute;
  top: 62px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--color-line);
  border-radius: 2px;
}
.about-roadmap__step{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}
.about-roadmap__dot{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px var(--color-cream), 0 0 0 8px var(--color-olive);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.about-roadmap__step:hover .about-roadmap__dot{
  transform: scale(1.15);
  box-shadow: 0 0 0 6px var(--color-cream), 0 0 0 10px var(--color-sun);
}
.about-roadmap__content{ max-width: 160px; padding-top: 8px; }
.about-roadmap__content h4{ font-size: 0.95rem; margin-bottom: 6px; color: var(--color-ink); }
.about-roadmap__content p{ font-size: 0.82rem; color: var(--color-ink-soft); line-height: 1.45; }

/* ==========================================================================
   BLOG LIST PAGE
   ========================================================================== */
.blog-page-hero{ position:relative; background: var(--color-olive-dark); padding:48px 0 40px; overflow:hidden; }
.blog-page-hero__pattern{
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 28px
  );
  opacity:1;
}
.blog-page-hero__grid{ position:relative; z-index:2; display:grid; grid-template-columns: 1fr; gap:0; align-items:center; }
.blog-page-hero__text h1{ color:#fff; font-size:2rem; margin-bottom:10px; }
.blog-page-hero__text p{ color: rgba(255,255,255,.78); font-size:.95rem; max-width:640px; }
.blog-page-hero__media{ display:none; }

.blog-page-layout{ display:grid; grid-template-columns: 2.2fr 1fr; gap:48px; align-items:start; }
.blog-page-main{ min-width:0; }
.blog-page-toolbar{ display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; }
.blog-page-toolbar__title{ font-size:1.5rem; }
.blog-page-toolbar__count{ color: var(--color-ink-soft); font-size:.88rem; }

.blog-page-empty{ text-align:center; padding:64px 24px; background: var(--color-cream-2); border-radius: var(--radius-lg); }
.blog-page-empty__icon{ font-size:2.4rem; color: var(--color-olive); margin-bottom:16px; }
.blog-page-empty p{ color: var(--color-ink-soft); max-width:420px; margin:10px auto 22px; }
.blog-page-empty__cta{ display:inline-flex; }

.blog-page-section{ padding-top:48px; }

.blog-page-featured{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:0;
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  margin-bottom:32px;
  transition: box-shadow .3s var(--ease);
}
.blog-page-featured:hover{ box-shadow: var(--shadow-lift); }
.blog-page-featured__media{ position:relative; min-height:280px; background: var(--color-cream-2); }
.blog-page-featured__media img{ width:100%; height:100%; object-fit:cover; }
.blog-page-featured__media i{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:2.5rem; color: var(--color-line); }
.blog-page-featured__badge{
  position:absolute; top:16px; left:16px; z-index:2;
  background: var(--color-olive);
  color:#fff;
  padding:5px 14px;
  border-radius:100px;
  font-size:.72rem; font-weight:700;
}
.blog-page-featured__body{ padding:32px; display:flex; flex-direction:column; justify-content:center; }
.blog-page-featured__eyebrow{ color: var(--color-terracotta); font-weight:700; font-size:.78rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:10px; display:flex; align-items:center; gap:6px; }
.blog-page-featured__title{ font-size:1.5rem; margin-bottom:12px; }
.blog-page-featured__desc{ color: var(--color-ink-soft); margin-bottom:18px; }
.blog-page-featured__meta{ display:flex; align-items:center; justify-content:space-between; font-size:.82rem; color: var(--color-ink-soft); }
.blog-page-featured__link{ color: var(--color-olive); font-weight:700; display:flex; align-items:center; gap:6px; }

.blog-page-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:24px; }
.blog-page-card{
  display:block;
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.blog-page-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.blog-page-card__media{ position:relative; aspect-ratio:16/10; background: var(--color-cream-2); overflow:hidden; }
.blog-page-card__media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.blog-page-card:hover .blog-page-card__media img{ transform: scale(1.06); }
.blog-page-card__media i{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:2rem; color: var(--color-line); }
.blog-page-card__badge{
  position:absolute; top:12px; left:12px; z-index:2;
  background: rgba(255,255,255,.92);
  color: var(--color-olive);
  padding:4px 12px;
  border-radius:100px;
  font-size:.68rem; font-weight:700;
}
.blog-page-card__body{ padding:20px; }
.blog-page-card__date{ font-size:.76rem; color: var(--color-ink-soft); display:flex; align-items:center; gap:6px; margin-bottom:8px; }
.blog-page-card__title{ font-size:1.05rem; margin-bottom:10px; line-height:1.4; color: var(--color-ink); }
.blog-page-card__desc{ color: var(--color-ink-soft); font-size:.86rem; margin-bottom:14px; }
.blog-page-card__link{ font-size:.82rem; font-weight:700; color: var(--color-olive); display:inline-flex; align-items:center; gap:6px; }

.blog-page-pagination{ display:flex; align-items:center; justify-content:center; gap:8px; margin-top:40px; }
.blog-page-pagination__btn{
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  font-weight:600; font-size:.88rem;
  color: var(--color-ink);
  border:1px solid var(--color-line);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.blog-page-pagination__btn:hover{ background: var(--color-cream); }
.blog-page-pagination__btn.is-active{ background: var(--color-olive); border-color: var(--color-olive); color:#fff; }
.blog-page-pagination__btn.is-disabled{ opacity:.4; pointer-events:none; }
.blog-page-pagination__btn--arrow{ font-size:.85rem; }

.blog-page-sidebar{ display:flex; flex-direction:column; gap:24px; }
.blog-page-filter, .blog-page-recent{
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:24px;
}
.blog-page-filter__title, .blog-page-recent__title{ font-size:1rem; margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.blog-page-filter__title i, .blog-page-recent__title i{ color: var(--color-olive); }
.blog-page-filter__list{ display:flex; flex-direction:column; gap:2px; }
.blog-page-filter__item{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px;
  border-radius: var(--radius-soft);
  color: var(--color-ink-soft);
  font-size:.9rem;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.blog-page-filter__row.is-active .blog-page-filter__item,
.blog-page-filter__item:hover{ background: var(--color-cream); color: var(--color-olive); }
.blog-page-filter__count{ font-size:.78rem; color: var(--color-ink-soft); background: var(--color-cream-2); padding:2px 9px; border-radius:100px; }
.blog-page-filter__name{ flex:1; }

.blog-page-recent__list{ display:flex; flex-direction:column; gap:16px; }
.blog-page-recent__item{}
.blog-page-recent__link{ display:flex; gap:12px; align-items:center; }
.blog-page-recent__thumb{ width:56px; height:56px; border-radius:10px; overflow:hidden; background: var(--color-cream-2); flex-shrink:0; position:relative; }
.blog-page-recent__thumb img{ width:100%; height:100%; object-fit:cover; }
.blog-page-recent__thumb i{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color: var(--color-line); }
.blog-page-recent__body{ min-width:0; }
.blog-page-recent__post-title{ display:block; font-weight:600; font-size:.86rem; line-height:1.4; margin-bottom:4px; }
.blog-page-recent__date{ font-size:.74rem; color: var(--color-ink-soft); display:flex; align-items:center; gap:5px; }

.blog-page-cta{
  background: linear-gradient(150deg, var(--color-olive), var(--color-olive-dark));
  border-radius: var(--radius-lg);
  padding:28px 24px;
  text-align:center;
  color:#fff;
}
.blog-page-cta i{ font-size:1.8rem; margin-bottom:12px; color: var(--color-sun-light); }
.blog-page-cta h3{ color:#fff; font-size:1.1rem; margin-bottom:8px; }
.blog-page-cta p{ color: rgba(255,255,255,.78); font-size:.85rem; margin-bottom:18px; }
.blog-page-cta__btn{
  width:100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding:13px 24px;
  border-radius: var(--radius-pill);
  font-size:.9rem;
  color:#fff;
  transition: background-color .25s var(--ease), transform .25s var(--ease), gap .25s var(--ease), box-shadow .25s var(--ease);
}
.blog-page-cta__btn:hover{
  color:#fff;
  transform: translateY(-2px);
  gap: 12px;
  box-shadow: var(--shadow-lift);
}
.blog-page-cta__btn i{
  transition: transform .25s var(--ease);
  font-size: .78rem;
  line-height:1;
  display:inline-flex;
  align-items:center;
  color:#fff;
}
.blog-page-cta__btn:hover i{
  transform: translateX(4px);
}

/* ==========================================================================
   BLOG DETAIL PAGE
   ========================================================================== */
.blog-page-detail{}
.blog-page-detail__top{ padding:20px 0; }
.blog-page-detail__hero{ position:relative; min-height:420px; display:flex; align-items:flex-end; overflow:hidden; }
.blog-page-detail__hero-media{ position:absolute; inset:0; background: var(--color-cream-2); }
.blog-page-detail__hero-media img{ width:100%; height:100%; object-fit:cover; }
.blog-page-detail__hero-media i{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:3rem; color: var(--color-line); }
.blog-page-detail__hero-overlay{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(46,36,23,.1), rgba(46,36,23,.85)); }
.blog-page-detail__hero-content{ position:relative; z-index:2; padding-bottom:48px; }
.blog-page-detail__hero-content h1{ color:#fff; font-size:2.4rem; max-width:820px; margin-bottom:20px; }
.blog-page-detail__meta{ display:flex; align-items:center; gap:24px; flex-wrap:wrap; color: rgba(255,255,255,.78); font-size:.88rem; }
.blog-page-detail__author{ display:flex; align-items:center; gap:10px; font-weight:600; color:#fff; }
.blog-page-detail__avatar{
  width:32px; height:32px; border-radius:50%;
  background: var(--color-olive);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.8rem;
}
.blog-page-detail__layout{ display:grid; grid-template-columns: 2.2fr 1fr; gap:48px; align-items:start; padding-top:56px; }
.blog-page-detail__article{ min-width:0; }
.blog-page-detail__sidebar{ min-width:0; }
.blog-page-detail__content{ color: var(--color-ink); font-size:1.02rem; line-height:1.85; }
.blog-page-detail__content p{ margin-bottom:20px; }
.blog-page-detail__content h2, .blog-page-detail__content h3{ margin:32px 0 16px; }
.blog-page-detail__content img{ width:100%; border-radius: var(--radius-lg); margin:24px 0; }
.blog-page-detail__content ul, .blog-page-detail__content ol{ margin:0 0 20px 22px; color: var(--color-ink-soft); }
.blog-page-detail__content a{ color: var(--color-olive); text-decoration:underline; }
.blog-page-detail__share{ margin-top:40px; padding-top:24px; border-top:1px solid var(--color-line); }
.blog-page-detail__share-links{ display:flex; gap:12px; }
.blog-page-detail__share-btn{
  width:40px; height:40px;
  border-radius:50%;
  background: var(--color-cream-2);
  color: var(--color-ink);
  display:flex; align-items:center; justify-content:center;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.blog-page-detail__share-btn:hover{ background: var(--color-olive); color:#fff; }
.blog-page-related{ padding:64px 0 88px; }
.blog-page-related__title{ font-size:1.5rem; margin-bottom:24px; }
.blog-page-related__grid{ grid-template-columns: repeat(3, 1fr); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-hero-band{ background: var(--color-olive-dark); margin-top: calc(-1 * var(--header-h)); padding-top: calc(var(--header-h) + 72px); padding-bottom:64px; position:relative; overflow:hidden; }
.contact-hero-band__pattern{
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events:none;
}
.contact-hero-band .container{ position:relative; z-index:2; }
.contact-hero-band .breadcrumb{ margin-bottom:24px; }
.contact-hero-band .breadcrumb a, .contact-hero-band .breadcrumb__current{ color: rgba(255,255,255,.7); }
.contact-hero-band .breadcrumb a:hover{ color:#fff; }
.contact-hero h1{ color:#fff; font-size:2.4rem; margin-bottom:12px; }
.contact-hero p{ color: rgba(255,255,255,.78); max-width:560px; }

.contact-biz-cards{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:20px;
  margin-top:-40px; margin-bottom:64px; position:relative; z-index:2;
}
.contact-biz-card{
  background: var(--color-white);
  border: 1px solid var(--color-line);
  backdrop-filter: none;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-biz-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift-sm);
}
.contact-biz-card__icon{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}
.contact-biz-card h3{
  color: var(--color-ink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight:600;
}
.contact-biz-card p{
  color: var(--color-ink-soft);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-card);
}

.contact-layout{ display:grid; grid-template-columns: 1fr 1.4fr; gap:32px; align-items:stretch; margin-bottom:72px; }
.contact-info-col{ order:-1; }
.contact-form-col{ order:0; }
.contact-page{ padding:64px 0 0; background: var(--color-white); }
.contact-form-row{ /* modifier for .form-row, no additional styles needed */ }
.contact-form-col, .contact-info-col{ display:flex; flex-direction:column; height:100%; }
.contact-form-card{
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:36px;
  flex:1;
}
.contact-form-card h2{ font-size:1.5rem; margin-bottom:6px; }
.contact-form-col__desc{ color: var(--color-ink-soft); margin-bottom:24px; }
.contact-form-grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact-form-honeypot{ position:absolute; left:-9999px; opacity:0; }
.contact-submit-btn{
  width:100%;
  padding:15px;
  border-radius: var(--radius-soft);
  background: var(--color-olive);
  color:#fff;
  font-weight:700;
  font-family: var(--font-card);
  margin-top:8px;
  transition: background-color .2s var(--ease);
}
.contact-submit-btn:hover{ background: var(--color-olive-dark); }

.contact-info-col{ gap:24px; }
.contact-map{
  border-radius: var(--radius-lg);
  overflow:hidden;
  flex:1;
  min-height:220px;
  border:1px solid var(--color-line);
}
.contact-info-list{
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:8px;
  display:flex; flex-direction:column;
}
.contact-info-list__item{ display:flex; align-items:flex-start; gap:14px; padding:16px; border-bottom:1px solid var(--color-line); }
.contact-info-list__item:last-child{ border-bottom:none; }
.contact-info-list__icon{
  width:40px; height:40px; flex-shrink:0;
  border-radius:50%;
  background: var(--color-cream);
  color: var(--color-olive);
  display:flex; align-items:center; justify-content:center;
}
.contact-info-list__text{ display:flex; flex-direction:column; }
.contact-info-list__label{ display:block; font-size:.78rem; color: var(--color-ink-soft); margin-bottom:2px; }
.contact-info-list__value{ font-weight:600; color: var(--color-ink); font-size:.92rem; }

.contact-whatsapp-cta{ background: var(--color-olive-dark); padding:48px 0; margin:0 0 -2px; border:none; box-shadow:none; position:relative; overflow:hidden; }
.contact-whatsapp-cta__inner{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.contact-whatsapp-cta__text{ display:flex; align-items:center; gap:18px; }
.contact-whatsapp-cta__icon-frame{
  width:64px; height:64px;
  border-radius:50%;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem;
  flex-shrink:0;
  position:relative;
  animation: whatsapp-pulse 2s infinite;
}
@keyframes whatsapp-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  70%{ box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.contact-whatsapp-cta__text h3{ color:#fff; font-size:1.15rem; margin-bottom:2px; }
.contact-whatsapp-cta__text p{ color: rgba(255,255,255,.85); font-size:.9rem; }
.contact-whatsapp-cta__btn{
  display:inline-flex; align-items:center; gap:10px;
  background: #fff;
  color: var(--color-olive-dark);
  padding:14px 28px;
  border-radius: var(--radius-pill);
  font-weight:700;
  transition: background .2s var(--ease), transform .2s var(--ease);
  flex-shrink:0;
}
.contact-whatsapp-cta__btn:hover{ background: var(--color-sun-light); transform: translateY(-2px); }

/* ==========================================================================
   SHOP PAGE (Ürünler)
   ========================================================================== */
.eyebrow-badge{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 16px;
  border-radius:100px;
  font-size:.78rem; font-weight:700;
  margin-bottom:16px;
}
.eyebrow-badge--sun{ background: rgba(217,164,65,.16); color: var(--color-sun-dark, #a97c1f); }

.shop-hero{ background: var(--color-olive-dark); padding:56px 0; text-align:center; position:relative; overflow:hidden; }
.shop-hero::before{
  content:'';
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 28px);
  pointer-events:none;
}
.shop-hero__inner{ max-width:640px; margin:0 auto; position:relative; z-index:1; }
.shop-hero__label{
  display:inline-block;
  font-family: var(--font-card);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sun-light);
  margin-bottom: 12px;
}
.shop-hero h1{ color:#fff; font-size:2.3rem; margin-bottom:12px; }
.shop-hero p{ color: rgba(255,255,255,.78); }

.shop-category-strip{
  position:relative;
  background: linear-gradient(180deg, var(--color-cream-2), var(--color-cream));
  padding:36px 0;
  border-bottom:none;
  overflow:hidden;
}
.shop-category-strip::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(91,107,55,.10) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity:.5;
  pointer-events:none;
}
.shop-category-carousel{
  position:relative;
  overflow:hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
}
.shop-category-grid{
  position:relative;
  display:flex;
  gap:16px;
  padding:6px 4px 12px;
  width:max-content;
  animation: shopCatMarquee var(--shop-cat-duration, 34s) linear infinite;
}
.shop-category-carousel:hover .shop-category-grid,
.shop-category-carousel.is-paused .shop-category-grid{
  animation-play-state: paused;
}
.shop-category-carousel.is-static .shop-category-grid{
  animation:none;
  width:100%;
  flex-wrap:wrap;
  justify-content:center;
}
@keyframes shopCatMarquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
.shop-category-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:16px;
}
.shop-category-nav__btn{
  width:40px; height:40px;
  border-radius:50%;
  background: var(--color-white);
  color: var(--color-olive);
  box-shadow: var(--shadow-card);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem;
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.shop-category-nav__btn:hover{ background: var(--color-olive); color:#fff; transform: translateY(-2px); }
.shop-cat-card{
  position:relative;
  flex-shrink:0;
  display:flex; flex-direction:column; align-items:center; gap:12px;
  min-width:152px;
  padding:26px 20px 20px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border-bottom:4px solid transparent;
  box-shadow: var(--shadow-card);
  text-align:center;
  font-family: var(--font-card);
  font-weight:600;
  overflow:hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background-color .3s ease, background-image .3s ease;
}
.shop-cat-card::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(150deg, rgba(91,107,55,.10), rgba(217,164,65,.12));
  opacity:0;
  transition: opacity .3s ease;
  pointer-events:none;
}
.shop-cat-card:hover{
  transform: translateY(-8px) scale(1.04);
  box-shadow: var(--shadow-lift);
  border-bottom-color: var(--color-sun);
  background: var(--color-olive);
}
.shop-cat-card:hover::before{ opacity:1; }
.shop-cat-card:hover .shop-cat-card__icon{
  transform: scale(1.12) rotate(-6deg);
  background: var(--color-sun);
  color: var(--color-olive-dark);
}
.shop-cat-card:hover .shop-cat-card__name,
.shop-cat-card:hover .shop-cat-card__count{ color:#fff; }
.shop-cat-card.is-active{
  border-bottom-color: var(--color-sun);
  background: linear-gradient(150deg, var(--color-olive), var(--color-olive-dark));
  color:#fff;
  box-shadow: var(--shadow-lift-sm);
}
.shop-cat-card__icon{
  position:relative;
  z-index:1;
  width:58px; height:58px;
  border-radius:50%;
  background: var(--color-cream);
  color: var(--color-olive);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
  box-shadow: 0 4px 10px rgba(46,36,23,.08);
  transition: transform .3s ease, background-color .3s ease, color .3s ease;
}
.shop-cat-card.is-active .shop-cat-card__icon{ background: var(--color-sun); color: var(--color-olive-dark); }
.shop-cat-card__name{ position:relative; z-index:1; font-family: var(--font-card); font-weight:600; font-size:.92rem; color: var(--color-ink); transition: color .3s ease; }
.shop-cat-card.is-active .shop-cat-card__name{ color:#fff; }
.shop-cat-card__count{ position:relative; z-index:1; font-size:.74rem; color: var(--color-ink-soft); transition: color .3s ease; }
.shop-cat-card.is-active .shop-cat-card__count{ color:rgba(255,255,255,.75); }

.shop-page{ padding:48px 0 88px; background: var(--color-cream); }
.shop-page .breadcrumb{ margin-bottom:24px; }
.shop-header{ margin-bottom:28px; }
.shop-header h1{ font-size:1.9rem; margin-top:6px; }
.shop-header__desc{ color: var(--color-ink-soft); margin-top:8px; max-width:600px; }

.shop-filter-toggle{
  display:none;
  width:100%;
  align-items:center; justify-content:space-between;
  padding:14px 18px;
  border:1px solid var(--color-line);
  border-radius: var(--radius-soft);
  background: var(--color-white);
  font-weight:600;
  margin-bottom:16px;
}
.shop-filter-toggle i:last-child{ transition: transform .2s var(--ease); }
.shop-filter-toggle[aria-expanded="true"] i:last-child{ transform: rotate(180deg); }

.shop-layout{ display:grid; grid-template-columns: 280px 1fr; gap:32px; align-items:start; }
.shop-main{ min-width:0; }
.shop-sidebar{
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:24px;
  position:sticky; top:calc(var(--header-h) + 20px);
}
.filter-block{ padding-bottom:22px; margin-bottom:22px; border-bottom:1px solid var(--color-line); }
.filter-block:last-of-type{ border-bottom:none; }
.filter-block__title{ font-size:.92rem; margin-bottom:14px; }
.filter-category-list{ display:flex; flex-direction:column; gap:2px; }
.filter-category-list a{
  display:flex; align-items:center; gap:10px;
  padding:9px 10px;
  border-radius: var(--radius-soft);
  color: var(--color-ink-soft);
  font-size:.88rem;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.filter-category-list a:hover, .filter-category-list a.is-active{ background: var(--color-cream); color: var(--color-olive); }
.filter-category-list__count{ margin-left:auto; font-size:.76rem; background: var(--color-cream-2); padding:2px 8px; border-radius:100px; }

.filter-price-chips{ display:flex; flex-direction:column; gap:8px; }
.price-chip{
  display:flex; align-items:center; justify-content:flex-start;
  width:100%;
  padding:10px 14px;
  border:1.5px solid var(--color-line);
  border-radius: var(--radius-soft);
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-card);
  font-size:.85rem;
  font-weight:600;
  text-align:left;
  cursor:pointer;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
}
.price-chip:hover{ border-color: var(--color-olive); color: var(--color-olive); transform: translateX(2px); }
.price-chip.is-active{
  background: var(--color-olive);
  border-color: var(--color-olive);
  color:#fff;
  box-shadow: var(--shadow-card);
}

.filter-checkbox{ display:flex; align-items:center; gap:10px; cursor:pointer; }
.filter-checkbox input{ position:absolute; opacity:0; width:0; height:0; }
.filter-checkbox__box{
  width:20px; height:20px; flex-shrink:0;
  border:1.5px solid var(--color-line);
  border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  color:transparent;
  font-size:.68rem;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.filter-checkbox input:checked ~ .filter-checkbox__box{ background: var(--color-olive); border-color: var(--color-olive); color:#fff; }
.filter-checkbox__label{ font-size:.88rem; color: var(--color-ink); }
.btn-block{ width:100%; justify-content:center; margin-top:6px; }
.filter-clear-link{ display:block; text-align:center; margin-top:12px; font-size:.85rem; color: var(--color-ink-soft); transition: color .2s var(--ease); }
.filter-clear-link:hover{ color: var(--color-terracotta); }

.shop-toolbar{ display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; flex-wrap:wrap; gap:14px; }
.shop-toolbar__count{ color: var(--color-ink-soft); font-size:.9rem; }
.shop-toolbar__actions{ display:flex; align-items:center; gap:14px; }
.shop-sort{ position:relative; }
.shop-sort select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  min-width:180px;
  padding:11px 38px 11px 16px;
  border:1.5px solid var(--color-line);
  border-radius: var(--radius-soft);
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-card);
  font-size:.86rem;
  font-weight:600;
  cursor:pointer;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.shop-sort select:hover{ border-color: var(--color-olive); }
.shop-sort select:focus{
  outline:none;
  border-color: var(--color-olive);
  box-shadow: 0 0 0 3px rgba(91,107,55,0.12);
}
.shop-sort__arrow{
  position:absolute;
  right:16px; top:50%;
  transform: translateY(-50%);
  font-size:.7rem;
  color: var(--color-ink-soft);
  pointer-events:none;
}
.view-toggle{ display:flex; border:1px solid var(--color-line); border-radius: var(--radius-soft); overflow:hidden; }
.view-toggle__btn{
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  color: var(--color-ink-soft);
  background: var(--color-white);
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
}
.view-toggle__btn:hover{ color: var(--color-olive); }
.view-toggle__btn.is-active{ background: var(--color-olive); color:#fff; transform: scale(1.05); }

.product-listing{ min-width:0; transition: opacity .25s var(--ease); }
.product-listing.is-updating{ opacity:0; }
.product-listing.is-updating .listing-card{ opacity:0; transform: translateY(8px) scale(.98); }
.product-listing .listing-card{
  animation: listingCardIn .35s var(--ease) both;
}
@keyframes listingCardIn{
  from{ opacity:0; transform: translateY(10px) scale(.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}

.shop-empty{ text-align:center; padding:72px 24px; }
.shop-empty i{ font-size:2.6rem; color: var(--color-line); margin-bottom:16px; }
.shop-empty p{ color: var(--color-ink-soft); max-width:420px; margin:8px auto 22px; }

.product-listing--grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.product-listing--list{ display:flex; flex-direction:column; gap:16px; }

.listing-card{
  display:block;
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.listing-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.listing-card__media{ position:relative; aspect-ratio:1/1; background: var(--color-cream-2); overflow:hidden; }
.listing-card__media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s var(--ease); }
.listing-card:hover .listing-card__media img{ transform: scale(1.06); }
.listing-card__icon{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:2.2rem; color: var(--color-line); }
.product-badge{
  position:absolute; top:12px; left:12px; z-index:2;
  padding:5px 12px;
  border-radius:100px;
  font-size:.68rem; font-weight:700; text-transform:uppercase;
  color:#fff; background: var(--color-olive);
}
.product-badge--sale{ background: var(--color-terracotta); }
.product-badge--outofstock{ background: var(--color-ink-soft); top:auto; bottom:12px; left:12px; }
.listing-card__quickadd{
  position:absolute; top:12px; right:12px; z-index:2;
  width:36px; height:36px;
  border-radius:50%;
  background: rgba(255,255,255,.92);
  color: var(--color-ink-soft);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.listing-card:hover .listing-card__quickadd{ opacity:1; transform: translateY(0); }
.listing-card__body{ padding:18px; }
.listing-card__title{ font-size:1rem; margin-bottom:8px; color: var(--color-ink); line-height:1.35; }
.listing-card__desc{ color: var(--color-ink-soft); font-size:.85rem; margin-bottom:14px; }
.listing-card__footer{ display:flex; align-items:center; justify-content:space-between; }
.price-current{ font-family: var(--font-card); font-weight:700; font-size:1.1rem; color: var(--color-ink); }
.price-old{ font-size:.82rem; color: var(--color-ink-soft); text-decoration: line-through; margin-left:6px; }
.listing-card__addbtn{
  width:34px; height:34px;
  border-radius:50%;
  background: var(--color-cream);
  color: var(--color-olive);
  display:flex; align-items:center; justify-content:center;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.listing-card__addbtn:hover{ background: var(--color-olive); color:#fff; }
.listing-card__price{ display:flex; align-items:center; gap:8px; }

/* list view overrides */
.product-listing--list .listing-card{ display:flex; align-items:stretch; }
.product-listing--list .listing-card__media{ width:200px; aspect-ratio:auto; flex-shrink:0; }
.product-listing--list .listing-card__body{ flex:1; display:flex; flex-direction:column; justify-content:center; }
.product-listing--list .listing-card__desc{ -webkit-line-clamp:2; }

.pagination{ display:flex; align-items:center; justify-content:center; gap:6px; margin-top:40px; flex-wrap:wrap; }
.pagination__btn{
  padding:6px 12px;
  min-width:34px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: var(--radius-soft);
  font-weight:600; font-size:.85rem;
  color: var(--color-ink);
  border:1px solid var(--color-line);
  background:#fff;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.pagination__btn:hover{ background: var(--color-cream); }
.pagination__btn.is-active{ background: var(--color-olive); border-color: var(--color-olive); color:#fff; }
.pagination__btn.is-disabled{ opacity:.4; pointer-events:none; }
.pagination__ellipsis{
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 8px; font-size:.85rem; color: var(--color-ink-soft);
  pointer-events:none;
}
@media (max-width:480px){
  .pagination{ gap:4px; margin-top:28px; }
  .pagination__btn{ padding:5px 9px; font-size:.8rem; min-width:30px; }
  .pagination__ellipsis{ padding:5px 4px; }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
.product-detail-page{ padding:32px 0 88px; }
.product-detail-page .breadcrumb{ margin-bottom:28px; }
.product-detail{ display:flex; align-items:stretch; gap:56px; margin-bottom:64px; }
.product-detail > .product-gallery,
.product-detail > .product-info{ flex:1 1 0; display:flex; flex-direction:column; }

.product-gallery{ min-width:0; display:flex; flex-direction:column; height:100%; }
.product-info{ min-width:0; display:flex; flex-direction:column; height:100%; }
.product-gallery__main{
  position:relative;
  flex:1 1 auto;
  min-height:360px;
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: var(--color-cream-2);
  border:1px solid var(--color-line);
  margin-bottom:16px;
}
.product-gallery__main img{ width:100%; height:100%; object-fit:contain; }
.product-gallery__icon{ font-size:3rem; color: var(--color-line); }
.product-gallery__icon--placeholder{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:3rem; color: var(--color-line); }
.product-gallery__thumbs{ display:flex; gap:12px; flex-wrap:wrap; flex-shrink:0; }
.product-gallery__thumb{
  width:76px; height:76px;
  border-radius:10px;
  overflow:hidden;
  border:2px solid transparent;
  background: var(--color-cream-2);
  transition: border-color .2s var(--ease);
  flex-shrink:0;
}
.product-gallery__thumb.is-active{ border-color: var(--color-olive); }
.product-gallery__thumb img{ width:100%; height:100%; object-fit:cover; }

.product-info__category{
  display:inline-flex; align-items:center; gap:8px;
  color: var(--color-olive);
  font-weight:700; font-size:.82rem;
  text-transform:uppercase; letter-spacing:.04em;
  margin-bottom:14px;
}
.product-info__title{ font-size:1.9rem; margin-bottom:16px; }
.product-info__meta{ display:flex; align-items:center; gap:16px; margin-bottom:18px; flex-wrap:wrap; }
.stock-badge{ display:inline-flex; align-items:center; gap:6px; font-size:.85rem; font-weight:600; padding:5px 12px; border-radius:100px; }
.stock-badge--in{ background: rgba(91,107,55,.12); color: var(--color-olive); }
.stock-badge--out{ background: rgba(168,50,50,.1); color: var(--color-danger); }
.product-info__sku{ color: var(--color-ink-soft); font-size:.85rem; }
.product-info__price{ display:flex; align-items:baseline; gap:12px; margin-bottom:18px; }
.price-current--lg{ font-size:2rem; }
.price-old--lg{ font-size:1.1rem; }
.product-info__desc{ color: var(--color-ink-soft); margin-bottom:24px; line-height:1.7; }

.product-variants{ margin-bottom:24px; }
.product-variants h4{ font-size:.9rem; margin-bottom:12px; }
.product-variants__list{ display:flex; gap:10px; flex-wrap:wrap; }
.variant-btn{
  padding:9px 18px;
  border:1.5px solid var(--color-line);
  border-radius: var(--radius-soft);
  font-weight:600; font-size:.88rem;
  color: var(--color-ink);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.variant-btn:hover{ border-color: var(--color-olive); }
.variant-btn.is-active{ background: var(--color-olive); border-color: var(--color-olive); color:#fff; }
.variant-btn:disabled{ opacity:.4; text-decoration: line-through; pointer-events:none; }

.product-purchase{ display:flex; align-items:center; gap:16px; margin-bottom:14px; flex-wrap:wrap; }
.quantity-selector{ display:flex; align-items:center; border:1.5px solid var(--color-line); border-radius: var(--radius-soft); overflow:hidden; }
.quantity-selector__btn{ width:44px; height:48px; display:flex; align-items:center; justify-content:center; color: var(--color-ink-soft); transition: background-color .2s var(--ease); }
.quantity-selector__btn:hover{ background: var(--color-cream); }
.quantity-selector__input{ width:52px; height:48px; border:none; border-left:1px solid var(--color-line); border-right:1px solid var(--color-line); text-align:center; font-weight:700; -moz-appearance:textfield; }
.quantity-selector__input::-webkit-outer-spin-button, .quantity-selector__input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.btn-cta-cart{ flex:1; padding:14px 24px; font-size:.98rem; }
.add-to-cart-feedback{
  display:flex; align-items:center; gap:8px;
  max-height:0;
  opacity:0;
  transform: translateY(6px);
  overflow:hidden;
  margin:0 0 0;
  padding:0 14px;
  border:1px solid transparent;
  border-radius: var(--radius-soft);
  font-size:.86rem;
  font-weight:700;
  transition: opacity .22s var(--ease), transform .22s var(--ease), max-height .22s var(--ease), padding .22s var(--ease), margin .22s var(--ease);
}
.add-to-cart-feedback.is-visible{
  max-height:48px;
  opacity:1;
  transform: translateY(0);
  margin:0 0 12px;
  padding:11px 14px;
  color: var(--color-olive);
  background: rgba(91,107,55,.1);
  border-color: rgba(91,107,55,.22);
}
.add-to-cart-feedback.is-error{
  color: var(--color-danger);
  background: rgba(168,50,50,.08);
  border-color: rgba(168,50,50,.22);
}

.product-trust-list{ display:flex; flex-direction:column; gap:10px; padding-top:20px; border-top:1px solid var(--color-line); }
.product-trust-list li{ display:flex; align-items:center; gap:10px; color: var(--color-ink-soft); font-size:.88rem; }
.product-trust-list i{ color: var(--color-olive); }

.trust-badges{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:auto;
  padding-top:20px;
  border-top:1px solid var(--color-line);
}
.trust-badge{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  background: var(--color-cream);
  border:1px solid var(--color-line);
  border-radius: var(--radius-soft);
  color: var(--color-ink-soft);
  font-size:.86rem;
  font-weight:600;
}
.trust-badge__icon{
  flex-shrink:0;
  width:32px; height:32px;
  display:flex; align-items:center; justify-content:center;
  color: var(--color-olive);
  font-size:1rem;
}
@media (min-width: 640px){
  .trust-badges{ flex-direction:row; flex-wrap:wrap; }
  .trust-badge{ flex:1 1 auto; }
}

.product-tabs{ margin-bottom:72px; }
.product-tabs__nav{ display:flex; gap:8px; border-bottom:2px solid var(--color-line); margin-bottom:32px; flex-wrap:wrap; }
.product-tabs__btn{
  font-family: var(--font-card);
  padding:14px 24px;
  font-weight:700; font-size:.92rem;
  color: var(--color-ink-soft);
  border-bottom:3px solid transparent;
  margin-bottom:-2px;
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
  border-radius:8px 8px 0 0;
}
.product-tabs__btn:hover{ color: var(--color-ink); background: var(--color-cream); }
.product-tabs__btn.is-active{ color: var(--color-olive); border-color: var(--color-olive); background: var(--color-cream); }
.product-tabs__panel{ display:none; padding:8px 4px 4px; }
.product-tabs__panel.is-active{ display:block; animation: fade-in .3s var(--ease); }
@keyframes fade-in{ from{ opacity:0; } to{ opacity:1; } }
.product-tabs__rich-content{ color: var(--color-ink); line-height:1.85; font-size:1rem; }
.product-tabs__rich-content p{ margin-bottom:18px; }
.reviews-empty{ color: var(--color-ink-soft); text-align:center; padding:32px 0; }
.specs-empty{ color: var(--color-ink-soft); text-align:center; padding:32px 0; }

.specs-table{ width:100%; border-collapse: collapse; border-radius: var(--radius-soft); overflow:hidden; border:1px solid var(--color-line); }
.specs-table tr{ border-bottom:1px solid var(--color-line); }
.specs-table tr:last-child{ border-bottom:none; }
.specs-table th, .specs-table td{ padding:14px 18px; text-align:left; font-size:.92rem; }
.specs-table th{ width:260px; color: var(--color-ink-soft); font-weight:700; background: var(--color-cream-2); }
.specs-table td{ color: var(--color-ink); }
.specs-table--zebra tr.is-odd{ background: var(--color-cream); }
.specs-table--zebra tr.is-odd th{ background: var(--color-cream); }

/* Reviews */
.reviews-summary{ display:flex; align-items:center; gap:16px; padding-bottom:20px; margin-bottom:20px; border-bottom:1px solid var(--color-line); }
.reviews-summary__score{ font-family: var(--font-card); font-size:2.2rem; font-weight:700; color: var(--color-ink); }
.reviews-summary__stars{ display:flex; align-items:center; gap:6px; flex-wrap:wrap; color: var(--color-sun); font-size:1rem; }
.reviews-summary__count{ color: var(--color-ink-soft); font-size:.85rem; margin-left:6px; }

.review-list{ display:flex; flex-direction:column; gap:20px; margin-bottom:28px; }
.review-item{ padding:18px 20px; background: var(--color-cream); border:1px solid var(--color-line); border-radius: var(--radius-soft); }
.review-item__head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:8px; }
.review-item__user{ font-family: var(--font-card); font-weight:700; color: var(--color-ink); }
.review-item__date{ color: var(--color-ink-soft); font-size:.8rem; }
.review-item__stars{ color: var(--color-sun); font-size:.85rem; margin-bottom:8px; }
.review-item__text{ color: var(--color-ink-soft); line-height:1.7; font-size:.92rem; }

.review-form-wrap{ padding-top:8px; }
.review-form-notice{ color: var(--color-ink-soft); background: var(--color-cream); border:1px solid var(--color-line); border-radius: var(--radius-soft); padding:16px 18px; font-size:.92rem; }
.review-form-notice a{ color: var(--color-olive); font-weight:700; }
.review-form{ background: var(--color-cream); border:1px solid var(--color-line); border-radius: var(--radius-soft); padding:22px; max-width:520px; }
.review-form__title{ font-size:1rem; margin-bottom:14px; }
.review-form__rating{ display:flex; flex-direction:row-reverse; justify-content:flex-end; gap:6px; margin-bottom:14px; }
.review-form__star{ cursor:pointer; font-size:1.4rem; color: var(--color-line); }
.review-form__star input{ position:absolute; opacity:0; pointer-events:none; }
.review-form__star:hover, .review-form__star:hover ~ .review-form__star,
.review-form__rating:not(:hover) .review-form__star:has(input:checked) ~ .review-form__star,
.review-form__rating:not(:hover) .review-form__star:has(input:checked){ color: var(--color-sun); }
.review-form__textarea{
  width:100%; resize:vertical; min-height:96px;
  border:1.5px solid var(--color-line); border-radius: var(--radius-soft);
  padding:12px 14px; font-family: var(--font-body); font-size:.92rem;
  margin-bottom:14px; color: var(--color-ink);
}
.review-form__textarea:focus{ outline:none; border-color: var(--color-olive); }

.related-products{ padding-top:16px; }
.section-title{ font-size:1.6rem; margin-bottom:28px; }

/* ==========================================================================
   CART PAGE
   ========================================================================== */
.cart-page{ padding:32px 0 88px; }
.cart-page .breadcrumb{ margin-bottom:20px; }
.cart-page__title{ font-size:1.9rem; margin-bottom:24px; }
.cart-page__title span{ font-family: var(--font-body); font-weight:400; font-size:1.1rem; color: var(--color-ink-soft); }

.cart-empty{ text-align:center; padding:88px 24px; }
.cart-empty i{ font-size:3rem; color: var(--color-line); margin-bottom:20px; }
.cart-empty p{ color: var(--color-ink-soft); max-width:420px; margin:8px auto 26px; }

.cart-shipping-notice{
  display:flex; align-items:center; gap:12px;
  background: rgba(217,164,65,.14);
  color: #8a6112;
  padding:14px 20px;
  border-radius: var(--radius-soft);
  font-size:.9rem;
  margin-bottom:24px;
}
.cart-shipping-notice--success{ background: rgba(91,107,55,.12); color: var(--color-olive); }
.cart-shipping-notice i{ font-size:1.1rem; }

.cart-layout{ display:grid; grid-template-columns: 2.2fr 1fr; gap:32px; align-items:start; }
.cart-table{ width:100%; border-collapse: separate; border-spacing:0; background: var(--color-white); border:1px solid var(--color-line); border-radius: var(--radius-lg); overflow:hidden; }
.cart-table thead th{ text-align:left; padding:10px 14px; font-size:.72rem; text-transform:uppercase; letter-spacing:.04em; color: var(--color-ink-soft); background: var(--color-cream-2); font-weight:600; }
.cart-table tbody td{ padding:12px 14px; border-top:1px solid var(--color-line); vertical-align:middle; font-size:.88rem; }
.cart-table tbody tr:hover td{ background: rgba(247,244,237,.45); }
.cart-table td:first-child, .cart-table th:first-child{ padding-left:18px; }
.cart-table td:last-child, .cart-table th:last-child{ padding-right:18px; }
.cart-row__product{ display:flex; align-items:center; gap:12px; min-width:0; max-width:240px; }
.cart-row__media{
  width:48px; height:48px; flex-shrink:0;
  border-radius: var(--radius-soft);
  background: var(--color-cream-2);
  display:flex; align-items:center; justify-content:center;
  color: var(--color-line);
  font-size:1.15rem;
  overflow:hidden;
}
.cart-row__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.cart-row__info{ display:flex; flex-direction:column; gap:4px; min-width:0; }
.cart-row__name{ font-weight:600; color: var(--color-ink); font-size:.94rem; display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:220px; }
.cart-row__variant{ font-size:.8rem; color: var(--color-ink-soft); }
.cart-row__price, .cart-row__total{ font-weight:600; white-space:nowrap; }
.quantity-selector--sm{ height:32px; }
.quantity-selector--sm .quantity-selector__btn{ width:30px; height:30px; }
.quantity-selector--sm .quantity-selector__input{ width:36px; height:30px; }
.cart-row__remove{ display:flex; align-items:center; gap:6px; color: var(--color-ink-soft); font-size:.82rem; transition: color .2s var(--ease); white-space:nowrap; }
.cart-row__remove:hover{ color: var(--color-danger); }

.cart-items{ display:flex; flex-direction:column; gap:16px; }
.cart-summary{ min-width:0; }
.cart-summary__card{
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:26px;
  position:sticky; top:calc(var(--header-h) + 20px);
}
.cart-summary__card h4{ font-size:1.1rem; margin-bottom:18px; }
.cart-summary__row{ display:flex; align-items:center; justify-content:space-between; padding:10px 0; font-size:.92rem; color: var(--color-ink-soft); border-bottom:1px solid var(--color-line); }
.cart-summary__row--total{ border-bottom:none; padding-top:16px; font-size:1.15rem; font-weight:700; color: var(--color-ink); font-family: var(--font-card); }
.cart-summary__checkout{ margin-top:20px; }
.cart-summary__continue{ margin-top:10px; }

.checkout-summary__items{ display:flex; flex-direction:column; gap:10px; padding-bottom:14px; margin-bottom:14px; border-bottom:1px solid var(--color-line); }
.checkout-summary__item{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; font-size:.85rem; color: var(--color-ink-soft); }
.checkout-summary__item span:first-child{ flex:1; }
.checkout-summary__item span:last-child{ font-weight:600; color: var(--color-ink); white-space:nowrap; }

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */
.checkout-page{ padding:32px 0 88px; }
.checkout-page .breadcrumb{ margin-bottom:20px; }
.checkout-header{ display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; flex-wrap:wrap; gap:12px; }
.checkout-header h1{ font-size:1.9rem; }
.checkout-secure{ display:flex; align-items:center; gap:8px; color: var(--color-olive); font-weight:600; font-size:.88rem; }

.step-indicator{ display:flex; align-items:center; margin-bottom:36px; gap:0; }
.step{
  flex:1; text-align:center;
  padding:12px 8px;
  font-size:.82rem; font-weight:600;
  color: var(--color-ink-soft);
  border-bottom:3px solid var(--color-line);
  position:relative;
}
.step.done{ color: var(--color-olive); border-color: var(--color-olive); }
.step.active{ color: var(--color-ink); border-color: var(--color-terracotta); }

.checkout-layout{ display:grid; grid-template-columns: 2fr 1fr; gap:32px; align-items:start; }
.checkout-main{ min-width:0; display:flex; flex-direction:column; gap:24px; }
.checkout-block{
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:28px;
  margin-bottom:24px;
}
.checkout-block h4{ display:flex; align-items:center; gap:10px; font-size:1.02rem; margin-bottom:22px; }
.checkout-block h4 i{ color: var(--color-olive); }

/* ---------------- Checkout: saved address selection ---------------- */
.address-select-list{ display:flex; flex-direction:column; gap:12px; margin-bottom:20px; }
.address-select-card{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px 18px;
  border:1.5px solid var(--color-line);
  border-radius: var(--radius-soft);
  cursor:pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.address-select-card input{ margin-top:4px; flex-shrink:0; accent-color: var(--color-olive); }
.address-select-card.is-selected{ border-color: var(--color-olive); background: var(--color-cream); }
.address-select-card__body{ min-width:0; flex:1; }
.address-select-card__head{ display:flex; align-items:center; gap:10px; margin-bottom:4px; }
.address-select-card__head strong{ font-size:.95rem; color: var(--color-ink); }
.address-select-card__badge{
  font-size:.66rem; font-weight:700;
  color:#fff;
  background: var(--color-olive);
  padding:3px 9px;
  border-radius:100px;
}
.address-select-card__body p{ font-size:.85rem; color: var(--color-ink-soft); margin-bottom:2px; }
.address-select-card--new{ align-items:center; }
.address-select-card--new strong{ display:flex; align-items:center; gap:8px; font-size:.95rem; color: var(--color-olive); }
.address-select-card--new p{ font-size:.85rem; color: var(--color-ink-soft); margin:2px 0 0; }
.checkout-new-address{ padding-top:4px; }
.checkout-save-address{ margin-top:6px; }
.checkout-account-note{ font-size:.88rem; color: var(--color-ink-soft); margin:-8px 0 18px; }
.checkout-account-email{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:13px 16px;
  margin-bottom:18px;
  border:1px solid var(--color-line);
  border-radius: var(--radius-soft);
  background: var(--color-cream-2);
  color: var(--color-ink-soft);
  font-size:.88rem;
}
.checkout-account-email span{ display:flex; align-items:center; gap:8px; }
.checkout-account-email strong{ color: var(--color-ink); word-break:break-all; }

.shipping-option{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 18px;
  border:1.5px solid var(--color-line);
  border-radius: var(--radius-soft);
  margin-bottom:12px;
  font-weight:600; font-size:.92rem;
  cursor:pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.shipping-option span:first-child{ display:flex; align-items:center; gap:10px; }
.shipping-option.is-selected{ border-color: var(--color-olive); background: var(--color-cream); }
.shipping-option--free{ background: rgba(91,107,55,.1); border-color: var(--color-olive); color: var(--color-olive); cursor:default; }

.payment-methods{ display:flex; flex-direction:column; gap:12px; margin-bottom:8px; }
.payment-method{
  display:flex; align-items:center; gap:12px;
  padding:16px 18px;
  border:1.5px solid var(--color-line);
  border-radius: var(--radius-soft);
  font-weight:600; font-size:.92rem;
  cursor:pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.payment-method i{ color: var(--color-olive); width:20px; text-align:center; }
.payment-method.is-selected{ border-color: var(--color-olive); background: var(--color-cream); }
.payment-method__fee{ margin-left:auto; color: var(--color-terracotta); font-size:.86rem; }

.card-fields, .bank-transfer-fields{ display:none; margin-top:20px; padding-top:20px; border-top:1px solid var(--color-line); }
.card-fields.is-visible, .bank-transfer-fields.is-visible{ display:block; }
.payment-test-note{ display:flex; align-items:flex-start; gap:10px; background: rgba(217,164,65,.12); color:#8a6112; padding:12px 16px; border-radius: var(--radius-soft); font-size:.82rem; margin-bottom:18px; }
.bank-info-card{ background: var(--color-cream-2); border-radius: var(--radius-soft); padding:18px; }
.bank-info-row{ display:flex; align-items:center; justify-content:space-between; padding:8px 0; font-size:.88rem; border-bottom:1px solid var(--color-line); }
.bank-info-row:last-child{ border-bottom:none; }
.bank-info-row span{ color: var(--color-ink-soft); }
.bank-info-row strong{ color: var(--color-ink); }

.checkout-sidebar{ position:sticky; top:calc(var(--header-h) + 20px); }

/* ==========================================================================
   ORDER CONFIRMATION PAGE
   ========================================================================== */
.order-confirmation-page{ padding:32px 0 88px; }
.order-success{ text-align:center; padding:56px 24px; background: var(--color-cream-2); border-radius: var(--radius-lg); margin-bottom:40px; }
.order-success__icon{ font-size:3.4rem; color: var(--color-olive); margin-bottom:20px; }
.order-success h1{ font-size:2rem; margin-bottom:10px; }
.order-success p{ color: var(--color-ink-soft); max-width:500px; margin:0 auto 20px; }
.order-success__number{ display:inline-block; background: var(--color-white); border:1px solid var(--color-line); padding:12px 24px; border-radius: var(--radius-soft); font-size:.95rem; }

.order-payment-actions{ display:grid; grid-template-columns: 1fr 1fr; gap:24px; align-items:stretch; margin:-16px 0 40px; }
.order-payment-actions .cart-summary__card{ height:100%; margin-top:0; }
.order-details{ display:grid; grid-template-columns: 2fr 1fr; gap:32px; align-items:start; margin-bottom:40px; }
.order-details__main h4{ font-size:1.1rem; margin:0 0 16px; }
.order-details__main h4:not(:first-child){ margin-top:32px; }
.order-details__summary{ min-width:0; }
.order-details__main .cart-table{ border-collapse:separate; border-spacing:0; overflow:hidden; border-radius: var(--radius-lg); }
.order-address{ background: var(--color-white); border:1px solid var(--color-line); border-radius: var(--radius-lg); padding:20px; }
.order-address p{ color: var(--color-ink-soft); font-size:.92rem; margin-bottom:4px; }
.order-address p strong{ color: var(--color-ink); }

.order-actions{ display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* ---------------- Bank Transfer / Receipt Upload (Order Confirmation) ---------------- */
.bank-info-card{ margin-top:16px; }
.bank-info-card h4,
.receipt-upload-card h4{ display:flex; align-items:center; gap:10px; font-size:1rem; margin-bottom:14px; }
.bank-info-card h4 i,
.receipt-upload-card h4 i{ color: var(--color-olive); }
.bank-info-row--iban{ align-items:flex-start; flex-direction:column; gap:8px; }
.bank-info-row--iban span{ padding-top:2px; }
.bank-info-iban{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; width:100%; justify-content:space-between; }
.bank-info-iban strong{ font-family: var(--font-card); letter-spacing:.02em; word-break:break-all; }
.btn-iban-copy{
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-olive);
  color:#fff;
  font-size:.78rem;
  font-weight:700;
  white-space:nowrap;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.btn-iban-copy:hover{ background: var(--color-olive-dark); transform: translateY(-1px); }
.btn-iban-copy.is-copied{ background: var(--color-sun); color: var(--color-olive-dark); }
.bank-info-code{
  display:flex; align-items:flex-start; gap:10px;
  margin-top:14px;
  padding:12px 14px;
  background: rgba(217,164,65,.14);
  color:#8a6112;
  border-radius: var(--radius-soft);
  font-size:.82rem;
  line-height:1.5;
}
.bank-info-code i{ margin-top:2px; }

.receipt-upload-card{ margin-top:16px; }
.receipt-upload-card__status{ font-size:.85rem; color: var(--color-ink-soft); margin-bottom:14px; line-height:1.5; }
.receipt-upload-card__status--ok{ color: var(--color-olive); font-weight:600; }
.receipt-upload-card__status--ok i{ margin-right:4px; }
.receipt-upload-form{ margin-bottom:12px; }
.receipt-upload-form__dropzone{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:8px;
  padding:24px 16px;
  border:1.5px dashed var(--color-line);
  border-radius: var(--radius-soft);
  background: var(--color-cream-2);
  color: var(--color-ink-soft);
  font-size:.82rem;
  text-align:center;
  cursor:pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.receipt-upload-form__dropzone:hover,
.receipt-upload-form__dropzone.is-dragover{ border-color: var(--color-olive); background: var(--color-cream); }
.receipt-upload-form__dropzone i{ font-size:1.6rem; color: var(--color-olive); }
.receipt-upload-form__dropzone input[type="file"]{ display:none; }
.receipt-upload-form__actions{ margin-top:14px; }
.receipt-skip-form{ margin:0; }

/* ==========================================================================
   ORDER TRACKING PAGE
   ========================================================================== */
.tracking-page{ padding:64px 0 88px; }
.tracking-form{
  display:flex; gap:12px; flex-wrap:wrap;
  max-width:680px; margin:0 auto 24px;
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:20px;
}
.tracking-form input{ flex:1; min-width:200px; }
.tracking-alert{ max-width:680px; margin:0 auto 24px; }

.tracking-result{
  max-width:680px; margin:32px auto 0;
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:32px;
}
.tracking-result__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; }
.tracking-result__head strong{ display:block; font-size:1.1rem; }
.tracking-result__head small{ color: var(--color-ink-soft); }

.tracking-steps{ display:flex; align-items:flex-start; margin-bottom:32px; }
.tracking-step{ flex:1; text-align:center; position:relative; }
.tracking-step::before{
  content:''; position:absolute; top:9px; left:-50%; width:100%; height:2px;
  background: var(--color-line); z-index:0;
}
.tracking-step:first-child::before{ display:none; }
.tracking-step.is-done::before{ background: var(--color-olive); }
.tracking-step__dot{
  width:20px; height:20px;
  border-radius:50%;
  background: var(--color-white);
  border:2px solid var(--color-line);
  margin:0 auto 10px;
  position:relative; z-index:1;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.tracking-step.is-done .tracking-step__dot{ background: var(--color-olive); border-color: var(--color-olive); }
.tracking-step.is-current .tracking-step__dot{ box-shadow: 0 0 0 4px rgba(91,107,55,.2); }
.tracking-step small{ font-size:.78rem; color: var(--color-ink-soft); }
.tracking-step.is-done small{ color: var(--color-olive); font-weight:600; }

.tracking-result__items{ padding:20px 0; border-top:1px solid var(--color-line); border-bottom:1px solid var(--color-line); margin-bottom:20px; }
.tracking-result__items h4{ font-size:.95rem; margin-bottom:12px; }
.tracking-result__item{ display:flex; align-items:center; justify-content:space-between; padding:6px 0; font-size:.88rem; color: var(--color-ink-soft); }
.tracking-result__summary{
  display:grid; grid-template-columns: repeat(2, 1fr); gap:10px;
  margin-bottom:18px;
}
.tracking-result__summary div{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:10px 12px;
  border:1px solid var(--color-line);
  border-radius: var(--radius-soft);
  background: var(--color-cream-2);
  font-size:.84rem;
}
.tracking-result__summary span{ color: var(--color-ink-soft); }
.tracking-result__summary strong{ color: var(--color-ink); white-space:nowrap; }
.tracking-result__meta{
  display:flex; flex-direction:column; gap:4px;
  font-size:.85rem; color: var(--color-ink-soft);
  padding:14px 16px;
  border:1px solid var(--color-line);
  border-radius: var(--radius-soft);
}
.tracking-result__meta strong{ color: var(--color-ink); }
.tracking-limited-note{
  display:flex; align-items:flex-start; gap:10px;
  padding:14px 16px;
  border:1px solid rgba(217,164,65,.35);
  border-radius: var(--radius-soft);
  background: rgba(217,164,65,.12);
  color:#8a6112;
  font-size:.86rem;
  line-height:1.5;
}
.tracking-limited-note i{ margin-top:2px; }

/* ==========================================================================
   ACCOUNT PAGES
   ========================================================================== */
.account-page{ padding:32px 0 88px; }
.account-page .breadcrumb{ margin-bottom:24px; }
.account-layout{ display:grid; grid-template-columns: 260px 1fr; gap:32px; align-items:start; }

.account-sidebar{
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:24px;
  position:sticky; top:calc(var(--header-h) + 20px);
}
.account-sidebar__user{ display:flex; align-items:center; gap:14px; padding-bottom:20px; margin-bottom:20px; border-bottom:1px solid var(--color-line); }
.account-sidebar__user > div:last-child{ min-width:0; }
.account-sidebar__avatar{
  width:48px; height:48px; flex-shrink:0;
  border-radius:50%;
  background: var(--color-olive);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:1.2rem;
  font-family: var(--font-card);
}
.account-sidebar__name{ font-weight:700; font-size:.94rem; overflow-wrap:anywhere; line-height:1.35; }
.account-sidebar__email{ font-size:.8rem; color: var(--color-ink-soft); overflow-wrap:anywhere; line-height:1.35; }
.account-sidebar__nav{ display:flex; flex-direction:column; gap:2px; }
.account-sidebar__nav a{
  display:flex; align-items:center; gap:12px;
  padding:11px 14px;
  border-radius: var(--radius-soft);
  color: var(--color-ink-soft);
  font-weight:600; font-size:.9rem;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.account-sidebar__nav a i{ width:18px; text-align:center; }
.account-sidebar__nav a:hover, .account-sidebar__nav a.is-active{ background: var(--color-cream); color: var(--color-olive); }
.account-sidebar__logout{ margin-top:8px; padding-top:14px; border-top:1px solid var(--color-line); color: var(--color-danger) !important; }
.account-sidebar__logout:hover{ background: rgba(168,50,50,.08) !important; color: var(--color-danger) !important; }

.account-content h1{ font-size:1.7rem; margin-bottom:24px; }
.account-content__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; flex-wrap:wrap; gap:14px; }
.account-content__head h1{ margin-bottom:0; }
.account-content__sub{ color: var(--color-ink-soft); margin-top:-14px; margin-bottom:24px; font-size:.9rem; }

.account-empty{ text-align:center; padding:72px 24px; background: var(--color-cream-2); border-radius: var(--radius-lg); }
.account-empty i{ font-size:2.6rem; color: var(--color-line); margin-bottom:16px; }
.account-empty p{ color: var(--color-ink-soft); max-width:380px; margin:8px auto 22px; }

.account-orders-table .cart-table{ overflow:hidden; }
.account-orders-table .cart-table tbody td:first-child{ min-width:180px; }
.account-order-no{ display:block; font-family: var(--font-card); color: var(--color-ink); margin-bottom:3px; }
.account-orders-table small,
.account-order-date{ color: var(--color-ink-soft); font-size:.8rem; }
.account-order-total{ color: var(--color-olive-dark); white-space:nowrap; }
.account-orders-table__view{ font-weight:600; color: var(--color-olive); display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }

.order-detail-head{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:6px; }
.order-detail-head h1{ margin-bottom:0; }
.account-profile-grid{ display:grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap:24px; align-items:start; }
.account-profile-grid .checkout-block{ margin-bottom:0; height:100%; min-width:0; }
.account-profile-grid .form-grid-2{ grid-template-columns:1fr; gap:0; }
.account-profile-grid .form-row,
.account-profile-grid input{ min-width:0; }
.order-track-callout{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:16px 18px;
  margin-bottom:24px;
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-cream-2);
}
.order-track-callout strong{ display:block; font-size:.95rem; color: var(--color-ink); }
.order-track-callout span{ display:block; font-size:.84rem; color: var(--color-ink-soft); margin-top:2px; }

.address-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:20px; }
.address-card{
  position:relative;
  background: var(--color-white);
  border:1.5px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:22px;
}
.address-card.is-default{ border-color: var(--color-olive); }
.address-card__badge{
  position:absolute; top:16px; right:16px;
  background: var(--color-olive);
  color:#fff;
  font-size:.68rem; font-weight:700;
  padding:4px 10px;
  border-radius:100px;
}
.address-card h4{ font-size:1rem; margin-bottom:10px; color: var(--color-olive); }
.address-card p{ font-size:.9rem; color: var(--color-ink-soft); margin-bottom:2px; }
.address-card p strong{ color: var(--color-ink); }
.address-card__actions{ display:flex; align-items:center; gap:16px; margin-top:16px; padding-top:16px; border-top:1px solid var(--color-line); }
.address-card__inline-form{ display:inline; }
.address-card__edit, .address-card__actions button{ font-size:.84rem; font-weight:600; color: var(--color-olive); display:inline-flex; align-items:center; gap:6px; }
.address-card__delete{ color: var(--color-danger) !important; }
.address-card__type{ font-size:.66rem; font-weight:700; color: var(--color-terracotta); background: rgba(196,108,60,.12); padding:2px 8px; border-radius:100px; vertical-align:middle; margin-left:6px; }

.address-type-selector{ display:flex; gap:0; width:100%; margin-bottom:20px; border-radius:12px; background: var(--color-cream-2); padding:4px; }
.address-type-option{ flex:1; position:relative; text-align:center; cursor:pointer; }
.address-type-option input{ position:absolute; opacity:0; width:0; height:0; }
.address-type-option span{ display:block; padding:11px; font-family: var(--font-card); font-weight:700; font-size:.9rem; color: var(--color-ink-soft); border-radius:9px; transition: color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease); }
.address-type-option input:checked ~ span{ color:#fff; background: var(--color-olive); box-shadow: var(--shadow-lift-sm); }
.address-corporate-fields{ overflow:hidden; }
.form-optional{ font-weight:400; font-size:.78rem; color: var(--color-ink-soft); }

/* ---------------- Auth (login/register) ---------------- */
.auth-page{
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:44px 24px;
  margin-top:0;
  background: var(--color-white);
}
.auth-layout{
  display:grid;
  grid-template-columns: 1fr 1fr;
  width:100%;
  max-width:980px;
  min-height:auto;
  align-items:stretch;
  border-radius: 28px;
  overflow:hidden;
  box-shadow: var(--shadow-lift);
  background: var(--color-white);
}
.auth-brand{
  position:relative;
  background: url('../images/footer-background.png') center/cover no-repeat;
  display:flex; align-items:center;
  padding:56px;
  overflow:hidden;
}
.auth-brand::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(150deg, rgba(58,71,33,.92), rgba(38,48,22,.88));
  z-index:1;
}
.auth-brand__overlay{
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1.5px, transparent 1.5px);
  background-size:26px 26px;
  opacity:.6;
  z-index:1;
}
.auth-brand__content{ position:relative; z-index:2; max-width:440px; }
.auth-brand__logo{ display:inline-flex; margin-bottom:36px; }
.auth-brand__logo-img{ height:48px; width:auto; filter: brightness(0) invert(1); }
.brand__mark{
  width:52px; height:52px;
  border-radius:50%;
  background: rgba(255,255,255,.15);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
}
.auth-brand__content h2{ font-family: var(--font-card); color:#fff; font-size:1.8rem; margin-bottom:16px; }
.auth-brand__content > p{ color: rgba(255,255,255,.78); margin-bottom:28px; }
.auth-brand__list{ display:flex; flex-direction:column; gap:14px; }
.auth-brand__list li{ display:flex; align-items:center; gap:12px; color: rgba(255,255,255,.9); font-size:.94rem; }
.auth-brand__list i{ width:24px; height:24px; border-radius:50%; background: var(--color-sun); color: var(--color-olive-dark); display:flex; align-items:center; justify-content:center; font-size:.7rem; flex-shrink:0; }

.auth-panel{ display:flex; flex-direction:column; align-items:center; justify-content:center; padding:48px 48px 56px; max-height:none; overflow-y:visible; animation: authFormIn .5s ease; }
@keyframes authFormIn{
  from{ opacity:0; transform: translateY(-16px); }
  to{ opacity:1; transform: translateY(0); }
}
.auth-panel > div, .auth-form{ width:100%; max-width:420px; }
.auth-tabs{ display:flex; gap:0; width:100%; max-width:420px; margin-bottom:24px; border-radius:12px; background: var(--color-cream-2); padding:4px; flex-shrink:0; }
.auth-tab{ flex:1; text-align:center; padding:12px; font-family: var(--font-card); font-weight:700; font-size:.96rem; color: var(--color-ink-soft); background:none; border:none; border-radius:9px; cursor:pointer; transition: color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease); }
.auth-tab.is-active{ color:#fff; background: var(--color-olive); box-shadow: var(--shadow-lift-sm); }
.auth-tab-content-wrap{ position:relative; width:100%; max-width:420px; perspective:900px; }
.auth-tab-content{
  display:block;
  width:100%;
  max-width:420px;
  opacity:0;
  transform: translateX(24px) scale(.97);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility 0s linear .45s;
  visibility:hidden;
  position:absolute;
  top:0; left:0;
  pointer-events:none;
  backface-visibility:hidden;
}
.auth-tab-content.slide-from-left{ transform: translateX(-24px) scale(.97); }
.auth-tab-content.is-active{
  opacity:1;
  transform: translateX(0) scale(1);
  visibility:visible;
  position:relative;
  pointer-events:auto;
  transition: opacity .45s var(--ease) .06s, transform .45s var(--ease) .06s;
}
.auth-form h1{ font-family: var(--font-card); font-size:1.6rem; margin-bottom:8px; }
.auth-form__sub{ font-family: var(--font-body); color: var(--color-ink-soft); margin-bottom:24px; }
.auth-form .form-row label{ font-family: var(--font-card); }
.auth-form .form-row input{ font-family: var(--font-body); padding:13px 16px; border-radius:12px; box-sizing:border-box; width:100%; }
.auth-form .form-row input:focus{ border-color: var(--color-sun); box-shadow: 0 0 0 3px rgba(217,164,65,.16); }
.auth-form .form-grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.auth-form__row{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin:-6px 0 18px; flex-wrap:wrap; }
.auth-remember{ display:inline-flex; align-items:center; gap:8px; font-size:.82rem; color: var(--color-ink-soft); cursor:pointer; user-select:none; }
.auth-remember input[type="checkbox"]{
  appearance:none; -webkit-appearance:none;
  width:18px; height:18px;
  border:1.5px solid var(--color-line);
  border-radius:5px;
  cursor:pointer;
  position:relative;
  flex-shrink:0;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.auth-remember input[type="checkbox"]:checked{ background: var(--color-olive); border-color: var(--color-olive); }
.auth-remember input[type="checkbox"]:checked::after{
  content:'';
  position:absolute; left:5px; top:1px;
  width:5px; height:9px;
  border:solid #fff;
  border-width:0 2px 2px 0;
  transform: rotate(45deg);
}
.auth-remember input[type="checkbox"]:focus-visible{ box-shadow: 0 0 0 3px rgba(217,164,65,.25); }
.auth-form__forgot{ display:block; text-align:right; font-size:.82rem; color: var(--color-ink-soft); transition: color .2s var(--ease); }
.auth-form__forgot:hover{ color: var(--color-olive); }
.auth-form .btn-primary{
  background: var(--color-olive);
  border-radius:12px;
  padding:14px 22px;
  font-family: var(--font-card);
  transition: background-color .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
}
.auth-form .btn-primary:hover{ background: var(--color-olive-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift-sm); }

@media (max-width: 900px){
  .auth-page{ padding:32px 16px; align-items:flex-start; }
  .auth-layout{ grid-template-columns: 1fr; max-width:520px; min-height:0; border-radius:20px; }
  .auth-brand{ padding:40px 32px; }
  .auth-brand__content{ max-width:none; }
  .auth-brand__list{ display:none; }
  .auth-panel{ padding:40px 32px; max-height:none; overflow-y:visible; }
}
@media (max-width: 480px){
  .auth-brand{ padding:32px 24px; }
  .auth-brand__content h2{ font-size:1.4rem; }
  .auth-panel{ padding:32px 22px; }
  .auth-form .form-grid-2{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.not-found-page{ padding:100px 24px; text-align:center; }
.not-found-page__icon{ font-size:3.6rem; color: var(--color-olive); margin-bottom:24px; }
.not-found-page h1{ font-size:5rem; font-family: var(--font-card); color: var(--color-line); margin-bottom:4px; line-height:1; }
.not-found-page h2{ font-size:1.6rem; margin-bottom:14px; }
.not-found-page p{ color: var(--color-ink-soft); max-width:460px; margin:0 auto 32px; }
.not-found-page__actions{ display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */
.faq-hero{ background: var(--color-olive-dark); padding:64px 0; text-align:center; }
.faq-hero h1{ color:#fff; font-size:2.3rem; margin-bottom:12px; }
.faq-hero p{ color: rgba(255,255,255,.78); max-width:520px; margin:0 auto; }
.faq-page{ max-width:820px; margin:0 auto; }
.faq-categories{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:40px; }
.faq-categories .badge{ cursor:pointer; padding:9px 20px; font-size:.85rem; background: var(--color-cream-2); color: var(--color-ink-soft); transition: background-color .2s var(--ease), color .2s var(--ease); }
.faq-categories .badge.is-active{ background: var(--color-olive); color:#fff; }
.faq-accordion{ display:flex; flex-direction:column; gap:12px; }
.faq-item{ background: var(--color-white); border:1px solid var(--color-line); border-radius: var(--radius-lg); overflow:hidden; }
.faq-item__question{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 24px;
  font-weight:700; font-size:.98rem;
  text-align:left;
  color: var(--color-ink);
}
.faq-item__question i{ color: var(--color-olive); transition: transform .25s var(--ease); flex-shrink:0; margin-left:16px; }
.faq-item.is-open .faq-item__question i{ transform: rotate(180deg); }
.faq-item__answer{
  max-height:0; overflow:hidden;
  transition: max-height .3s var(--ease), padding .3s var(--ease);
  padding:0 24px;
}
.faq-item.is-open .faq-item__answer{ max-height:300px; padding:0 24px 22px; }
.faq-item__answer p{ color: var(--color-ink-soft); line-height:1.7; }
.faq-cta{ text-align:center; margin-top:40px; color: var(--color-ink-soft); }
.faq-cta a{ color: var(--color-olive); font-weight:700; display:inline-flex; align-items:center; gap:6px; }

/* ==========================================================================
   LEGAL PAGE
   ========================================================================== */
.legal-page{ max-width:760px; margin:0 auto; }
.legal-page__content{ background: var(--color-white); border:1px solid var(--color-line); border-radius: var(--radius-lg); padding:34px; }
.legal-page__meta{ display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; padding-bottom:18px; margin-bottom:28px; border-bottom:1px solid var(--color-line); color: var(--color-ink-soft); font-size:.84rem; }
.legal-section{ margin-bottom:32px; }
.legal-section h2{ font-size:1.22rem; margin-bottom:14px; color: var(--color-ink); }
.legal-page__content p{ color: var(--color-ink-soft); line-height:1.8; margin-bottom:14px; }
.legal-page__content ul{ display:flex; flex-direction:column; gap:10px; margin:0; padding-left:20px; color: var(--color-ink-soft); line-height:1.7; }
.legal-page__content li::marker{ color: var(--color-olive); }
.legal-page__notice{
  display:flex; align-items:center; gap:12px;
  background: rgba(217,164,65,.14);
  color:#8a6112;
  padding:16px 20px;
  border-radius: var(--radius-soft);
  font-size:.92rem;
}

/* ==========================================================================
   SHIPPING PAGES (free / same-day)
   ========================================================================== */
.shipping-hero{ position:relative; background: var(--color-olive-dark); padding:80px 0; text-align:center; overflow:hidden; }
.shipping-hero__overlay{
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.5px);
  background-size:24px 24px;
  opacity:.5;
}
.shipping-hero__inner{ position:relative; z-index:2; max-width:640px; margin:0 auto; }
.shipping-hero__icon{
  width:72px; height:72px; margin:0 auto 22px;
  border-radius:50%;
  background: rgba(255,255,255,.14);
  color: var(--color-sun-light);
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem;
}
.shipping-hero h1{ color:#fff; font-size:2.2rem; margin-bottom:14px; }
.shipping-hero p{ color: rgba(255,255,255,.78); }

.shipping-page{ padding:64px 0; }
.shipping-info-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; margin-bottom:56px; }
.shipping-info-card{
  background: var(--color-white);
  border:1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding:32px 24px;
  text-align:center;
}
.shipping-info-card__icon{
  width:56px; height:56px; margin:0 auto 18px;
  border-radius:50%;
  background: var(--color-cream);
  color: var(--color-olive);
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
}
.shipping-info-card h4{ margin-bottom:8px; }
.shipping-info-card p{ color: var(--color-ink-soft); font-size:.9rem; }

.shipping-terms{ max-width:760px; margin:0 auto 48px; background: var(--color-cream-2); border-radius: var(--radius-lg); padding:36px; }
.shipping-terms h3{ font-size:1.2rem; margin-bottom:20px; }
.shipping-terms ul{ display:flex; flex-direction:column; gap:14px; }
.shipping-terms li{ display:flex; align-items:flex-start; gap:12px; color: var(--color-ink-soft); font-size:.92rem; line-height:1.6; }
.shipping-terms li i{ color: var(--color-olive); margin-top:3px; flex-shrink:0; }
.shipping-cta{ text-align:center; }

/* ==========================================================================
   PRODUCTION PROCESS PAGE
   ========================================================================== */
.production-hero{ position:relative; min-height:420px; display:flex; align-items:center; overflow:hidden; }
.production-hero__media{
  position:absolute; inset:0;
  background: linear-gradient(150deg, var(--color-olive-dark), var(--color-ink));
  display:flex; align-items:center; justify-content:center;
  font-size:8rem;
  color: rgba(255,255,255,.06);
}
.production-hero__overlay{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(46,36,23,.2), rgba(46,36,23,.7)); }
.production-hero__content{ position:relative; z-index:2; max-width:640px; }
.production-hero__content h1{ color:#fff; font-size:2.4rem; margin:16px 0; }
.production-hero__content p{ color: rgba(255,255,255,.8); }

.production-intro{ max-width:760px; margin:0 auto; text-align:center; }
.production-intro p{ color: var(--color-ink-soft); line-height:1.8; }

.process-steps{ display:grid; grid-template-columns: repeat(3, 1fr); gap:32px; }
.process-step{ text-align:center; position:relative; }
.process-step__number{ font-family: var(--font-card); font-weight:700; font-size:1.4rem; color: var(--color-line); margin-bottom:12px; }
.process-step__media{
  width:76px; height:76px; margin:0 auto 20px;
  border-radius:50%;
  background: var(--color-cream-2);
  color: var(--color-olive);
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem;
}
.process-step h4{ margin-bottom:10px; }
.process-step p{ color: var(--color-ink-soft); font-size:.9rem; }

.production-stats{ padding:64px 0; }
.production-stats__grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:24px; text-align:center; }
.stat-card{ padding:0; }
.stat-card__value{ font-family: var(--font-card); font-weight:700; font-size:2.2rem; color:#fff; margin-bottom:6px; }
.stat-card__label{ color: rgba(255,255,255,.72); font-size:.88rem; }

.production-certs{ text-align:center; }
.cert-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:20px; }
.cert-badge{
  display:flex; flex-direction:column; align-items:center; gap:12px;
  background: var(--color-cream-2);
  border-radius: var(--radius-lg);
  padding:28px 16px;
  text-align:center;
}
.cert-badge i{ font-size:1.8rem; color: var(--color-olive); }
.cert-badge span{ font-weight:700; font-size:.88rem; }

.cta-banner__inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; text-align:left; }
.cta-banner__text h3{ color:#fff; font-size:1.4rem; margin-bottom:6px; }
.cta-banner__text p{ color: rgba(255,255,255,.8); margin:0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ---------- 1200px: geniş masaüstü sıkışması ---------- */
@media (max-width: 1200px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__side{ flex-direction:row; }
  .journal-grid{ grid-template-columns: repeat(2, 1fr); }
  .about-values__grid{ grid-template-columns: repeat(2, 1fr); }
  .about-values__more{ grid-template-columns: repeat(2, 1fr); }
  .blog-page-related__grid{ grid-template-columns: repeat(2, 1fr); }
  .product-listing--grid{ grid-template-columns: repeat(2, 1fr); }
  .shipping-info-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-steps{ grid-template-columns: repeat(2, 1fr); }
  .production-stats__grid{ grid-template-columns: repeat(2, 1fr); }
  .cert-grid{ grid-template-columns: repeat(2, 1fr); }
  .local-seo-directory__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- 992px: tablet / nav dönüşümü ---------- */
@media (max-width: 992px){
  .topbar__contact{ display:none; }
  .main-nav{ display:none; }
  .hamburger{ display:flex; }

  .contact-layout{ grid-template-columns: 1fr; }
  .contact-biz-cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom:40px; }
  .shop-layout{ grid-template-columns: 1fr; gap:22px; }
  .shop-filter-toggle{ display:flex; }
  .shop-sidebar{
    display:none;
    position:static;
    top:auto;
    padding:20px;
  }
  .shop-sidebar.is-open{ display:block; }
  .blog-page-layout{ grid-template-columns: 1fr; gap:30px; }
  .blog-page-featured{ grid-template-columns: 1fr; }
  .blog-page-featured__media{ min-height:220px; aspect-ratio:16/10; }
  .product-detail{ flex-direction:column; align-items:stretch; gap:36px; }
  .product-gallery, .product-info{ height:auto; }
  .product-gallery__main{ min-height:320px; }
  .cart-layout{ grid-template-columns: 1fr; }
  .checkout-layout{ grid-template-columns: 1fr; }
  .checkout-sidebar{ position:static; }
  .order-payment-actions,
  .order-details{ grid-template-columns: 1fr; }
  .account-layout{ grid-template-columns: 1fr; }
  .account-profile-grid{ grid-template-columns: 1fr; }
  .account-sidebar{ position:static; }
  .account-page{ padding:26px 0 60px; }
  .account-content h1{ font-size:1.45rem; margin-bottom:18px; }
  .account-sidebar{
    padding:18px;
    border-radius:14px;
  }
  .account-sidebar__user{
    gap:12px;
    padding-bottom:16px;
    margin-bottom:16px;
  }
  .account-sidebar__avatar{ width:42px; height:42px; }
  .account-sidebar__nav{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }
  .account-sidebar__nav a{
    justify-content:flex-start;
    padding:11px 12px;
    min-width:0;
  }
  .account-sidebar__logout{
    grid-column:1 / -1;
    margin-top:2px;
  }
  .account-content__head{
    align-items:flex-start;
    flex-direction:column;
    margin-bottom:18px;
  }
  .account-content__head .btn{ width:100%; justify-content:center; }
  .account-empty{
    padding:42px 18px;
    border-radius:14px;
  }
  .account-orders-table{
    width:100%;
    overflow-x:auto;
    padding-bottom:4px;
    -webkit-overflow-scrolling:touch;
  }
  .account-orders-table .cart-table{
    min-width:620px;
    border-radius:14px;
  }
  .account-orders-table .cart-table tbody td:first-child{ min-width:160px; }
  .account-order-no{ white-space:normal; overflow-wrap:anywhere; }
  .order-detail-head{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
  .order-detail-head .badge{ align-self:flex-start; }
  .order-track-callout{
    align-items:flex-start;
    flex-direction:column;
    border-radius:14px;
  }
  .order-track-callout__btn{ width:100%; justify-content:center; }
  .account-profile-grid .checkout-block{
    padding:22px;
    border-radius:14px;
  }
  .account-profile-grid input,
  .account-profile-grid textarea,
  .account-profile-grid select{ width:100%; }
  .address-grid{ gap:16px; }
  .address-card{
    border-radius:14px;
    overflow-wrap:anywhere;
  }
  .address-card__actions{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
  }
  .address-card__actions button,
  .address-card__inline-form button{
    width:100%;
    justify-content:center;
  }

  .footer-grid{ grid-template-columns: repeat(2, 1fr); }
  .blog-page-grid{ grid-template-columns: 1fr; }
  .address-grid{ grid-template-columns: 1fr; }

  .section{ padding:64px 0; }
  .page-section{ padding:56px 0; }
}

/* ---------- 768px: mobil ---------- */
@media (max-width: 768px){
  .container{ padding:0 18px; }
  .section-heading h2{ font-size:1.9rem; }
  .section-title{ font-size:1.6rem; }
  .featured-section{ padding:56px 0; }
  .featured-heading{ align-items:flex-start; margin-bottom:24px; }
  .featured-section .product-grid,
  .featured-section .product-grid-more .product-grid{
    grid-template-columns: 1fr;
    gap:18px;
  }
  .featured-section .product-grid-more{
    display:block;
    gap:0;
  }
  .featured-section .product-grid-more.is-expanded{
    max-height:none;
    overflow:visible;
    margin-top:18px;
  }
  .featured-section .product-card{
    max-width:420px;
    width:100%;
    margin-inline:auto;
  }

  .hero-slide__title{ font-size:1.9rem; }
  .hero__side{ flex-direction:column; }
  .about-section{ padding:56px 0; }
  .about-section__grid{
    grid-template-columns:1fr;
    gap:26px;
  }
  .about-section__visual{ order:1; }
  .about-section__content{ order:2; }
  .about-hero__stats{ gap:28px; }
  .about-story{ padding:56px 0; }
  .about-story__grid{ grid-template-columns:1fr; gap:28px; }
  .about-story__media{ order:1; }
  .about-story__text{ order:2; }
  .about-story__media-badge{ left:14px; bottom:14px; padding:14px 18px; }
  .about-mission__grid{ grid-template-columns:1fr; gap:18px; }
  .about-mission-card{ min-height:260px; }
  .about-mission-card__content{ padding:24px; }

  .journal-grid{ grid-template-columns: 1fr; }
  .about-values__grid{ grid-template-columns: 1fr; }
  .about-values__more{ grid-template-columns: 1fr; }
  .blog-page-related__grid{ grid-template-columns: 1fr; }
  .product-listing--grid{ grid-template-columns: 1fr; }
  .shipping-info-grid{ grid-template-columns: 1fr; }
  .tracking-result__summary{ grid-template-columns: 1fr; }
  .process-steps{ grid-template-columns: 1fr; }
  .production-stats__grid{ grid-template-columns: repeat(2, 1fr); }
  .cert-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr; gap:32px; }
  .local-seo-content{ grid-template-columns: 1fr; gap:18px; }
  .local-seo-strip{ flex-direction:column; align-items:flex-start; }
  .local-seo-directory__grid{ grid-template-columns: 1fr; }

  .cta-banner__inner{ flex-direction:column; text-align:center; }

  .not-found-page h1{ font-size:3.6rem; }
  .not-found-page__actions{ flex-direction:column; }

  .about-roadmap__track{ flex-direction: column; align-items: stretch; padding-top: 0; gap: 32px; }
  .about-roadmap__line{ display:none; }
  .about-roadmap__step{
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap:16px;
    background: var(--color-white);
    border:1px solid var(--color-line);
    border-radius:14px;
    padding:18px;
  }
  .about-roadmap__dot{
    width:42px;
    height:42px;
    margin-bottom:0;
    flex-shrink:0;
    box-shadow:none;
  }
  .about-roadmap__content{ max-width:none; padding-top:2px; }
  .about-roadmap__content h4{ font-size:1rem; }
  .about-roadmap__content p{ font-size:.88rem; }

  .shop-page{ padding:30px 0 60px; }
  .shop-header{ margin-bottom:20px; }
  .shop-header h1{ font-size:1.55rem; line-height:1.25; }
  .shop-toolbar{
    align-items:flex-start;
    gap:12px;
    padding:14px;
    background: var(--color-white);
    border:1px solid var(--color-line);
    border-radius:14px;
  }
  .shop-toolbar__actions{ width:100%; justify-content:space-between; gap:10px; }
  .shop-sort{ flex:1; }
  .shop-sort select{ width:100%; min-width:0; }
  .view-toggle{ flex-shrink:0; }
  .product-listing--grid{ gap:18px; }
  .product-listing--list .listing-card{ display:block; }
  .product-listing--list .listing-card__media{ width:100%; aspect-ratio:1/1; }
  .listing-card{ border-radius:14px; }
  .listing-card__quickadd{ opacity:1; transform:none; }
  .listing-card__footer{ gap:12px; }

  .blog-page-section{ padding-top:32px; }
  .blog-page-toolbar{ align-items:flex-start; gap:8px; flex-direction:column; margin-bottom:20px; }
  .blog-page-featured{ margin-bottom:22px; border-radius:14px; }
  .blog-page-featured__body{ padding:22px; }
  .blog-page-featured__title{ font-size:1.2rem; }
  .blog-page-featured__meta{ align-items:flex-start; flex-direction:column; gap:10px; }
  .blog-page-grid{ gap:18px; }
  .blog-page-filter,
  .blog-page-recent{ padding:18px; border-radius:14px; }

  .contact-page{ padding-top:42px; }
  .contact-biz-cards{ gap:14px; margin-top:-28px; }
  .contact-biz-card{ padding:18px 14px; border-radius:14px; }
  .contact-form-card{ padding:24px; border-radius:14px; }
  .contact-form-grid-2{ grid-template-columns:1fr; gap:0; }
  .contact-map{ min-height:240px; border-radius:14px; }
  .contact-info-list{ border-radius:14px; }
  .contact-info-list__item{ padding:14px; }
  .contact-info-list__text{ min-width:0; }
  .contact-info-list__value{ overflow-wrap:anywhere; }
  .contact-whatsapp-cta__inner{ align-items:flex-start; }
  .contact-whatsapp-cta__text{ align-items:flex-start; }

  .shop-cat-card{ min-width:132px; padding:22px 16px 16px; }
  .shop-cat-card__icon{ width:50px; height:50px; font-size:1.2rem; }
  .shop-category-carousel{
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
}

/* ---------- 480px: küçük mobil ---------- */
@media (max-width: 480px){
  .hero-slide__title{ font-size:1.5rem; }
  .section-heading h2{ font-size:1.6rem; }
  .btn{ padding:12px 22px; font-size:.88rem; }

  .contact-biz-cards{ grid-template-columns: 1fr; }
  .contact-whatsapp-cta__text{ flex-direction:column; gap:12px; }
  .contact-whatsapp-cta__btn{ width:100%; justify-content:center; }
  .shop-toolbar__actions{ flex-direction:column; align-items:stretch; }
  .view-toggle{ width:100%; }
  .view-toggle__btn{ flex:1; }
  .listing-card__footer{ align-items:flex-start; flex-direction:column; }
  .listing-card__addbtn{ width:100%; border-radius:12px; }

  .production-stats__grid{ grid-template-columns: 1fr; }
  .cert-grid{ grid-template-columns: 1fr; }
  .faq-categories{ gap:8px; }

  .shop-cat-card{ min-width:116px; padding:18px 12px 14px; gap:8px; }
  .shop-cat-card__icon{ width:44px; height:44px; font-size:1.05rem; }
  .shop-cat-card__name{ font-size:.82rem; }
  .shop-category-nav__btn{ width:36px; height:36px; font-size:.9rem; }
  .local-seo-card,
  .local-seo-strip,
  .local-seo-directory-card{ padding:20px; border-radius:14px; }
}

@media (prefers-reduced-motion: reduce){
  .shop-category-grid{ animation:none; }
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-top-btn{
  position:fixed;
  bottom:28px;
  right:28px;
  width:48px;
  height:48px;
  border-radius:50%;
  background: var(--color-olive);
  color:#fff;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  box-shadow: var(--shadow-card);
  opacity:0;
  transform: translateY(20px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .2s var(--ease);
  z-index:999;
}
.scroll-top-btn.is-visible{
  opacity:1;
  transform: translateY(0);
}
.scroll-top-btn:hover{
  background: var(--color-olive-dark);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATION
   ========================================================================== */
.reveal{
  opacity:0;
  transform: translateY(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-revealed{
  opacity:1;
  transform: translateY(0);
}
