/* ═══════════════════════════════════════════════════════
   FIDANLIKTAYIM — Main CSS
   Font: Outfit (Google Fonts)
   Primary: #0B7A3E
═══════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --clr-primary:      #0B7A3E;
  --clr-primary-dark: #085C2E;
  --clr-primary-600:  #0D6E38;
  --clr-primary-400:  #0F8F4F;
  --clr-primary-300:  #3AAD71;
  --clr-primary-100:  #C6E8D4;
  --clr-primary-50:   #E8F5EE;
  --clr-primary-25:   #F4FAF7;
  --clr-text:         #1A2E1F;
  --clr-text-2:       #3D5448;
  --clr-text-3:       #6B8A76;
  --clr-text-muted:   #9AB5A3;
  --clr-white:        #FFFFFF;
  --clr-bg:           #F8FBFA;
  --clr-surface:      #FFFFFF;
  --clr-border:       #DFF0E7;
  --clr-border-2:     #C4DDD0;
  --clr-gold:         #F0B429;
  --clr-red:          #E53E3E;

  --shadow-xs: 0 1px 3px rgba(11,122,62,.06), 0 1px 2px rgba(11,122,62,.04);
  --shadow-sm: 0 4px 12px rgba(11,122,62,.08), 0 2px 4px rgba(11,122,62,.04);
  --shadow-md: 0 8px 28px rgba(11,122,62,.12), 0 4px 12px rgba(11,122,62,.06);
  --shadow-lg: 0 20px 60px rgba(11,122,62,.15), 0 8px 24px rgba(11,122,62,.08);
  --shadow-xl: 0 32px 80px rgba(11,122,62,.18);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-base: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --ease: cubic-bezier(.25,.8,.25,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out: cubic-bezier(.22,1,.36,1);

  --header-h: 72px;
  --container: 1280px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-base);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--clr-primary-100); color: var(--clr-primary-dark); }

/* ── CONTAINER ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ── PAGE LOADER ── */
#fidan-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--clr-white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease-out), visibility .5s;
}
#fidan-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.loader-logo { width: 180px; animation: loader-pulse 1.2s ease-in-out infinite alternate; }
@keyframes loader-pulse { from { opacity: .6; transform: scale(.97); } to { opacity: 1; transform: scale(1.02); } }
.loader-bar { width: 160px; height: 3px; background: var(--clr-primary-50); border-radius: var(--radius-full); overflow: hidden; }
.loader-fill { height: 100%; width: 40%; background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-300)); border-radius: var(--radius-full); animation: loader-bar 1.4s ease-in-out infinite; }
@keyframes loader-bar { 0% { transform: translateX(-100%); width: 40%; } 50% { width: 70%; } 100% { transform: translateX(350%); width: 40%; } }

/* ── LOGO IMAGE ── */
.site-logo-img { height: 44px; width: auto; display: block; object-fit: contain; }

/* ── SITE HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  height: 100%;
  display: flex; align-items: center; gap: 32px;
}

/* LOGO */
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo svg { height: 40px; width: auto; }

/* PRIMARY NAV */
.primary-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list li a {
  display: block; padding: 8px 14px;
  font-size: 14.5px; font-weight: 500;
  color: var(--clr-text-2);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-list li a:hover,
.nav-list li.current-menu-item a { color: var(--clr-primary); background: var(--clr-primary-25); }

/* WooCommerce dropdown */
.nav-list li.menu-item-has-children { position: relative; }
.nav-list li.menu-item-has-children > a::after { content: ' ▾'; font-size: 10px; }
.nav-list ul.sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 200px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease-out), visibility .2s, transform .2s var(--ease-out);
  z-index: 100;
}
.nav-list li.menu-item-has-children:hover > ul.sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-list ul.sub-menu li a { font-size: 14px; border-radius: var(--radius-sm); }

