/*
Theme Name:  DerinCup
Theme URI:   https://derincup.com.tr
Author:      Orçun Candan
Author URI:  https://orcuncandan.com
Description: DerinCup kağıt bardak ve ambalaj çözümleri için özel WordPress teması. Developed by Orçun Candan (orcuncandan89@gmail.com)
Version:     1.1.1
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: derincup
Tags:        b2b, ambalaj, e-commerce, responsive

This theme, like WordPress, is licensed under the GPL.
*/

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --ink:        #0B0D11;
  --ink-2:      #181B22;
  --ink-3:      #2B2F3A;
  --gold:       #B8935A;
  --gold-light: #D4B07E;
  --gold-pale:  #F5EFE4;
  --sand:       #F8F5F1;
  --sand-2:     #EEE9E2;
  --white:      #FFFFFF;
  --mid:        #5C606B;
  --mute:       #9699A2;
  --border:     rgba(0,0,0,0.09);
  --border-inv: rgba(255,255,255,0.10);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;

  --ease: cubic-bezier(.4,0,.2,1);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
#site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.site-logo img { height: 38px; object-fit: contain; }
.site-logo a { display: inline-block; }

/* Nav */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.main-navigation ul li a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: .01em;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  display: inline-block;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--ink);
  background: var(--sand);
}

.header-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  font-size: 13.5px;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: var(--r-sm);
  letter-spacing: .02em;
  transition: background .2s !important;
}
.header-cta:hover { background: var(--ink-3) !important; }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  line-height: 1;
}

/* ─────────────────────────────────────────
   HERO  —  full-screen split
───────────────────────────────────────── */
.hero {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100vh - 68px);
}

.hero-pane-text {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8% 80px 7%;
  position: relative;
  overflow: hidden;
}
.hero-pane-text::after {
  content: '';
  position: absolute;
  bottom: -160px; right: -160px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,90,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-pane-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-pane-text h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-pane-text .hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin-bottom: 42px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 15px 30px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.btn-outline-white:hover { color: var(--white); border-color: rgba(255,255,255,0.45); }

.hero-kpis {
  display: flex;
  gap: 0;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-kpi {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 28px;
}
.hero-kpi + .hero-kpi {
  padding-left: 28px;
  padding-right: 28px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.hero-kpi strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-kpi span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-pane-img {
  position: relative;
  overflow: hidden;
}
.hero-pane-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-badge-float {
  position: absolute;
  bottom: 32px;
  left: -1px;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5;
}
.hero-badge-float strong {
  font-size: 22px;
  display: block;
  font-family: 'Playfair Display', serif;
}

/* ─────────────────────────────────────────
   SHARED LAYOUT HELPERS
───────────────────────────────────────── */
.section-wrap { padding: 112px 7%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid);
  max-width: 520px;
}

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

.products-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: #dad6d7 right center url(assets/images/catbg3.webp);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.product-tile {
  background: var(--white);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background .2s;
  position: relative;
}
.product-tile:hover { background: var(--gold-pale); }

.product-tile-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--mute);
  padding: 14px 20px 0;
}

.product-tile-img {
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
  background: var(--sand);
}
.product-tile-img img {
  width: 100%;
  height: auto;
  display: block;
}

.product-tile-body {
  padding: 14px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.product-tile-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.product-tile-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.product-tile-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mid);
  flex: 1;
  margin-bottom: 20px;
  white-space: pre-line;
}
.product-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .03em;
  border-bottom: 1px solid var(--ink-3);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: gap .2s, color .2s;
}
.product-tile:hover .product-tile-link { color: var(--gold); border-color: var(--gold); gap: 10px; }

/* Products archive / single */
.products-archive-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 40px;
}

/* ─────────────────────────────────────────
   ABOUT  —  full-bleed split
───────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 640px;
}

.about-img-side {
  position: relative;
  overflow: hidden;
}
.about-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  top: 40px; right: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 20px 28px;
  border-radius: var(--r-md) 0 0 var(--r-md);
  text-align: center;
}
.about-img-badge .aib-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-img-badge .aib-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .75;
}

.about-content-side {
  background: var(--ink);
  padding: 80px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content-side .eyebrow { color: var(--gold); }
.about-content-side .eyebrow::before { background: var(--gold); }
.about-content-side .section-headline { color: var(--white); margin-bottom: 20px; }
.about-content-side p {
  font-size: 15.5px;
  line-height: 1.78;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0 40px;
  border-top: 1px solid var(--border-inv);
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-inv);
}
.af-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(184,147,90,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}
.af-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.af-text span {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.4);
}

/* ─────────────────────────────────────────
   ARTICLES  —  magazine grid
───────────────────────────────────────── */
.articles-section { background: var(--white); }

