@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ─── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:         #c0392b;
  --red-hover:   #a93226;
  --red-light:   #fdf2f2;
  --red-mid:     #f0c0bc;
  --gold:        #b07d2e;
  --gold-bg:     #fdf6e8;
  --gold-border: #e8d5a8;
  --slate:       #1e293b;
  --slate-mid:   #334155;
  --slate-soft:  #64748b;
  --slate-muted: #94a3b8;
  --green:       #1a5c33;
  --green-light: #e8f5ec;
  --green-border:#b8dfc5;

  --bg-page:    #f8f7f5;
  --bg-card:    #ffffff;
  --bg-surface: #f1ede8;
  --border:     #e2ddd8;
  --border-soft:#ede9e4;

  --text-h:  #1e293b;
  --text-b:  #475569;
  --text-m:  #94a3b8;

  --font-display: 'Teko', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);

  --nav-h: 60px;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-page);
  color: var(--text-b);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ─── UTILITY ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-m);
  margin-bottom: 4px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-h);
  letter-spacing: 0.3px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-b);
  margin-top: 6px;
  max-width: 600px;
}

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
  white-space: nowrap;
}
.see-all:hover { gap: 8px; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .18s, transform .12s, box-shadow .18s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-hover); box-shadow: 0 4px 12px rgba(192,57,43,.3); }

.btn-secondary {
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-surface); border-color: var(--slate-muted); }

.btn-whatsapp {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid var(--green-border);
}
.btn-whatsapp:hover { background: #d2eedd; }

.btn-lg {
  font-size: 14px;
  padding: 12px 26px;
}

/* ─── HEADER / NAV ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-soft);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  letter-spacing: .2px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--slate);
  background: var(--bg-surface);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero-section {
  padding-top: var(--nav-h);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 28px 40px;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: .95;
  color: var(--text-h);
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.hero-title em { color: var(--red); font-style: normal; }

.hero-desc {
  font-size: 15px;
  color: var(--text-b);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 24px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  color: var(--text-m);
  letter-spacing: .5px;
  margin-top: 3px;
  text-transform: uppercase;
}

/* Slider image area */
.hero-slider-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  aspect-ratio: 4/3;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero-slide-img.active { opacity: 1; }

.slider-dots {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}
.slider-dot {
  width: 20px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: width .25s, background .25s;
  padding: 0;
}
.slider-dot.active {
  background: var(--red);
  width: 32px;
}

/* ─── SERVICES STRIP ────────────────────────────────────────── */
.services-strip {
  background: var(--slate);
  padding: 12px 0;
  overflow: hidden;
}
.services-strip-inner {
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  gap: 0;
  flex-wrap: wrap;
}
.svc-item {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,.7);
  padding: 4px 18px;
  border-right: 1px solid rgba(255,255,255,.12);
  white-space: nowrap;
}
.svc-item:first-child { padding-left: 0; }
.svc-item:last-child { border-right: none; }
.svc-item.highlight { color: #fbbf7a; }

/* ─── SPECIAL / TAKIM DEPOSU ────────────────────────────────── */
.special-section {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.special-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.special-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--text-h);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: .3px;
}
.special-desc {
  font-size: 14px;
  color: var(--text-b);
  line-height: 1.7;
  margin-bottom: 20px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 12px;
  color: var(--slate-soft);
}
.tag.gold {
  background: var(--gold-bg);
  border-color: var(--gold-border);
  color: var(--gold);
  font-weight: 600;
}

.special-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  aspect-ratio: 4/3;
}
.special-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-bg);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── PRODUCTS SECTION ──────────────────────────────────────── */
.products-section {
  padding: 60px 0;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}

.product-tabs {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.product-tab {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-soft);
  padding: 10px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .15s;
  border-radius: 0;
  letter-spacing: .2px;
}
.product-tab:hover { color: var(--slate); }
.product-tab.active { color: var(--red); border-bottom-color: var(--red); }

