/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: #2c2c2c; background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===================== VARIABLES ===================== */
:root {
  --gold: #c4a55a;
  --gold-dark: #a8885a;
  --dark: #1a1a1a;
  --gray: #6b6b6b;
  --light-gray: #f8f6f3;
  --border: #e8e0d5;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', serif;
}

/* ===================== UTILITIES ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; overflow: hidden; }
.bg-light { background: var(--light-gray); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 500; color: var(--dark); margin-bottom: 10px; }
.section-header p { color: var(--gray); font-size: 0.95rem; }

/* ===================== BUTTONS ===================== */
.btn { display: inline-block; padding: 13px 32px; border-radius: 2px; font-size: 0.85rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; border: none; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.btn-instagram:hover { opacity: 0.9; }

/* ===================== TOP BAR ===================== */
.topbar { background: #1a1a1a; color: #fff; font-size: 0.82rem; padding: 9px 20px; text-align: center; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }

/* ===================== HEADER ===================== */
.header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.header-main { display: flex; align-items: center; justify-content: space-between; height: 92px; gap: 20px; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 60px; width: auto; }
.logo-can { color: var(--dark); }
.logo-wedding { color: var(--gold); margin-left: 4px; }
.footer-logo { font-size: 1.2rem; }

.header-search { flex: 1; max-width: 500px; display: flex; border: 2px solid #ddd; border-radius: 2px; overflow: hidden; }
.header-search input { flex: 1; padding: 10px 16px; font-size: .88rem; border: none; outline: none; font-family: inherit; background: #f9f9f9; }
.header-search button { padding: 10px 20px; background: #888; color: #fff; border: none; font-size: .82rem; font-weight: 600; letter-spacing: 1px; cursor: pointer; white-space: nowrap; }
.header-search button:hover { background: #666; }

.header-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-siparis { display: flex; align-items: center; gap: 7px; padding: 10px 18px; background: linear-gradient(135deg,#e6b84a,#c4862a); color: #fff; border-radius: 4px; font-size: .82rem; font-weight: 600; white-space: nowrap; }
.btn-siparis:hover { background: linear-gradient(135deg,#f0c85a,#d4962a); }
.btn-takip { display: flex; align-items: center; gap: 7px; padding: 10px 18px; background: linear-gradient(135deg,#e8385a,#ff6030); color: #fff; border-radius: 4px; font-size: .82rem; font-weight: 600; white-space: nowrap; }
.btn-takip:hover { background: linear-gradient(135deg,#f0486a,#ff7040); }
.btn-sozler { display: flex; align-items: center; gap: 7px; padding: 10px 18px; background: #777; color: #fff; border-radius: 4px; font-size: .82rem; font-weight: 600; white-space: nowrap; }
.btn-sozler:hover { background: #555; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--dark); padding: 8px; }

.cat-nav { background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%); border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; }
.cat-nav-inner { display: flex; align-items: center; justify-content: center; gap: 0; }
.cat-nav a { padding: 13px 24px; font-size: .88rem; font-weight: 500; color: #444; border-right: 1px solid #e0e0e0; white-space: nowrap; transition: all .2s; }
.cat-nav a:first-child { border-left: 1px solid #e0e0e0; }
.cat-nav a:hover { background: #fff; color: var(--gold); }

.nav { display: none; }
.nav-link { display: none; }
.header-inner { display: none; }

/* ===================== MOBİL ALT NAV ===================== */
.mobile-bottom-nav { display: none; }
@media(max-width:768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #111;
    z-index: 9999;
    border-top: 1px solid #333;
    padding: 6px 0 10px;
  }
  .mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #ccc;
    font-size: .65rem;
    font-weight: 500;
    padding: 6px 4px;
    transition: color .2s;
  }
  .mobile-bottom-nav a i { font-size: 1.3rem; }
  .mobile-bottom-nav a:hover, .mobile-bottom-nav a.active { color: #c4a55a; }
  body { padding-bottom: 72px; }
}
.search-btn { display: none; }
.search-bar { display: none; }


/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; height: 440px; z-index: 1; }
.hero-slider { position: relative; height: 100%; }
.slide { position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-start; padding: 0 80px; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 0.7s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide-overlay { display: none; }
.slide-content { position: relative; z-index: 2; max-width: 560px; }
.slide-sub { font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 14px; }
.slide-content h1 { font-family: var(--font-serif); font-size: 3.2rem; font-weight: 400; line-height: 1.2; color: #fff; margin-bottom: 16px; }
.slide-content h1 span { color: var(--gold); }
.slide-desc { color: rgba(255,255,255,0.82); margin-bottom: 30px; font-size: 0.95rem; }
.slide-card-badge { position: absolute; bottom: 36px; right: 80px; z-index: 2; background: rgba(0,0,0,0.52); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 16px 22px; min-width: 170px; }
.card-label { color: rgba(255,255,255,0.75); font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 6px; }
.card-price { color: #fff; font-size: 1.4rem; font-weight: 600; }
.card-size { color: rgba(255,255,255,0.6); font-size: 0.72rem; letter-spacing: 0.5px; margin-top: 3px; }
.hero-prev, .hero-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.25); width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 0.9rem; color: #fff; transition: all 0.2s; }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-prev:hover, .hero-next:hover { background: var(--gold); border-color: var(--gold); }
.hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: all 0.3s; border: none; }
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===================== FEATURES ===================== */
.features { padding: 50px 0; border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.feature-item { text-align: center; padding: 20px; }
.feature-item i { font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; }
.feature-item h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.feature-item p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

/* ===================== CATEGORIES ===================== */
.categories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.cat-card { display: block; border-radius: 4px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.cat-img { height: 160px; display: flex; align-items: center; justify-content: center; position: relative; }
.cat-icon { font-size: 2.5rem; color: rgba(255,255,255,0.8); }
.cat-card h3 { padding: 15px 20px 5px; font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.2px; }
.cat-card p { padding: 0 20px 18px; font-size: 0.82rem; color: var(--gray); }

/* ===================== PRODUCTS GRID ===================== */
.products-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.product-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: all 0.3s; cursor: pointer; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.product-img { width: 100%; height: 260px; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.product-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.product-img img, .detail-main-img img { -webkit-user-drag: none; user-drag: none; -webkit-user-select: none; user-select: none; pointer-events: none; }
@keyframes skel-shine { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
.skel { background: linear-gradient(90deg,#f0ece4 25%,#e8e2d8 50%,#f0ece4 75%); background-size: 200% 100%; animation: skel-shine 1.4s infinite; border-radius: 4px; }
.skeleton-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.skeleton-card .skel-img { aspect-ratio: 1/1; width: 100%; }
.skeleton-card .skel-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.skeleton-card .skel-line { height: 12px; border-radius: 3px; }
.skeleton-card .skel-line.short { width: 55%; }
.skeleton-card .skel-line.long  { width: 85%; }
.product-badge { position: absolute; top: 12px; left: 12px; background: #e74c3c; color: #fff; font-size: 0.72rem; font-weight: 600; padding: 3px 8px; border-radius: 2px; }
.product-badge.new { background: var(--gold); }
.product-info { padding: 16px; }
.product-name { font-size: 0.88rem; font-weight: 500; margin-bottom: 6px; color: var(--dark); }
.product-cat { font-size: 0.75rem; color: var(--gray); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.product-pricing { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.product-price { font-size: 1rem; font-weight: 600; color: var(--dark); }
.product-old-price { font-size: 0.82rem; color: var(--gray); text-decoration: line-through; }
.product-qty { font-size: 0.75rem; color: var(--gray); }
.btn-incele { display: block; text-align: center; padding: 9px; background: var(--light-gray); color: var(--dark); font-size: 0.8rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: all 0.2s; border: 1px solid var(--border); }
.btn-incele:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ===================== INSTAGRAM ===================== */
.insta-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.insta-item { aspect-ratio: 1; overflow: hidden; border-radius: 4px; cursor: pointer; position: relative; }
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay { position: absolute; inset: 0; background: rgba(196,165,90,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.insta-overlay i { color: #fff; font-size: 1.5rem; }
.insta-link { color: var(--gold); }

/* ===================== ABOUT BANNER ===================== */
.about-banner { padding: 80px 0; background: var(--dark); color: #fff; }
.about-inner { display: flex; gap: 80px; align-items: center; }
.about-text { flex: 1; }
.about-text h2 { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 400; color: var(--gold); margin-bottom: 20px; }
.about-text p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 16px; font-size: 0.92rem; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; flex: 0 0 300px; }
.stat { text-align: center; border: 1px solid rgba(196,165,90,0.3); padding: 25px 20px; border-radius: 4px; }
.stat-num { display: block; font-family: var(--font-serif); font-size: 2.5rem; color: var(--gold); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ===================== FOOTER ===================== */
.footer { background: #111; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col p { font-size: 0.85rem; line-height: 1.7; margin: 12px 0; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.83rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.social-links { display: flex; gap: 12px; margin: 16px 0; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s; }
.social-links a:hover { background: var(--gold); }
.payment-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.badge { background: rgba(255,255,255,0.1); padding: 5px 10px; font-size: 0.75rem; border-radius: 3px; color: rgba(255,255,255,0.7); }
.footer-bottom { text-align: center; padding: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── Floating WhatsApp Button ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 22px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero { background: linear-gradient(135deg,#f8f0e8,#e8d5c0); padding: 28px 0; text-align: center; }
.page-hero h1 { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; color: var(--dark); }
.page-hero p { color: var(--gray); margin-top: 10px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.82rem; margin-top: 14px; color: var(--gray); }
.breadcrumb a { color: var(--gold); }

/* ===================== PRODUCTS PAGE ===================== */
.products-page { padding: 50px 0; }
.products-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
.sidebar { display: none !important; }
.sidebar h3 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.filter-group { margin-bottom: 30px; }
.filter-group h4 { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; color: var(--gray); }
.filter-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; font-size: 0.85rem; }
.filter-item input { accent-color: var(--gold); }
.products-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.products-count { font-size: 0.85rem; color: var(--gray); }
.sort-select { padding: 8px 14px; border: 1px solid var(--border); font-family: inherit; font-size: 0.85rem; outline: none; cursor: pointer; }

/* ===================== PRODUCT DETAIL ===================== */
.product-detail { padding: 60px 0; }
.detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.detail-main-img { background: var(--light-gray); aspect-ratio: 1/1; width: 100%; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 5rem; overflow: hidden; position: relative; }
.detail-thumbs { display: flex; gap: 10px; margin-top: 12px; }

/* Mobil fiyat şeridi */
.detail-mobile-price-strip { display:none; position:absolute; bottom:0; left:0; right:0; background:linear-gradient(to top,rgba(0,0,0,.65) 0%,transparent 100%); padding:36px 14px 12px; z-index:6; flex-direction:column; gap:2px; }
.dmps-label { font-size:.68rem; color:rgba(255,255,255,.75); letter-spacing:1.2px; text-transform:uppercase; }
.dmps-range { font-size:1.3rem; font-weight:700; color:#fff; text-shadow:0 1px 4px rgba(0,0,0,.4); }
.thumb { width: 70px; height: 70px; border-radius: 3px; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.thumb.active, .thumb:hover { border-color: var(--gold); }

/* ACTION BUTTONS */
.detail-action-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.btn-tasarim { display: block; text-align: center; padding: 15px 20px; background: #3a3028; color: #fff; font-family: inherit; font-size: 0.88rem; font-weight: 600; letter-spacing: 1px; border-radius: 3px; transition: background 0.2s; cursor: pointer; }
.btn-tasarim:hover { background: #2a221c; }
.btn-whatsapp { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 20px; background: #25d366; color: #fff; font-family: inherit; font-size: 0.88rem; font-weight: 600; letter-spacing: 1px; border-radius: 3px; transition: background 0.2s; cursor: pointer; }
.btn-whatsapp:hover { background: #1da851; }
.btn-whatsapp i { font-size: 1.1rem; }

/* PRICE */
.detail-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.detail-price { font-size: 1.6rem; font-weight: 700; color: var(--dark); }
.detail-old-price { font-size: 1rem; color: #aaa; text-decoration: line-through; }

/* QTY SECTION */
.detail-qty-section { margin-bottom: 24px; }
.detail-qty-label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.detail-qty-select-wrap { position: relative; }
.detail-qty-select { width: 100%; padding: 13px 40px 13px 16px; border: 1.5px solid var(--border); font-family: inherit; font-size: 1.05rem; appearance: none; -webkit-appearance: none; outline: none; cursor: pointer; background: #fff; color: var(--dark); border-radius: 2px; transition: border-color 0.2s; }
.detail-qty-select:focus { border-color: var(--gold); }
.detail-qty-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 0.75rem; color: var(--gray); pointer-events: none; }
.selected-price-note { margin-top: 8px; font-size: 0.83rem; color: var(--gray); padding: 8px 12px; background: var(--light-gray); border-radius: 3px; border-left: 3px solid var(--gold); }

/* NOTE SECTION */
.detail-note { border: 1px solid var(--border); border-radius: 3px; overflow: hidden; }
.detail-note-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; cursor: pointer; font-size: 0.88rem; font-weight: 600; background: var(--light-gray); user-select: none; }
.detail-note-header:hover { background: #ede8e0; }
.detail-note-list { padding: 16px 18px; margin: 0; list-style: none; }
.detail-note-list li { font-size: 0.83rem; color: #555; line-height: 1.7; padding: 5px 0 5px 16px; position: relative; border-bottom: 1px solid var(--border); }
.detail-note-list li:last-child { border-bottom: none; }
.detail-note-list li::before { content: '•'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }

/* ===================== ORDER FORM ===================== */
.order-page { padding: 60px 0; }
.order-form { max-width: 750px; margin: 0 auto; }
.form-section { background: #fff; border: 1px solid var(--border); padding: 35px; margin-bottom: 25px; border-radius: 4px; }
.form-section h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; margin-bottom: 25px; padding-bottom: 12px; border-bottom: 1px solid var(--border); color: var(--dark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1px solid var(--border); font-family: inherit; font-size: 0.88rem; outline: none; transition: border-color 0.2s; border-radius: 2px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.82rem; color: var(--gray); margin-top: 8px; }
.submit-btn { width: 100%; padding: 15px; background: var(--gold); color: #fff; border: none; font-family: inherit; font-size: 0.88rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; border-radius: 2px; }
.submit-btn:hover { background: var(--gold-dark); }
.success-msg { display: none; background: #d4edda; border: 1px solid #c3e6cb; padding: 20px; border-radius: 4px; text-align: center; color: #155724; font-size: 0.9rem; margin-top: 20px; }
.success-msg.show { display: block; }

/* ===================== ORDER TRACKING ===================== */
.tracking-page { padding: 60px 0; }
.tracking-form { max-width: 500px; margin: 0 auto 50px; }
.tracking-form h2 { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; margin-bottom: 8px; }
.tracking-form p { color: var(--gray); margin-bottom: 25px; font-size: 0.9rem; }
.tracking-input-group { display: flex; gap: 10px; }
.tracking-input-group input { flex: 1; padding: 12px 16px; border: 1px solid var(--border); font-family: inherit; font-size: 0.9rem; outline: none; }
.tracking-input-group input:focus { border-color: var(--gold); }
.tracking-result { max-width: 700px; margin: 0 auto; display: none; }
.tracking-result.show { display: block; }
.order-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.order-card-header { background: var(--light-gray); padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; }
.order-num { font-weight: 600; font-size: 0.9rem; }
.order-status { padding: 5px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.status-hazirlaniyor { background: #fff3cd; color: #856404; }
.status-kargoda { background: #cce5ff; color: #004085; }
.status-teslim { background: #d4edda; color: #155724; }
.order-card-body { padding: 25px; }
.order-steps { display: flex; justify-content: space-between; position: relative; margin: 30px 0; }
.order-steps::before { content:''; position: absolute; top: 20px; left: 0; right: 0; height: 2px; background: var(--border); z-index: 0; }
.step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 1; }
.step-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--gray); }
.step.done .step-circle { background: var(--gold); color: #fff; }
.step.active .step-circle { background: var(--dark); color: #fff; }
.step-label { font-size: 0.75rem; color: var(--gray); text-align: center; max-width: 80px; }
.step.done .step-label, .step.active .step-label { color: var(--dark); font-weight: 500; }
.order-details-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 20px; }
.order-detail-item label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; display: block; }
.order-detail-item p { font-size: 0.9rem; font-weight: 500; }

/* ===================== BLOG ===================== */
.blog-page { padding: 60px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.blog-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: transform 0.3s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-content { padding: 20px; }
.blog-cat { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: 0.83rem; color: var(--gray); line-height: 1.7; margin-bottom: 15px; }
.blog-meta { font-size: 0.78rem; color: var(--gray); display: flex; gap: 14px; }
.blog-detail { padding: 60px 0; }
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 50px; }
.blog-post h1 { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 400; margin-bottom: 16px; }
.blog-post .post-meta { font-size: 0.82rem; color: var(--gray); margin-bottom: 30px; display: flex; gap: 16px; }
.blog-post .post-img { height: 380px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 5rem; margin-bottom: 30px; }
.blog-post p { font-size: 0.9rem; line-height: 1.9; color: #444; margin-bottom: 18px; }
.blog-post h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; margin: 30px 0 14px; color: var(--dark); }
.blog-post h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; margin: 24px 0 10px; color: var(--dark); }
.blog-post strong, .blog-post b { font-weight: 700; color: var(--dark); }
.blog-post em, .blog-post i { font-style: italic; }
.blog-post u { text-decoration: underline; }
.blog-post a { color: var(--gold); text-decoration: underline; }
.blog-post a:hover { color: var(--gold-dark); }
.blog-post ul, .blog-post ol { margin: 10px 0 18px 24px; }
.blog-post ul { list-style: disc; }
.blog-post ol { list-style: decimal; }
.blog-post li { font-size: 0.9rem; line-height: 1.9; color: #444; margin-bottom: 6px; }
.sidebar-widget { margin-bottom: 35px; }
.sidebar-widget h4 { font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sidebar-post { display: flex; gap: 12px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); align-items: center; }
.sidebar-post-img { width: 60px; height: 60px; border-radius: 3px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.sidebar-post-title { font-size: 0.83rem; font-weight: 500; line-height: 1.4; }
.sidebar-post-date { font-size: 0.75rem; color: var(--gray); margin-top: 4px; }

/* ===================== HAKKIMIZDA ===================== */
.about-page { padding: 60px 0; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.about-content h2 { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; margin-bottom: 20px; }
.about-content p { font-size: 0.9rem; color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.about-img-placeholder { height: 380px; background: linear-gradient(135deg,#f8f0e8,#d4b896); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.team-card { text-align: center; padding: 30px 20px; border: 1px solid var(--border); border-radius: 4px; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,#d4af7a,#b8955a); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; }
.team-name { font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--gray); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-layout { gap: 40px; }
}
/* ── Kategori Pill Bar ── */
.mobile-filter-bar  { display: block; margin: 28px 0 0; }
.mobile-filter-drawer { display: none; }

/* Kategori pill butonlar */
.cat-pills {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 12px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.cat-pills::-webkit-scrollbar { display: none; }

.cat-pill {
  flex-shrink: 0;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid #e0d5c8;
  background: #fff;
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 600;
  color: #7a6050;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: all .22s;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.cat-pill:hover {
  border-color: #c9a96e;
  color: #8a6a30;
  background: #fdf8f0;
  box-shadow: 0 2px 10px rgba(201,169,110,.18);
  transform: translateY(-1px);
}
.cat-pill.active {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
  border-color: #1a1a2e;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(26,26,46,.3);
  transform: translateY(-1px);
}
.cat-pill.active:hover {
  background: linear-gradient(135deg, #2d2d4e 0%, #1a1a2e 100%);
  color: #e8c97e;
}

@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 10px 0; z-index: 200; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 15px; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }

  /* Topbar — tek satır */
  .topbar { flex-direction: row; gap: 16px; justify-content: center; font-size: 0.78rem; padding: 6px 12px; flex-wrap: wrap; }

  /* Slider */
  .hero { display: none; }
  .slide { padding: 0 24px; }
  .slide-overlay { display: none; }
  .slide-content { max-width: 100%; }
  .slide-content h1 { font-size: 2rem; }
  .slide-sub { font-size: 0.72rem; }
  .slide-desc { font-size: 0.88rem; margin-bottom: 20px; }
  .slide-card-badge { right: 16px; bottom: 56px; padding: 12px 16px; min-width: 130px; }
  .card-price { font-size: 1.1rem; }

  /* Grid'ler */
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid   { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .insta-grid      { grid-template-columns: repeat(3,1fr); }
  .about-inner     { flex-direction: column; gap: 40px; }
  .about-stats     { flex: none; width: 100%; }
  .detail-layout   { grid-template-columns: 1fr; }
  .detail-main-img { aspect-ratio: 1/1; }
  .detail-mobile-price-strip { display: flex; }
  
  .form-grid       { grid-template-columns: 1fr; }
  .blog-layout     { grid-template-columns: 1fr; }
  .about-content   { grid-template-columns: 1fr; }
  .blog-grid       { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: repeat(2,1fr); }
  .order-steps     { flex-wrap: wrap; gap: 15px; }
  .order-steps::before { display: none; }
  .order-details-grid  { grid-template-columns: 1fr; }

  /* Ürünler sayfası — sidebar gizle, tam genişlik */
  .products-layout { grid-template-columns: 1fr; }
  .sidebar         { display: none !important; }

  /* Mobil filtre butonu */
  .mobile-filter-bar {
    display: flex; margin: 16px 0 8px;
  }
  .mobile-filter-btn {
    width: 100%; padding: 11px 16px;
    background: #faf7f3; border: 1.5px solid #e8ddd5; border-radius: 10px;
    font-family: inherit; font-size: 0.9rem; font-weight: 600; color: #3d2b1f;
    cursor: pointer; display: flex; align-items: center; gap: 8px; justify-content: center;
  }
  .mobile-filter-btn i { color: #c9a96e; }

  /* Mobil filtre drawer */
  .mobile-filter-drawer {
    background: #fff; border: 1.5px solid #e8ddd5; border-radius: 12px;
    padding: 16px; margin-bottom: 12px;
  }
  .mobile-filter-drawer.open { display: block; }
  .mobile-filter-header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
  }
  .mobile-filter-header strong { font-size: 0.9rem; color: #3d2b1f; }
  .mobile-filter-header button { background: none; border: none; font-size: 1.1rem; color: #888; cursor: pointer; }
  .mobile-filter-drawer .filter-item {
    display: flex; align-items: center; gap: 10px; padding: 8px 4px;
    border-bottom: 1px solid #f5f0e8; font-size: 0.9rem; cursor: pointer;
  }
  .mobile-filter-drawer .filter-item:last-child { border-bottom: none; }

  /* Ürün kartları — tam genişlik 2 kolon */
  .product-card    { border-radius: 10px; }
  .product-info    { padding: 10px 10px 12px; }
  .product-name    { font-size: 0.82rem; line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .product-price   { font-size: 0.95rem; }
  .product-price-sub { font-size: 0.7rem; }

  /* Detay sayfası */
  .detail-thumbs { gap: 8px; }
  .thumb { width: 60px; height: 60px; }

  /* Hero dots */
  .hero-dots { bottom: 12px; }
  .hero-prev, .hero-next { width: 36px; height: 36px; font-size: 0.8rem; }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }

  /* Section başlıkları */
  .section-header h2 { font-size: 1.8rem; }
  .section-header    { margin-bottom: 28px; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .categories-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .slide-content h1 { font-size: 1.5rem; }
  .slide-card { width: 160px; height: 220px; }
  .card-label { font-size: 0.68rem; }
  .card-price { font-size: 1.1rem; }
  .section-header h2 { font-size: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }
  /* WhatsApp sabit buton - alt navın üstüne taşı */
  #whatsappFloat, .wa-float { bottom: 84px !important; right: 16px; width: 52px; height: 52px; font-size: 1.3rem; }
  /* Header mobil - sadece logo + hamburger */
  .header-search { display: none !important; }
  .header-btns { display: none !important; }
  .menu-toggle { display: block !important; }
  /* Mobil header buton satırı */
  .mobile-header-btns { display: flex !important; gap: 8px; padding: 0 12px 10px; justify-content: center; }
  .mobile-header-btns a { flex: 1; text-align: center; padding: 9px 10px; border-radius: 4px; font-size: .78rem; font-weight: 600; color: #fff; }
  .mobile-header-btns .btn-siparis { background: linear-gradient(135deg,#e6b84a,#c4862a); }
  .mobile-header-btns .btn-takip { background: linear-gradient(135deg,#e8385a,#ff6030); }
}

/* ===================== ÜRÜN SLİDER ===================== */
.prod-slider-wrap { position: relative; display: flex; align-items: center; gap: 10px; }
.prod-slider-outer { overflow: hidden; flex: 1; min-width: 0; }
.prod-slider-track { display: flex; gap: 20px; transition: transform .5s ease; will-change: transform; }
.prod-slider-track .product-card { min-width: calc(20% - 16px); flex-shrink: 0; }
.prod-slider-2row { flex-wrap: wrap; align-content: flex-start; max-height: 740px; overflow: hidden; }
.prod-slider-2row .product-card { min-width: calc(20% - 16px); flex-shrink: 0; }
@media(max-width:1024px){ .prod-slider-track .product-card, .prod-slider-2row .product-card { min-width: calc(25% - 15px); } }
@media(max-width:768px){ .prod-slider-track .product-card, .prod-slider-2row .product-card { min-width: calc(50% - 10px); } }
@media(max-width:480px){ .prod-slider-track .product-card, .prod-slider-2row .product-card { min-width: 100%; } }
.prod-slider-btn { background: #fff; border: 1px solid #ddd; border-radius: 50%; width: 44px; height: 44px; font-size: 1.6rem; cursor: pointer; color: #555; box-shadow: 0 2px 8px rgba(0,0,0,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; line-height: 1; }
.prod-slider-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
@media(max-width:1024px){ .prod-slider-track .product-card { min-width: calc(25% - 15px); } }
@media(max-width:768px){ .prod-slider-track .product-card { min-width: calc(50% - 10px); } }
@media(max-width:480px){ .prod-slider-track .product-card { min-width: calc(100% - 0px); } }

.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 6px; margin-bottom: 12px; overflow: hidden; }
.faq-item[open] { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.faq-q { padding: 18px 22px; font-size: 0.95rem; font-weight: 600; color: var(--dark); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--gold); font-weight: 300; transition: transform 0.2s; }
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a { padding: 0 22px 18px; font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
