/* ===== LUAVA STYLE - CLEAN & MINIMAL ===== */

:root {
    --burgundy: #8b4513;
    --burgundy-dark: #6b3410;
    --leather: #a0522d;
    --leather-light: #cd853f;
    --gold: #d4a017;
    --gold-light: #f4c430;
    --cream: #faf6f1;
    --dark: #2c1810;
    --text: #3d2914;
    --text-light: #6b5344;
    --text-muted: #9c8b7a;
    --bg: #fff;
    --bg-alt: #faf8f5;
    --border: #e8e0d8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* ===== HEADER ===== */
.luava-header { background: var(--bg); border-bottom: 1px solid var(--border); }

.header-top { border-bottom: 1px solid var(--border); padding: 0.6rem 0; background: var(--cream); }
.header-top-content { display: flex; justify-content: space-between; align-items: center; }
.header-social { display: flex; gap: 1.25rem; }
.header-social a { color: var(--text); font-size: 1.2rem; }
.header-social a:hover { color: var(--leather); }
.header-actions-top { display: flex; align-items: center; gap: 1.5rem; }
.language-dropdown .dropdown-toggle { background: none; border: none; font-size: 0.85rem; cursor: pointer; display: flex; align-items: center; gap: 0.25rem; }
.currency { font-size: 0.85rem; color: var(--text-light); }

.header-main { padding: 0.75rem 0; }
.header-main-content { display: flex; justify-content: space-between; align-items: center; }
.header-logo img { height: 160px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 600; color: var(--dark); letter-spacing: 2px; }

.header-nav { display: flex; list-style: none; gap: 0.25rem; }
.header-nav .nav-link { padding: 0.5rem 0.85rem; font-size: 1.05rem; font-weight: 500; color: var(--text); }
.header-nav .nav-link:hover { color: var(--leather); }
.header-nav .dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 180px; background: var(--bg); border: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.1); padding: 0.5rem 0; display: none; z-index: 1000; }
.header-nav .nav-item { position: relative; }
.header-nav .nav-item:hover .dropdown-menu { display: block; }
.header-nav .dropdown-item { display: block; padding: 0.5rem 1rem; font-size: 0.85rem; }
.header-nav .dropdown-item:hover { background: var(--bg-alt); color: var(--leather); }