/* HEADER ACTIONS */
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.action-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  color: var(--clr-text-2);
  transition: background .2s, color .2s;
  position: relative;
}
.action-btn svg { width: 20px; height: 20px; }
.action-btn:hover { background: var(--clr-primary-25); color: var(--clr-primary); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  width: 18px; height: 18px;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 10px; font-weight: 700;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform .3s var(--ease-spring);
}
.cart-count.has-items { transform: scale(1); }

/* HAMBURGER */
.hamburger { flex-direction: column; gap: 5px; display: none; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* SEARCH BAR */
.search-bar {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 999;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
  padding: 16px 0;
  transform: translateY(-100%);
  opacity: 0; visibility: hidden;
  transition: transform .3s var(--ease-out), opacity .3s, visibility .3s;
}
.search-bar.open { transform: translateY(0); opacity: 1; visibility: visible; }
.search-form-wrap {
  display: flex; align-items: center;
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border-2);
  border-radius: var(--radius);
  padding: 10px 16px; gap: 12px;
}
.search-form-wrap:focus-within { border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(11,122,62,.12); }
.search-icon { width: 18px; height: 18px; color: var(--clr-text-3); flex-shrink: 0; }
#live-search-input { flex: 1; border: none; background: none; font-size: 16px; font-family: var(--font-base); color: var(--clr-text); outline: none; }
.search-close { color: var(--clr-text-3); font-size: 16px; padding: 4px; border-radius: var(--radius-sm); transition: color .2s; }
.search-close:hover { color: var(--clr-text); }
.search-results { margin-top: 12px; }
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.search-result-item:hover { background: var(--clr-primary-25); }
.search-result-item img { width: 44px; height: 44px; object-fit: cover; border-radius: var(--radius-sm); }
.search-result-info strong { display: block; font-size: 14px; color: var(--clr-text); }
.search-result-info span { font-size: 13px; color: var(--clr-primary); font-weight: 600; }
.search-no-result { padding: 16px; color: var(--clr-text-3); text-align: center; font-size: 14px; }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 90vw);
  background: var(--clr-white);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner { padding: 24px 20px; display: flex; flex-direction: column; gap: 24px; min-height: 100%; }
.mobile-menu-close { align-self: flex-end; font-size: 20px; padding: 8px; color: var(--clr-text-3); }
.mobile-logo { height: 36px; }
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-list li a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 12px;
  font-size: 15px; font-weight: 500;
  color: var(--clr-text-2);
  border-bottom: 1px solid var(--clr-border);
  transition: color .2s, padding-left .2s;
}
.mobile-nav-list li a:hover { color: var(--clr-primary); padding-left: 18px; }
.mobile-menu-footer { margin-top: auto; }
.w-full { width: 100%; }

/* OVERLAY */
.overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,.4);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(2px);
}
.overlay.open { opacity: 1; visibility: visible; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-base);
  font-weight: 600; font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.btn-primary:hover { background: var(--clr-primary-dark); box-shadow: 0 6px 20px rgba(11,122,62,.35); }

.btn-outline {
  background: transparent;
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}
.btn-outline:hover { background: var(--clr-primary); color: var(--clr-white); box-shadow: 0 6px 20px rgba(11,122,62,.25); }

.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary);
}
.btn-white:hover { background: var(--clr-primary-25); box-shadow: 0 6px 20px rgba(255,255,255,.3); }

.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; }

/* ── AUTH MODAL ── */
.modal {
  position: fixed; inset: 0; z-index: 1002;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  width: 100%; max-width: 440px;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .35s var(--ease-out);
  box-shadow: var(--shadow-xl);
  max-height: 90vh; overflow-y: auto;
}
.modal.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--clr-text-3);
  border-radius: var(--radius-full);
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--clr-primary-50); color: var(--clr-text); }
.modal-tabs { display: flex; gap: 4px; background: var(--clr-bg); border-radius: var(--radius); padding: 4px; margin-bottom: 28px; }
.modal-tab {
  flex: 1; padding: 9px; font-size: 14px; font-weight: 600;
  border-radius: var(--radius-sm);
  color: var(--clr-text-3);
  transition: background .2s, color .2s, box-shadow .2s;
}
.modal-tab.active { background: var(--clr-white); color: var(--clr-primary); box-shadow: var(--shadow-xs); }
.modal-panel { display: none; }
.modal-panel.active { display: block; animation: panel-in .3s var(--ease-out); }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.modal-title { font-size: 22px; font-weight: 700; color: var(--clr-text); margin-bottom: 4px; }
.modal-sub { font-size: 14px; color: var(--clr-text-3); margin-bottom: 24px; }

