@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --premium-ink: #111111;
    --premium-line: #d8d2ca;
    --premium-focus: rgba(17, 17, 17, 0.16);
}

* {
    -webkit-tap-highlight-color: rgba(17, 17, 17, 0.08);
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 1px solid var(--premium-ink);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--premium-focus);
}

/* Ekranı Karartan Arka Plan Katmanı */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Yumuşak bir karartma */
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Sağdan Kayarak Açılan Sepet Paneli */
.side-cart {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -450px;
    /* İlk başta ekranın sağında gizli */
    width: 400px;
    /* Premium genişlik */
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    /* Yağ gibi akan animasyon */
}

.side-cart.active {
    right: 0;
    background-color: #fff;
    /* Sepet açıldığında sıfırlanır */
}

/* Sepet Başlığı */
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    background-color: #fff;
    border-bottom: 1px solid #eeeeee;
}

.cart-header h2 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* Kapatma Butonu (X) */
.cart-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000000;
    padding: 0;
    line-height: 1;
}

/* Sepet İçeriği Boş Durumu */
.cart-body {
    flex-grow: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    /* Ortalanmış boş sepet */
}

.empty-cart-state {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Büyük Boş Sepet İkonu */
.empty-cart-icon {
    font-size: 96px !important;
    color: #cccccc;
    opacity: 0.7;
}

/* Alışverişe Başla Butonu (Görseldeki Gibi Tam Siyah) */
.checkout-btn {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-btn:hover {
    background-color: #1a1a1a;
    /* çok hafif bir parlama tonu */
}

/* Mobil Ekranlar İçin Ayar */
@media (max-width: 480px) {
    .side-cart {
        width: 100%;
        /* Mobilde tam ekran kaplasın */
        right: -100%;
    }
}







/* Dış Ana Kutu - Ekrandan taşanları gizler */
.marquee-serit {
    display: flex;
    overflow: hidden;
    user-select: none;
    background-color: #f5f5f5;
    padding: 10px 0;
    /* Şeridi biraz daha ince ve kibar yapıyoruz */
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
    z-index: 1000;
}


/* Yazı Grupları */
.marquee-grup {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 0;
    animation: sonsuz-kaydir 30s linear infinite;
    /* 20 saniyede bir tur döner */
}

/* Yazıların Kendisi */
.marquee-grup span {
    color: #2e2e2e;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    /* çok temiz, dik ve modern fontlar */
    font-size: 11px;
    /* Yazıyı biraz küçültüyoruz, lüks markalar küçük font sever */
    font-weight: 400;
    /* Kalın (bold) yerine daha zarif, ince/orta kalınlık */
    letter-spacing: 4px;
    /* Harflerin arasını iyice açıyoruz (Lüks hissinin sırrı buradadır) */
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 50px;
    /* Yazı grupları arası mesafeyi açarak ferahlık veriyoruz */
    opacity: 0.9;
    /* Güz• yormasın diye çok hafif bir şeffaflık */
}

/* Sağdan Sola Kesintisiz Sonsuz Döng• Animasyonu */
@keyframes sonsuz-kaydir {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}


/* Navbardaki Kampanya Satırının Genel Dözeni */
.nav-promo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;

    /* Arka Planı Ayrıştıran Sihirli Dokunuşlar */
    background-color: #000000;
    /* Tam siyah premium fon */
    padding: 10px 20px;
    /* İç boşluk vererek şerit haline getiriyoruz */
    /* Küşeleri çok hafif yumuşatarak modern bir hava katıyoruz */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Sayfadan yukarıda duruyormuş hissi veren çok hafif gölge */
    margin-top: 0px;
}

/* İkonun Yeni Rengi (Siyah fonda beyaz durmalı) */
.luxury-nav-icon {
    color: #ffffff !important;
    font-size: 16px !important;
    vertical-align: middle;
}

/* Yazının Yeni Rengi */
.luxury-nav-text {
    color: #ffffff;
    /* Beyaz yazı */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
}

/* 2. NAVIGASYON (NAVBAR) */
.lv-navbar {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    flex: 1;
}

.right-menu {
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.5;
}

.nav-logo a {
    text-decoration: none;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* 3. HERO SECTION (ANA GÖRSEL) */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/mainpicture.webp');
    height: 85vh;
    margin-top: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    /* GÖRSELİ BURAYA BAĞLIYORUZ */

    background-size: cover;
    /* Görseli alanı kaplayacak şekilde yayar */
    background-position: center;
    /* Görseli ortalar */
    background-repeat: no-repeat;

}

.hero-content {
    text-align: center;
    z-index: 2;
    color: #ffffff;
    /* Ana metin rengi beyaz */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #f8f9fa;
    font-weight: 600;
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #d1d1d1;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}

/* 4. KATEGORİLER (GRID) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 60px 40px;
    max-width: 1800px;
    margin: 0 auto;
}

.category-item {
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.img-placeholder {
    height: 600px;
    background-color: #f2f2f2;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    letter-spacing: 3px;
    font-size: 12px;
    transition: 0.5s ease;
}

.category-item:hover .img-placeholder {
    background-color: #ebebeb;
}

.category-item h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.category-item span {
    color: #777;
    text-decoration: none;
    font-size: 11px;
    border-bottom: 1px solid #777;
    padding-bottom: 2px;
}

/* 5. ÖNE ÇIKAN ÜRÜNLER */
.featured-products {
    padding: 100px 40px;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 22px;
    letter-spacing: 5px;
    font-weight: 300;
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    text-align: center;
    cursor: pointer;
}

.product-img {
    height: 450px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info p {
    font-size: 13px;
    letter-spacing: 1px;
}

.product-price {
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

.product-price-discounted {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-price-previous {
    color: #999;
    font-size: 12px;
    font-weight: 400;
    text-decoration: line-through;
}

.product-price-current {
    color: #111;
    font-weight: 700;
}

/* 6. MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
}

.home-slider {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

/* Home sliders use the same full-width rhythm as catalog grids. */
.home-product-grid {
    width: 100%;
    max-width: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    grid-template-columns: none;
    gap: 60px 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding: 0 6px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.home-product-grid::-webkit-scrollbar {
    display: none;
}

.home-product-grid .product-img,
.home-product-grid .product-image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
}

.home-product-grid .product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    scroll-snap-align: start;
}

.home-product-grid .product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.home-product-grid .product-info .product-price {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.home-product-grid .product-title {
    min-height: 2.8em;
}

.home-product-grid .home-quick-add {
    margin-top: auto;
}

.home-slider-btn {
    position: absolute;
    top: 38%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid #111;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 38px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.home-slider-btn:hover {
    background: #111;
    color: #fff;
}

.home-slider-btn:disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}

.home-slider-btn-prev {
    left: -22px;
}

.home-slider-btn-next {
    right: -22px;
}

@media (max-width: 992px) {
    .home-product-grid {
        grid-auto-columns: calc((100% - 28px) / 3);
        grid-template-columns: none !important;
        gap: 32px 14px;
    }
}

@media (max-width: 768px) {
    .home-product-grid {
        grid-auto-columns: calc((100% - 14px) / 2);
    }

    .home-slider-btn {
        top: 34%;
        width: 36px;
        height: 36px;
        font-size: 28px;
        line-height: 30px;
    }

    .home-slider-btn-prev {
        left: -10px;
    }

    .home-slider-btn-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .home-product-grid {
        grid-auto-columns: 78vw;
    }
}





/* İNFO BANNER */
.info-banner {
    display: flex;
    justify-content: space-around;
    padding: 120px 40px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.info-item span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
}

/* FOOTER */
.main-footer {
    padding: 100px 40px 40px;
    background-color: #f4f1ec;
    color: #171717;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column h4 {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    color: #171717;
}

.footer-column p,
.footer-column li {
    font-size: 12px;
    color: #6f6b66;
    line-height: 2.2;
    list-style: none;
}

.footer-contact-line {
    color: #6f6b66;
    font-size: 10px;
    line-height: 1.7;
    letter-spacing: 0.08em;
    text-transform: none;
}

.email-lowercase {
    text-transform: none !important;
    letter-spacing: normal;
}

.footer-column a {
    text-decoration: none;
    color: #6f6b66;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #171717;
}

/* BÜLTEN FORMU */
.newsletter-form {
    display: flex;
    margin-top: 20px;
    border-bottom: 1px solid #ddd8d1;
    transition: border-color 0.3s;
}

.newsletter-form:focus-within {
    border-bottom: 1px solid #171717;
}

.newsletter-form input {
    border: none;
    background: none;
    padding: 10px 0;
    width: 100%;
    font-family: inherit;
    outline: none;
    color: #171717;
    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: #8d8881;
}

.newsletter-form button {
    border: none;
    background: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 10px 0;
    color: #171717;
    transition: opacity 0.3s;
}

.newsletter-form button:hover {
    opacity: 0.8;
}

/* SOCIALS IN FOOTER BOTTOM */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-socials a {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6f6b66;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-socials a:hover {
    color: #171717;
}

.footer-payment-logos {
    max-width: 1400px;
    margin: 52px auto 0;
    padding: 24px 0 0;
    border-top: 1px solid #ddd8d1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-payment-logos img {
    width: min(360px, 100%);
    height: auto;
    display: block;
    opacity: 0.92;
    filter: saturate(0.9);
}

.footer-bottom {
    margin-top: 44px;
    text-align: center;
    border-top: 1px solid #ddd8d1;
    padding-top: 40px;
    font-size: 10px;
    letter-spacing: 2px;
    color: #6f6b66;
    text-transform: uppercase;
}

/* PREMIUM LEGAL PAGES */
.legal-page {
    background-color: #ffffff;
    min-height: calc(100vh - 80px);
    padding: 160px 24px 100px 24px;
}

.legal-container {
    max-width: 920px;
    margin: 0 auto;
}

.legal-title {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #111;
}

.legal-content h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 45px;
    margin-bottom: 15px;
    color: #000;
    border-left: 2px solid #000;
    padding-left: 12px;
}

.legal-eyebrow {
    display: block;
    text-align: center;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}

.legal-lead {
    max-width: 760px;
    margin: 0 auto 42px !important;
    text-align: center !important;
    color: #555 !important;
    font-size: 14px !important;
}

.legal-note {
    background: #fafafa;
    border: 1px solid #ececec;
    padding: 22px 24px;
    margin: 34px 0;
}

.legal-note p {
    margin: 0 !important;
    text-align: left !important;
}

.legal-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 34px 0 48px;
}

.legal-meta-item {
    border: 1px solid #eee;
    padding: 18px;
    background: #fff;
}

.legal-meta-item strong {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 8px;
}

.legal-meta-item span {
    font-size: 13px;
    color: #111;
    line-height: 1.6;
}

.legal-content p, 
.legal-content li {
    font-size: 13.5px;
    color: #444;
    line-height: 2.0;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    text-align: justify;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.legal-content li {
    margin-bottom: 12px;
    list-style-type: square;
}

.legal-content strong {
    color: #000;
    font-weight: 600;
}

/* Legal contact list styling */
.legal-contact-list {
    list-style: none !important;
    padding: 0 !important;
    margin-top: 30px;
}

.legal-contact-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin: 0;
    font-size: 13px;
    list-style-type: none !important;
}

.legal-contact-list li strong {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: #666;
}

.legal-contact-list li span {
    font-weight: 500;
    color: #000;
}

/* MOBİL UYUM */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .legal-page {
        padding: 130px 18px 70px;
    }

    .legal-title {
        font-size: 20px;
        letter-spacing: 3px;
        margin-bottom: 36px;
    }

    .legal-meta-grid {
        grid-template-columns: 1fr;
    }

    .legal-content p,
    .legal-content li {
        text-align: left;
    }

    .legal-contact-list li {
        display: block;
    }

    .legal-contact-list li strong {
        display: block;
        margin-bottom: 6px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-banner {
        flex-direction: column;
        gap: 40px;
    }
}












/* FİLTRELEME BARININ GENEL YAPISI */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    margin-bottom: 40px;
    font-family: inherit;
}

/* FİLTRELE BUTONU */
.filter-btn {
    background: none;
    border: 1px solid #000;
    /* İnce siyah çerçeve */
    padding: 10px 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #000;
    color: #fff;
    /* üstöne gelince siyah dolgu, beyaz yazı */
}

/* SIRALAMA (SELECT) KUTUSU */
.sort-options {
    position: relative;
}

.sort-options select {
    appearance: none;
    /* Standart ok işaretini kaldırır */
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    padding: 10px 25px 10px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-transform: uppercase;
    color: #000;
    outline: none;
}

/* Select kutusunun yanına özel bir ok eklemek için (isteğe bağlı) */
.sort-options::after {
    content: '▼';
    font-size: 8px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.sort-options select:hover {
    color: #666;
    /* Hafif griye döner */
}



















/* KATALOG SAYFASI */
.catalog-page {
    margin-top: 100px;
    /* Navbar yüksekliğine göre ayar */
    padding: 0 40px;
}

.catalog-header {
    text-align: center;
    padding: 60px 0;
}

.catalog-header h1 {
    font-size: 24px;
    letter-spacing: 6px;
    font-weight: 300;
    margin-bottom: 40px;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    font-size: 11px;
    letter-spacing: 2px;
}

.sort-options select {
    border: none;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 1px;
    outline: none;
    cursor: pointer;
    background: transparent;
}

.sort-options select:focus-visible {
    outline-offset: 5px;
}

.catalog-filter-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
    border-bottom: 1px solid #eee;
    padding: 18px 0 22px;
    margin-top: -40px;
    margin-bottom: 36px;
}

.catalog-filter-panel[hidden] {
    display: none;
}

.catalog-filter-panel label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #777;
}

.catalog-filter-panel select {
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    padding: 11px 12px;
    font: inherit;
    font-size: 11px;
    letter-spacing: 1px;
    outline: none;
    text-transform: uppercase;
}

.catalog-filter-panel select:focus {
    border-color: #000;
}

.catalog-stock-filter {
    flex-direction: row !important;
    align-items: center;
    min-height: 40px;
}

.catalog-stock-filter input {
    width: 16px;
    height: 16px;
    accent-color: #000;
}

.catalog-filter-reset {
    border: 1px solid #111;
    background: #111;
    color: #fff;
    padding: 12px 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.catalog-empty-state {
    grid-column: 1 / -1;
    padding: 80px 0;
    text-align: center;
    color: #777;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ÜRÜN IZGARASI */
.products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
    padding: 40px 0;
}

.product-item {
    position: relative;
    cursor: pointer;
}

.products-container .product-item {
    
    background: #fff;
    padding: 10px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.products-container .product-item:hover {
    
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.035);
}

.product-image-box {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border: none;
    aspect-ratio: 3 / 4;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.35s ease;
}

.product-item:hover .product-image-box {
    background-color: #faf9f7;
}

.product-image-box .img-placeholder {
    height: 100%;
    width: 100%;
    min-width: 100%;
    /* Dikey, moda çekimi formatı */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 10px;
    letter-spacing: 2px;
}

.product-image-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    padding: 0;
    box-sizing: border-box;
    transition: transform 0.35s ease;
}

.product-image-box .product-card-image {
    position: absolute;
    inset: 0;
    transition: opacity 0.08s linear, transform 0.12s ease-out;
}

.product-image-box .product-card-image-hover {
    z-index: 1;
    opacity: 0;
}

.product-image-box .quick-add {
    z-index: 2;
}

@media (hover: hover) {
    .product-item:hover .product-card-image-primary {
        opacity: 0;
    }

    .product-item:hover .product-card-image-hover {
        opacity: 1;
    }
}

.product-item:hover .product-image-box img {
    transform: scale(1.025);
}

/* Sepete Ekle Butonu (Hover'da çıkar) */
.quick-add {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.product-item:hover .quick-add {
    bottom: 0;
}

/* ürün Bilgileri */
.product-details {
    padding: 20px 0;
    text-align: left;
}

.brand-name {
    font-size: 10px;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .catalog-filter-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .catalog-filter-panel {
        grid-template-columns: 1fr;
        margin-top: -20px;
    }

    .products-container {
        grid-template-columns: 1fr;
    }
}



















/* GİRİŞ EKRANI TASARIMI */

/* Giriş Paneli Genel Yapısı */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 40px 30px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.login-title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 35px;
}

/* Ara çizgisi */
.login-divider {
    position: relative;
    margin: 25px 0;
    text-align: center;
}

.login-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eeeeee;
    z-index: 1;
}

