/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: #0d0a08; color: #e8ddd5; min-height: 100vh; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --green: #1a3d2e;
  --green-light: #2d6a4f;
  --gold: #c9a84c;
  --gold-light: #e8c876;
  --cream: #f5efe6;
  --dark: #0d0a08;
  --dark2: #1a1410;
  --dark3: #241e18;
  --text: #e8ddd5;
  --text-muted: #9a8f86;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,10,8,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15); padding: 14px 0; }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; }
.logo-title { display: block; font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 700; color: #fff; line-height: 1.1; }
.logo-sub { display: block; font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.header nav { display: flex; gap: 28px; }
.header nav a { color: var(--text-muted); font-size: 14px; font-weight: 500;
  transition: color .2s; }
.header nav a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 60% 50%, #1a3d2e 0%, #0d0a08 70%);
  text-align: center; padding-top: 80px; }
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 0 24px; }
.hero-badge { display: inline-block; background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4); color: var(--gold);
  padding: 6px 18px; border-radius: 50px; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(42px, 7vw, 80px);
  font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-desc { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }

/* floating beans */
.hero-beans { position: absolute; inset: 0; pointer-events: none; }
.bean { position: absolute; border-radius: 50%; opacity: 0.06; animation: floatBean 8s ease-in-out infinite; }
.bean.b1 { width: 300px; height: 300px; background: var(--gold); top: 10%; right: -5%; animation-delay: 0s; }
.bean.b2 { width: 200px; height: 200px; background: var(--green-light); bottom: 15%; left: -3%; animation-delay: 2s; }
.bean.b3 { width: 150px; height: 150px; background: var(--gold); bottom: 30%; right: 10%; animation-delay: 4s; }
@keyframes floatBean { 0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); } }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1410; font-weight: 600; font-size: 15px;
  padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-primary.full-width { width: 100%; text-align: center; display: block; }
.btn-primary.sm { padding: 8px 18px; font-size: 13px; }

.btn-outline { display: inline-block; border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 12px 28px; border-radius: 50px;
  font-weight: 500; font-size: 15px; transition: all .2s; cursor: pointer;
  background: transparent; }
.btn-outline:hover { background: rgba(201,168,76,0.1); }
.btn-outline.sm { padding: 7px 16px; font-size: 13px; }

.btn-buy { display: block; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1410; font-weight: 600; text-align: center;
  padding: 12px; border-radius: 8px; font-size: 14px; transition: all .2s; }
.btn-buy:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(201,168,76,0.3); }

.btn-cart { display: block; border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); text-align: center;
  padding: 11px; border-radius: 8px; font-size: 14px; transition: all .2s; margin-top: 8px; }
.btn-cart:hover { background: rgba(201,168,76,0.1); }

.btn-whatsapp { display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; padding: 12px 24px;
  border-radius: 50px; font-weight: 600; font-size: 15px; transition: all .2s; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-whatsapp svg { width: 20px; height: 20px; }

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: 100px 0; background: var(--dark2); }
.section-title { font-family: 'Playfair Display', serif; font-size: 42px;
  color: #fff; text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 56px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }

.product-card { background: var(--dark3); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06); overflow: hidden;
  position: relative; transition: transform .3s, box-shadow .3s; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.5); }

.badge { position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--gold); color: #1a1410; font-size: 11px;
  font-weight: 700; padding: 4px 12px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase; }

.product-img-wrap { height: 260px; overflow: hidden; background: var(--green); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-placeholder { height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 80px; opacity: 0.4; }

.product-info { padding: 24px; }
.product-info h3 { font-family: 'Playfair Display', serif; font-size: 22px;
  color: #fff; margin-bottom: 10px; }
.product-info p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.product-price { font-size: 28px; font-weight: 700; color: var(--gold); margin-bottom: 20px; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 100px 0; background: var(--dark); }
.about-content h2 { font-family: 'Playfair Display', serif; font-size: 38px;
  color: #fff; text-align: center; margin-bottom: 56px; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.feature { background: var(--dark3); border-radius: 16px; padding: 32px 24px;
  text-align: center; border: 1px solid rgba(255,255,255,0.05);
  transition: border-color .3s; }
.feature:hover { border-color: rgba(201,168,76,0.3); }
.feature-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.feature h4 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 14px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0; text-align: center; }
.footer-logo { font-size: 20px; font-weight: 600; color: var(--gold); margin-bottom: 8px; }
.footer p { color: var(--text-muted); font-size: 13px; }

/* ===== WHATSAPP FLOAT BTN ===== */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .2s, box-shadow .2s; }
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-btn svg { width: 30px; height: 30px; }