.articles-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.articles-see-all {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--sand-2);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.articles-see-all:hover { color: var(--gold); border-color: var(--gold); }

.magazine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}

.mag-featured {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  background: var(--sand);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .3s;
}
.mag-featured:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.mag-featured-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.mag-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.mag-featured:hover .mag-featured-img img { transform: scale(1.04); }
.mag-featured-body { padding: 28px 28px 32px; flex: 1; }

.mag-small-side { display: flex; flex-direction: column; gap: 28px; }
.mag-small {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--sand);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .25s;
}
.mag-small:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.mag-small-img {
  width: 130px;
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
}
.mag-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.mag-small:hover .mag-small-img img { transform: scale(1.07); }
.mag-small-body { padding: 18px 18px 18px 0; }

.article-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.mag-featured-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}
.mag-small-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 6px;
}
.mag-featured-body .a-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mid);
  margin-bottom: 22px;
}
.mag-small-body .a-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mid);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.a-read-more,
a.a-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color .2s, gap .2s;
}
.a-read-more:hover { color: var(--gold); gap: 9px; }

/* ─────────────────────────────────────────
   MAKALELER ARŞİVİ — eşit kart grid
───────────────────────────────────────── */
.articles-equal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.articles-equal-card {
  display: flex;
  flex-direction: column;
  background: var(--sand);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .3s;
  text-decoration: none;
  color: inherit;
}
.articles-equal-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.articles-equal-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}
.articles-equal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.articles-equal-card:hover .articles-equal-img img { transform: scale(1.04); }
.articles-equal-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.articles-equal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
}
.articles-equal-body .a-excerpt {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--mid);
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─────────────────────────────────────────
   CTA  —  centered big type
───────────────────────────────────────── */
.cta-section {
  background: var(--ink-2);
  padding: 120px 7%;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::before {
  width: 700px; height: 700px;
  top: -300px; left: -150px;
  background: radial-gradient(circle, rgba(184,147,90,.10) 0%, transparent 60%);
}
.cta-section::after {
  width: 500px; height: 500px;
  bottom: -200px; right: -100px;
  background: radial-gradient(circle, rgba(184,147,90,.08) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-section .eyebrow { color: var(--gold); justify-content: center; }
.cta-section .eyebrow::before { background: var(--gold); }
.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}
.cta-headline em { font-style: italic; color: var(--gold-light); }
.cta-section p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-note {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 16px;
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-section {
  background: var(--sand);
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: start;
}

.contact-info-side {
  background: var(--white);
  padding: 80px 6% 80px 7%;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}
.contact-info-side .section-headline { margin-bottom: 14px; }
.contact-info-side .section-desc { margin-bottom: 44px; }

.contact-card-list { display: flex; flex-direction: column; gap: 0; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-card:first-child { border-top: 1px solid var(--border); }
.cc-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}
.cc-text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 4px;
}
.cc-text span,
.cc-text a {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 500;
  transition: color .2s;
}
.cc-text a:hover { color: var(--gold); }
.cc-text a.wa { color: #25C95E; }
.cc-text a.wa:hover { color: #18a84b; }

.contact-form-side {
  background: var(--sand);
  padding: 80px 7% 80px 5%;
}
.contact-form-side .section-headline { margin-bottom: 6px; }
.contact-form-side > .sdesc { font-size: 14px; color: var(--mute); margin-bottom: 36px; }

/* Contact Form 7 overrides */
.wpcf7-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg.full { grid-column: 1 / -1; }
.fg label,
.wpcf7-form label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--mid);
}
.fg input,
.fg textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  border: 1.5px solid var(--sand-2);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.fg input:focus,
.fg textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,147,90,.12);
}
.fg textarea,
.wpcf7-form textarea { resize: vertical; min-height: 130px; }

.btn-submit,
.wpcf7-submit {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  transition: background .2s, transform .2s;
}
.btn-submit:hover,
.wpcf7-submit:hover { background: var(--ink-3); transform: translateY(-2px); }

/* Ürün talep formu */
.product-request-form {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-top: 48px;
}
.product-request-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.product-request-form p.prf-desc {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 28px;
}

