/* ===================== 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; }
.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: var(--dark); color: #fff; font-size: 0.8rem; padding: 8px 20px; display: flex; justify-content: space-between; align-items: center; }
.topbar span { display: flex; align-items: center; gap: 6px; }

/* ===================== HEADER ===================== */
.header { position: sticky; top: 0; z-index: 1000; background: #fff; border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 30px; }

.logo { display: flex; align-items: center; font-size: 1.4rem; font-weight: 600; letter-spacing: 3px; min-height: 48px; }
.logo-can { color: var(--dark); }
.logo-wedding { color: var(--gold); margin-left: 4px; }
.footer-logo { font-size: 1.2rem; }
.footer-logo .logo-can { color: #fff; }

.nav { display: flex; align-items: center; gap: 5px; }
.nav-link { padding: 8px 14px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.5px; color: var(--dark); transition: color 0.2s; position: relative; display: flex; align-items: center; gap: 4px; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after { content:''; position:absolute; bottom:0; left:14px; right:14px; height:2px; background:var(--gold); }

.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border); min-width: 220px; box-shadow: 0 8px 25px rgba(0,0,0,0.1); z-index: 999; }
.dropdown-menu a { display: block; padding: 12px 20px; font-size: 0.83rem; color: var(--dark); transition: background 0.2s; border-bottom: 1px solid var(--border); }
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--light-gray); color: var(--gold); }
.nav-dropdown:hover .dropdown-menu { display: block; }

.header-actions { display: flex; gap: 10px; }
.search-btn, .menu-toggle { background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--dark); padding: 8px; transition: color 0.2s; }
.search-btn:hover, .menu-toggle:hover { color: var(--gold); }
.menu-toggle { display: none; }

.search-bar { display: none; padding: 12px 0; border-top: 1px solid var(--border); background: var(--light-gray); }
.search-bar.active { display: block; }
.search-bar .container { display: flex; gap: 10px; }
.search-bar input { flex: 1; padding: 10px 16px; border: 1px solid var(--border); font-family: inherit; font-size: 0.9rem; outline: none; }
.search-bar input:focus { border-color: var(--gold); }
.search-bar button { background: var(--gold); color: #fff; border: none; padding: 10px 20px; cursor: pointer; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; height: 580px; }
.hero-slider { display: flex; height: 100%; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.slide { min-width: 100%; display: flex; align-items: center; justify-content: center; gap: 60px; padding: 0 80px; }
.slide-content { flex: 1; max-width: 520px; }
.slide-sub { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.slide-content h1 { font-family: var(--font-serif); font-size: 3.2rem; font-weight: 400; line-height: 1.2; color: var(--dark); margin-bottom: 16px; }
.slide-content h1 span { color: var(--gold); }
.slide-desc { color: var(--gray); margin-bottom: 30px; font-size: 0.95rem; }
.slide-image { flex: 0 0 340px; display: flex; justify-content: center; align-items: center; }
.slide-card { width: 280px; height: 380px; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.2); position: relative; }
.card-inner { width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; position: relative; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%); }
.card-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.card-label { color: rgba(255,255,255,0.85); font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 4px; }
.card-price { color: #fff; font-size: 1.3rem; font-weight: 600; }
.card-size { color: rgba(255,255,255,0.75); 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.9); border: none; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 0.9rem; color: var(--dark); transition: all 0.2s; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover { background: var(--gold); color: #fff; }
.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(0,0,0,0.25); 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-serif); font-size: 1.2rem; font-weight: 500; }
.cat-card p { padding: 0 20px 18px; font-size: 0.82rem; color: var(--gray); }

/* ===================== PRODUCTS GRID ===================== */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }
.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 { aspect-ratio: 1/1; width: 100%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.product-img img, .detail-main-img img { -webkit-user-drag: none; user-drag: none; -webkit-user-select: none; user-select: none; pointer-events: none; }
.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: 60px 0; text-align: center; }
.page-hero h1 { font-family: var(--font-serif); font-size: 2.8rem; 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: 250px 1fr; gap: 40px; }
.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; }
.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: 0.9rem; 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; }
.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(3,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-layout { gap: 40px; }
}
@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; }

  /* Slider */
  .slide { flex-direction: column; padding: 36px 20px 30px; gap: 24px; height: auto; min-height: unset; text-align: center; align-items: center; }
  .hero { height: auto; }
  .hero-slider { align-items: flex-start; }
  .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-image { flex: none; width: 100%; display: flex; justify-content: center; }
  .slide-card { width: 200px; height: 270px; }

  /* 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%; }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .detail-layout { grid-template-columns: 1fr; }
  .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; }
  .topbar { flex-direction: column; gap: 4px; text-align: center; font-size: 0.73rem; padding: 6px 16px; }

  /* Ürün kartları */
  .product-card { border-radius: 10px; }
  .product-info { padding: 10px 12px 12px; }
  .product-name { font-size: 0.85rem; }
  .product-price { font-size: 1rem; }

  /* 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 */
  #whatsappFloat { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 1.3rem; }
}
