/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #333; background: #fff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color .3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR / ANNOUNCEMENT SLIDER ===== */
.top-bar { background: #c8a97e; color: #fff; padding: 0; font-size: 15px; overflow: hidden; max-width: 100vw; position: relative; z-index: 999; }
.announcement-slider { position: relative; height: 44px; }
.ann-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; opacity: 0; transform: translateX(100%); transition: all .6s cubic-bezier(.4,0,.2,1); pointer-events: none; }
.ann-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.ann-slide.exit { opacity: 0; transform: translateX(-100%); }
.ann-slide i { font-size: 14px; color: #fff; }
.ann-slide span { font-weight: 600; letter-spacing: .5px; }
.ann-slide a { color: #fff; display: flex; align-items: center; gap: 10px; transition: color .3s; }
.ann-slide a:hover { color: #1a1a1a; }

/* ===== HEADER ===== */
.sticky-header-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.header { background: #fff; padding: 12px 0; border-bottom: 1px solid #eee; }
.header-inner { display: flex; align-items: center; gap: 20px; }
.logo { display: flex; align-items: center; }
.logo img { height: 80px; width: auto; max-width: 350px; object-fit: contain; }
.logo-text { font-size: 32px; font-weight: 700; color: #c8a97e; letter-spacing: -1px; }
.search-bar { flex: 1; max-width: 600px; margin: 0 auto; }
.search-bar form { display: flex; border: 2px solid #eee; border-radius: 8px; overflow: hidden; transition: border-color .3s; }
.search-bar form:focus-within { border-color: #c8a97e; }
.search-bar input { flex: 1; padding: 10px 15px; border: none; outline: none; font-size: 14px; font-family: inherit; }
.search-bar button { padding: 10px 18px; background: #c8a97e; color: #fff; border: none; cursor: pointer; font-size: 16px; transition: background .3s; }
.search-bar button:hover { background: #b8956a; }
.header-actions { display: flex; gap: 12px; }
.header-btn { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; transition: all .3s; }
.whatsapp-btn { background: #25d366; color: #fff; }
.whatsapp-btn:hover { background: #1da851; }
.mobile-menu-btn { display: none; }
#mobileMenuToggle { display: none; }

/* ===== NAV ===== */
.nav { background: #f8f8f8; border-bottom: 1px solid #eee; position: relative; z-index: 900; }
.nav-overlay { display: none; }
.nav-mobile-header { display: none; }
.nav-mobile-footer { display: none; }
.nav-link-row { display: flex; align-items: center; }
.nav-link-row a { flex: 1; }
.dropdown-toggle { display: none; }
.nav-inner { }
.nav-list { display: flex; gap: 0; flex-wrap: nowrap; }
.nav-list li { position: relative; flex-shrink: 0; }
.nav-list li a { display: flex; align-items: center; padding: 11px 15px; font-size: 13px; font-weight: 500; color: #555; transition: all .3s; white-space: nowrap; }
.nav-list li a:hover { color: #c8a97e; background: #fff; }
.nav-list li.has-dropdown:hover > .dropdown { display: block; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 160px; box-shadow: 0 4px 12px rgba(0,0,0,.08); border-radius: 0 0 4px 4px; z-index: 999; border-top: 2px solid #c8a97e; }
.dropdown li a { padding: 4px 12px; font-size: 11px; border-bottom: 1px solid #f8f8f8; white-space: nowrap; line-height: 1.3; }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: #f8f8f8; color: #c8a97e; padding-left: 16px; }

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
.slider-track {
    display: flex;
    transition: transform .7s cubic-bezier(.4,0,.2,1);
    width: 100%;
}
.slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    height: 500px;
    overflow: hidden;
}
.slide img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slide-spacer { display: none; }
.slide a.slide-link { position: absolute; inset: 0; z-index: 3; }
.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
    z-index: 2;
    max-width: 600px;
    pointer-events: none;
}
.slide-content-center {
    bottom: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, 50%);
    text-align: center;
    text-shadow: none;
    max-width: 80%;
}
.slide-content h2 { font-size: 38px; margin-bottom: 12px; font-weight: 700; line-height: 1.2; }
.slide-content p { font-size: 18px; opacity: .9; }
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    transition: all .3s;
    z-index: 5;
}
.slider-btn:hover { background: rgba(255,255,255,.3); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ===== FEATURES SECTION ===== */
.features-section { padding: 50px 0; background: #faf8f5; border-top: 1px solid #ede8e1; }
.features-grid-pro { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-box { display: flex; align-items: center; gap: 16px; padding: 24px 20px; background: #fff; border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,.04); transition: all .3s; border: 1px solid #f0ebe4; }
.feature-box:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,.08); border-color: #c8a97e; }
.feature-box-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 12px; background: #c8a97e; display: flex; align-items: center; justify-content: center; }
.feature-box-icon i { font-size: 24px; color: #fff; }
.feature-box-icon img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }
.feature-box-text h4 { font-size: 14px; font-weight: 600; color: #333; margin-bottom: 3px; }
.feature-box-text p { font-size: 12px; color: #999; line-height: 1.4; }

/* ===== SECTION ===== */
.section { padding: 50px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 28px; font-weight: 600; color: #333; position: relative; display: inline-block; padding-bottom: 12px; }
.section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: #c8a97e; border-radius: 2px; }

/* ===== CATEGORY SHOWCASE ===== */
.category-showcase { padding: 40px 0; background: #fff; }
.showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.showcase-card { position: relative; border-radius: 16px; overflow: hidden; display: block; }
.showcase-img { width: 100%; position: relative; }
.showcase-img img { width: 100%; height: auto; display: block; }
.showcase-placeholder { width: 100%; aspect-ratio: 3/4; background: linear-gradient(135deg, #f0ebe4, #e8e0d6); display: flex; align-items: center; justify-content: center; font-size: 48px; color: #c8a97e; }
.showcase-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 40%); display: flex; align-items: flex-end; justify-content: flex-start; padding: 14px; }
.showcase-overlay span { color: #fff; font-size: 11px; font-weight: 600; background: rgba(0,0,0,.4); padding: 7px 14px; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px; backdrop-filter: blur(4px); transition: all .3s; }
.showcase-card:hover .showcase-overlay span { background: #c8a97e; gap: 10px; }

/* ===== PRODUCT SLIDER ===== */
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.section-header .section-title { margin-bottom: 0; text-align: left; }
.section-header .section-title h2::after { left: 0; transform: none; }

.pslider-outer { position: relative; display: flex; align-items: center; gap: 0; max-width: 1400px; margin: 0 auto; }
.pslider-arrow { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: none; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.1); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #333; transition: all .3s; z-index: 5; }
.pslider-arrow:hover { background: #c8a97e; color: #fff; box-shadow: 0 4px 18px rgba(200,169,126,.35); }
.pslider-arrow-left { margin-right: 12px; }
.pslider-arrow-right { margin-left: 12px; }
.pslider-wrapper { overflow: hidden; position: relative; flex: 1; }
.pslider-track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.25,.8,.25,1); }
.pslider-item { min-width: calc(25% - 15px); max-width: calc(25% - 15px); flex-shrink: 0; }

.section-footer { display: flex; justify-content: flex-end; margin-top: 20px; }
.btn-all-products { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; background: #c8a97e; color: #fff; border-radius: 10px; font-size: 13px; font-weight: 600; transition: all .3s; }
.btn-all-products:hover { background: #b8956a; gap: 12px; }
.btn-all-products i { font-size: 12px; transition: transform .3s; }
.btn-all-products:hover i { transform: translateX(3px); }

/* Eski nav stilleri (geriye uyumluluk) */
.pslider-nav { display: flex; gap: 8px; }
.pslider-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ddd; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #555; transition: all .3s; }
.pslider-btn:hover { background: #c8a97e; color: #fff; border-color: #c8a97e; }

/* ===== SINGLE BANNER ===== */
.single-banner-section { padding: 30px 0; }
.single-banner-card { display: block; position: relative; border-radius: 16px; overflow: hidden; }
.single-banner-card img { width: 100%; height: auto; display: block; transition: transform .6s ease; }
.single-banner-card:hover img { transform: scale(1.03); }
.single-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 40%); display: flex; align-items: flex-end; justify-content: flex-end; padding: 24px 30px; }
.single-banner-overlay span { color: #fff; font-size: 14px; font-weight: 600; background: rgba(0,0,0,.4); padding: 10px 20px; border-radius: 10px; display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(4px); transition: all .3s; }
.single-banner-card:hover .single-banner-overlay span { background: #c8a97e; gap: 12px; }

/* ===== TRIPLE BANNER ===== */
.triple-banner-section { padding: 30px 0; }
.triple-banner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.triple-banner-card { display: block; position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; }
.triple-banner-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.triple-banner-card:hover img { transform: scale(1.05); }
.triple-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 40%); display: flex; align-items: flex-end; justify-content: center; padding: 20px; }
.triple-banner-overlay span { color: #fff; font-size: 14px; font-weight: 600; background: rgba(0,0,0,.4); padding: 10px 24px; border-radius: 10px; display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(4px); transition: all .3s; }
.triple-banner-card:hover .triple-banner-overlay span { background: #c8a97e; gap: 10px; }

/* ===== TICKER BAND ===== */
.ticker-band { background: #c8a97e; padding: 14px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-track span { padding: 0 200px; font-size: 14px; font-weight: 600; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; }
.ticker-campaign { background: #c8a97e; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== PRODUCT GRID ===== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.product-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,.06); transition: all .3s; position: relative; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.product-image { position: relative; overflow: hidden; aspect-ratio: 1; background: #f5f5f5; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; z-index: 2; }
.badge { padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; color: #fff; }
.badge-new { background: #3498db; }
.badge-sale { background: #e74c3c; }
.badge-campaign { background: #c8a97e; }
.product-info { padding: 15px; }
.product-category { font-size: 12px; color: #999; margin-bottom: 5px; }
.product-name { font-size: 14px; font-weight: 500; color: #333; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 42px; }
.product-name a:hover { color: #c8a97e; }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.price-current { font-size: 18px; font-weight: 700; color: #c8a97e; }
.price-old { font-size: 14px; color: #999; text-decoration: line-through; }

/* ===== WHATSAPP ORDER BUTTON ===== */
.btn-whatsapp-order { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 10px; background: #25d366; color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .3s; font-family: inherit; }
.btn-whatsapp-order:hover { background: #1da851; transform: scale(1.02); }
.btn-whatsapp-order i { font-size: 18px; }

/* ===== PRODUCT DETAIL ===== */
.product-detail { padding: 50px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }

/* Gallery */
.product-gallery { position: sticky; top: 100px; }
.product-gallery .main-image { border-radius: 16px; overflow: hidden; background: #f5f5f5; aspect-ratio: 1; cursor: zoom-in; position: relative; }
.product-gallery .main-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-gallery .main-image:hover img { transform: scale(1.08); }
.product-thumbs { display: flex; gap: 10px; margin-top: 15px; overflow-x: auto; padding-bottom: 5px; }
.product-thumbs img { width: 75px; height: 75px; object-fit: cover; border-radius: 10px; cursor: pointer; border: 2px solid #eee; transition: all .3s; flex-shrink: 0; }
.product-thumbs img:hover, .product-thumbs img.active { border-color: #c8a97e; box-shadow: 0 2px 10px rgba(200,169,126,.3); }

/* Detail Info */
.product-detail-info { padding-top: 5px; }
.product-detail-info .sku { display: inline-block; font-size: 12px; color: #999; background: #f5f5f5; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; letter-spacing: .5px; }
.product-detail-info h1 { font-size: 28px; font-weight: 600; margin-bottom: 15px; line-height: 1.3; color: #222; }
.product-detail-info .price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; }
.product-detail-info .detail-price { font-size: 32px; font-weight: 700; color: #c8a97e; }
.product-detail-info .detail-old-price { font-size: 20px; color: #bbb; text-decoration: line-through; }
.product-detail-info .discount-badge { background: #e74c3c; color: #fff; font-size: 13px; font-weight: 600; padding: 4px 10px; border-radius: 6px; }
.stock-info { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 14px; padding: 8px 16px; border-radius: 8px; }
.stock-info.in-stock { color: #2ecc71; background: rgba(46,204,113,.08); }
.stock-info.out-of-stock { color: #e74c3c; background: rgba(231,76,60,.08); }
.stock-info.low-stock { color: #fff; background: #e74c3c; font-weight: 600; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .7; } }
.product-detail-info .detail-description { color: #666; line-height: 1.9; margin-bottom: 25px; font-size: 15px; }
.product-detail-info .btn-whatsapp-order { max-width: 380px; padding: 16px 24px; font-size: 17px; border-radius: 12px; box-shadow: 0 4px 15px rgba(37,211,102,.3); }
.product-detail-info .btn-whatsapp-order:hover { box-shadow: 0 6px 25px rgba(37,211,102,.4); }

/* Product Tabs */
.product-tabs { margin-top: 50px; }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid #eee; margin-bottom: 0; }
.tab-nav button { padding: 14px 28px; background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; font-size: 15px; font-weight: 500; color: #999; cursor: pointer; font-family: inherit; transition: all .3s; }
.tab-nav button:hover { color: #333; }
.tab-nav button.active { color: #c8a97e; border-bottom-color: #c8a97e; }
.tab-content { display: none; padding: 30px 0; }
.tab-content.active { display: block; }
.tab-content .description-text { color: #555; line-height: 2; font-size: 15px; }

/* ===== PRODUCT ATTRIBUTES ===== */
.product-attributes { margin-bottom: 25px; }
.product-attributes h3 { font-size: 16px; font-weight: 600; margin-bottom: 15px; color: #333; display: flex; align-items: center; gap: 8px; }
.product-attributes h3 i { color: #c8a97e; font-size: 14px; }
.attr-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 10px; overflow: hidden; border: 1px solid #f0f0f0; }
.attr-table tr:nth-child(even) { background: #fafafa; }
.attr-table tr:nth-child(odd) { background: #fff; }
.attr-table td { padding: 12px 16px; font-size: 14px; }
.attr-table .attr-label { font-weight: 600; color: #555; width: 40%; border-right: 1px solid #f0f0f0; }
.attr-table .attr-value { color: #333; }

/* Delivery Info Box */
.delivery-info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 25px 0; }
.delivery-item { display: flex; align-items: center; gap: 10px; padding: 14px; background: #f8f8f8; border-radius: 10px; }
.delivery-item i { font-size: 18px; color: #c8a97e; }
.delivery-item span { font-size: 13px; color: #555; }

/* ===== CATEGORY PAGE ===== */
.page-header { background: #f8f8f8; padding: 40px 0; margin-bottom: 0; }
.page-header h1 { font-size: 30px; font-weight: 700; color: #222; }
.page-header .category-desc { font-size: 14px; color: #888; margin-top: 6px; max-width: 600px; }

/* Subcategory Grid */
.subcategory-section { padding: 30px 0; background: #fff; border-bottom: 1px solid #f0f0f0; }
.subcategory-grid { display: flex; gap: 12px; flex-wrap: wrap; }
.subcategory-card { display: flex; align-items: center; gap: 12px; padding: 14px 22px; background: #fff; border: 1px solid #eee; border-radius: 12px; transition: all .3s; }
.subcategory-card:hover { border-color: #c8a97e; box-shadow: 0 6px 20px rgba(200,169,126,.15); transform: translateY(-3px); }
.subcategory-card img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; }
.subcat-placeholder { width: 44px; height: 44px; background: linear-gradient(135deg, #f5f5f5, #eee); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #ccc; }
.subcategory-card span { font-size: 14px; font-weight: 500; color: #333; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #999; margin-top: 10px; flex-wrap: wrap; }
.breadcrumb a { color: #999; transition: color .3s; }
.breadcrumb a:hover { color: #c8a97e; }
.breadcrumb span { color: #555; }

/* Filter Bar */
.filter-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding: 16px 20px; background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,.04); border: 1px solid #f0f0f0; }
.filter-bar .result-count { font-size: 14px; color: #888; }
.filter-bar .result-count strong { color: #333; }
.filter-bar select { padding: 9px 14px; border: 1px solid #e0e0e0; border-radius: 8px; font-family: inherit; font-size: 13px; color: #555; background: #fafafa; cursor: pointer; transition: border-color .3s; }
.filter-bar select:focus { border-color: #c8a97e; outline: none; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 50px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; font-size: 14px; font-weight: 500; transition: all .3s; }
.pagination a { background: #fff; color: #555; border: 1px solid #eee; }
.pagination a:hover { background: #c8a97e; color: #fff; border-color: #c8a97e; }
.pagination span.current { background: #c8a97e; color: #fff; border: 1px solid #c8a97e; }

/* Empty State */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 56px; color: #ddd; margin-bottom: 20px; display: block; }
.empty-state p { font-size: 16px; color: #999; margin-bottom: 20px; }
.empty-state a { display: inline-block; padding: 12px 28px; background: #c8a97e; color: #fff; border-radius: 10px; font-weight: 500; transition: background .3s; }
.empty-state a:hover { background: #b8956a; }

/* ===== PAGE CONTENT ===== */
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.page-content { color: #555; font-size: 15px; line-height: 2; }
.page-content h2, .page-content h3 { color: #333; margin: 25px 0 12px; font-weight: 600; }
.page-content h2 { font-size: 22px; }
.page-content h3 { font-size: 18px; }
.page-content p { margin-bottom: 15px; }
.page-content ul, .page-content ol { margin: 15px 0; padding-left: 25px; }
.page-content li { margin-bottom: 8px; }
.page-content strong, .page-content b { color: #333; }
.page-content a { color: #c8a97e; border-bottom: 1px solid rgba(200,169,126,.3); }
.page-content a:hover { border-bottom-color: #c8a97e; }
.page-content img { border-radius: 10px; margin: 15px 0; }
.page-meta { margin-top: 30px; padding-top: 20px; border-top: 1px solid #f0f0f0; font-size: 13px; color: #bbb; display: flex; gap: 8px; align-items: center; }

/* Page Sidebar */
.page-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 14px; padding: 24px; margin-bottom: 20px; }
.sidebar-card h3 { font-size: 16px; font-weight: 600; color: #333; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #f0f0f0; }
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { margin-bottom: 2px; }
.sidebar-card ul li a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: 14px; color: #666; border-radius: 8px; transition: all .3s; }
.sidebar-card ul li a i { font-size: 10px; color: #ccc; transition: all .3s; }
.sidebar-card ul li a:hover { background: #f8f8f8; color: #c8a97e; padding-left: 18px; }
.sidebar-card ul li a:hover i { color: #c8a97e; }
.sidebar-card ul li.active a { background: #c8a97e; color: #fff; font-weight: 500; }
.sidebar-card ul li.active a i { color: #fff; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 20px; background: #fff; border: 1px solid #f0f0f0; border-radius: 14px; margin-bottom: 14px; transition: all .3s; }
.contact-card:hover { border-color: #c8a97e; box-shadow: 0 4px 15px rgba(0,0,0,.06); }
.contact-card-icon { width: 48px; height: 48px; border-radius: 12px; background: #25d366; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; flex-shrink: 0; }
.contact-card h4 { font-size: 14px; font-weight: 600; color: #333; margin-bottom: 2px; }
.contact-card p { font-size: 13px; color: #888; }
.contact-card p a { color: #c8a97e; }
.contact-wa-box { background: linear-gradient(135deg, #dcf8c6, #c5f0a4); border-radius: 14px; padding: 24px; margin-top: 10px; }
.contact-wa-inner { display: flex; align-items: center; gap: 14px; }
.contact-wa-inner > i { font-size: 36px; color: #25d366; }
.contact-wa-inner h4 { font-size: 15px; font-weight: 600; color: #333; }
.contact-wa-inner p { font-size: 12px; color: #666; }
.contact-form-box { background: #fff; border: 1px solid #f0f0f0; border-radius: 16px; padding: 35px; }
.contact-form-box h2 { font-size: 22px; font-weight: 600; color: #333; margin-bottom: 6px; }
.contact-form-box > p { font-size: 14px; color: #999; margin-bottom: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form-box .form-group { margin-bottom: 18px; }
.contact-form-box .form-group label { display: block; font-size: 13px; font-weight: 500; color: #555; margin-bottom: 6px; }
.contact-form-box .form-group input,
.contact-form-box .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #e8e8e8; border-radius: 10px; font-family: inherit; font-size: 14px; transition: border-color .3s; background: #fafafa; }
.contact-form-box .form-group input:focus,
.contact-form-box .form-group textarea:focus { border-color: #c8a97e; outline: none; background: #fff; }
.contact-form-box .form-group textarea { height: 140px; resize: vertical; }
.contact-submit-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: #c8a97e; color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all .3s; }
.contact-submit-btn:hover { background: #b8956a; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(200,169,126,.3); }
.alert-success { background: #d4edda; color: #155724; padding: 12px 18px; border-radius: 10px; font-size: 14px; }

/* ===== MAP ===== */
.map-section { padding: 0 0 50px; }
.map-wrapper { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); border: 1px solid #f0f0f0; width: 100%; }
.map-wrapper iframe { width: 100% !important; height: 450px; display: block; border: none; max-width: 100%; }

/* ===== FOOTER ===== */
.footer { background: #1a1a1a; color: #ccc; padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col h3 { color: #fff; font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: #c8a97e; }
.footer-col p { font-size: 13px; line-height: 1.8; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: #aaa; transition: color .3s; }
.footer-col ul li a:hover { color: #c8a97e; }
.social-links { display: flex; gap: 10px; margin-top: 15px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 50%; color: #fff; transition: all .3s; }
.social-links a:hover { background: #c8a97e; }
.footer-bottom { text-align: center; padding: 20px 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.footer-bottom .container { display: flex; justify-content: space-between; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 15px rgba(37,211,102,.4); z-index: 9999; transition: all .3s; animation: pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.6); }
@keyframes pulse { 0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 25px rgba(37,211,102,.6); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .pslider-item { min-width: calc(33.333% - 14px); max-width: calc(33.333% - 14px); }
    .features-grid-pro { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    /* Header */
    .header-inner { flex-wrap: wrap; justify-content: space-between; align-items: center; }
    .logo { order: 1; flex: 1; }
    .logo img { height: 70px !important; max-width: 280px !important; width: auto !important; }
    .logo-text { font-size: 26px !important; }
    #mobileMenuToggle { display: flex !important; order: 2; flex-shrink: 0; }
    .search-bar { order: 3; flex: none !important; width: 100% !important; max-width: 100% !important; margin: 10px 0 0 !important; }

    /* Mobil duyuru */
    .announcement-slider { height: 32px; }
    .top-bar { font-size: 12px; }
    .ann-slide span { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 90vw; display: block; text-align: center; }
    .ann-slide { gap: 6px; }
    .ann-slide i { font-size: 11px; }
    .header-actions span { display: none; }

    /* Mobil Menü - Sağdan açılan panel */
    .nav .nav-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,.5);
        z-index: 9998;
    }
    .nav.active .nav-overlay { display: block; }

    .nav .nav-inner {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100%;
        background: #fff;
        z-index: 9999;
        transition: right .3s ease;
        display: flex;
        flex-direction: column;
        box-shadow: -4px 0 20px rgba(0,0,0,.15);
    }
    .nav.active .nav-inner { right: 0; }

    .nav-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        border-bottom: 1px solid #f0f0f0;
        flex-shrink: 0;
    }
    .nav-mobile-title { font-size: 18px; font-weight: 600; color: #333; }
    .nav-close-btn { background: none; border: none; font-size: 22px; color: #999; cursor: pointer; }

    .nav .nav-container {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        max-width: 100%;
    }

    .nav-list {
        flex-direction: column;
        padding: 0;
    }
    .nav-list li {
        border-bottom: 1px solid #f5f5f5;
    }
    .nav-list li > a {
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Kategori satırı: link + ok butonu */
    .nav-link-row {
        display: flex;
        align-items: center;
    }
    .nav-link-row a {
        flex: 1;
        padding: 14px 20px;
        font-size: 15px;
    }
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        background: none;
        border: none;
        border-left: 1px solid #f0f0f0;
        padding: 14px 0;
        cursor: pointer;
        color: #999;
        font-size: 13px;
        transition: all .3s;
    }
    .has-dropdown.open .dropdown-toggle {
        color: #c8a97e;
        background: #f8f8f8;
    }
    .has-dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    /* Alt kategoriler - JS ile inline style acilir */
    .dropdown {
        display: none;
        background: #f8f8f8;
        position: static !important;
        box-shadow: none !important;
        border-top: none !important;
        border-radius: 0 !important;
        min-width: auto !important;
    }
    .nav-list li.has-dropdown:hover > .dropdown {
        display: none;
    }
    .dropdown li { border-bottom: none; }
    .dropdown li a {
        padding: 12px 20px 12px 45px !important;
        font-size: 13px !important;
        color: #777 !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    .dropdown li:last-child a { border-bottom: none !important; }
    .dropdown li a:hover { color: #c8a97e !important; background: #f0f0f0 !important; }

    .nav-mobile-footer {
        display: block;
        padding: 15px 20px;
        border-top: 1px solid #f0f0f0;
        flex-shrink: 0;
    }
    .nav-wa-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        background: #25d366;
        color: #fff;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
    }

    /* Ürün grid & slider */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .pslider-outer { gap: 0; }
    .pslider-arrow { display: none; }
    .pslider-item { min-width: 75%; max-width: 75%; }
    .pslider-track { gap: 12px; scroll-snap-type: x mandatory; }
    .pslider-item { scroll-snap-align: center; }
    .pslider-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .pslider-wrapper::-webkit-scrollbar { display: none; }
    .section-title h2 { font-size: 20px; }
    .section-footer { justify-content: center; }
    .btn-all-products { width: 100%; justify-content: center; padding: 12px; border-radius: 10px; }

    /* Diğer */
    .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .single-banner-overlay { padding: 20px 25px; }
    .single-banner-overlay h3 { font-size: 20px; }
    .triple-banner-grid { grid-template-columns: 1fr; gap: 12px; }
    .triple-banner-card { aspect-ratio: 16/9; }
    .showcase-label h3 { font-size: 15px; }
    .showcase-label { padding: 14px; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .product-gallery { position: static; }
    .product-detail-info h1 { font-size: 22px; }
    .product-detail-info .detail-price { font-size: 26px; }
    .delivery-info { grid-template-columns: 1fr; }
    .tab-nav button { padding: 12px 16px; font-size: 13px; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-layout { grid-template-columns: 1fr; }
    .page-sidebar { position: static; }
    .slide-content h2 { font-size: 22px; }
    .slide { height: 250px; }
    .slide-content { bottom: 20px; left: 20px; }
    .slide-content-center { bottom: 50%; left: 50%; right: auto; transform: translate(-50%, 50%); text-align: center; max-width: 90%; }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-info { padding: 12px; }
    .product-name { font-size: 13px; min-height: 36px; }
    .price-current { font-size: 16px; }
    .pslider-item { min-width: 82%; max-width: 82%; }
    .features-grid-pro { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 35px 0; }
    .product-card { border-radius: 14px; }
    .product-image { border-radius: 14px 14px 0 0; }
    .btn-whatsapp-order { font-size: 13px; padding: 10px; border-radius: 10px; }
}