/* GOOGLE BUTTON */
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px;
  font-size: 14.5px; font-weight: 600;
  color: var(--clr-text);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border-2);
  border-radius: var(--radius);
  transition: box-shadow .2s, border-color .2s;
  margin-bottom: 16px;
}
.btn-google:hover { border-color: var(--clr-primary-100); box-shadow: var(--shadow-sm); }

.divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--clr-text-muted); font-size: 13px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--clr-border); }

/* FORM */
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--clr-text-2); }
.form-group input {
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border-2);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-base);
  color: var(--clr-text);
  background: var(--clr-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus { border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(11,122,62,.12); }
.form-group input::placeholder { color: var(--clr-text-muted); }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 44px; }
.eye-btn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--clr-text-3); padding: 4px; }
.eye-btn svg { width: 18px; height: 18px; }
.eye-btn:hover { color: var(--clr-primary); }
.form-footer { display: flex; justify-content: flex-end; }
.forgot-link { font-size: 13px; color: var(--clr-primary); text-decoration: underline; text-underline-offset: 2px; }
.form-message { font-size: 13.5px; padding: 10px 14px; border-radius: var(--radius-sm); display: none; }
.form-message.success { background: #e6f4ea; color: #1b5e20; display: block; }
.form-message.error { background: #fdecea; color: #b71c1c; display: block; }
.terms-text { font-size: 12px; color: var(--clr-text-3); text-align: center; }
.terms-text a { color: var(--clr-primary); text-decoration: underline; }

/* ── MAIN CONTENT OFFSET ── */
#main-content { padding-top: var(--header-h); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-primary-25) 0%, var(--clr-white) 60%, var(--clr-primary-50) 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-shapes { position: absolute; inset: 0; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--clr-primary-100), transparent 70%);
  animation: shape-float 8s ease-in-out infinite;
}
.shape-1 { width: 500px; height: 500px; top: -100px; right: -100px; opacity: .3; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; bottom: 50px; left: -50px; opacity: .2; animation-delay: -3s; }
.shape-3 { width: 200px; height: 200px; top: 40%; right: 20%; opacity: .15; animation-delay: -6s; }
@keyframes shape-float { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(20px,-20px) scale(1.05); } 66% { transform: translate(-10px,15px) scale(.95); } }

.hero-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 80px 0; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--clr-primary-50);
  color: var(--clr-primary-dark);
  font-size: 13px; font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--clr-primary-100);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800; line-height: 1.15;
  color: var(--clr-text); margin-bottom: 20px;
}
.hero-highlight { color: var(--clr-primary); }
.hero-desc { font-size: 17px; color: var(--clr-text-2); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 26px; font-weight: 800; color: var(--clr-primary); line-height: 1; }
.stat-label { font-size: 12px; color: var(--clr-text-3); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--clr-border-2); }