/* ─────────────────────────────────────────
   SINGLE POST / PAGE CONTENT
───────────────────────────────────────── */
.single-hero {
  margin-top: 68px;
  background: var(--ink);
  padding: 20px 7%;
  position: relative;
  overflow: hidden;
}
.single-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,90,.14) 0%, transparent 70%);
  pointer-events: none;
}
.single-hero-inner { max-width: 760px; margin:0 auto; position: relative; z-index: 1; }
.single-hero .article-cat { margin-bottom: 8px; }
.single-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.single-hero .post-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.entry-content-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 7%;
}
.entry-content h2, .entry-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  margin: 36px 0 16px;
  line-height: 1.25;
}
.entry-content h2 { font-size: 1.8rem; }
.entry-content h3 { font-size: 1.3rem; }
.entry-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 20px;
}
.entry-content img {
  border-radius: var(--r-md);
  margin: 28px auto;
  max-width: 100%;
}
.entry-content ul, .entry-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.entry-content li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 6px;
}
.entry-content a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color .2s; }
.entry-content a:hover { border-color: var(--gold); }

/* Makale navigasyonu */
.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--sand-2);
}
.pn-prev,
.pn-next {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  background: var(--sand);
  border: 1px solid var(--sand-2);
  border-radius: var(--r-md);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.pn-next { text-align: right; align-items: flex-end; }
.pn-prev:hover,
.pn-next:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}
.pn-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
}
.pn-prev a,
.pn-next a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  border-bottom: none !important;
  transition: color .2s var(--ease);
}
.pn-prev:hover a,
.pn-next:hover a { color: var(--gold); }
@media (max-width: 600px) {
  .post-navigation { flex-direction: column; }
  .pn-next { align-items: flex-start; text-align: left; }
}
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--sand);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  color: var(--mid);
}

/* ─────────────────────────────────────────
   İÇİNDEKİLER (TOC) — Floating Sidebar
───────────────────────────────────────── */
.derincup-toc {
  position: fixed;
  top: 88px;
  right: 24px;
  width: 248px;
  max-height: calc(100vh - 108px);
  background: var(--sand);
  border: 1px solid var(--sand-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  z-index: 90;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .3s var(--ease);
}

/* Gizle: ekran dar veya makale dışındaysa */
@media (max-width: 1259px) {
  .derincup-toc { display: none !important; }
}

.toc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--sand-2);
  cursor: default;
  flex-shrink: 0;
}
.toc-icon { color: var(--gold); font-size: 13px; flex-shrink: 0; }
.toc-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
  flex: 1;
}
.toc-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid);
  padding: 4px 6px;
  border-radius: 4px;
  transition: color .2s var(--ease), background .2s var(--ease);
  line-height: 1;
}
.toc-toggle:hover { color: var(--gold); background: rgba(184,147,90,0.08); }
.toc-toggle.collapsed i { transform: rotate(180deg); }
.toc-toggle i { display: block; transition: transform .3s var(--ease); font-size: 11px; }

.toc-list {
  list-style: none;
  padding: 12px 16px 14px;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: max-height .35s var(--ease), opacity .3s var(--ease), padding .3s var(--ease);
}
.toc-list.toc-hidden { max-height: 0 !important; opacity: 0; padding-top: 0; padding-bottom: 0; }

.toc-item {
  list-style: none;
  margin: 0;
  border-bottom: 1px solid var(--border);
}
.toc-item:last-child { border-bottom: none; }
.toc-item a {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 7px 0;
  font-size: 12.5px;
  color: var(--mid);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
  border-bottom: none;
  line-height: 1.45;
}
.toc-item a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
  opacity: 0.45;
  transition: opacity .2s var(--ease);
}
.toc-item a:hover { color: var(--gold); padding-left: 3px; }
.toc-item a:hover::before { opacity: 1; }

/* H3 alt başlıklar */
.toc-sub a { padding-left: 14px; font-size: 11.5px; }
.toc-sub a::before { width: 4px; height: 4px; background: var(--mute); }
.toc-sub a:hover { color: var(--gold); }
.toc-sub a:hover::before { background: var(--gold); opacity: 1; }

/* Aktif başlık vurgusu */
.toc-item.toc-active > a { color: var(--gold); font-weight: 500; }
.toc-item.toc-active > a::before { opacity: 1; }

/* ─────────────────────────────────────────
   ARCHIVE
───────────────────────────────────────── */
.archive-header {
  margin-top: 68px;
  background: var(--sand);
  padding: 26px 7%;
}
.archive-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.archive-header p {
  font-size: 16px;
  color: var(--mid);
  max-width: 520px;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 72px 7%;
}
.archive-card {
  background: var(--sand);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.archive-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.10); }