/* ===== COFFEE PARTICLES ===== */
.coffee-particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(201,168,76,0.15); animation: particleFloat linear infinite; }
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ===== CHECKOUT PAGE ===== */
.checkout-page { background: #0f0b09; }
.checkout-container { max-width: 1000px; margin: 0 auto; padding: 100px 24px 60px; }

.checkout-steps { display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 48px; }
.step { font-size: 13px; font-weight: 600; color: var(--text-muted);
  padding: 8px 18px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1); white-space: nowrap; }
.step.active { background: var(--gold); color: #1a1410; border-color: var(--gold); }
.step.done { color: var(--gold); border-color: rgba(201,168,76,0.4); }
.step-line { height: 1px; width: 40px; background: rgba(255,255,255,0.1); }
.step-line.done { background: rgba(201,168,76,0.4); }

.checkout-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 32px; }
@media (max-width: 760px) { .checkout-wrap { grid-template-columns: 1fr; } }

.checkout-form-side { background: var(--dark3); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06); padding: 36px; }
.checkout-form-side h2 { font-family: 'Playfair Display', serif; font-size: 26px;
  color: #fff; margin-bottom: 28px; }

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500;
  color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 12px 16px; color: #fff; font-family: 'Poppins', sans-serif;
  font-size: 14px; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(201,168,76,0.05); }
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { color: var(--text-muted); font-size: 12px; margin-top: 4px; display: block; }

