/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --dark: #0a0a0a;
    --charcoal: #1c1c1c;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

textarea {
    resize: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

/* --- LOADER --- */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.loader-text {
    color: var(--gold);
    font-family: 'Playfair Display';
    font-size: 2rem;
    letter-spacing: 5px;
    animation: pulse 2s infinite;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    /* Yeni eklemeler */
    left: 0;
    right: 0;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem 4rem;
    backdrop-filter: blur(10px);
}

/* İkonlar için sabit genişlik */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    /* İkonlar arası boşluk */
    min-width: 120px;
    /* Minimum genişlik */
}

.header-icons i {
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    width: 24px;
    /* Sabit genişlik */
    height: 24px;
    /* Sabit yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icons i:hover {
    color: var(--gold);
    transform: scale(1.1);
    /* Hover'da hafif büyüme */
}




.logo span {
    color: var(--gold);
}

.logo {
    size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    /* Satır atlamasını engelle /
min-width: 250px; / Minimum genişlik */
}

/* Nav için flex ayarları */
nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    position: relative;
    white-space: nowrap;
    /* Satır atlamasını engelle */
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: var(--gold);
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}


header.dark-header {
    background-color: var(--dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #0a0a0a;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-style: italic;
}

.btn-gold {
    padding: 1rem 3rem;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--dark);
}

/* --- SECTIONS GLOBAL --- */
section {
    padding: 0rem 3rem;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}



/* --- BANNER / PARALLAX --- */
.luxury-banner {
    background: url('https://images.unsplash.com/photo-1631679706909-1844bbd07221?q=80&w=1920&auto=format&fit=crop') fixed center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10%;
    position: relative;
}

.banner-content {
    background: var(--white);
    padding: 4rem;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* --- CONTACT / FOOTER --- */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: #888;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.newsletter input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 10px 0;
    width: 100%;
    color: var(--white);
    margin-bottom: 1rem;
    outline: none;
}

.newsletter button {
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 2rem;
    color: #555;
    font-size: 0.8rem;
}

/* ANIMATIONS */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}






/* --- SIDEBAR CART (Sağdan Çıkan Sepet) --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    /* Lüks kayma hissi */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cart-item-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-details span {
    color: var(--gold);
}

.cart-footer {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    background: #fff;
    padding-bottom: 2rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: var(--gold);
    color: var(--dark);
}


.cart-summary-box {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #666;
}

/* Genel Toplam Satırı (En alt) */
.cart-total-row.big {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.cart-total-row.big span:last-child {
    color: var(--gold);
}



/* --- COLLECTION PAGE STYLES --- */
.collection-header {
    padding: 150px 4rem 50px;
    /* Header payı */
    text-align: center;
    background: #f9f9f9;
}

.collection-filters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.filter-btn {
    background: none;
    border: none;
    font-family: 'Montserrat';
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--dark);
    font-weight: 600;
}

/* --- AUTH MODAL (Giriş/Kayıt) --- */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    /* Lüks cam efekti */
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}

.auth-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-container {
    background: var(--white);
    width: 900px;
    height: 600px;
    display: flex;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: scale(0.95);
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.auth-overlay.active .auth-container {
    transform: scale(1);
}

.close-auth {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    color: #aaa;
    transition: 0.3s;
}

.close-auth:hover {
    color: var(--gold);
}


.auth-visual {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?q=80&w=800&auto=format&fit=crop') center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.auth-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.auth-quote {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.auth-quote h3 {
    font-family: 'Playfair Display';
    font-size: 2rem;
    margin-bottom: 10px;
    font-style: italic;
}

.auth-quote p {
    font-family: 'Montserrat';
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
}


.auth-forms-wrapper {
    flex: 1;
    position: relative;
    align-items: center;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-box {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s ease;
    opacity: 1;
    pointer-events: all;
}


.auth-form-box.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -40%);
}

.auth-title {
    font-family: 'Playfair Display';
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-family: 'Montserrat';
    font-size: 1rem;
    background: transparent;
    transition: 0.3s;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #999;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.3s ease;
}

.input-group input:focus,
.input-group input:valid {
    border-bottom-color: var(--gold);
}


.input-group input:not(:placeholder-shown)+label {
    top: -12px;
    font-size: 0.75rem;
    color: var(--gold);
}

