/* ========================================= */
/* 1. TEMEL AYARLAR                          */
/* ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif; /* Temel fontumuz lüks ve modern */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif; /* Başlıklar klasik ve elit */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. YAPIŞKAN MASTER KUTU (TÜM ÜST KISIM)   */
/* ========================================= */
.sticky-master-wrapper {
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important; /* Her şeyin üstünde kalmasını garantiler */
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06); /* Lüks gölgeyi tüm bloğa verdik */
}

/* ========================================= */
/* 2. KAMPANYA DUYURU ŞERİDİ                 */
/* ========================================= */
/* ========================================= */
/* 2. KAMPANYA DUYURU ŞERİDİ (HAREKETLİ)     */
/* ========================================= */
.announcement-bar {
    background-color: #1a1a1a !important; 
    color: #bfa15f !important; 
    text-align: center;
    padding: 8px 20px; 
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px; 
    z-index: 10000; 
    position: relative;
    width: 100%;
    text-transform: uppercase; 
    
    /* İŞTE SİHİRLİ ANİMASYON KODU */
    animation: premium-pulse 2s infinite alternate; 
}

/* YAZININ ALTIN GİBİ PARLAYIP SÖNMESİNİ SAĞLAYAN EFEKT */
@keyframes premium-pulse {
    0% { 
        opacity: 0.8; 
        text-shadow: 0 0 0px rgba(191, 161, 95, 0); 
    }
    100% { 
        opacity: 1; 
        text-shadow: 0 0 10px rgba(191, 161, 95, 0.8); 
        color: #d4b572 !important; /* Parlarken bir tık daha açık sarı olur */
    }
}
/* ========================================= */
/* 3. TOP BAR (ÜST ŞERİT)                    */
/* ========================================= */
.top-bar {
    background-color: #fafafa; 
    color: #555555; 
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    border-bottom: 1px solid #eeeeee; 
}

.top-bar-left span { margin-right: 20px; }
.top-bar-left i { color: #888888; margin-right: 6px; }

.top-bar-right a {
    color: #333333; 
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px; 
    transition: color 0.3s ease, transform 0.3s ease;
}

.top-bar-right a:hover { 
    color: #bfa15f; 
    transform: translateY(-2px); 
}

/* ========================================= */
/* 4. HEADER (ANA MENÜ - YAPIŞKAN)           */
/* ========================================= */
header {
    background-color: #ffffff;
    padding: 15px 50px;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%;
    /* Eski yapışkan (sticky) kodları ve gölge buradan silindi, dış kutuya alındı */
}

/* Logonun boyutu ve menü ayarları aynı şekilde devam ediyor... */
.logo img { height: 100px; width: auto; }


nav#nav-menu {
    flex: 1; 
    display: flex;
    justify-content: center; 
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 40px; 
}

nav ul li a {
    text-decoration: none; 
    color: #555555;
    font-weight: 600; 
    font-size: 16px;
    padding: 8px 22px; 
    border-radius: 50px; 
    border: 1px solid transparent; 
    transition: all 0.3s ease; 
}

nav ul li a:hover { 
    color: #bfa15f; 
    border-color: #bfa15f; 
    background-color: #fcfaf5; 
}

.header-action .btn-header-iletisim {
    background-color: #1a1a1a; 
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.header-action .btn-header-iletisim:hover {
    background-color: #bfa15f; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(191, 161, 95, 0.3);
}

.menu-toggle { 
    display: none; 
    font-size: 28px; 
    cursor: pointer; 
    color: #333333; 
}

/* ========================================= */
/* 5. SLIDER (KAYAN FOTOĞRAFLAR)             */
/* ========================================= */
.slider-container { position: relative; width: 100%; height: 600px; overflow: hidden; }
.slider-wrapper { width: 100%; height: 100%; }
.slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease-in-out; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(60%); }
.slide-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: white; width: 80%; }
.slide-text h2 { font-size: 50px; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.slide-text p { font-size: 22px; }

.prev-btn, .next-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0,0,0,0.4); color: white; border: none; padding: 15px 20px; cursor: pointer; font-size: 30px; transition: 0.3s; border-radius: 5px; z-index: 10; }
.prev-btn:hover, .next-btn:hover { background-color: rgba(0,0,0,0.8); }
.prev-btn { left: 20px; } 
.next-btn { right: 20px; }