.login-divider span {
    position: relative;
    background-color: #ffffff;
    padding: 0 15px;
    font-size: 11px;
    color: #999999;
    letter-spacing: 1px;
    z-index: 2;
}

/* Premium Google Butonu */
.google-auth-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    /* İnce siyah çerçeve */
    padding: 14px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.google-auth-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Hover durumunda ikon renklerinin beyaz fona uyumu (SVG için opsiyonel siyah/beyaz geçişi) */
.google-auth-btn:hover .google-icon-svg {
    filter: brightness(0) invert(1);
    /* Buton siyaha dönüştüğünde ikon bembeyaz olur, tam lüks marka havası verir */
}

.google-icon-svg {
    transition: filter 0.3s ease;
}


.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f9f9f9;
    padding: 40px;
    padding-top: 170px;
}

.login-box {
    background: #ffffff;
    padding: 50px 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.login-title {
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 12px;
    color: #777;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #000;
}

.primary-btn {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.primary-btn:hover {
    background: #333;
}

.divider {
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee;
}

.divider span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    font-size: 11px;
    color: #999;
    letter-spacing: 1px;
}

.google-btn {
    width: 100%;
    padding: 15px;
    background: #fff;
    color: #000;
    border: 1px solid #ddd;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.google-btn img {
    width: 18px;
}

.google-btn:hover {
    background: #f8f8f8;
}

.register-link {
    margin-top: 25px;
    font-size: 12px;
    color: #666;
}

.register-link a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

/* ÜRÜN DETAY SAYFASI (PREMIUM) */
.pd-body {
    background-color: #fafafa;
}

.product-detail-page {
    margin-top: 120px;
    padding: 0 clamp(20px, 4vw, 48px) 0;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.product-detail-page .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.product-detail-page .breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.25s ease;
}

.product-detail-page .breadcrumb a:hover {
    color: #000;
}

.product-detail-page .breadcrumb span:last-child,
.product-detail-page #pd-breadcrumb-name {
    color: #1a1a1a;
    font-weight: 500;
}