.auth-btn {
    width: 100%;
    padding: 1rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.auth-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.toggle-text {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.toggle-text span {
    color: var(--gold);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.social-login {
    margin-top: 2rem;
    text-align: center;
}

.social-login p {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 1rem;
}

.social-icons i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #555;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}




/* --- ABOUT PAGE STYLES --- */
.about-content-wrapper {
    border-radius: 0.9rem;
    background-color: #ffffff;
    padding: 1.2rem;
}

.about-premium-section {
    padding: 4rem 0;
    /* Hero'dan sonra yumuşak geçiş için temiz beyaz */
    background-color: #f3eeee;
    overflow: hidden;
}

.max-w-1400 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

/* GÖRSELLER */
.about-images-wrapper {
    position: relative;
    height: 380px;
}

.image-main {
    width: 85%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    /* Karanlık filtreyi kaldırdık, daha canlı */
    box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.03);
    /* Çok hafif gölge deseni */
}

.image-accent {
    position: absolute;
    bottom: -25px;
    right: 0;
    width: 45%;
    height: 55%;
    z-index: 2;
    border: 5px solid #fff;
    /* Çerçeve beyaz oldu */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Yumuşak gölge */
}

.image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.section-subtitle-gold {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
}

.section-title-luxe {
    font-size: 2.2rem;
    color: var(--dark);
    /* Başlık Siyah */
    line-height: 1.25;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}


.about-text-block p {
    color: #555;
    /* Metin Koyu Gri */
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.brand-signature {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    /* İmza Siyah */
    font-size: 1.3rem;
    font-style: italic;
}

.signature-block {
    margin-top: 2rem;
}




/* --- PAGE HEADER (Alt Sayfalar İçin Kapak) --- */
.page-header {
    width: 100%;
    background: var(--white);
    padding-top: 100px;
    text-align: center;

}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeUp 0.5s forwards;
}

.breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--gold);
    display: block;
}

.header-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    line-height: 1.1;
    margin: 0;
}


.header-content p {
    display: none;
}

.breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
}



/* --- CONTACT SECTION DÜZENLEMESİ --- */
/* Başlık beyaz olunca formun yukarı binmesine gerek kalmadı, bu alanı sadeleştiriyoruz */
.contact-section-modern {
    padding: 2rem 2rem 5rem;
    /* Üst padding'i azalttık */
    background: var(--white);
    /* Arka plan uyumu */
    position: relative;
    z-index: 5;
}

/* Contact Wrapper'ın gölgesini biraz daha yumuşatalım ki beyaz üstünde sert durmasın */
.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    /* Daha soft, yayılan bir gölge */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    /* Köşeleri biraz daha yumuşattık */
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #f0f0f0;
    /* Hafif çerçeve */
}