/* Hero visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap { position: relative; width: 100%; max-width: 460px; margin: 0 auto; }
.hero-img-blob {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse, var(--clr-primary-100) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: blob-morph 10s ease-in-out infinite;
}
@keyframes blob-morph {
  0%,100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  25%  { border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%; }
  50%  { border-radius: 50% 50% 40% 60% / 40% 70% 30% 60%; }
  75%  { border-radius: 70% 30% 60% 40% / 50% 40% 60% 40%; }
}
.hero-img-wrap img { position: relative; z-index: 1; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); object-fit: cover; width: 100%; aspect-ratio: 4/5; }
.hero-placeholder-img { width: 100%; aspect-ratio: 4/5; background: var(--clr-primary-50); border-radius: var(--radius-xl); }

.hero-badge-float {
  position: absolute; z-index: 2;
  background: var(--clr-white);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  box-shadow: var(--shadow-md);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  animation: float-badge 4s ease-in-out infinite;
}
.badge-float-1 { top: 10%; left: -20px; animation-delay: 0s; }
.badge-float-2 { bottom: 15%; right: -10px; animation-delay: -2s; }
@keyframes float-badge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* SCROLL DOWN */
.scroll-down {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--clr-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  color: var(--clr-primary);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
.scroll-down svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 20px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 4px 0; }
.trust-icon { font-size: 28px; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--clr-text); }
.trust-text span { font-size: 12.5px; color: var(--clr-text-3); }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
  display: inline-block;
  background: var(--clr-primary-50);
  color: var(--clr-primary-dark);
  font-size: 12.5px; font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: var(--clr-text); margin-bottom: 12px; line-height: 1.2; }
.section-desc { font-size: 16px; color: var(--clr-text-3); max-width: 540px; margin: 0 auto; }
.section-footer { text-align: center; margin-top: 48px; }

/* ── KATEGORİ GRID ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background-color: var(--clr-primary-50);
  background-image: var(--cat-bg);
  background-size: cover; background-position: center;
  transition: transform .4s var(--ease), box-shadow .4s;
  display: flex; align-items: flex-end;
}
.category-card--big { grid-column: span 2; grid-row: span 2; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,50,30,.75) 0%, rgba(8,50,30,.1) 60%, transparent 100%);
  transition: background .4s;
}
.category-card:hover .cat-bg-overlay { background: linear-gradient(to top, rgba(8,50,30,.85) 0%, rgba(8,50,30,.2) 60%, transparent 100%); }
.cat-content { position: relative; z-index: 1; padding: 20px 20px 16px; width: 100%; }
.cat-icon { font-size: 28px; margin-bottom: 6px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
.cat-name { font-size: 16px; font-weight: 700; color: var(--clr-white); line-height: 1.2; }
.category-card--big .cat-name { font-size: 22px; }
.cat-count { font-size: 12px; color: rgba(255,255,255,.75); margin-top: 2px; display: block; }
.cat-arrow {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-white); font-size: 14px;
  transform: translateX(-4px);
  opacity: 0; transition: opacity .3s, transform .3s;
}
.category-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s;
  box-shadow: var(--shadow-xs);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card__img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.product-card__img-wrap a { display: block; height: 100%; }
.product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-full);
}
.badge-sale { background: #FF4757; color: var(--clr-white); }
.badge-new  { background: var(--clr-primary); color: var(--clr-white); }

.product-card__actions {
  position: absolute; bottom: -44px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  padding: 0 16px 12px;
  transition: bottom .3s var(--ease-out);
  z-index: 2;
}
.product-card:hover .product-card__actions { bottom: 0; }
.card-action-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--clr-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  color: var(--clr-text-2);
  transition: background .2s, color .2s, transform .2s;
}
.card-action-btn:hover { background: var(--clr-primary); color: var(--clr-white); transform: scale(1.1); }
.card-action-btn svg { width: 16px; height: 16px; }

.product-card__info { padding: 16px; }
.product-card__cat { font-size: 11.5px; font-weight: 600; color: var(--clr-primary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; display: block; }
.product-card__name { font-size: 14.5px; font-weight: 600; color: var(--clr-text); margin-bottom: 8px; line-height: 1.4; }
.product-card__name a { color: inherit; transition: color .2s; }
.product-card:hover .product-card__name a { color: var(--clr-primary); }
.product-card__price { margin-bottom: 14px; }
.product-card__price .woocommerce-Price-amount { font-size: 17px; font-weight: 700; color: var(--clr-primary); }
.product-card__price del .woocommerce-Price-amount { font-size: 13px; font-weight: 400; color: var(--clr-text-muted); }
.product-card .btn { font-size: 13px; padding: 9px 20px; }
.product-card__btns { display: flex; flex-direction: column; gap: 8px; }

/* ── PROMO BANNER ── */
.promo-banner {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 50%, var(--clr-primary-400) 100%);
  padding: 72px 0;
  overflow: hidden;
}
.promo-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.promo-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: var(--clr-white);
  font-size: 12.5px; font-weight: 700;
  padding: 5px 14px; border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.promo-content h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--clr-white); margin-bottom: 16px; line-height: 1.2; }