.breadcrumb-sep {
    color: #ccc;
    user-select: none;
}

.product-detail-container {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: start;
    margin-bottom: clamp(60px, 10vw, 100px);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pd-gallery-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.pd-badge {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 0.45rem 0.85rem;
}

.pd-sku {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: #aaa;
    text-transform: uppercase;
}

.pd-main-image,
.main-image-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 78vh;
    background: linear-gradient(165deg, #f0eeeb 0%, #e8e6e3 45%, #f5f4f2 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-page .pd-main-image,
.product-detail-page .main-image-placeholder {
    background: #f5f5f5;
    background-image: none;
}

.pd-main-image img,
.main-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-gallery:hover .pd-main-image img {
    transform: scale(1.02);
}

.pd-image-label {
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #b5b0a8;
}

.pd-thumbnails {
    display: flex;
    gap: 12px;
}

.pd-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 88px;
    padding: 0;
    border: 1px solid transparent;
    background-color: #ebe9e6;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.25s ease, opacity 0.25s ease;
    opacity: 0.65;
}

.pd-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pd-thumb:hover {
    opacity: 1;
}

.pd-thumb.active {
    border-color: #1a1a1a;
    opacity: 1;
}

.product-info-panel {
    position: sticky;
    top: 120px;
    padding: 0.5rem 0 2rem;
}

.pd-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8a8580;
    margin: 0 0 1rem;
}