/* Sol Taraf: Koyu Bilgi Alanı */
.contact-info-side {
    flex: 1;
    background: var(--dark);
    color: var(--white);
    padding: 2rem;
    position: relative;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Desen yerine düz renk */
.contact-info-side::before {
    display: none;
}

.info-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.info-header p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.info-details .item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-details .icon-box {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.info-details .item:hover .icon-box {
    background: var(--gold);
    color: var(--dark);
}

.info-text h5 {
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    color: var(--white);
}

.info-text p,
.info-text a {
    color: #bbb;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
}

.info-text a:hover {
    color: var(--gold);
}

/* Sağ Taraf: Form Alanı */
.contact-form-side {
    flex: 1.5;
    background: var(--white);
    padding: 4rem;
    min-width: 350px;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-header span {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.8rem;
}




/* --- DOĞRULAMA MODALI STİLLERİ --- */
.verification-box {
    background: var(--white);
    width: 450px;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeUp 0.5s ease;
}

.verify-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    /* Gold transparan */
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.verification-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.verification-box p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.verification-box .sub-text {
    font-size: 0.85rem;
    color: #888;
}

.mobile-nav {
    display: none;
}





/* --- ŞİFRE GÖSTER/GİZLE İKONU --- */
.input-group .toggle-pass-icon {
    position: absolute;
    right: 0;
    top: 10px;
    /* Input padding ile uyumlu */
    cursor: pointer;
    color: #999;
    font-size: 1rem;
    z-index: 10;
    transition: color 0.3s;
}

.input-group .toggle-pass-icon:hover {
    color: var(--gold);
}

/* Şifre alanı ikonun altında kalmasın diye sağdan boşluk bırakıyoruz */
.input-group input[type="password"],
.input-group input[type="text"] {
    padding-right: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    section {
        padding: 0.5rem 0.5rem;
    }

    /* HERO */
    .hero {
        /* Yüksekliği biraz düşür ki resim çok gerilmesin */
        height: 100vh;
        min-height: 500px;
        /* Çok küçük ekranlarda çok kısalmasın */

        /* Mobilde 'fixed' bazen sorun yaratır, 'scroll' daha iyidir */
        background-attachment: scroll !important;

        /* Resmi tam merkeze al */
        background-position: center center !important;

        /* Resmin çok büyümesini engellemek için cover yerine containment deneyebilirsin 
           AMA cover en şık duranıdır. Yüksekliği (70vh) düşürmek zoom etkisini azaltır. */
        background-size: cover !important;
    }

    .luxury-banner {
        padding: 0;
        justify-content: center;
    }

    .banner-content {
        margin: 1rem;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title-luxe {
        font-size: 1.8rem;
    }

    .loader-text {
        font-size: 1.2rem !important;
        letter-spacing: 2px !important;
        text-align: center;
        padding: 0 20px;
        line-height: 1.5;
        width: 100%;
    }

    /* AUTH */
    .auth-container {
        width: 100%;
        height: 100%;
        flex-direction: column;
    }

    .auth-visual {
        display: none;
    }

    .auth-forms-wrapper {
        padding: 2rem;
    }

    .auth-form-box {
        width: 90%;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .auth-form-box.hidden {
        display: none;
    }


    /* ABOUT */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images-wrapper {
        height: 280px;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }


    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    /* SIDEBAR SHOP CART */
    .cart-header {
        padding-top: 1rem;
    }

    .cart-sidebar {
        width: 100% !important;
        height: 100dvh !important;
        /* Dinamik yükseklik (Tarayıcı çubuğunu hesaplar) */
        padding-bottom: 20px;
    }

    .cart-footer {
        position: sticky;
        bottom: 0;
        background: #fff;
        padding: 15px;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
        margin-top: auto;
    }

    .cart-items {
        padding-bottom: 20px;
    }





}



/* --- MOBİL MENÜ  */

/* 1. Overlay (Arka Plan Karartma) */
#mobileMenuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    /* Bulanıklık efekti */
    z-index: 1000;
    /* Header'ın altında ama içeriğin üstünde */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

#mobileMenuOverlay.active {
    opacity: 1;
    visibility: visible;
}

/* 2. Navigasyon Temel Ayarlar (Masaüstü Korunuyor) */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
}

.mobile-nav-header,
.mobile-nav-footer,
.mobile-only-link {
    display: none;
}

@media (max-width: 992px) {
    /* Tablet ve Mobil */

    header {
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }

    /* Logo Ortaya */
    header .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);

    }

    /* Hamburger Menü Butonu */
    .mobile-menu-btn {
        display: block;
        z-index: 1100;
        color: white;
        /* Header rengine uyum sağlasın */
    }

    /* Header İkonları */
    .header-icons {
        gap: 15px;
        min-width: auto;
    }

    .hide-on-mobile {
        display: none !important;
    }

    /* Mobilde user ikonunu gizle (Menüye koyduk) */
    .main-nav hide-on-mobile {
        display: none !important;
    }

    /* Ana menüyü gizle */

    /* --- SIDEBAR MENU (Yandan Gelen Panel) --- */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: -100%;
        /* Ekran dışına it */
        width: 80%;
        /* Ekranın %80'ini kaplasın */
        max-width: 350px;
        height: 100vh;
        background: #ffffff;
        z-index: 2000;
        /* Her şeyin üstünde */
        display: flex;
        flex-direction: column;
        padding: 0;
        transition: cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
        /* Lüks kayma hissi */
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav.active {
        left: 0;
    }

    /* Açılma efekti */

    /* Menü Başlığı (Menü / Kapat) */
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;
        border-bottom: 1px solid #f0f0f0;
        background: #fafafa;
    }

    .mobile-nav-header span {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        color: var(--dark);
    }

    .close-nav {
        background: none;
        border: none;
        font-size: 2rem;
        color: #999;
        cursor: pointer;
    }

    /* Menü Linkleri */
    .mobile-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        width: 100%;
        overflow-y: auto;
    }

    .mobile-nav ul li {
        width: 100%;
        border-bottom: 1px solid #f9f9f9;
    }

    .mobile-nav ul li a {
        display: block;
        padding: 15px 30px;
        color: var(--dark);
        /* Linkler siyah olsun */
        font-size: 1rem;
        font-weight: 500;
    }

    .mobile-nav ul li a:hover {
        background: #fdfdfd;
        padding-left: 40px;
        /* Hover'da hafif sağa kayma */
        color: var(--gold);
    }

    .mobile-nav ul li a::after {
        display: none;
    }

    /* Masaüstündeki alt çizgiyi kaldır */

    /* Mobil Özel Linkler (Giriş Yap vb.) */
    .mobile-only-link {
        display: block;
        margin-top: 20px;
        border-top: 1px solid #eee;
    }

    .mobile-only-link a {
        color: var(--gold) !important;
        font-weight: 600;
    }

    /* Menü Altı (Sosyal Medya) */
    .mobile-nav-footer {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 20px;
        margin-top: auto;
        /* En alta it */
        background: #fafafa;
        border-top: 1px solid #eee;
    }

    .mobile-nav-footer i {
        font-size: 1.5rem;
        color: #ccc;
        transition: 0.3s;
    }

    .mobile-nav-footer i:hover {
        color: var(--gold);
    }

    header.scrolled {
        padding: 0.8rem 1.5rem !important;
        /* Standart mobil boşluğu ile aynı kalsın */
    }

    /* İkonların logoya yaklaşmasını önlemek için güvenli alan */
    .header-icons {
        margin-right: 0;
        /* Ekstra marjini sıfırla */
        z-index: 102;
        /* Logodan üstte olsun */
    }

    .mobile-menu-btn {
        z-index: 102;
    }

    /* Eğer logo çok genişse ve hala değiyorsa, mobilde logoyu biraz küçült */
    .logo {
        font-size: 1.1rem;
        /* Mobilde biraz daha kibar */
        z-index: 101;
    }
}