.header-right { display: flex; align-items: center; gap: 0.5rem; }
.header-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: none; border: none; color: var(--text); font-size: 1.1rem; cursor: pointer; border-radius: 50%; }
.header-btn:hover { background: var(--bg-alt); color: var(--leather); }
.cart-btn { position: relative; }
.cart-count { position: absolute; top: 2px; right: 2px; width: 16px; height: 16px; background: var(--burgundy); color: #fff; font-size: 0.6rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mobile-menu-btn { display: none; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg); z-index: 9999; transform: translateX(-100%); transition: transform 0.3s; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem; border-bottom: 1px solid var(--border); }
.mobile-menu-header button { background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mobile-nav { list-style: none; padding: 1rem; }
.mobile-nav li { border-bottom: 1px solid var(--border); }
.mobile-nav a { display: block; padding: 1rem 0; font-size: 1rem; }

/* ===== CATEGORY SECTION ===== */
.category-section { padding: 2.5rem 0; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.category-card { position: relative; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.category-card:hover img { transform: scale(1.05); }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5)); }
.category-card h3 { position: absolute; bottom: 1.25rem; left: 1.25rem; color: #fff; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; line-height: 1.3; }

/* ===== STORY SECTION ===== */
.story-section { padding: 4rem 0; }
.story-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.story-image { border-radius: 4px; overflow: hidden; }
.story-image img { width: 100%; }
.story-text h2 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 500; margin-bottom: 1rem; }
.story-text p { color: var(--text-light); margin-bottom: 0.75rem; line-height: 1.7; }
.story-text .signature { display: block; font-style: italic; color: var(--text-muted); margin-bottom: 1.25rem; }
.story-btn { display: inline-block; padding: 0.75rem 1.75rem; background: var(--burgundy); color: #fff; border-radius: 4px; font-size: 0.9rem; font-weight: 500; }
.story-btn:hover { background: var(--burgundy-dark); color: #fff; }

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: 3rem 0; background: var(--bg-alt); }
.section-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; text-align: center; margin-bottom: 2rem; }
.products-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.product-item { background: var(--bg); border-radius: 4px; overflow: hidden; transition: box-shadow 0.3s; }
.product-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.product-img { aspect-ratio: 1/1; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-details { padding: 1rem; }
.product-stars { font-size: 0.95rem; color: #ffc107; margin-bottom: 0.35rem; display: flex; align-items: center; gap: 2px; }
.product-stars i { color: #ffc107 !important; }
.product-stars span { color: var(--text-muted); font-size: 0.75rem; margin-left: 0.35rem; }
.product-details h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.35rem; color: var(--dark); }
.product-price .regular, .product-price .sale { font-size: 0.95rem; font-weight: 600; }
.product-price .sale { color: var(--burgundy); }
.product-price .old { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; margin-left: 0.5rem; }
.view-all { text-align: center; margin-top: 2rem; }
.view-all a { color: var(--dark); font-size: 0.9rem; font-weight: 500; border-bottom: 1px solid var(--dark); padding-bottom: 2px; }
.view-all a:hover { color: var(--burgundy); border-color: var(--burgundy); }

/* ===== BANNER SECTION ===== */
.banner-section { height: 350px; overflow: hidden; }
.banner-img { width: 100%; height: 100%; object-fit: cover; }

/* ===== FOOTER ===== */
.luava-footer { background: var(--bg); padding: 3rem 0 1.5rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--text-light); }
.footer-col ul a:hover { color: var(--burgundy); }
.footer-col p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0.75rem; }
.whatsapp-link, .instagram-link { color: var(--burgundy); font-size: 0.85rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.5rem; }
.newsletter-form input { padding: 0.75rem; border: 1px solid var(--border); border-radius: 4px; font-size: 0.85rem; }
.newsletter-form button { padding: 0.75rem; background: var(--burgundy); color: #fff; border: none; border-radius: 4px; font-size: 0.85rem; cursor: pointer; }
.newsletter-form button:hover { background: var(--burgundy-dark); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
.footer-bottom-left { display: flex; align-items: center; gap: 1rem; }
.currency-selector { font-size: 0.8rem; color: var(--text-light); }
.payment-icons { display: flex; align-items: center; gap: 0.5rem; }
.payment-icons i { font-size: 1.25rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 50%; color: var(--text); font-size: 0.9rem; }
.footer-social a:hover { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }
.footer-copyright { text-align: center; padding-top: 1rem; font-size: 0.8rem; color: var(--text-muted); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 4px 12px rgba(37,211,102,0.4); z-index: 999; }
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ===== PRODUCT LIST PAGE ===== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.product-card { background: transparent; display: flex; flex-direction: column; height: 100%; }
.product-link { display: flex; flex-direction: column; flex: 1; }
.product-image { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--bg-alt); border-radius: 4px; margin-bottom: 0.75rem; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-image .main-img { position: absolute; top: 0; left: 0; }
.product-image .hover-img { position: absolute; top: 0; left: 0; opacity: 0; }
.product-card:hover .main-img { opacity: 0; }
.product-card:hover .hover-img { opacity: 1; }
.product-badges { position: absolute; top: 0.5rem; left: 0.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.badge { padding: 0.2rem 0.5rem; font-size: 0.6rem; font-weight: 600; text-transform: uppercase; border-radius: 2px; }
.badge-new { background: var(--burgundy); color: #fff; }
.badge-sale { background: #c41e3a; color: #fff; }
.quick-add-btn { position: absolute; bottom: 0.5rem; right: 0.5rem; width: 36px; height: 36px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: all 0.3s; }
.product-card:hover .quick-add-btn { opacity: 1; }
.quick-add-btn:hover { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.quick-add-btn.added { background: #28a745; border-color: #28a745; color: #fff; }
.product-info { text-align: left; flex: 1; display: flex; flex-direction: column; }
.product-rating { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.35rem; }
.color-dots-wrapper { min-height: 36px; display: flex; align-items: flex-start; }
.stars { display: flex; gap: 2px; }
.stars i { color: #ffc107 !important; font-size: 0.95rem; }
.rating-count { font-size: 0.75rem; color: var(--text-muted); }
.product-name { font-size: 0.85rem; font-weight: 500; margin-bottom: 0.25rem; }
.product-price { display: flex; align-items: center; gap: 0.4rem; }
.price-regular, .price-sale { font-size: 0.9rem; font-weight: 600; }
.price-sale { color: var(--burgundy); }
.price-original { font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }
/* Product Action Buttons */
.product-actions { display: flex; gap: 0.5rem; margin-top: auto; padding-top: 0.75rem; }
.btn-cart { width: 50px; height: 44px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text); font-size: 1.2rem; transition: all 0.2s; }
.btn-cart:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-buy { flex: 1; height: 44px; background: var(--burgundy); color: #fff; border: none; border-radius: 4px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-buy:hover { background: var(--burgundy-dark); }
.out-of-stock { flex: 1; height: 38px; background: #eee; color: #999; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }

/* Color Dots - Luava Style with Images */
.color-dots { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 0.5rem; }
.color-dot { width: 28px; height: 28px; border-radius: 50%; border-width: 3px; border-style: solid; border-color: currentColor; cursor: pointer; transition: all 0.2s; }
.color-dot-img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.color-dot:hover { transform: scale(1.15); }
.color-more { font-size: 0.7rem; color: var(--text-muted); display: flex; align-items: center; }

/* ===== BREADCRUMB ===== */
.luava-breadcrumb { padding: 0.75rem 0; font-size: 0.8rem; color: var(--text-light); border-bottom: 1px solid var(--border); }
.luava-breadcrumb a { color: var(--text-light); }
.luava-breadcrumb a:hover { color: var(--burgundy); }
.luava-breadcrumb .separator { margin: 0 0.4rem; }

/* ===== FORMS ===== */
.form-control, .form-select { border: 1px solid var(--border); border-radius: 4px; padding: 0.75rem; }
.form-control:focus, .form-select:focus { border-color: var(--burgundy); outline: none; box-shadow: 0 0 0 2px rgba(139,21,56,0.1); }
.btn-success { background: var(--burgundy); border-color: var(--burgundy); }
.btn-success:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .header-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .story-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .story-text { text-align: center; }
    .products-row, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .header-top { display: none; }
    .header-logo img { height: 70px; }
    .category-section { padding: 1.5rem 0; }
    .category-grid { gap: 0.5rem; }
    .category-card h3 { font-size: 0.85rem; bottom: 0.75rem; left: 0.75rem; }
    .story-section { padding: 2rem 0; }
    .story-text h2 { font-size: 1.25rem; }
    .products-section { padding: 1.5rem 0; }
    .section-title { font-size: 1.25rem; margin-bottom: 1.25rem; }
    /* Mobilde 2 ürün yanyana */
    .products-row, .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .product-details { padding: 0.6rem; }
    .product-details h4, .product-name { font-size: 0.75rem; }
    .product-price .regular, .product-price .sale, .price-regular, .price-sale { font-size: 0.85rem; }
    /* Mobilde butonlar yatay */
    .product-actions { flex-direction: row; gap: 0.35rem; margin-top: 0.5rem; }
    .btn-cart { width: 40px; height: 36px; font-size: 1rem; }
    .btn-buy { font-size: 0.7rem; height: 36px; }
    .stars i { font-size: 0.7rem; }
    .rating-count { font-size: 0.65rem; }
    .color-dots { gap: 4px; margin-top: 0.35rem; }
    .color-dot { width: 16px; height: 16px; }
    .banner-section { height: 180px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .whatsapp-float { width: 46px; height: 46px; font-size: 1.2rem; bottom: 1rem; right: 1rem; }
}

/* Hide old elements */
.site-header, .site-footer, .promo-strip { display: none !important; }

/* GLOBAL - Tüm yıldızlar sarı olacak! */
.bi-star-fill, .bi-star-half, .bi-star { color: #ffc107 !important; }
.stars i, .product-stars i, .product-rating i { color: #ffc107 !important; }