.archive-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.archive-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.archive-card:hover .archive-card-img img { transform: scale(1.04); }
.archive-card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.archive-card-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.archive-card-body .a-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--mid);
  flex: 1;
  margin-bottom: 20px;
}
.archive-pagination {
  padding: 0 7% 72px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.archive-pagination a,
.archive-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  border: 1.5px solid var(--sand-2);
  transition: color .2s, background .2s, border-color .2s;
}
.archive-pagination a:hover,
.archive-pagination .current {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ─────────────────────────────────────────
   ÜRÜN TEK SAYFASI — product-single-hero
───────────────────────────────────────── */

/* Hero: iki sütun — görsel / bilgi */
.product-single-hero {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 580px;
  background: var(--ink);
}

/* Görsel sütunu */
.psh-img-col {
  position: relative;
  overflow: hidden;
}
.psh-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.psh-img-wrap img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.psh-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

/* ── Slider ── */
.psh-slider {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.psh-slides {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.psh-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.psh-slide.active {
  opacity: 1;
  pointer-events: auto;
}
/* Ok butonları */
.psh-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.psh-arrow:hover { background: rgba(0,0,0,.75); }
.psh-prev { left: 12px; }
.psh-next { right: 12px; }
/* Thumbnail bar */
.psh-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0,0,0,.5);
  overflow-x: auto;
  scrollbar-width: thin;
}
.psh-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 42px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: .6;
  transition: opacity .2s, border-color .2s;
}
.psh-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.psh-thumb.active,
.psh-thumb:hover { opacity: 1; border-color: var(--gold); }

/* Bilgi sütunu */
.psh-info-col {
  padding: 60px 7% 60px 5%;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

/* Breadcrumb */
.psh-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.psh-breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color .2s;
}
.psh-breadcrumb a:hover { color: var(--gold-light); }
.psh-breadcrumb span:last-child { color: rgba(255,255,255,0.65); }
.psh-bc-sep { opacity: .3; }

/* Başlık */
.psh-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

/* Excerpt */
.psh-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.58);
  margin-bottom: 22px;
  max-width: 480px;
}

/* Etiketler */
.psh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.psh-tags .product-tile-tag {
  background: rgba(184,147,90,.15);
  color: var(--gold-light);
  border: 1px solid rgba(184,147,90,.25);
}

/* Hızlı bilgi rozetleri */
.psh-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
}
.psh-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.psh-badge-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.psh-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1px;
}
.psh-badge small {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}

/* Aksiyonlar */
.psh-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.psh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--r-sm);
  text-align: center;
}
.psh-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  background: #25C95E;
  color: var(--white);
  border: none;
  transition: background .2s, transform .2s;
  text-align: center;
}
.psh-btn-whatsapp:hover {
  background: #1aaf4e;
  color: var(--white);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   ÜRÜN DETAY — içerik + sticky form
───────────────────────────────────────── */
.product-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  align-items: start;
  padding: 72px 7%;
  max-width: 1400px;
  margin: 0 auto;
}

.product-detail-content { padding-right: 48px; }

.pdc-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sand-2);
}

/* Sticky form sidebar */
.product-detail-form {
  position: sticky;
  top: 88px; /* 68px header + 20px gap */
}
.product-detail-form .product-request-form {
  margin-top: 0;
}