/* Header siyah olduğunda ikon rengini düzelt */
header.dark-header .mobile-menu-btn {
    color: var(--white);
}

header.scrolled .mobile-menu-btn {
    color: var(--white);
}



/* --- PROFESYONEL BİLDİRİM SİSTEMİ (TOAST) --- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    background: #fff;
    border-left: 5px solid var(--gold);
    padding: 15px 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideInToast 0.4s ease forwards;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.toast.success {
    border-left-color: #2ecc71;
}

/* Yeşil */
.toast.error {
    border-left-color: #e74c3c;
}

/* Kırmızı */
.toast.warning {
    border-left-color: #f39c12;
}

/* Turuncu */

.toast i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.toast.success i {
    color: #2ecc71;
}

.toast.error i {
    color: #e74c3c;
}

.toast.warning i {
    color: #f39c12;
}

@keyframes slideInToast {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOutToast {
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* --- ÖZEL ONAY PENCERESİ (CONFIRM) --- */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 11000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.confirm-overlay.active {
    opacity: 1;
    visibility: visible;
}

.confirm-box {
    background: #fff;
    width: 400px;
    max-width: 90%;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: 0.3s;
}

.confirm-overlay.active .confirm-box {
    transform: scale(1);
}

.confirm-box h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.confirm-box p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.confirm-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-confirm-yes {
    background: var(--gold);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.btn-confirm-no {
    background: #eee;
    color: #555;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.btn-confirm-yes:hover {
    background: var(--dark);
}



/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    /* WhatsApp Yeşili */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    /* Hap şeklinde yuvarlaklık */
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    /* İkon ve yazı arası boşluk */
    z-index: 9900;
    /* Menülerin altında, içeriğin üstünde */
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    /* Hover olunca hafif yukarı kalkar */
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background-color: #20b858;
}

.floating-whatsapp i {
    font-size: 1.6rem;
}

/* Mobilde biraz daha küçük ve kenara yakın olsun */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .floating-whatsapp i {
        font-size: 1.4rem;
    }
}

/* --- FOOTER CONTACT LIST STYLES --- */
.footer-contact-ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Masa�st�: Sola dayal� */
@media (min-width: 769px) {
    .footer-contact-ul {
        align-items: flex-start;
        text-align: left;
    }
}

/* Mobil: Ortaya dayal� */
@media (max-width: 768px) {
    .footer-contact-ul {
        align-items: center;
        text-align: center;
    }
}

/* Fix for floating labels overlapping content */
.input-group input:not(:placeholder-shown)~label,
.input-group input:focus~label {
    top: -10px;
    left: 0;
    font-size: 0.8rem;
    color: var(--gold);
}