.product-title-large {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    text-transform: none;
    color: #1a1a1a;
}

.pd-tagline {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #777;
    margin: 0 0 1.75rem;
    line-height: 1.6;
}

.pd-price-block {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #e8e6e3;
}

.product-price-large {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin: 0 0 0.35rem;
    color: #1a1a1a;
}

.pd-price-previous {
    margin-right: 0.65rem;
    color: #999;
    font-size: 0.82em;
    font-weight: 400;
    text-decoration: line-through;
}

.pd-price-current {
    color: #111;
    font-weight: 600;
}

.pd-price-note {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #999;
    text-transform: uppercase;
}

.pd-offer-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: -0.5rem 0 1.5rem;
    padding: 1rem;
    background: #f4f1ec;
    border: 1px solid #e6ded2;
}

.pd-offer-panel strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #1a1a1a;
}

.pd-offer-kicker {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8a8075;
}

.pd-offer-code {
    flex: 0 0 auto;
    padding: 0.55rem 0.75rem;
    border: 1px solid #1a1a1a;
    background: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #1a1a1a;
}

.pd-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.pd-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
}

.pd-trust-item .material-icons {
    font-size: 16px;
    color: #1a1a1a;
}

.pd-confidence-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.pd-confidence-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #555;
}

.pd-confidence-item .material-icons {
    font-size: 17px;
    color: #1a1a1a;
}

.color-selection,
.size-selection {
    margin-bottom: 1.75rem;
}

.selection-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #888;
}

.selection-label strong {
    color: #1a1a1a;
    font-weight: 500;
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.25s ease, outline-color 0.25s ease;
    padding: 0;
}

.color-swatch:hover {
    transform: scale(1.08);
}

.color-swatch.active {
    outline-color: #1a1a1a;
    outline-width: 2px;
    transform: scale(1.05);
}

.size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.size-header .selection-label {
    margin-bottom: 0;
}

.size-guide-link {
    font-size: 10px;
    color: #888;
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.size-guide-link:hover {
    color: #000;
    border-color: #000;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(6, minmax(54px, 1fr));
    gap: 8px;
}

.size-btn {
    min-width: 0;
    min-height: 54px;
    padding: 8px 6px;
    background: #fff;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.25s ease;
}

.size-value {
    display: block;
    line-height: 1;
}

.size-btn:hover {
    border-color: #1a1a1a;
}

.size-btn.active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.size-btn:disabled {
    color: #9a9a9a;
    background: repeating-linear-gradient(135deg, #f6f6f6 0, #f6f6f6 6px, #f0f0f0 6px, #f0f0f0 12px);
    border-color: #e4e4e4;
    cursor: not-allowed;
    text-decoration: none;
    opacity: 1;
}

.size-stock {
    display: block;
    margin-top: 5px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.pd-size-hint {
    font-size: 11px;
    color: #999;
    margin: 0.75rem 0 0;
    letter-spacing: 0.04em;
}

.add-to-cart-large {
    width: 100%;
    padding: 1.15rem 1.5rem;
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.add-to-cart-large .material-icons {
    font-size: 18px;
}

.add-to-cart-large:hover {
    background-color: #fff;
    color: #1a1a1a;
}

.pd-cta-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: -0.35rem 0 1rem;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c675f;
}

.pd-cta-support .material-icons {
    font-size: 15px;
    color: #1a1a1a;
}

.pd-shipping-note {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.pd-payment-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 2.5rem;
}

.pd-payment-row span {
    padding: 0.45rem 0.6rem;
    border: 1px solid #e5e3e0;
    background: #fff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #777;
}

.product-description-accordion {
    border-top: 1px solid #e5e3e0;
}

.accordion-item {
    border-bottom: 1px solid #e5e3e0;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    color: #1a1a1a;
    text-align: left;
}

.accordion-icon {
    font-size: 14px;
    font-weight: 300;
    flex-shrink: 0;
}

.accordion-content {
    padding: 0 0 1.25rem;
    font-size: 13px;
    line-height: 1.85;
    color: #555;
}

.accordion-content[hidden] {
    display: none;
}

.accordion-item.is-open .accordion-content {
    display: block;
}

.pd-desc-lead {
    font-size: 14px;
    color: #444;
    margin: 0 0 1rem;
    font-weight: 400;
}

#pd-desc-text {
    margin: 0 0 1rem;
}

.pd-features {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pd-features li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 12px;
    letter-spacing: 0.03em;
    color: #666;
}

.pd-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: #1a1a1a;
    border-radius: 50%;
}

.pd-craft {
    background: #1a1a1a;
    color: #f5f3f0;
    margin: 0 calc(-1 * clamp(20px, 4vw, 48px)) 4rem;
    padding: clamp(48px, 8vw, 72px) clamp(24px, 5vw, 64px);
}

.pd-craft-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
}

.pd-craft-eyebrow {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #9a9590;
    margin: 0 0 1rem;
}

.pd-craft-text h2 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 0 0 1rem;
    color: #fff;
}

.pd-craft-text p {
    font-size: 13px;
    line-height: 1.9;
    color: #b8b4af;
    max-width: 480px;
    margin: 0;
}

.pd-craft-stats {
    display: flex;
    gap: clamp(2rem, 5vw, 4rem);
}

.pd-craft-stats div {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pd-craft-stats strong {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    line-height: 1;
}

.pd-craft-stats span {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a8580;
}

.pd-related {
    padding-bottom: 4rem;
}

.pd-related-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pd-related-eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 0.5rem;
}

.pd-related-header h2 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin: 0;
    color: #1a1a1a;
}

.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.pd-related-card {
    text-decoration: none;
    color: inherit;
    display: block;
    min-width: 0;
    transition: opacity 0.3s ease;
}

.pd-related-card:hover {
    opacity: 0.85;
}