/* ===== ORDER SUMMARY ===== */
.order-summary { background: var(--dark3); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06); padding: 28px; height: fit-content; }
.order-summary h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 20px; }
.summary-product { display: flex; gap: 14px; margin-bottom: 20px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.summary-img { width: 60px; height: 60px; border-radius: 10px;
  background: var(--green); overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 24px; }
.summary-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-product strong { display: block; color: #fff; font-size: 14px; margin-bottom: 4px; }
.summary-product p { color: var(--text-muted); font-size: 13px; }
.summary-line { display: flex; justify-content: space-between;
  font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
.summary-line .free { color: #4caf50; }
.summary-total { display: flex; justify-content: space-between;
  font-size: 18px; font-weight: 700; color: var(--gold);
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08); }

/* ===== PAYMENT / IBAN ===== */
.payment-info-text { color: var(--text-muted); font-size: 14px;
  line-height: 1.6; margin-bottom: 24px; }
.payment-info-text strong { color: var(--gold); }

.iban-card { background: rgba(26,61,46,0.3); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px; padding: 20px; margin-bottom: 8px; }
.iban-row { display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.iban-row:last-child { border-bottom: none; }
.iban-number-row { flex-wrap: wrap; gap: 12px; }
.iban-label { font-size: 12px; color: var(--text-muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px; }
.iban-value { font-size: 14px; color: #fff; font-weight: 500; }
.iban-number { font-size: 16px; font-weight: 700; color: var(--gold);
  letter-spacing: 1px; font-family: monospace; }

.copy-btn { display: flex; align-items: center; gap: 6px; background: var(--gold);
  color: #1a1410; border: none; border-radius: 8px;
  padding: 8px 16px; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all .2s; }
.copy-btn:hover { background: var(--gold-light); transform: scale(1.03); }
.copy-btn svg { width: 16px; height: 16px; }
.copy-success { color: #4caf50; font-size: 13px; font-weight: 500; margin-bottom: 16px; }

.upload-group label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.upload-area { position: relative; border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 12px; padding: 28px; text-align: center;
  cursor: pointer; transition: border-color .2s; margin-top: 8px; }
.upload-area:hover { border-color: rgba(201,168,76,0.4); }
.upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.upload-placeholder, .upload-preview { display: flex; flex-direction: column;
  align-items: center; gap: 6px; pointer-events: none; }
.upload-preview { flex-direction: row; justify-content: center; }
.upload-icon { font-size: 28px; }
.upload-placeholder span:not(.upload-icon) { color: var(--text-muted); font-size: 14px; }
.upload-placeholder small { color: var(--text-muted); font-size: 12px; }

/* ===== TESEKKUR ===== */
.tesekkur-card { max-width: 560px; margin: 0 auto; background: var(--dark3);
  border-radius: 24px; border: 1px solid rgba(201,168,76,0.2);
  padding: 56px 40px; text-align: center; }
.tesekkur-icon { font-size: 72px; margin-bottom: 20px; display: block; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.tesekkur-card h1 { font-family: 'Playfair Display', serif; font-size: 34px;
  color: #fff; margin-bottom: 16px; }
.tesekkur-desc { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.tesekkur-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.info-item { background: rgba(255,255,255,0.04); border-radius: 12px;
  padding: 16px; display: flex; align-items: flex-start; gap: 12px; text-align: left; }
.info-icon { font-size: 24px; }
.info-item strong { display: block; color: #fff; font-size: 13px; margin-bottom: 4px; }
.info-item p { color: var(--text-muted); font-size: 12px; }
.tesekkur-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 480px) { .tesekkur-info { grid-template-columns: 1fr; } }

/* ===== ALERTS ===== */
.alert-error { background: rgba(220,53,69,0.15); border: 1px solid rgba(220,53,69,0.3);
  color: #ff6b6b; padding: 12px 16px; border-radius: 10px;
  font-size: 14px; margin-bottom: 20px; }
.alert-success { background: rgba(76,175,80,0.15); border: 1px solid rgba(76,175,80,0.3);
  color: #4caf50; padding: 12px 16px; border-radius: 10px;
  font-size: 14px; margin-bottom: 20px; }
.alert-success a { color: var(--gold); text-decoration: underline; }

/* ===== ADMIN LOGIN ===== */
.admin-login-page { background: #0d0a08; display: flex;
  align-items: center; justify-content: center; min-height: 100vh; }
.admin-login-wrap { width: 100%; max-width: 400px; padding: 24px; }
.admin-login-card { background: var(--dark3); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08); padding: 40px; }
.admin-logo { font-size: 22px; font-weight: 700; color: var(--gold);
  text-align: center; margin-bottom: 32px; }

/* ===== ADMIN LAYOUT ===== */
.admin-page { display: flex; min-height: 100vh; background: #0d0a08; }

.admin-sidebar { width: 240px; min-height: 100vh; background: var(--dark2);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; padding: 0; flex-shrink: 0; position: fixed; }
.sidebar-logo { font-size: 16px; font-weight: 700; color: var(--gold);
  padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-nav { flex: 1; padding: 16px 0; }
.sidebar-nav a { display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; color: var(--text-muted); font-size: 14px;
  font-weight: 500; transition: all .2s; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(201,168,76,0.1);
  color: var(--gold); border-right: 3px solid var(--gold); }
.sidebar-site-link { padding: 16px 20px; color: var(--text-muted);
  font-size: 13px; border-top: 1px solid rgba(255,255,255,0.06); }
.sidebar-site-link:hover { color: var(--gold); }

.admin-content { margin-left: 240px; flex: 1; padding: 0 32px 60px; min-height: 100vh; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0 24px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px; }
.admin-topbar h1 { font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card { background: var(--dark3); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06); padding: 24px;
  text-align: center; transition: border-color .2s; }
.stat-card:hover { border-color: rgba(201,168,76,0.2); }
.stat-card.warning { border-color: rgba(255,152,0,0.2); }
.stat-card.green { border-color: rgba(76,175,80,0.2); }
.stat-card.blue { border-color: rgba(33,150,243,0.2); }
.stat-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.stat-num { font-size: 28px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.stat-label { color: var(--text-muted); font-size: 13px; }

/* ===== ADMIN TABLE ===== */
.admin-section h2 { font-family: 'Playfair Display', serif; font-size: 22px;
  color: #fff; margin-bottom: 20px; }
.table-wrap { overflow-x: auto; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: rgba(255,255,255,0.04); color: var(--text-muted);
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; padding: 14px 16px; text-align: left; white-space: nowrap; }
.admin-table td { padding: 14px 16px; color: var(--text); font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.04); }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.status-badge { display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 600; }
.status-bekliyor { background: rgba(255,152,0,0.15); color: #ff9800; }
.status-onaylandi { background: rgba(33,150,243,0.15); color: #2196f3; }
.status-kargoda { background: rgba(156,39,176,0.15); color: #9c27b0; }
.status-teslim { background: rgba(76,175,80,0.15); color: #4caf50; }

.btn-sm { display: inline-block; background: rgba(201,168,76,0.15);
  color: var(--gold); border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 12px; border-radius: 6px; font-size: 12px;
  font-weight: 500; cursor: pointer; transition: all .2s; }
.btn-sm:hover { background: rgba(201,168,76,0.25); }
.btn-sm.danger { background: rgba(220,53,69,0.1); color: #ff6b6b;
  border-color: rgba(220,53,69,0.3); }
.btn-sm.danger:hover { background: rgba(220,53,69,0.2); }

.select-sm { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; padding: 5px 8px; border-radius: 6px; font-size: 12px;
  font-family: 'Poppins', sans-serif; }

/* ===== ADMIN PRODUCT CARDS ===== */
.products-admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.product-admin-card { background: var(--dark3); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06); overflow: hidden;
  display: flex; flex-direction: column; }
.product-admin-img { height: 160px; background: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 48px; overflow: hidden; }
.product-admin-img img { width: 100%; height: 100%; object-fit: cover; }
.product-admin-info { padding: 16px; flex: 1; }
.product-admin-info h3 { color: #fff; font-size: 15px; margin-bottom: 6px; }
.product-admin-info p { color: var(--text-muted); font-size: 13px; line-height: 1.5; margin-bottom: 8px; }
.product-admin-price { color: var(--gold); font-weight: 700; font-size: 18px; }
.product-admin-actions { padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 8px; }

/* ===== ADMIN FORM CARD ===== */
.admin-form-card { background: var(--dark3); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06); padding: 32px; max-width: 640px; }
.admin-form-card .card-title { font-family: 'Playfair Display', serif;
  font-size: 20px; color: #fff; margin-bottom: 24px; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 60px; color: var(--text-muted); font-size: 16px; }
.text-muted { color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; padding: 0 16px 40px; }
  .checkout-steps { gap: 4px; }
  .step { font-size: 11px; padding: 6px 10px; }
  .step-line { width: 20px; }
}

/* ===== ÜRÜN KART LINK (index) ===== */
.product-card-link { text-decoration: none; color: inherit; display: block; }
.product-card-link .product-card { cursor: pointer; }
.product-card-cta { display: block; text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1410; font-weight: 600; font-size: 14px;
  padding: 12px; border-radius: 8px; margin-top: 16px;
  transition: all .2s; }
.product-card-link:hover .product-card-cta { box-shadow: 0 6px 16px rgba(201,168,76,0.35); }

/* ===== ÜRÜN DETAY SAYFASI ===== */
.product-detail-page { background: var(--dark); }

.product-detail-container {
  max-width: 1100px; margin: 0 auto; padding: 100px 24px 80px;
}

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 14px; margin-bottom: 40px;
  transition: color .2s;
}
.back-link:hover { color: var(--gold); }

/* Grid: yan yana masaüstü, alt alta mobil */
.product-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ---- MOBİL: tek sütun ---- */
@media (max-width: 800px) {
  .product-detail-container { padding: 80px 18px 60px; }
  .product-detail-wrap { grid-template-columns: 1fr; gap: 0; }
}

/* Görsel */
.product-detail-img-side { position: sticky; top: 90px; }
@media (max-width: 800px) { .product-detail-img-side { position: static; margin-bottom: 32px; } }

.product-detail-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #1a3d2e, #0d2818);
  aspect-ratio: 1/1; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.product-detail-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-img-wrap .badge { top: 16px; left: 16px; font-size: 11px; padding: 5px 14px; }
.product-detail-placeholder {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center; font-size: 100px; opacity: 0.3;
}

/* ---- Bilgi tarafı ---- */
.product-detail-info { display: flex; flex-direction: column; gap: 0; }

/* Üst etiket + rozet */
.product-detail-top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.product-detail-brand {
  color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
}
.product-detail-badge {
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase;
}

/* İsim */
.product-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px; color: #fff;
  line-height: 1.2; margin-bottom: 16px; font-weight: 700;
}
@media (max-width: 800px) { .product-detail-title { font-size: 26px; } }

/* Fiyat */
.product-detail-price-wrap {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.product-detail-price {
  font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1;
}
.product-detail-stock {
  font-size: 12px; color: #4caf50; font-weight: 500;
  background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.25);
  padding: 4px 12px; border-radius: 50px;
}

/* Ayırıcı */
.product-detail-divider {
  height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px;
}

/* Açıklama */
.product-detail-desc { margin-bottom: 22px; }
.product-detail-desc h3 {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.product-detail-desc p { color: #bbb; font-size: 14px; line-height: 1.8; }

/* Özellikler — yatay scroll değil, 2 sütun */
.product-detail-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 28px;
}
.detail-feature {
  display: flex; align-items: center; gap: 8px;
  background: rgba(26,61,46,0.3); border: 1px solid rgba(201,168,76,0.1);
  border-radius: 10px; padding: 10px 12px;
  font-size: 13px; font-weight: 500; color: var(--text);
}
.df-icon { font-size: 16px; flex-shrink: 0; }

/* Butonlar */
.product-detail-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.btn-buy-main {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1410; font-weight: 700; font-size: 16px;
  padding: 15px; border-radius: 12px; letter-spacing: 0.3px;
  transition: transform .2s, box-shadow .2s;
}
.btn-buy-main:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-cart-main {
  display: block; text-align: center;
  border: 1.5px solid rgba(201,168,76,0.35); color: var(--gold);
  font-weight: 600; font-size: 14px; padding: 13px; border-radius: 12px;
  transition: all .2s; background: transparent;
}
.btn-cart-main:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }

/* Güvence */
.product-detail-guarantee {
  display: flex; justify-content: space-around;
  padding: 16px 0 0; border-top: 1px solid rgba(255,255,255,0.07);
}
.guarantee-item {
  display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center;
}
.guarantee-item span:first-child { font-size: 22px; }
.guarantee-item span:last-child { color: var(--text-muted); font-size: 11px; font-weight: 500; }