.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.dot { width: 12px; height: 12px; background-color: rgba(255, 255, 255, 0.4); border-radius: 50%; cursor: pointer; transition: 0.3s ease; }
.dot.active { background-color: #ffffff; transform: scale(1.4); }

/* ========================================= */
/* 6. AVANTAJLAR BANDI (SLIDER ALTI)         */
/* ========================================= */
.features-band {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 50px;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background-color: #fafafa;
    border-radius: 15px;
    border-left: 4px solid #bfa15f; 
    flex: 1; 
    max-width: 380px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-icon { font-size: 35px; color: #1a1a1a; }
.feature-icon-img { height: 40px; width: auto; }
.feature-text h4 { font-size: 16px; color: #222222; margin-bottom: 5px; }
.feature-text p { font-size: 13px; color: #777777; margin: 0; }

/* ========================================= */
/* 7. KAYAN MARKALAR ŞERİDİ                  */
/* ========================================= */
.brands-marquee { 
    background-color: #f9f9f9; 
    padding: 12px 0; 
    border-bottom: 1px solid #eeeeee; 
    border-top: 1px solid #eeeeee; 
    overflow: hidden; 
    display: flex; 
    white-space: nowrap; 
    position: relative; 
}

.marquee-track { 
    display: flex; 
    width: max-content; 
    animation: scroll 25s linear infinite; 
}

.brands-marquee:hover .marquee-track { animation-play-state: paused; }

.brand-item { 
    font-size: 16px; 
    font-weight: 700; 
    color: #aaaaaa; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    padding: 0 40px; 
    transition: 0.3s; 
    cursor: pointer; 
}

.brand-item:hover { color: #bfa15f; }

@keyframes scroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

/* ========================================= */
/* 8. KOLEKSİYONLAR (ANA SAYFA KARTLARI)     */
/* ========================================= */
.featured-products { padding: 80px 50px; text-align: center; background-color: #f9f9f9; }

.section-title { font-size: 36px; color: #222222; margin-bottom: 50px; font-weight: 600; position: relative; display: inline-block; }
.section-title::after { content: ''; width: 60px; height: 3px; background-color: #bfa15f; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); }

.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    margin: 20px auto 0 auto; 
    max-width: 1200px; 
}

.product-card { 
    background: #ffffff;
    border: none; 
    border-radius: 20px;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.06); 
    transition: transform 0.4s ease, box-shadow 0.4s ease; 
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }

.product-image { width: 100%; height: 250px; overflow: hidden; background-color: #ffffff; display: flex; align-items: center; justify-content: center;}
.product-image img { 
    max-width: 100% !important; 
    max-height: 100% !important; 
    object-fit: contain !important; 
    display: block;
    transition: transform 0.5s ease; 
}
.product-card:hover .product-image img { transform: scale(1.05); } 

.product-info { padding: 30px 20px; text-align: center; }
.product-info h3 { font-size: 20px; color: #333333; margin-bottom: 10px; }
.product-info p { font-size: 14px; color: #777777; margin-bottom: 25px; line-height: 1.5; }

.btn-incele { 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    gap: 8px; 
    padding: 12px 25px; 
    background-color: #1a1a1a; 
    color: #ffffff; 
    text-decoration: none; 
    border-radius: 50px; 
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease; 
}
.btn-incele:hover { background-color: #bfa15f; color: #ffffff; padding-right: 20px; padding-left: 30px; }

/* ========================================= */
/* 9. MÜŞTERİ YORUMLARI                      */
/* ========================================= */
.testimonials { padding: 80px 50px; background-color: #ffffff; text-align: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.review-card { background-color: #fafafa; padding: 30px; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: transform 0.3s; border: 1px solid #eeeeee; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.stars { color: #bfa15f; margin-bottom: 15px; }
.review-card p { font-style: italic; color: #555555; margin-bottom: 20px; line-height: 1.6; }
.review-card h4 { color: #222222; font-size: 16px; }

/* ========================================= */
/* 10. HAKKIMIZDA & İLETİŞİM SAYFALARI       */
/* ========================================= */
.page-header { background-color: #1a1a1a; color: #ffffff; padding: 60px 20px; text-align: center; }
.page-header h1 { font-size: 40px; margin-bottom: 15px; letter-spacing: 2px; color: #bfa15f;}
.page-header p { font-size: 18px; color: #aaaaaa; font-weight: 300; }

.about-story { display: flex; align-items: center; gap: 80px; padding: 100px 50px; background-color: #ffffff; }
.story-content { flex: 1; }
.story-content h2 { font-size: 42px; color: #1a1a1a; margin-bottom: 30px; position: relative; padding-bottom: 15px; }
.story-content h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background-color: #bfa15f; }
.story-content p { font-size: 16px; color: #555555; line-height: 2; margin-bottom: 20px; font-weight: 300; }
.story-image { flex: 1; height: 500px; overflow: hidden; border-radius: 5px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.story-image img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; }

.core-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; padding: 60px 50px 80px; background-color: #f9f9f9; text-align: center; }
.value-box { background-color: #ffffff; padding: 40px 30px; border-radius: 20px; border: none; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: transform 0.3s ease; }
.value-box:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.value-box i { font-size: 45px; color: #bfa15f; margin-bottom: 20px; }
.value-box h3 { font-size: 20px; color: #222222; margin-bottom: 15px; }
.value-box p { font-size: 15px; color: #777777; line-height: 1.6; }

.contact-section { padding: 80px 50px; background-color: #ffffff; }
.contact-container { max-width: 1200px; margin: 0 auto; }
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; width: 100%; max-width: 1000px; margin: 0 auto; }
.info-card { background: #fafafa; padding: 40px 30px; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border-bottom: 5px solid #bfa15f; display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.info-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.info-card i { font-size: 40px; color: #bfa15f; margin-bottom: 20px; }
.info-card h3 { font-size: 18px; color: #222222; margin-bottom: 15px; }
.info-card p { color: #555555; line-height: 1.6; font-size: 14px; }

.full-map { width: 100%; display: block; }
.full-map iframe { display: block; filter: grayscale(15%); }

/* ========================================= */
/* 11. ÜRÜNLER / KOLEKSİYON SAYFASI (SATIRLAR)*/
/* ========================================= */
.collection-row {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 60px;
    padding: 80px 50px;
    background-color: #ffffff;
}

.collection-row.reverse { background-color: #f9f9f9; }

.collection-img {
    flex: 1;
    max-width: 550px; 
    height: 450px; 
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    background-color: #ffffff; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-img img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important; 
    object-position: center !important;
    transition: transform 0.5s ease;
}

.collection-row:hover .collection-img img { transform: scale(1.05); }

.collection-info { flex: 1; max-width: 550px; }
.collection-info h2 { font-size: 36px; color: #222222; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.collection-info h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background-color: #bfa15f; }
.collection-info p { font-size: 16px; color: #555555; line-height: 1.8; margin-bottom: 20px; }

.btn-contact-wp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 15px 30px;
    background-color: #25d366; 
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-contact-wp:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5); }
.btn-contact-wp i { font-size: 20px; }

/* ========================================= */
/* 12. HARİTALI MASTER FOOTER                */
/* ========================================= */
.site-footer { background-color: #1a1a1a; color: #aaaaaa; padding: 60px 50px 20px; font-size: 14px; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-logo { max-width: 180px; height: auto; margin-bottom: 20px; display: block; }
.footer-col h4 { font-size: 18px; color: #ffffff; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background-color: #bfa15f; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; display: flex; align-items: center; }
.footer-col ul li i { margin-right: 10px; color: #bfa15f; font-size: 16px; }
.footer-col ul li a { color: #aaaaaa; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: #ffffff; padding-left: 5px; }

.social-links a { display: inline-block; width: 35px; height: 35px; background: #333333; color: #ffffff; text-align: center; line-height: 35px; border-radius: 50%; margin-right: 10px; transition: 0.3s; }
.social-links a:hover { background: #bfa15f; transform: translateY(-3px); }
.footer-map iframe { width: 100%; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); filter: grayscale(20%); }
.footer-bottom { text-align: center; border-top: 1px solid #333333; padding-top: 20px; font-size: 13px; color: #777777; }

/* ========================================= */
/* 13. MODAL, SABİT BUTONLAR VE EFEKTLER     */
/* ========================================= */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #ffffff; z-index: 99999; display: flex; justify-content: center; align-items: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
.loader-logo { width: 120px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(1); opacity: 0.7; } }

.floating-wp { position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: #ffffff; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 35px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 1000; transition: transform 0.3s; text-decoration: none; animation: wp-pulse 2s infinite; }
.floating-wp:hover { transform: scale(1.1); }
@keyframes wp-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

.wp-tooltip { position: absolute; right: 75px; top: 50%; transform: translateY(-50%); background: #ffffff; color: #222; padding: 8px 15px; border-radius: 20px; font-size: 13px; font-weight: bold; box-shadow: 0 5px 15px rgba(0,0,0,0.1); white-space: nowrap; opacity: 0; visibility: hidden; transition: 0.3s; pointer-events: none; }
.floating-wp:hover .wp-tooltip { opacity: 1; visibility: visible; right: 85px; } 

#backToTop { position: fixed; bottom: 115px; right: 37px; background: #1a1a1a; color: #ffffff; width: 45px; height: 45px; border-radius: 50%; border: none; font-size: 18px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 999; display: flex; justify-content: center; align-items: center; }
#backToTop.goster { opacity: 1; visibility: visible; }
#backToTop:hover { background: #bfa15f; transform: translateY(-5px); }

/* Rehber ve Modal */
.btn-rehber { display: flex; align-items: center; justify-content: center; gap: 10px; width: fit-content; margin: 30px auto; padding: 15px 35px; background: #bfa15f; color: #fff; border-radius: 50px; border: none; font-size: 16px; cursor: pointer; transition: 0.3s; font-weight: 600;}
.btn-rehber:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(191, 161, 95, 0.4);}
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 100000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(5px); }
.modal-overlay.goster { opacity: 1; visibility: visible; }
.modal-content { background: #ffffff; width: 90%; max-width: 600px; padding: 40px; border-radius: 20px; position: relative; transform: scale(0.8); transition: 0.4s ease; max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.modal-overlay.goster .modal-content { transform: scale(1); }
.close-modal { position: absolute; top: 20px; right: 25px; font-size: 28px; cursor: pointer; color: #333; transition: 0.3s; }
.close-modal:hover { color: #d9534f; }
.modal-content h2 { color: #222; margin-bottom: 20px; text-align: center; }
.face-guide-item { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px dashed #eee; }
.face-guide-item h4 { color: #bfa15f; margin-bottom: 5px; font-size: 18px; }

/* FAQ */
.faq-section { padding: 80px 50px; background: #ffffff; max-width: 900px; margin: 0 auto; text-align: center; }
.faq-item { border-bottom: 1px solid #eeeeee; text-align: left; }
.faq-question { width: 100%; background: none; border: none; font-size: 18px; color: #222; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; transition: color 0.3s; }
.faq-question:hover, .faq-question.active { color: #bfa15f; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: #555; line-height: 1.6; font-size: 15px; }
.faq-answer p { padding-bottom: 20px; }

/* ========================================= */
/* 14. MOBİL CİHAZ UYUMU (RESPONSIVE)        */
/* ========================================= */
/* ========================================= */
/* 14. MOBİL CİHAZ UYUMU (RESPONSIVE)        */
/* ========================================= */

    @media (max-width: 768px) {
    /* SİSTEMİ KÖKTEN ÇÖZEN KOD: Mobilde yapışkan olan ne varsa iptal eder! */
    .sticky-master-wrapper, 
    .announcement-bar, 
    
    .top-bar, 
    header {
        position: relative !important;
        top: auto !important;
        z-index: 1 !important;
    }

    /* ... Altındaki diğer mobil kodların (top-bar flex vb.) aynen kalsın ... */
    .top-bar { flex-direction: column; gap: 8px; padding: 10px 20px; text-align: center; }
    .top-bar-right a { margin: 0 10px; }
    
    .top-bar a, .top-bar span, .top-bar i { 
        color: #555555 !important; 
        text-decoration: none !important; 
    }

    /* ÇİFT YAZIM HATASI DÜZELTİLDİ VE YAPIŞKANLIK İPTAL EDİLDİ */
    header { 
        padding: 15px 20px; 
        justify-content: space-between; 
        gap: 0; 
        position: relative !important; 
    }
    
    .logo img { height: 65px; }
    .header-action { display: none; }
    .menu-toggle { display: block; }
    
    /* MENÜNÜN AÇILMASI İÇİN BASKIN KODLAR */
    nav#nav-menu { position: absolute; top: 100%; left: 0; width: 100%; background-color: #ffffff; box-shadow: 0 5px 10px rgba(0,0,0,0.1); display: none; flex-direction: column; z-index: 999; }
    nav#nav-menu.active { display: flex !important; }
    #nav-menu ul { flex-direction: column; gap: 0; }
    #nav-menu ul li { text-align: center; border-bottom: 1px solid #eeeeee; }
    #nav-menu ul li a { display: block; padding: 15px 0; }
    
    .features-band { flex-direction: column; padding: 30px 20px; gap: 20px; }
    .feature-box { max-width: 100%; border-left: none; border-top: 4px solid #bfa15f; }

    .collection-row, .collection-row.reverse { flex-direction: column; padding: 50px 20px; text-align: center; gap: 30px; }
    .collection-info h2::after { left: 50%; transform: translateX(-50%); }
    .collection-img { width: 100%; height: 350px; }

    .featured-products, .testimonials, .contact-section { padding: 50px 20px; }
    .site-footer { padding: 40px 20px 20px; }
    
    .about-story { flex-direction: column; padding: 50px 20px; text-align: center; gap: 30px; }
    .story-content h2::after { left: 50%; transform: translateX(-50%); }
    .story-image { width: 100%; height: 300px; }
    
    .slider-container { height: 400px; }
    .slide-text h2 { font-size: 30px; }
    .slide-text p { font-size: 16px; }
}