.pd-related-image-box {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #ebe9e6;
    margin-bottom: 1rem;
}

.pd-related-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.pd-related-card h3 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 0 0 0.35rem;
    text-transform: uppercase;
}

.pd-related-card p {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    color: #1a1a1a;
}

.pd-mobile-sticky-cta {
    display: none;
}

@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }

    .product-info-panel {
        position: static;
    }

    .pd-craft-inner {
        grid-template-columns: 1fr;
    }

    .pd-craft-stats {
        flex-wrap: wrap;
    }

    .pd-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .product-detail-page {
        padding-bottom: 92px;
    }

    .pd-main-image,
    .main-image-placeholder {
        aspect-ratio: 4 / 5;
        max-height: none;
    }

    .pd-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .pd-trust-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .pd-trust-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.75rem 0.45rem;
        background: #fff;
        border: 1px solid #eee;
        font-size: 8px;
        letter-spacing: 0.08em;
    }

    .pd-offer-panel {
        align-items: flex-start;
        margin-top: -0.25rem;
    }

    .pd-offer-panel strong {
        font-size: 12px;
        line-height: 1.45;
    }

    .pd-mobile-sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 900;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid #e5e3e0;
        box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(12px);
    }

    .pd-mobile-sticky-cta span {
        display: block;
        max-width: 42vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 9px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #777;
    }

    .pd-mobile-sticky-cta strong {
        display: block;
        margin-top: 0.2rem;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.06em;
        color: #1a1a1a;
    }

    .pd-sticky-cta-button {
        flex: 0 0 auto;
        min-width: 150px;
        padding: 0.95rem 1.1rem;
        border: 1px solid #1a1a1a;
        background: #1a1a1a;
        color: #fff;
        font-family: inherit;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .size-options {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .size-btn {
        width: 100%;
    }
}

/* ÖDEME SAYFASI (CHECKOUT) */
.checkout-page {
    background-color: #fafafa;
    min-height: 100vh;
    padding-bottom: 80px;
}

.checkout-header {
    background: #fff;
    padding: 25px 40px;
    border-bottom: 1px solid #eee;
    text-align: center;
    margin-bottom: 40px;
}

.checkout-header .nav-logo a {
    font-size: 20px;
    letter-spacing: 5px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    padding: 0 40px;
}

.checkout-form-section {
    flex: 1.5;
}

.checkout-summary-section {
    flex: 1;
}

.checkout-block {
    background: #fff;
    padding: 40px;
    margin-bottom: 25px;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.checkout-block-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
}

.checkout-input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 12px;
    outline: none;
    transition: border-color 0.3s;
}

.checkout-input:focus {
    border-color: #000;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method {
    flex: 1;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.payment-method.active {
    border-color: #000;
    background: #000;
    color: #fff;
}

/* özet Alanı */
.order-summary-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.order-summary-item .img-box {
    width: 70px;
    height: 90px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #888;
}

.order-summary-details {
    flex: 1;
}

.order-summary-details h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.order-summary-details p {
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
}

.summary-totals {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #555;
    margin-bottom: 15px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #000;
}

.complete-order-btn {
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 25px;
    transition: background 0.3s;
}

.complete-order-btn:hover {
    background: #222;
}

@media (max-width: 992px) {
    .checkout-container {
        flex-direction: column-reverse;
}
}

/* PROFIL SAYFASI */
.profile-page {
    background-color: #fafafa;
    min-height: calc(100vh - 80px);
    padding: 160px 40px 60px 40px; /* Navbar'ın altında kalmaması için üstten ekstra boşluk eklendi */
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.profile-sidebar {
    flex: 0 0 300px;
}

.profile-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-email {
    font-size: 12px;
    color: #666;
    margin-bottom: 30px;
}

.logout-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #000;
    border: 1px solid #000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: #000;
    color: #fff;
}

.profile-content {
    flex: 1;
}

.profile-section-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.customer-order-card {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.order-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.order-header-item {
    display: flex;
    flex-direction: column;
}

.order-header-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.order-header-value {
    font-size: 13px;
    font-weight: 600;
}

.order-detail-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -4px 0 16px;
    padding: 12px 0;
    border: 0;
    border-top: 1px solid #eee9e2;
    border-bottom: 1px solid #eee9e2;
    background: transparent;
    color: #5f5a54;
    font-family: inherit;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.order-detail-toggle:hover,
.order-detail-toggle[aria-expanded="true"] {
    color: #1a1a1a;
    border-color: #d9d2c8;
}

.order-detail-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #d9d2c8;
    color: #1a1a1a;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 500;
}

.order-detail-panel {
    margin: -2px 0 18px;
    padding: 18px 20px;
    border: 1px solid #ece8e1;
    background: #faf9f7;
}

.order-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
}

.order-detail-title {
    margin-bottom: 8px;
    color: #777;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.order-detail-text {
    color: #1a1a1a;
    font-size: 12px;
    line-height: 1.8;
}

.order-progress {
    position: relative;
    margin: 20px 0 22px;
    padding: 0 4px;
}

.order-progress-track {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 15px;
    height: 2px;
    background: #e8e3dc;
}

.order-progress-fill {
    position: absolute;
    left: 24px;
    top: 15px;
    height: 2px;
    background: #1f8f4d;
    transition: width 0.3s ease;
}

.order-progress.is-cancelled .order-progress-fill {
    background: #b42318;
}

.order-progress-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.order-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 0;
    text-align: center;
    color: #aaa;
}

.order-progress-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #d8d2c9;
    background: #fff;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 1;
}

.order-progress-step.is-done,
.order-progress-step.is-current {
    color: #1f8f4d;
}

.order-progress-step.is-done .order-progress-dot,
.order-progress-step.is-current .order-progress-dot {
    background: #1f8f4d;
    border-color: #1f8f4d;
    color: #fff;
}

.order-progress.is-cancelled .order-progress-step.is-current .order-progress-dot {
    background: #b42318;
    border-color: #b42318;
}

.order-progress-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.35;
    text-transform: uppercase;
}

.order-products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-product-img {
    width: 60px;
    height: 80px;
    background: #faf9f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #888;
    overflow: hidden;
    border: 1px solid #eee;
    flex: 0 0 60px;
}

.order-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.order-product-info {
    flex: 1;
}

.order-product-info h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.order-product-info p {
    font-size: 11px;
    color: #666;
}

@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
    }
    .profile-sidebar {
        flex: none;
    }
    .order-header {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .order-detail-grid {
        grid-template-columns: 1fr;
    }
    .order-progress-label {
        font-size: 9px;
    }
}