.promo-content p { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 28px; line-height: 1.6; }
.promo-visual { display: flex; justify-content: center; }
.promo-emojis { position: relative; width: 300px; height: 300px; }
.pe {
  position: absolute; font-size: 48px;
  animation: orbit 12s linear infinite;
  transform-origin: 150px 150px;
}
.pe-1 { animation-delay: 0s; }
.pe-2 { animation-delay: -2s; }
.pe-3 { animation-delay: -4s; }
.pe-4 { animation-delay: -6s; }
.pe-5 { animation-delay: -8s; }
.pe-6 { animation-delay: -10s; }
@keyframes orbit {
  from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

/* ── SPLIT SECTION (İÇ MEKAN) ── */
.indoor-section { background: var(--clr-white); }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-text .section-badge { text-align: left; }
.split-text .section-title { text-align: left; }
.split-text p { font-size: 16px; color: var(--clr-text-2); margin-bottom: 24px; line-height: 1.7; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feature-list li { font-size: 14.5px; color: var(--clr-text-2); font-weight: 500; }
.split-products { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-product-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: transform .3s, box-shadow .3s;
}
.mini-product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mini-product-card a { display: block; }
.mini-product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .4s; }
.mini-product-card:hover img { transform: scale(1.05); }
.mini-card-info { padding: 12px; background: var(--clr-white); }
.mini-card-info span { display: block; font-size: 13px; color: var(--clr-text-2); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.mini-card-info strong { font-size: 14px; color: var(--clr-primary); font-weight: 700; }
.mini-card-info .woocommerce-Price-amount { font-size: 14px; font-weight: 700; color: var(--clr-primary); }

/* ── TESTİMONİALS ── */
.testimonials-section { background: var(--clr-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { font-size: 16px; color: var(--clr-border-2); }
.star-fill { color: var(--clr-gold); }
.testimonial-text { font-size: 14.5px; color: var(--clr-text-2); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  background: var(--clr-primary-50);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--clr-primary-dark);
}
.author-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--clr-text); }
.author-info span { font-size: 12.5px; color: var(--clr-text-3); }

/* ── FOOTER ── */
.footer-newsletter {
  background: var(--clr-primary-25);
  border-top: 1px solid var(--clr-primary-100);
  padding: 60px 0;
}
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.newsletter-badge { display: inline-block; font-size: 12px; font-weight: 700; color: var(--clr-primary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.newsletter-text h3 { font-size: 26px; font-weight: 700; color: var(--clr-text); margin-bottom: 8px; }
.newsletter-text p { font-size: 14.5px; color: var(--clr-text-3); }
.newsletter-input-wrap { display: flex; gap: 10px; margin-bottom: 10px; }
.newsletter-input-wrap input {
  flex: 1; padding: 13px 18px;
  border: 1.5px solid var(--clr-border-2);
  border-radius: var(--radius-full);
  font-size: 15px; font-family: var(--font-base);
  background: var(--clr-white); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.newsletter-input-wrap input:focus { border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(11,122,62,.12); }
.newsletter-note { font-size: 12px; color: var(--clr-text-muted); }

.footer-main { background: var(--clr-text); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { height: 40px; width: auto; display: block; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.footer-logo:hover { opacity: 1; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; margin: 16px 0 24px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, border-color .2s;
}
.social-link:hover { background: var(--clr-primary); color: var(--clr-white); border-color: var(--clr-primary); }
.social-link svg { width: 16px; height: 16px; }
.footer-heading { font-size: 13.5px; font-weight: 700; color: var(--clr-white); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s, padding-left .2s; display: block; }
.footer-links li a:hover { color: var(--clr-white); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.65); }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--clr-primary-300); }
.footer-contact a { color: inherit; transition: color .2s; }
.footer-contact a:hover { color: var(--clr-white); }
.payment-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-card {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: 10px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.15);
  letter-spacing: .5px;
}
.footer-bottom {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.45); }

/* ── BREADCRUMB ── */
.breadcrumb { margin-bottom: 24px; }
.breadcrumb ol { display: flex; align-items: center; gap: 8px; font-size: 13px; flex-wrap: wrap; }
.breadcrumb li:not(:last-child)::after { content: '/'; color: var(--clr-text-muted); margin-left: 8px; }
.breadcrumb a { color: var(--clr-text-3); transition: color .2s; }
.breadcrumb a:hover { color: var(--clr-primary); }
.breadcrumb li:last-child { color: var(--clr-text-2); font-weight: 500; }

/* ── WC SHOP PAGE ── */
.wc-main-wrapper { display: flex; gap: 32px; align-items: flex-start; }
.wc-sidebar { width: 260px; flex-shrink: 0; }
.wc-content { flex: 1; min-width: 0; }

.shop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.shop-title { font-size: 26px; font-weight: 800; color: var(--clr-text); }
.woocommerce-result-count { font-size: 13.5px; color: var(--clr-text-3); }
.woocommerce-ordering select {
  padding: 9px 36px 9px 14px;
  border: 1.5px solid var(--clr-border-2);
  border-radius: var(--radius);
  font-size: 14px; font-family: var(--font-base);
  appearance: none;
  background: var(--clr-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236B8A76' stroke-width='2'%3E%3Cpolyline points='2 4 6 8 10 4'/%3E%3C/svg%3E") no-repeat right 12px center;
  cursor: pointer; outline: none;
}
.woocommerce-ordering select:focus { border-color: var(--clr-primary); }

/* WC Product Loop */
ul.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; list-style: none; padding: 0; margin: 0; }
ul.products li.product { }

/* Override default WC product styles to use our card */
.woocommerce ul.products li.product a img { border-radius: var(--radius); }

/* PAGINATION */
.woocommerce-pagination { margin-top: 40px; display: flex; justify-content: center; }
.woocommerce-pagination ul { display: flex; gap: 8px; list-style: none; padding: 0; flex-wrap: wrap; justify-content: center; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--clr-border-2);
  font-size: 14px; font-weight: 600;
  color: var(--clr-text-2);
  background: var(--clr-white);
  transition: all .25s;
}
.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 12px rgba(11,122,62,.3);
}

