/* ============================================================
   İş Elbisem — Ana Stil Dosyası
   Tema: Beyaz/Gri Arka Plan + Lacivert + Altın Aksan
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --primary:      #0d1f3c;
  --primary-2:    #152848;
  --primary-3:    #1e3a5f;
  --accent:       #c9a84c;
  --accent-2:     #b8953d;
  --accent-light: #f5ecd4;
  --white:        #ffffff;
  --off-white:    #f7f8fa;
  --gray-light:   #f0f2f5;
  --gray-mid:     #e4e7ec;
  --gray:         #8a93a6;
  --gray-dark:    #4a5568;
  --danger:       #dc2626;
  --success:      #16a34a;
  --info:         #1d4ed8;
  --text:         #0f172a;
  --text-muted:   #64748b;
  --border:       #e2e8f0;
  --shadow-sm:    0 1px 3px rgba(13,31,60,.06), 0 1px 2px rgba(13,31,60,.04);
  --shadow:       0 4px 16px rgba(13,31,60,.08);
  --shadow-lg:    0 12px 40px rgba(13,31,60,.12);
  --radius:       8px;
  --radius-lg:    14px;
  --transition:   .22s cubic-bezier(.4,0,.2,1);
  --navbar-h:     70px;
  --container:    1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 900;
  height: var(--navbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  height: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}

.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 900;
  color: var(--primary); letter-spacing: 1px;
  flex-shrink: 0;
}
.navbar-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-size: 16px; font-weight: 900;
  color: var(--accent);
}
.navbar-logo span { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--primary); background: var(--gray-light); }
.nav-links a.active { color: var(--primary); font-weight: 700; }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav-cart-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 20px;
  background: var(--primary); color: var(--white);
  border: none; border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
  transition: all var(--transition);
}
.nav-cart-btn:hover { background: var(--primary-2); transform: translateY(-1px); box-shadow: var(--shadow); }

.cart-count {
  background: var(--accent); color: var(--primary);
  border-radius: 100px; font-size: 11px; font-weight: 800;
  padding: 1px 7px; min-width: 20px; text-align: center;
}

.nav-icon-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border); background: var(--white);
  color: var(--gray-dark); border-radius: var(--radius);
  display: grid; place-items: center; font-size: 18px;
  transition: all var(--transition);
}
.nav-icon-btn:hover { background: var(--gray-light); color: var(--primary); border-color: var(--gray-mid); }

.hamburger { display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--primary);
  border-radius: 2px; transition: all var(--transition); display: block; }

/* Toptan şerit */
.wholesale-bar {
  background: var(--primary); color: rgba(255,255,255,.85);
  text-align: center; font-size: 13px; font-weight: 600;
  padding: 9px 16px; letter-spacing: .3px;
}
.wholesale-bar a { color: var(--accent); font-weight: 700; }
.wholesale-bar a:hover { text-decoration: underline; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--primary);
  min-height: calc(100vh - var(--navbar-h));
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; overflow: hidden; position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(201,168,76,.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(201,168,76,.04) 0%, transparent 40%);
}

.hero-content {
  padding: 80px 60px 80px max(60px, calc((100vw - var(--container))/2 + 24px));
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--accent); }

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(50px, 5.5vw, 82px);
  font-weight: 900; line-height: .95;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 24px; letter-spacing: .5px;
}
.hero-title .accent { color: var(--accent); display: block; }

.hero-desc {
  font-size: 17px; color: rgba(255,255,255,.6);
  max-width: 460px; line-height: 1.7; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  height: 100%; min-height: 580px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-2);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--primary) 0%, transparent 45%);
}
.hero-badge {
  position: absolute; bottom: 36px; right: 36px;
  background: var(--accent); color: var(--primary);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  padding: 11px 18px; border-radius: var(--radius);
  text-align: center; text-transform: uppercase;
  box-shadow: var(--shadow);
}

.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 900; color: var(--accent); line-height: 1;
}
.hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 500; }

/* ── BUTONLAR ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: .2px;
  border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: var(--primary); border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-2); border-color: var(--accent-2);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.btn-dark {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.btn-dark:hover { background: var(--primary-2); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }

.btn-outline {
  background: var(--white); color: var(--primary);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── BÖLÜM ───────────────────────────────────────────────── */
.section     { padding: 88px 0; }
.section-sm  { padding: 56px 0; }
.section-dark  { background: var(--primary); }
.section-white { background: var(--white); }
.section-gray  { background: var(--gray-light); }

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 10px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--accent); }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 900; line-height: 1.05;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--text);
}
.section-title.white { color: var(--white); }

.section-desc {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.7; max-width: 540px; margin-top: 12px;
}
.section-desc.center { margin-inline: auto; }