/* İLETİŞİM SAYFASI (CONTACT PAGE) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info-panel h2,
.contact-form-panel h2 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
    border-bottom: 1px solid #111;
    padding-bottom: 15px;
}

.contact-form-group {
    position: relative;
    margin-bottom: 35px;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
    font-family: inherit;
    font-size: 13px;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
    color: #000;
}

.contact-form-group textarea {
    height: 120px;
    resize: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
    border-bottom: 1px solid #000;
}

.contact-form-group label {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s;
    text-transform: uppercase;
}

/* Floating labels effect */
.contact-form-group input:focus ~ label,
.contact-form-group input:not(:placeholder-shown) ~ label,
.contact-form-group textarea:focus ~ label,
.contact-form-group textarea:not(:placeholder-shown) ~ label {
    top: -12px;
    font-size: 10px;
    color: #000;
    font-weight: 600;
}

.contact-submit-btn {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 18px 0;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background-color: #222;
}

.contact-submit-btn:active {
    transform: scale(0.99);
}

.map-container {
    width: 100%;
    height: 280px;
    margin-top: 40px;
    filter: grayscale(100%) invert(0%) contrast(100%);
    border: 1px solid #eee;
    transition: filter 0.5s;
}

.map-container:hover {
    filter: grayscale(0%);
}

/* SALES READINESS POLISH */
.editorial-product,
.category-item .img-placeholder,
.product-image-box .img-placeholder,
.main-image-placeholder {
    background-image:
        linear-gradient(145deg, rgba(0, 0, 0, 0.04), rgba(255, 255, 255, 0.35)),
        url('/images/mainpicture.webp');
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.product-visual-1 { background-position: center top; }
.product-visual-2 { background-position: 35% center; }
.product-visual-3 { background-position: 62% center; }
.product-visual-4 { background-position: center bottom; }

#home-featured-products .home-featured-loading {
    background-image: linear-gradient(110deg, #f4f2ef 0%, #faf9f7 42%, #f0ede8 76%);
    background-size: 220% 100%;
    animation: homeFeaturedSkeleton 1.4s ease-in-out infinite;
    color: transparent !important;
    text-shadow: none !important;
}

#home-featured-products .home-featured-loading span {
    display: none;
}