/* SIDEBAR WIDGETS */
.wc-sidebar .widget { margin-bottom: 24px; background: var(--clr-white); border-radius: var(--radius-lg); border: 1px solid var(--clr-border); overflow: hidden; box-shadow: var(--shadow-xs); }
.wc-sidebar .widget-title { font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--clr-text); background: var(--clr-primary-25); padding: 14px 18px; margin: 0; border-bottom: 1px solid var(--clr-border); }
.wc-sidebar .widget > *:not(.widget-title) { padding: 16px 18px; }
.wc-sidebar .widget ul li { border-bottom: 1px solid var(--clr-border); padding: 8px 0; }
.wc-sidebar .widget ul li:last-child { border-bottom: none; }
.wc-sidebar .widget ul li a { font-size: 14px; color: var(--clr-text-2); transition: color .2s, padding-left .2s; display: flex; justify-content: space-between; align-items: center; }
.wc-sidebar .widget ul li a:hover { color: var(--clr-primary); padding-left: 4px; }

/* SIDEBAR CATEGORY TREE */
.sidebar-cat-item { }
.sidebar-cat-link, .sidebar-subcat-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 18px; font-size: 14px; color: var(--clr-text-2);
  transition: color .2s, background .2s;
  border-left: 2px solid transparent;
}
.sidebar-cat-link:hover { color: var(--clr-primary); background: var(--clr-primary-25); }
.sidebar-cat-link.current { color: var(--clr-primary); font-weight: 700; border-left-color: var(--clr-primary); background: var(--clr-primary-25); }
.sidebar-cat-count { font-size: 11px; background: var(--clr-primary-50); color: var(--clr-primary-dark); padding: 2px 7px; border-radius: var(--radius-full); font-weight: 600; }
.sidebar-subcats { padding-left: 8px; border-left: 1px solid var(--clr-border); margin: 0 18px 8px; }
.sidebar-subcat-link { padding: 7px 12px; font-size: 13px; border-radius: var(--radius-sm); }
.sidebar-subcat-link:hover { color: var(--clr-primary); background: var(--clr-primary-25); }
.sidebar-subcat-link.current { color: var(--clr-primary); font-weight: 600; }