/* İlgili ürünler bölümü */
.related-products-section {
  background: var(--sand);
}
.related-products-section .section-wrap {
  padding-top: 72px;
  padding-bottom: 80px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#colophon {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 72px 7% 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-inv);
}
.footer-brand img { height: 34px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
  max-width: 240px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact-line i {
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  color: var(--gold);
  font-size: 15px;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.25);
  letter-spacing: .02em;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ─────────────────────────────────────────
   404 PAGE
───────────────────────────────────────── */
/* 404 Sayfası */
.e404-section {
  margin-top: 68px;
  min-height: calc(100vh - 68px);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 7%;
}

/* Dekoratif arka plan numarası */
.e404-bg-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(180px, 30vw, 400px);
  font-weight: 700;
  color: rgba(184,147,90,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.e404-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 620px;
  width: 100%;
}

/* Bardak ikonu */
.e404-icon {
  width: 72px;
  height: 72px;
  background: rgba(184,147,90,0.12);
  border: 1px solid rgba(184,147,90,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold);
}
.e404-icon svg { width: 34px; height: 34px; }

/* Eyebrow */
.e404-eyebrow {
  color: var(--gold) !important;
  justify-content: center;
  margin-bottom: 18px;
}
.e404-eyebrow::before { background: var(--gold) !important; }

/* Başlık */
.e404-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Açıklama */
.e404-desc {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 44px;
}

/* Hızlı linkler */
.e404-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.e404-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-inv);
  border-radius: var(--r-md);
  min-width: 100px;
  color: var(--mute);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.e404-link:hover {
  background: rgba(184,147,90,0.10);
  border-color: rgba(184,147,90,0.35);
  color: var(--gold-light);
  transform: translateY(-3px);
}
.e404-link-icon {
  font-size: 20px;
  color: var(--gold);
}
.e404-link-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* CTA butonu */
.e404-btn {
  font-size: 15px;
  padding: 15px 36px;
}

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(5, 1fr); }
  .products-archive-grid { grid-template-columns: repeat(5, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-equal-grid { grid-template-columns: repeat(2, 1fr); }
  .product-single-hero { grid-template-columns: 50% 50%; }
  .product-detail-wrap { grid-template-columns: 1fr 340px; }
}
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-pane-img { min-height: 340px; }
  .about-section { grid-template-columns: 1fr; }
  .about-img-side { min-height: 360px; }
  .about-img-badge { right: 20px; top: 20px; }
  .contact-section { grid-template-columns: 1fr; }
  .magazine-grid { grid-template-columns: 1fr; }
  .mag-featured { grid-row: auto; }
  .mag-small-side { gap: 20px; }
  .wpcf7-form .form-grid { grid-template-columns: 1fr; }
  .product-single-hero { grid-template-columns: 1fr; }
  .psh-img-col { min-height: 340px; }
  .psh-img-wrap { min-height: 340px; }
  .psh-info-col { padding: 40px 7%; }
  .product-detail-wrap { grid-template-columns: 1fr; padding: 48px 7%; }
  .product-detail-content { padding-right: 0; margin-bottom: 40px; }
  .product-detail-form { position: static; }
}
@media (max-width: 768px) {
  .section-wrap { padding: 72px 5%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-archive-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .main-navigation ul li a:not(.header-cta) { display: none; }
  .main-navigation ul li:last-child a { display: inline-block; }
  .menu-toggle { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .wpcf7-form .form-grid { grid-template-columns: 1fr; }
  .hero-kpis { flex-wrap: wrap; gap: 24px; }
  .hero-kpi + .hero-kpi { border-left: none; padding-left: 0; }
  .archive-grid { grid-template-columns: 1fr; }
  .articles-equal-grid { grid-template-columns: 1fr; }
  .psh-badges { display: none; }
  .psh-title { font-size: 1.6rem; }
}

/* Mobile nav open state */
@media (max-width: 768px) {
  .main-navigation {
    position: static;
    transform: none;
  }
  .main-navigation.menu-open ul {
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 199;
  }
  .main-navigation.menu-open ul li a:not(.header-cta) { display: block; width: 100%; }
  .main-navigation ul { display: none; }
  .main-navigation.menu-open ul { display: flex; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .e404-links { gap: 8px; }
  .e404-link { padding: 14px 16px; min-width: 80px; }
  .e404-link-icon { font-size: 17px; }
  .e404-link-label { font-size: 11px; }
}

/* ─────────────────────────────────────────
   KATEGORI NAVIGASYON STILI
───────────────────────────────────────── */
.derincup-category-nav {
	background: linear-gradient(135deg, var(--sand) 0%, var(--sand-2) 100%);
	border-radius: var(--r-md);
	padding: 16px;
	margin-bottom: 40px;
	overflow-x: auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.category-nav-wrap {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	flex-wrap: wrap;
	align-items: center;
}

.category-nav-link {
	padding: 10px 18px;
	border: 1.5px solid var(--border);
	border-radius: var(--r-sm);
	text-decoration: none;
	color: var(--ink);
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s var(--ease);
	white-space: nowrap;
	display: inline-block;
	background: var(--white);
	cursor: pointer;
}

.category-nav-link:hover {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(184, 147, 90, 0.15);
}

.category-nav-link:active {
	border-color: var(--gold);
	background: var(--gold-pale);
	color: var(--ink);
}

@media (max-width: 768px) {
	.derincup-category-nav {
		padding: 12px;
	}
	
	.category-nav-wrap {
		gap: 8px;
		padding: 8px 0;
	}
	
	.category-nav-link {
		padding: 8px 14px;
		font-size: 13px;
	}
}

.derincup-category-title {
	margin-top: 40px;
	margin-bottom: 20px;
	scroll-margin-top: 100px;
}