@keyframes homeFeaturedSkeleton {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.products-container .product-image-box .img-placeholder,
.products-container .img-placeholder {
    background-image: none !important;
    background-color: #f6f6f6;
    color: transparent;
    text-shadow: none;
}

.home-quick-add {
    position: static;
    width: 100%;
    margin-top: 16px;
    opacity: 1;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.product-card:hover .home-quick-add {
    background: #222;
}

.product-card .product-title {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .marquee-serit {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .marquee-grup {
        min-width: max-content;
        animation-duration: 55s;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 18px;
    }

    .nav-logo {
        order: -1;
        width: 100%;
        text-align: center;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        flex: 1 1 100%;
        gap: 16px;
        flex-wrap: wrap;
    }

    .right-menu {
        justify-content: center;
    }

    .luxury-nav-text {
        white-space: normal;
        text-align: center;
        line-height: 1.6;
    }

    .hero-section {
        margin-top: 130px;
        height: 72vh;
    }

    .hero-content h1 {
        font-size: 1.7rem;
        letter-spacing: 3px;
        padding: 0 20px;
    }

    .featured-products,
    .lookbook-section,
    .usp-section,
    .info-banner {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .featured-products > div:first-child {
        padding: 0 !important;
        gap: 16px;
        align-items: flex-start !important;
        flex-direction: column;
    }

    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 34px;
    }

    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 34px;
        padding: 42px 22px;
    }

    .img-placeholder {
        height: 420px;
    }

    .lookbook-inner,
    .usp-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .lookbook-inner > div:first-child {
        height: 420px !important;
    }

    .home-newsletter-form {
        flex-direction: column;
        gap: 10px !important;
    }

    .home-newsletter-form input,
    .home-newsletter-form button {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Admin panel kilidi & giriş */
body.admin-locked .admin-sidebar,
body.admin-locked .admin-main {
    visibility: hidden;
    pointer-events: none;
}

body.admin-locked::before {
    content: "Yetki doğrulanıyor…";
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7f6;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #888;
}

.admin-giris-page {
    min-height: 100vh;
    background: linear-gradient(160deg, #f7f5f2 0%, #ebe8e4 100%);
}

.admin-giris-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.admin-giris-box {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 48px 40px;
    border: 1px solid #e8e6e3;
    text-align: center;
}

.admin-giris-eyebrow {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 12px;
}

.admin-giris-box h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
    color: #1a1a1a;
}

.admin-giris-sub {
    font-size: 13px;
    line-height: 1.7;
    color: #777;
    margin: 0 0 28px;
}

.admin-giris-uyari {
    background: #fff5f5;
    border: 1px solid #f0d4d4;
    color: #a33;
    font-size: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.5;
}

.admin-giris-btn {
    width: 100%;
    margin-bottom: 20px;
}

.admin-giris-back {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
}

.admin-giris-back:hover {
    color: #000;
    border-color: #000;
}

/* ============================================================
   MOBİL KATALOG SAYFASI DÜZELTMELERİ (sort / tisort / pantolon)
   ============================================================ */

/* --- GENEL KATALOG MOBİL DÜZELTME --- */
@media (max-width: 768px) {

    /* Navbar: kampanya çubuğu yazısını sar */
    .nav-promo-item {
        padding: 8px 12px;
        flex-wrap: wrap;
        text-align: center;
    }
    .luxury-nav-text {
        white-space: normal;
        font-size: 10px;
        letter-spacing: 1.5px;
        line-height: 1.6;
        text-align: center;
    }

    /* Navbar menü: logo üstte, linkler altta */
    .nav-container {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 16px;
    }
    .nav-logo {
        order: -1;
        width: 100%;
        text-align: center;
    }
    .nav-logo a {
        font-size: 20px;
        letter-spacing: 4px;
    }
    .nav-links {
        display: flex;
        justify-content: center;
        flex: 1 1 100%;
        gap: 14px;
        flex-wrap: wrap;
    }
    .nav-links a {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    .right-menu {
        justify-content: center;
    }

    /* Katalog sayfası: üstten padding azalt */
    .catalog-page {
        margin-top: 80px;
        padding: 0 16px;
    }

    /* Catalog header */
    .catalog-header {
        margin-top: 20px !important;
        padding: 30px 0 20px;
    }
    .catalog-header h1 {
        font-size: 18px !important;
        letter-spacing: 4px !important;
        margin-bottom: 12px !important;
    }
    .catalog-header p {
        font-size: 12px !important;
    }

    /* Filtre barı: dikey düzen */
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
        margin-bottom: 28px !important;
    }
    .filter-btn {
        padding: 10px 24px;
        font-size: 10px;
    }
    .sort-options select {
        font-size: 10px;
        padding: 8px 20px 8px 4px;
    }

    /* Ürün ızgarası: 2 sütun */
    .products-container,
    section.products-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px 12px !important;
        padding: 0;
    }

    .product-image-box {
        aspect-ratio: 3 / 4;
    }

    /* Ürün görseli yüksekliği küçük ekranda orantılı */
    .product-image-box .img-placeholder,
    .products-container .img-placeholder {
        height: 100% !important;
    }

    /* Ürün görseli gerçek img ise */
    .product-image-box img {
        height: 100% !important;
        padding: 0;
    }

    /* Ürün detay yazıları */
    .product-details {
        padding: 10px 0 0;
    }
    .product-title {
        font-size: 11px !important;
        letter-spacing: 0.5px !important;
    }
    .product-price {
        font-size: 12px !important;
    }
    .brand-name {
        font-size: 9px !important;
    }

    /* Sepete Ekle / İncele butonu: mobilde her zaman görünür */
    .quick-add {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        opacity: 1;
        font-size: 9px;
        padding: 10px 4px;
        letter-spacing: 0.5px;
        background: rgba(0,0,0,0.85);
        color: #fff;
        border: none;
        margin-top: 0;
    }

    /* "Daha Fazla Göster" butonu */
    .catalog-page > div[style*="text-align: center"] a {
        padding: 13px 28px !important;
        font-size: 10px !important;
    }

    /* Info banner: dikey */
    .info-banner {
        flex-direction: column;
        gap: 32px;
        padding: 60px 24px !important;
    }
    .info-item span {
        font-size: 12px;
    }

    /* Footer: tek sütun */
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 36px;
        text-align: center;
    }
    .footer-column ul {
        padding: 0;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
        border-bottom: none;
    }
    .newsletter-form input {
        border-bottom: 1px solid #333;
        text-align: center;
    }
    .newsletter-form button {
        border: 1px solid #555;
        padding: 10px;
    }
    .footer-socials {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .main-footer {
        padding: 60px 20px 30px;
    }
}

/* --- ÇOK KÜÇÜK EKRAN (≤ 400px): tek sütun --- */
@media (max-width: 400px) {
    .products-container,
    section.products-container {
        grid-template-columns: 1fr !important;
        gap: 40px 0 !important;
    }
    .product-image-box .img-placeholder,
    .products-container .img-placeholder,
    .product-image-box img {
        height: 100% !important;
    }
}

/* CookieYes - Juistin theme */
.cky-consent-container,
.cky-modal,
.cky-preference-center,
.cky-audit-table {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif !important;
    color: #111 !important;
}

.cky-consent-bar {
    max-width: 560px !important;
    border: 1px solid rgba(17, 17, 17, 0.16) !important;
    border-radius: 0 !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 24px !important;
}

.cky-title,
.cky-preference-title {
    color: #000 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.22em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

.cky-notice-des,
.cky-notice-des *,
.cky-preference-content-wrapper,
.cky-accordion-header-des,
.cky-cookie-des-table,
.cky-audit-table {
    color: #5f5f5f !important;
    font-size: 12px !important;
    line-height: 1.8 !important;
}

.cky-notice-des a,
.cky-preference-content-wrapper a {
    color: #000 !important;
    font-weight: 600 !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}

.cky-notice-btn-wrapper,
.cky-prefrence-btn-wrapper {
    gap: 10px !important;
}

.cky-btn {
    min-height: 44px !important;
    border-radius: 0 !important;
    border-width: 1px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.cky-btn-accept,
.cky-btn-preferences,
.cky-btn-save {
    border-color: #000 !important;
    background: #000 !important;
    color: #fff !important;
}

.cky-btn-accept:hover,
.cky-btn-preferences:hover,
.cky-btn-save:hover {
    background: #262626 !important;
    border-color: #262626 !important;
}

.cky-btn-reject,
.cky-btn-customize,
.cky-btn-preferences:not(.cky-btn-save) {
    border-color: rgba(17, 17, 17, 0.22) !important;
    background: #fff !important;
    color: #111 !important;
}

.cky-btn-reject:hover,
.cky-btn-customize:hover {
    border-color: #000 !important;
    background: #f6f4f0 !important;
}

.cky-modal {
    background: rgba(0, 0, 0, 0.42) !important;
}

.cky-preference-center {
    border-radius: 0 !important;
    border: 1px solid rgba(17, 17, 17, 0.18) !important;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22) !important;
}

.cky-preference-header,
.cky-preference-body-wrapper,
.cky-footer-wrapper {
    background: #fff !important;
    border-color: rgba(17, 17, 17, 0.12) !important;
}

.cky-accordion {
    border-color: rgba(17, 17, 17, 0.12) !important;
}

.cky-accordion-btn {
    color: #000 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

.cky-switch input[type="checkbox"]:checked {
    background: #000 !important;
}

.cky-switch input[type="checkbox"]:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.18) !important;
}

.cky-btn-close,
.cky-show-desc-btn {
    color: #000 !important;
}

.cky-btn-revisit-wrapper,
.cky-revisit-bottom-left,
.cky-revisit-bottom-right {
    display: none !important;
}

.cky-revisit-bottom-left {
    left: 20px !important;
    bottom: 20px !important;
}

.cky-revisit-bottom-right {
    right: 20px !important;
    bottom: 20px !important;
}

.cky-btn-revisit-wrapper .cky-btn-revisit {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #000 !important;
}

.cky-btn-revisit-wrapper:hover,
.cky-btn-revisit-wrapper .cky-btn-revisit:hover {
    background: #262626 !important;
}

.cky-btn-revisit-wrapper img,
.cky-btn-revisit-wrapper svg,
.cky-btn-revisit-wrapper .cky-btn-revisit img,
.cky-btn-revisit-wrapper .cky-btn-revisit svg {
    filter: grayscale(1) brightness(0) invert(1) !important;
}

.cky-btn-revisit-wrapper svg path,
.cky-btn-revisit-wrapper svg circle,
.cky-btn-revisit-wrapper svg rect {
    fill: #fff !important;
    stroke: #fff !important;
}

.cky-powered-by,
.cky-powered-by a,
.cky-footer-wrapper a {
    color: #777 !important;
}

@media (max-width: 768px) {
    .cky-consent-container {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        width: auto !important;
    }

    .cky-consent-bar {
        max-width: none !important;
        padding: 20px !important;
    }

    .cky-notice-btn-wrapper,
    .cky-prefrence-btn-wrapper {
        flex-direction: column !important;
    }

    .cky-btn {
        width: 100% !important;
        margin: 0 !important;
    }

    .cky-revisit-bottom-left {
        left: 14px !important;
        bottom: 14px !important;
    }

    .cky-revisit-bottom-right {
        right: 14px !important;
        bottom: 14px !important;
    }
}

/* Minimal storefront header and full-screen home hero */
.lv-navbar {
    height: 84px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.32s ease, background-color 0.32s ease;
}

.home-page .lv-navbar {
    background: rgba(24, 24, 23, 0.50);
    border-bottom-color: transparent;
}

.home-page .lv-navbar .nav-logo a,
.home-page .lv-navbar .right-menu a,
.home-page .minimal-account-link {
    color: #fff;
}

.home-page .minimal-menu-toggle span {
    background: #fff;
}

.lv-navbar.nav-hidden {
    transform: translateY(-100%);
}

.lv-navbar .nav-promo-item {
    display: none;
}

.lv-navbar .nav-container {
    position: relative;
    height: 84px;
    max-width: none;
    padding: 0 32px;
}

.lv-navbar .nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    text-align: center;
}

.lv-navbar .nav-logo a {
    color: #111;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 7px;
    line-height: 1;
}

.lv-navbar .left-menu {
    display: none;
}

.lv-navbar .right-menu {
    align-items: center;
    gap: 18px;
    margin-left: auto;
    flex: 0 0 auto;
}

.lv-navbar .right-menu > li:last-child {
    display: none;
}

.lv-navbar .right-menu a {
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#sepet-tetikleyici {
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -9px;
    right: -11px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.cart-count-badge[hidden] {
    display: none;
}

.lv-navbar .right-menu .material-icons {
    font-size: 18px;
    font-weight: 300;
}

.minimal-menu-toggle {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.minimal-menu-toggle span {
    position: absolute;
    left: 0;
    width: 21px;
    height: 1px;
    background: #111;
}

.minimal-menu-toggle span:first-child {
    top: 9px;
}

.minimal-menu-toggle span:nth-child(2) {
    top: 16px;
}

.minimal-menu-toggle span:last-child {
    top: 23px;
}

.minimal-account-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 0;
    color: #111;
    text-decoration: none;
}

.minimal-account-link .material-icons {
    font-size: 21px;
    font-weight: 300;
}

.minimal-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 10002;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.minimal-search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.minimal-search-panel {
    padding: 20px 28px;
    background: #fff;
    transform: translateY(-100%);
    transition: transform 0.28s ease;
}

.minimal-search-overlay.active .minimal-search-panel {
    transform: translateY(0);
}

.minimal-search-form {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 900px;
    min-height: 54px;
    margin: 0 auto;
    border-bottom: 1px solid #111;
}

.minimal-search-form .material-icons {
    color: #111;
    font-size: 20px;
}

.minimal-search-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 1.4px;
}

.minimal-search-form button {
    border: 0;
    background: transparent;
    color: #111;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.minimal-search-close {
    font-size: 25px !important;
    font-weight: 300 !important;
    line-height: 1;
}

.minimal-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.minimal-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.minimal-menu-drawer {
    position: fixed;
    top: 0;
    left: -360px;
    z-index: 10001;
    width: min(360px, 88vw);
    height: 100vh;
    padding: 28px 30px;
    background: #fff;
    color: #171717;
    transition: left 0.32s ease;
}

.minimal-menu-drawer.active {
    left: 0;
}

.minimal-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid #ddd8d1;
    font-size: 10px;
    letter-spacing: 3px;
}

.minimal-menu-close {
    border: 0;
    background: transparent;
    color: #171717;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.minimal-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
}

.minimal-menu-links a {
    color: #171717;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
}

.home-page .hero-section {
    height: 100vh;
    min-height: 620px;
    margin-top: 0;
    background: #0b0b0b;
}

.home-page .hero-image-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .hero-image-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

.home-page .hero-fallback-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-page .hero-video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-top-color: #fff;
    border-radius: 50%;
    animation: heroVideoSpin 0.9s linear infinite;
}