/* PRICE RANGE SLIDER */
.price-range-wrap { }
.price-labels { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 600; color: var(--clr-text); margin-bottom: 16px; }
.price-slider-track { position: relative; height: 5px; background: var(--clr-border-2); border-radius: var(--radius-full); margin: 16px 0; }
.price-slider-fill { position: absolute; height: 100%; background: var(--clr-primary); border-radius: var(--radius-full); pointer-events: none; }
.price-range-input {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; appearance: none; background: transparent; pointer-events: none;
  height: 20px; margin: 0; outline: none;
}
.price-range-input::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--clr-primary); border: 2px solid var(--clr-white);
  box-shadow: 0 2px 6px rgba(11,122,62,.3);
  cursor: pointer; pointer-events: all;
  transition: transform .2s, box-shadow .2s;
}
.price-range-input::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: 0 4px 12px rgba(11,122,62,.4); }
.price-range-input::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--clr-primary); border: 2px solid var(--clr-white);
  box-shadow: 0 2px 6px rgba(11,122,62,.3); cursor: pointer; pointer-events: all;
}

/* CONTACT RESPONSIVE */
@media (max-width: 768px) {
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* SINGLE PRODUCT */
.single-product-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.product-gallery { border-radius: var(--radius-xl); overflow: hidden; }
.product-gallery img { width: 100%; border-radius: var(--radius-xl); }
.product-summary { }
.product-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.product-cat-link {
  font-size: 12px; font-weight: 600;
  background: var(--clr-primary-50);
  color: var(--clr-primary-dark);
  padding: 4px 12px; border-radius: var(--radius-full);
  transition: background .2s;
}
.product-cat-link:hover { background: var(--clr-primary-100); }
.product-title { font-size: clamp(24px, 3.5vw, 32px); font-weight: 800; color: var(--clr-text); margin-bottom: 12px; line-height: 1.2; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.product-price { font-size: 28px; font-weight: 800; color: var(--clr-primary); margin-bottom: 24px; }
.product-price del { font-size: 16px; color: var(--clr-text-muted); font-weight: 400; margin-right: 8px; }
.product-price ins { text-decoration: none; }
.product-price .woocommerce-Price-amount { font-size: 28px; font-weight: 800; }

/* ── WOOCOMMERCE OVERRIDE ── */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  border-radius: var(--radius);
  border-left: 4px solid var(--clr-primary);
  background: var(--clr-primary-25);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-xs);
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-base); font-weight: 600; font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  background: var(--clr-primary); color: var(--clr-white);
  border: 2px solid var(--clr-primary);
  transition: transform .25s var(--ease), box-shadow .25s, background .2s;
  cursor: pointer;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,122,62,.35);
}
.woocommerce a.button.alt, .woocommerce button.button.alt {
  background: var(--clr-primary-dark);
}

/* Forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1.5px solid var(--clr-border-2) !important;
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  font-family: var(--font-base) !important;
  font-size: 15px !important;
  transition: border-color .2s, box-shadow .2s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--clr-primary) !important;
  box-shadow: 0 0 0 3px rgba(11,122,62,.12) !important;
  outline: none !important;
}

/* Star rating */
.woocommerce .star-rating span::before { color: var(--clr-gold); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--clr-text);
  color: var(--clr-white);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: transform .35s var(--ease-out), opacity .35s;
  pointer-events: none; max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.toast-success { background: var(--clr-primary-dark); }
.toast.toast-error   { background: var(--clr-red); }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 46px; height: 46px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s var(--ease-spring), background .2s;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--clr-primary-dark); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ── REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-up.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: .08s !important; }
.delay-2 { transition-delay: .16s !important; }
.delay-3 { transition-delay: .24s !important; }
.delay-4 { transition-delay: .32s !important; }

/* ── CONTACT PAGE ── */
.contact-page-wrap { max-width: 1100px; margin: 0 auto; }
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
.contact-info-item { text-align: center; padding: 28px 20px; background: var(--clr-white); border-radius: var(--radius-lg); border: 1px solid var(--clr-border); box-shadow: var(--shadow-xs); transition: transform .3s, box-shadow .3s; }
.contact-info-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-icon { font-size: 32px; margin-bottom: 12px; }
.contact-info-item h3 { font-size: 14px; font-weight: 700; color: var(--clr-text); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .4px; }
.contact-info-item p, .contact-info-item a { font-size: 14.5px; color: var(--clr-text-2); line-height: 1.6; }
.contact-info-item a:hover { color: var(--clr-primary); }
.contact-main-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
.contact-form-section h2, .contact-map-section h2 { font-size: 22px; font-weight: 700; color: var(--clr-text); margin-bottom: 8px; }
.contact-form-section p { font-size: 14.5px; color: var(--clr-text-3); margin-bottom: 24px; }

/* Contact Form 7 Styles */
.wpcf7-form p { margin-bottom: 16px; }
.wpcf7-form label { display: block; font-size: 13.5px; font-weight: 600; color: var(--clr-text-2); margin-bottom: 6px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--clr-border-2);
  border-radius: var(--radius);
  font-family: var(--font-base);
  font-size: 14.5px;
  color: var(--clr-text);
  background: var(--clr-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus { border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(11,122,62,.1); }
.wpcf7-form textarea { min-height: 140px; resize: vertical; }
.wpcf7-form input[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 32px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  width: 100%;
}
.wpcf7-form input[type="submit"]:hover { background: var(--clr-primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11,122,62,.3); }
.wpcf7-not-valid-tip { color: var(--clr-red); font-size: 12px; margin-top: 4px; display: block; }
.wpcf7-response-output { border-radius: var(--radius); padding: 12px 16px; margin-top: 16px; font-size: 14px; }
.wpcf7-mail-sent-ok { background: var(--clr-primary-25); border: 1px solid var(--clr-primary-100); color: var(--clr-primary-dark); }
.wpcf7-validation-errors { background: #FFF5F5; border: 1px solid #FED7D7; color: var(--clr-red); }

/* ── 404 ── */
.error-404-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-404-wrap h1 { font-size: 120px; font-weight: 900; color: var(--clr-primary-100); line-height: 1; }
.error-404-wrap h2 { font-size: 28px; font-weight: 700; color: var(--clr-text); margin-bottom: 12px; }
.error-404-wrap p { color: var(--clr-text-3); margin-bottom: 32px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 60px; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-title { font-size: 34px; }
  .hero-stats { gap: 16px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .category-card--big { grid-column: span 2; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section { padding: 56px 0; }
  .promo-inner { grid-template-columns: 1fr; }
  .promo-visual { display: none; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-products { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .wc-main-wrapper { flex-direction: column; }
  .wc-sidebar { width: 100%; }
  ul.products { grid-template-columns: repeat(2, 1fr); }
  .single-product-wrap { grid-template-columns: 1fr; }
  .toast { left: 16px; right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .category-card--big { grid-column: span 1; }
  .products-grid { grid-template-columns: 1fr; }
  ul.products { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
