
/* Hushwq - Lüks Minimal Tasarım Sistemi */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary: #11461D;
  --primary-dark: #0D3616;
  --primary-light: #1A6B2E;
  --bg: #FFFEFB;
  --bg-secondary: #F6F3EE;
  --text: #121212;
  --text-muted: #6B6B6B;
  --card: #FFFFFF;
  --border: #EAE6DF;
  --success: #11461D;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(17, 70, 29, 0.08);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg: #0E1A11;
  --bg-secondary: #18251B;
  --text: #F5F2ED;
  --text-muted: #9CA3AF;
  --card: #1C2E20;
  --border: #253A29;
  --shadow: 0 8px 30px rgba(0,0,0,0.4);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: var(--transition);
  overflow-x:hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; letter-spacing: -0.02em; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }

/* HEADER */
.site-header {
  background: #11461D !important;
  position: sticky;
  top:0;
  z-index:1000;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo img { height: 36px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.nav-links {
  display:flex;
  gap:32px;
  list-style:none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  position:relative;
}
.nav-links a:hover, .nav-links a.active { color:#fff; }
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-4px; left:0;
  width:0; height:1px;
  background:#fff;
  transition: var(--transition);
}
.nav-links a:hover::after { width:100%; }

.header-actions {
  display:flex;
  align-items:center;
  gap:16px;
}
.icon-btn {
  width:40px; height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.15);
  background: transparent;
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: var(--transition);
  position:relative;
}
.icon-btn:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }
.cart-badge {
  position:absolute;
  top:-6px; right:-6px;
  background:#fff;
  color:#11461D;
  font-size:10px;
  font-weight:700;
  width:18px; height:18px;
  border-radius:50%;
  display:grid;
  place-items:center;
}

/* THEME TOGGLE */
.theme-toggle {
  background: rgba(255,255,255,0.1);
  border:none;
}

/* HERO */
.hero {
  max-width:1440px;
  margin:0 auto;
  padding: 48px 32px;
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:24px;
}
.hero-main {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 64px;
  position:relative;
  overflow:hidden;
  min-height: 560px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-main h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height:0.95;
  margin-bottom:20px;
}
.hero-main p {
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom:32px;
}
.btn-primary {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: var(--primary);
  color:#fff;
  padding:16px 32px;
  border-radius: 100px;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  border:none;
  cursor:pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  border:1px solid var(--border);
  color: var(--text);
}

.hero-side {
  display:grid;
  gap:24px;
}
.hero-card {
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hero-card:hover { transform: translateY(-4px); }

/* PRODUCT GRID */
.section {
  max-width:1440px;
  margin:0 auto;
  padding: 48px 32px;
}
.section-head {
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:32px;
}
.section-head h2 { font-size: 36px; }
.product-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:24px;
}
.product-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  transition: var(--transition);
  group: card;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-thumb {
  aspect-ratio: 4/5;
  background: var(--bg-secondary);
  position:relative;
  overflow:hidden;
}
.product-thumb img {
  width:100%; height:100%;
  object-fit:cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.product-card:hover .product-thumb img { transform: scale(1.08); }
.badge-condition {
  position:absolute;
  top:12px; left:12px;
  background: var(--card);
  padding:6px 12px;
  border-radius:100px;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.05em;
  text-transform:uppercase;
}
.product-info { padding:18px; }
.product-info h3 { font-size:16px; font-weight:600; margin-bottom:6px; font-family: 'Manrope'; }
.product-price { font-weight:700; font-size:15px; }

/* FOOTER */
.site-footer {
  background: #11461D !important;
  color: rgba(255,255,255,0.8);
  margin-top:80px;
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width:1440px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:48px;
}
.footer-brand h3 { color:#fff; font-size:28px; margin-bottom:12px; }
.footer-col h4 { color:#fff; font-size:12px; letter-spacing:0.15em; text-transform:uppercase; margin-bottom:20px; font-family:'Manrope'; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size:14px; transition:0.3s; }
.footer-col a:hover { color:#fff; }
.footer-bottom {
  max-width:1440px;
  margin:48px auto 0;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.1);
  display:flex;
  justify-content:space-between;
  font-size:13px;
  color: rgba(255,255,255,0.5);
}

/* RESPONSIVE */
@media(max-width:1024px){
  .hero { grid-template-columns:1fr; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .footer-inner { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px){
  .header-inner { padding:0 20px; }
  .nav-links { display:none; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding:32px 20px; }
  .hero { padding:20px; }
  .hero-main { padding:32px 24px; min-height:420px; }
  .footer-inner { grid-template-columns:1fr; }
}

/* UTIL */
.container { max-width:1440px; margin:0 auto; padding:0 32px; }
.smooth-card { transition: var(--transition); }
.glass { backdrop-filter: blur(16px); }