.home-page .hero-background-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.home-page .hero-video-ready .hero-background-video {
    opacity: 1;
}

.home-page .hero-video-ready .hero-video-loader,
.home-page .hero-video-failed .hero-video-loader {
    display: none;
}

.home-page .hero-video-failed .hero-background-video {
    display: none;
}

@keyframes heroVideoSpin {
    to {
        transform: rotate(360deg);
    }
}

.home-page .hero-content {
    position: absolute;
    bottom: 46px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.home-page .hero-shop-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(262px, 70vw);
    min-height: 47px;
    border-bottom: 1px solid transparent;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    line-height: 21px;
    text-decoration: none;
}

.home-page .hero-shop-link:hover {
    border-bottom-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .lv-navbar,
    .lv-navbar .nav-container {
        height: 72px;
    }

    .lv-navbar .nav-container {
        flex-wrap: nowrap;
        gap: 0;
        padding: 0 20px;
    }

    .lv-navbar .nav-logo {
        position: absolute;
        order: initial;
        width: auto;
    }

    .lv-navbar .nav-logo a {
        font-size: 17px;
        letter-spacing: 5px;
    }

    .lv-navbar .right-menu {
        display: flex;
        flex: 0 0 auto;
        gap: 14px;
        flex-wrap: nowrap;
    }

    .home-page .hero-section {
        height: 100svh;
        min-height: 560px;
        margin-top: 0;
        background-position: center center;
    }

    .home-page .hero-content {
        bottom: 34px;
    }

    .home-page .featured-products {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media (max-width: 992px) {
    .home-page .home-product-grid {
        grid-auto-columns: calc((100% - 14px) / 2);
        grid-template-columns: none !important;
        gap: 32px 14px !important;
    }

    .home-page .home-quick-add {
        position: static;
        margin-top: auto;
    }
}

@media (max-width: 480px) {
    .home-page .home-product-grid {
        grid-auto-columns: 78vw;
    }
}