.product-panel { display: none; }
.product-panel.active { display: block; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.product-card:hover {
  border-color: var(--slate-muted);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card figure {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  aspect-ratio: 1;
}
.product-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover figure img { transform: scale(1.04); }

.product-card .content { padding: 12px 14px; }
.product-card .vendor {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.product-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-h);
  line-height: 1.4;
  margin-bottom: 10px;
}
.product-card .card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-soft);
  padding-top: 10px;
}
.product-card .sku {
  font-size: 10px;
  color: var(--text-m);
}
.product-card .detail-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  transition: gap .15s;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.product-card .detail-link:hover { gap: 6px; }

/* ─── TRUST SECTION ─────────────────────────────────────────── */
.trust-section {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.trust-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
}
.trust-card-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 6px;
}
.trust-card-desc {
  font-size: 13px;
  color: var(--text-b);
  line-height: 1.6;
}

/* ─── CONTACT SECTION ───────────────────────────────────────── */
.contact-section {
  padding: 60px 0;
  background: var(--bg-page);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  margin-top: 28px;
  align-items: start;
}
.contact-info p {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-b);
  line-height: 1.6;
}
.contact-info strong {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--slate);
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 320px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--slate);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  letter-spacing: .3px;
}

/* ─── MOBILE STICKY BAR ─────────────────────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}
.sticky-bar .btn {
  flex: 1;
  font-size: 13px;
  padding: 13px;
}

/* ─── CATALOG PAGE (urunler.php) ────────────────────────────── */
.catalog-hero {
  padding-top: var(--nav-h);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
}
.catalog-hero .container { padding-top: 36px; }
.breadcrumb {
  font-size: 12px;
  color: var(--text-m);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--text-m); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--border); }

.catalog-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--text-h);
  letter-spacing: .3px;
  line-height: 1;
  margin-bottom: 8px;
}
.catalog-desc {
  font-size: 14px;
  color: var(--text-b);
  max-width: 560px;
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0 0;
}
.category-filter a {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-soft);
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  transition: all .15s;
}
.category-filter a:hover {
  background: var(--bg-surface);
  color: var(--slate);
  border-color: var(--slate-muted);
}
.category-filter a.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.catalog-body {
  padding: 40px 0 60px;
}
.catalog-category {
  margin-bottom: 48px;
}
.catalog-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}
.catalog-category-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-h);
}
.catalog-category-link {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s;
}
.catalog-category-link:hover { gap: 8px; }

/* ─── PRODUCT DETAIL ────────────────────────────────────────── */
.detail-section {
  padding-top: var(--nav-h);
  padding-bottom: 60px;
  background: var(--bg-page);
}
.detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}
.detail-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  aspect-ratio: 1;
}
.detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-content { padding-top: 8px; }
.detail-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-h);
  line-height: 1.05;
  margin-bottom: 12px;
}
.detail-vendor {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.detail-desc {
  font-size: 14px;
  color: var(--text-b);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}
.detail-meta {
  margin-bottom: 28px;
}
.detail-meta p {
  font-size: 13px;
  color: var(--text-b);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-meta strong {
  color: var(--slate);
  font-weight: 600;
}
.detail-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .container { padding: 0 16px; }

  .nav-links,
  .nav-cta    { display: none; }
  .nav-mobile-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open .nav-cta-mobile {
    display: flex;
    margin-top: 8px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 28px 16px 24px;
    gap: 24px;
  }
  .hero-title { font-size: 48px; }
  .hero-slider-wrap { aspect-ratio: 16/9; }

  .special-inner       { grid-template-columns: 1fr; }
  .detail-inner        { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-grid   { grid-template-columns: 1fr 1fr; }

  .services-strip-inner { gap: 0; }
  .svc-item { font-size: 10px; padding: 4px 10px; }

  .section-title { font-size: 26px; }
  .catalog-title { font-size: 32px; }
  .special-title { font-size: 30px; }
  .hero-stats { display: none; }

  .sticky-bar { display: flex; }
  body { padding-bottom: 66px; }

  .map-wrapper { height: 220px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-grid   { grid-template-columns: 1fr; }
  .hero-title   { font-size: 40px; }
  .product-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