/* ── ÜRÜN KARTLARI ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.product-card-img {
  position: relative; aspect-ratio: 4/3;
  background: var(--gray-light); overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 5px;
}
.badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: .5px; text-transform: uppercase;
}
.badge-new    { background: var(--accent); color: var(--primary); }
.badge-hot    { background: var(--danger); color: var(--white); }
.badge-toptan { background: var(--primary); color: var(--white); }

.product-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.product-card-name {
  font-size: 17px; font-weight: 700; line-height: 1.3;
  margin-bottom: 10px; color: var(--text);
}
.product-card-name a:hover { color: var(--primary); }

.product-card-variants {
  display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap;
}
.variant-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,.1); cursor: pointer;
  transition: transform .2s;
}
.variant-dot:hover { transform: scale(1.2); }
.variant-dot.active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent); }

.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
}
.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--primary);
}

.btn-add-cart {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 16px; background: var(--primary);
  color: var(--white); border: none;
  border-radius: var(--radius); font-size: 13px; font-weight: 700;
  transition: all var(--transition); text-decoration: none;
}
.btn-add-cart:hover { background: var(--accent); color: var(--primary); }

/* ── KATEGORİ KARTLARI ───────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.cat-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition); cursor: pointer;
}
.cat-card:hover {
  border-color: var(--accent);
  background: rgba(201,168,76,.08);
  transform: translateY(-3px);
}
.cat-card .icon {
  font-size: 40px; margin-bottom: 12px;
  transition: transform var(--transition);
}
.cat-card:hover .icon { transform: scale(1.1); }
.cat-card .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: .5px;
}
.cat-card .count { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 4px; }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-strip {
  background: var(--accent); color: var(--primary);
  padding: 11px 0; overflow: hidden;
}
.marquee-inner {
  display: flex; gap: 60px;
  animation: marquee 22s linear infinite;
  white-space: nowrap; width: max-content;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  display: flex; align-items: center; gap: 10px;
}
.marquee-item::before { content: '✦'; font-size: 9px; }

/* ── TOPTAN BANNER ───────────────────────────────────────── */
.wholesale-banner {
  background: var(--primary);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
  position: relative; overflow: hidden;
}
.wholesale-banner::after {
  content: ''; position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.wholesale-banner .title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px; font-weight: 900; color: var(--white);
  text-transform: uppercase; line-height: 1.1; margin: 8px 0 14px;
}
.wholesale-banner .desc { color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.6; }

/* ── REFERANSLAR ─────────────────────────────────────────── */
.ref-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.ref-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  text-align: center; transition: all var(--transition);
}
.ref-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.ref-logo {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 900; color: var(--white);
}
.ref-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; color: var(--text); }
.ref-sector { font-size: 12px; color: var(--text-muted); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--primary); }

.footer-top {
  padding: 72px 0 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; max-width: var(--container);
  margin: 0 auto; padding-inline: 24px;
}
.footer-brand .desc {
  font-size: 14px; color: rgba(255,255,255,.45);
  line-height: 1.7; margin: 16px 0 24px; max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.55); font-size: 12px; font-weight: 700;
  display: grid; place-items: center; letter-spacing: .5px;
  transition: all var(--transition); text-decoration: none;
}
.footer-social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(201,168,76,.08); }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-col span {
  font-size: 14px; color: rgba(255,255,255,.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px;
}
.footer-bottom > div {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 13px; color: rgba(255,255,255,.3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed;
  top: var(--navbar-h); left: 0; right: 0;
  background: var(--white); z-index: 899;
  padding: 16px 24px 28px;
  border-bottom: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); padding: 13px 0;
  font-weight: 600; font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--primary); }

/* ── ALERT ───────────────────────────────────────────────── */
.alert {
  padding: 13px 18px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; margin-bottom: 14px;
  border-left: 3px solid transparent;
}
.alert-success { background: #f0fdf4; color: #166534; border-color: #16a34a; }
.alert-danger,
.alert-error   { background: #fef2f2; color: #991b1b; border-color: #dc2626; }
.alert-info    { background: #eff6ff; color: #1e40af; border-color: #1d4ed8; }
.alert-warning { background: #fffbeb; color: #92400e; border-color: #d97706; }

/* ── SAYFALAMA ───────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; margin-top: 48px; }
.pagination ul { display: flex; gap: 6px; }
.pagination a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-weight: 600; color: var(--text);
  background: var(--white); transition: all var(--transition);
}
.pagination .active a,
.pagination a:hover {
  background: var(--primary); border-color: var(--primary); color: var(--white);
}

/* ── SPINNER ─────────────────────────────────────────────── */
.spinner {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid var(--gray-mid); border-top-color: var(--accent);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 72px 24px; max-width: 680px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .hero-stats { gap: 28px; }
  .wholesale-banner { grid-template-columns: 1fr; padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom > div { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
