@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Jost:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --black: #000000;
    --dark: #111111;
    --white: #ffffff;
    --gray-bg: #f9f9f9;
    --gray-text: #666666;
    --border-color: #eaeaea;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased; font-size: 1rem; }

/* Homepage Editorial Grids */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2.5rem 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.editorial-grid.bottom {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
}

.editorial-item {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
}

.editorial-item.large {
    min-height: 450px;
}

.editorial-item.medium {
    min-height: 450px;
}

.editorial-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    flex: 1;
    background: #f5f5f5;
}

.editorial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.editorial-item:hover img {
    transform: scale(1.05);
}

.editorial-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: auto;
    color: var(--white);
    z-index: 2;
}

.editorial-overlay h2,
.editorial-overlay h3 {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.editorial-overlay .editor-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.85;
}

.editorial-overlay p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
    opacity: 0.9;
}

.bg-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 40%);
    z-index: 1;
}

/* Section Controls */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    padding: 4rem 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1250px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    display: block;
}

.view-all-link {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 1024px) {
    .editorial-grid {
        padding: 1.5rem 20px;
        gap: 1rem;
    }
    .editorial-item {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        padding: 1rem 20px;
        gap: 1rem;
    }
    .editorial-item {
        min-height: 280px;
    }
    .editorial-grid.bottom {
        grid-template-columns: 1fr;
    }
    .editorial-grid.bottom .editorial-item {
        min-height: 300px;
    }
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: transparent; }

/* Top Bar */
[data-lucide] {
    width: 20px;
    height: 20px;
    display: inline-block;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    vertical-align: middle;
}

.header-icon-link i {
    color: #000;
}

/* --- Header 2026 Redesign --- */
.top-bar-thin {
    background: #f1f1f1;
    color: #000;
    text-align: center;
    padding: 8px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    border-bottom: 1px solid #e1e1e1;
}

.top-bar-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.875rem;
    opacity: 0.6;
}

.header-main { display: block; background: #fff; border-bottom: 1px solid #f1f1f1; position: sticky; top: 0; z-index: 1000; padding: 0; }
.header-desktop-wrap { display: grid; grid-template-columns: 250px 1fr 250px; align-items: center; padding: 1rem 40px; }
.header-mobile-wrap { display: flex; flex-direction: column; padding: 10px 0; }
.mobile-logo-row { display: flex; justify-content: center; padding: 5px 0 10px; border-bottom: 1px solid #f9f9f9; }
.mobile-actions-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; }
.mobile-actions-right { display: flex; align-items: center; gap: 20px; }

.header-left { display: flex; align-items: center; gap: 1.5rem; justify-content: flex-start; }
.header-center { display: flex; justify-content: center; }
.header-right { display: flex; align-items: center; gap: 1.5rem; justify-content: flex-end; }

.desktop-only { display: block !important; }
.mobile-only { display: none !important; }

@media (max-width: 1024px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
    .header-main { padding: 0; }
}

.mobile-menu-toggle { background: none; border: none; padding: 0; cursor: pointer; color: #000; }
.mobile-search-toggle { background: none; border: none; padding: 0; cursor: pointer; color: #000; }

.header-search { display: flex; align-items: center; position: relative; width: 100%; max-width: 250px; }
.header-search input { width: 100%; border: none; border-bottom: 1px solid #eee; padding: 8px 30px 8px 0; font-family: inherit; font-size: 1rem; color: #000; outline: none; background: transparent; transition: border-color 0.3s; }
.header-search input:focus { border-color: #000; }
.header-search .search-icon { position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: #000; pointer-events: none; }

.header-center { display: flex; justify-content: center; align-items: center; }
.logo-text { font-size: 1.8rem; font-weight: 600; letter-spacing: 0.12em; color: #000; text-decoration: none; text-transform: uppercase; font-family: var(--font-heading); }
.logo-img { height: 45px; width: auto; }

.header-right { display: flex; justify-content: flex-end; align-items: center; gap: 2rem; }
.header-icon-link { display: flex; align-items: center; gap: 0.5rem; color: #000; text-decoration: none; transition: opacity 0.3s; position: relative; }
.header-icon-link:hover { opacity: 0.6; }
.user-name { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #000; }

.lang-selector { position: relative; display: flex; align-items: center; cursor: pointer; padding: 5px 0; }
.lang-current { display: flex; align-items: center; gap: 8px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; color: #000; }
.lang-current img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; border: 1px solid #eee; }
.lang-dropdown { 
    position: absolute; top: 100%; right: 0; background: #fff; border: 1px solid #f1f1f1; 
    min-width: 120px; display: none; flex-direction: column; z-index: 1000; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 10px 0;
}
.lang-selector:hover .lang-dropdown { display: flex; }
.lang-dropdown a { 
    padding: 10px 20px; display: flex; align-items: center; gap: 10px; 
    font-size: 0.6875rem; font-weight: 600; color: #666; transition: all 0.2s;
}
.lang-dropdown a img { width: 16px; height: 16px; border-radius: 50%; object-fit: cover; }
.lang-dropdown a:hover { background: #f9f9f9; color: #000; }
.lang-dropdown a.active { color: #000; font-weight: 800; background: #f5f5f5; }

.main-nav { display: flex; justify-content: center; gap: 2.5rem; padding: 0.8rem 40px; background: #fff; border-bottom: 1px solid #f1f1f1; margin: 0; }
.main-nav a { font-size: 0.9rem; font-weight: 500; color: #000; text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.3s; }
.main-nav a:hover { color: #888; }

#search-results { position: absolute; top: 100%; left: 0; width: 350px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 1000; display: none; border: 1px solid #eee; max-height: 400px; overflow-y: auto; }
.search-item { display: flex; align-items: center; padding: 12px; gap: 15px; border-bottom: 1px solid #f9f9f9; transition: background 0.2s; }
.search-item:hover { background: #fafafa; }
.search-item img { width: 50px; height: 60px; object-fit: cover; }
.search-item .details { flex: 1; }
.search-item .name { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.search-item .price { font-size: 11px; color: #666; }

iframe.skiptranslate { display: none !important; }
body { top: 0px !important; }
.goog-te-banner-frame { display: none !important; }

.promo-bar { background: var(--black); color: var(--white); text-align: center; padding: 10px; font-size: 1.1rem; letter-spacing: 1.5px; text-transform: uppercase; margin: 0; }

@media (max-width: 768px) {
    .gradient-banner { margin-top: 0; }
    .hero-slider { margin-top: 0; }
}

/* VERSION: 1.0.11 - Ultra Compact Header & Banner */

.gradient-banner {
    position: relative; width: 100%; height: 280px;
    color: var(--white); text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding-bottom: 35px; overflow: hidden;
}
.gradient-banner::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%); z-index: 1;
}
.banner-content { position: relative; z-index: 5; }
.gradient-banner h2, .gradient-banner .eyebrow { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.4em; margin-bottom: 8px; font-weight: 500; opacity: 0.9; }
.gradient-banner h1 {
    font-size: clamp(1.6rem, 8vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

@media (max-width: 768px) {
    .gradient-banner { height: auto; min-height: 250px; padding-top: 40px; padding-bottom: 40px; }
    .banner-content { padding: 20px; }
}
.gradient-btns { display: flex; gap: 15px; margin-bottom: 15px; justify-content: center; }
.btn-outline-white { border: 1px solid var(--white); color: var(--white); background: transparent; padding: 12px 40px; text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; font-weight: 600; transition: var(--transition); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }

.hero-image { width: 100%; height: 100%; position: relative; }
.hero-image img { 
    width: 100%; height: 100%; object-fit: cover; 
    object-position: center 20%; /* Prioritize the model's face/upper body */
}
.hero-image::after { 
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; 
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%); z-index: 2; 
}

.hero-content { 
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; 
    justify-content: center; text-align: center; color: var(--white); z-index: 5; 
    padding: 0 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
}
.hero-content h2 {
    font-size: clamp(1.5rem, 7vw, 3.5rem); font-weight: 800; margin-bottom: 4px; text-transform: uppercase;
    letter-spacing: 0.05em; line-height: 1.1; text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-content p {
    font-size: clamp(0.75rem, 2vw, 1rem); font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.2em; margin-bottom: 20px; opacity: 0.9;
}

.slider-indicators {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
}
.indicator-bar {
    width: 40px; height: 2px; background: rgba(255,255,255,0.3); transition: all 0.3s;
}
.indicator-bar.active {
    background: #fff; width: 60px;
}

.section { padding: 60px 30px; }
.section-title { font-family: var(--font-heading); font-size: clamp(18px, 4vw, 28px); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.section-subtitle { font-size: clamp(10px, 2.5vw, 12px); color: var(--gray-text); margin-bottom: 30px; max-width: 600px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}
.product-card {
    text-align: center;
    padding: 0 !important;
    transition: transform 0.3s ease;
}

.product-card .product-name {
    text-align: center;
    display: block;
    color: #333;
    font-size: 0.75rem;
    margin-bottom: 6px;
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
}

.product-card .product-brand {
    text-transform: uppercase;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 4px;
    display: block;
}

.product-card .product-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
    margin-top: 6px;
    display: block;
}

/* Link wrapper in product-card */
.product-card > a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Her şeyi kartın yatay merkezine zorla */
    padding: 0 !important;
    transition: transform 0.3s ease;
}

.product-img {
    background: #ffffff;
    margin-bottom: 15px;
    position: relative;
    width: 100%; /* Kartın genişliğini tam kapla */
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: none;
    height: 380px;
}
.product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto; /* Yatayda tam merkez */
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* Wishlist Toggle Button on Products */
.wishlist-btn {
    position: absolute; top: 15px; right: 15px; width: 32px; height: 32px;
    background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none; box-shadow: 0 4px 10px rgba(0,0,0,0.05); z-index: 10;
}
.wishlist-btn svg { width: 16px; height: 16px; stroke: #000; fill: none; transition: all 0.3s; }
.wishlist-btn:hover { transform: scale(1.1); box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
.wishlist-btn.in-wishlist svg { fill: #000; stroke: #000; }

.product-brand {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111;
    display: block;
    width: 100%;
    text-align: center;
}
.product-name {
    font-size: 0.72rem;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
    height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding: 0 10px;
    font-weight: 400;
    text-align: center;
    width: 100%;
}
.product-price {
    font-size: 0.85rem;
    color: #000;
    font-weight: 800;
    display: block;
    margin-top: 5px;
    width: 100%;
    text-align: center;
}

.btn-black { display: inline-block; background: var(--black); color: var(--white); padding: 15px 40px; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; margin-top: 20px; transition: var(--transition); }
.btn-black:hover { background: #333; }

/* --- Premium Newsletter & Footer --- */
.premium-newsletter {
    background: #f8f8f8;
    padding: 70px 0;
    border-top: 1px solid #f1f1f1;
    font-family: 'Inter', sans-serif;
}
.newsletter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
}
.newsletter-headline h2 { font-size: 18px; font-weight: 500; color: #000; margin-bottom: 12px; letter-spacing: -0.01em; }
.newsletter-headline p { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 25px; max-width: 500px; }
.newsletter-form { display: flex; gap: 10px; margin-bottom: 35px; max-width: 550px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 1px solid #e2e2e2; font-size: 13px; color: #000; outline: none; transition: border-color 0.2s; background: #fff; }
.newsletter-form input:focus { border-color: #000; }
.newsletter-form button { padding: 14px 35px; background: #f5f5f5; border: 1px solid #e2e2e2; font-size: 12px; font-weight: 800; color: #000; cursor: pointer; transition: all 0.2s; letter-spacing: 0.1em; }
.newsletter-form button:hover { background: #000; color: #fff; border-color: #000; }
.newsletter-social { display: flex; gap: 18px; align-items: center; margin-top: 10px; }
.newsletter-social img { height: 24px; width: auto; }

.newsletter-right { display: flex; flex-direction: column; gap: 35px; }
.newsletter-right h4 { font-size: 13px; font-weight: 700; color: #000; letter-spacing: 0.12em; margin-bottom: 18px; text-transform: uppercase; }
.newsletter-right p { font-size: 13px; color: #111; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.newsletter-right a { color: #111; text-decoration: none; transition: opacity 0.2s; }
.newsletter-right a:hover { opacity: 0.7; }
.lang-display { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #111; font-weight: 500; }
.lang-display img { width: 22px; height: auto; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

.modern-footer { background: #ffffff; padding: 70px 0 35px; border-top: 1px solid #f2f2f2; }
.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.footer-sections { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 50px; }
.footer-section h4 { font-size: 12px; font-weight: 800; letter-spacing: 0.15em; margin-bottom: 22px; color: #000; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 12px; }
.footer-section ul li a { color: #666; font-size: 13px; letter-spacing: 0.04em; }
.footer-section ul li a:hover { color: #000; }
.copyright { text-align: center; color: #999; font-size: 11px; margin-top: 35px; padding-top: 28px; border-top: 1px solid #f2f2f2; letter-spacing: 0.05em; }

@media (max-width: 900px) {
    .newsletter-container { grid-template-columns: 1fr; gap: 50px; padding: 0 20px; }
    .footer-sections { grid-template-columns: 1fr; }
    .footer-container { padding: 0 20px; }
}

.glass-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease; pointer-events: none; opacity: 0; }
.glass-loader.active { opacity: 1; pointer-events: auto; }
.spinner { width: 40px; height: 40px; border: 2px solid var(--border-color); border-top-color: var(--black); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Luxury Shopping Bag (Phase 36) --- */
.cart-badge { 
    position: absolute; top: -5px; right: -5px; background: #000; color: #fff; 
    font-size: 9px; font-weight: 800; width: 16px; height: 16px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; border: 1.5px solid #fff; transition: transform 0.3s;
}

.cart-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.4); z-index: 9998; display: none; opacity: 0; transition: opacity 0.3s ease;
}
.cart-drawer { 
    position: fixed; top: 0; right: -450px; width: 450px; height: 100%; 
    background: #fff; z-index: 9999; transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}
.cart-drawer.active { right: 0; }
.cart-overlay.active { display: block; opacity: 1; }

.cart-drawer-header { padding: 30px; border-bottom: 1px solid #f1f1f1; display: flex; justify-content: space-between; align-items: center; }
.cart-drawer-header h2 { font-size: 14px; font-weight: 800; letter-spacing: 0.1em; margin: 0; text-transform: uppercase; }
.cart-drawer-close { cursor: pointer; font-size: 18px; line-height: 1; font-weight: 300; }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 30px; }
.cart-item-mini { display: flex; gap: 15px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #fafafa; }
.cart-item-mini img { width: 70px; height: 90px; object-fit: contain; background: #f9f9f9; padding: 5px; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 11px; font-weight: 700; margin: 0 0 5px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.4; color: #000; }
.cart-item-info p { font-size: 10px; color: #888; margin: 0 0 10px; text-transform: uppercase; }
.cart-item-price { font-size: 13px; font-weight: 700; color: #000; }

.cart-drawer-footer { padding: 30px; background: #fafafa; border-top: 1px solid #f1f1f1; }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 20px; font-weight: 800; font-size: 13px; text-transform: uppercase; }
.btn-checkout-black { background: #000; color: #fff; width: 100%; padding: 18px; border: none; font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 0.15em; cursor: pointer; transition: transform 0.2s; text-decoration: none; display: block; text-align: center; }
.btn-view-bag { background: transparent; border: 1px solid #000; color: #000; width: 100%; padding: 15px; margin-top: 10px; font-weight: 800; text-transform: uppercase; font-size: 11px; letter-spacing: 0.1em; cursor: pointer; text-decoration: none; display: block; text-align: center; }
.btn-checkout-black:hover { transform: translateY(-2px); }

@media (max-width: 480px) {
    .cart-drawer { width: 100%; right: -100%; }
}

/* --- Mobile Search Bar --- */
.mobile-search-bar { 
    position: fixed; top: -100px; left: 0; width: 100%; height: 80px; 
    background: #fff; z-index: 2000; display: flex; align-items: center; 
    padding: 0 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-search-bar.active { top: 0; }
.mobile-search-container { display: flex; width: 100%; gap: 15px; align-items: center; }
.mobile-search-container input { flex: 1; border: none; font-size: 16px; font-family: var(--font-body); outline: none; }
.mobile-search-container button { font-size: 20px; color: #999; }

/* --- Mobile Menu Drawer --- */
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 9998; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(5px); display: none; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; display: block; }
.mobile-menu-drawer { 
    position: fixed; top: 0; left: -100%; width: 85%; max-width: 350px; height: 100%; 
    background: #fff; z-index: 9999; transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: none; flex-direction: column; box-shadow: 10px 0 30px rgba(0,0,0,0.05);
}
.mobile-menu-drawer.active { left: 0; display: flex; }
.mobile-menu-header { padding: 30px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f9f9f9; }
.mobile-menu-title { font-size: 11px; font-weight: 900; letter-spacing: 0.3em; color: #000; text-transform: uppercase; }
.mobile-menu-close { font-size: 24px; font-weight: 300; background: none; border: none; cursor: pointer; }
.mobile-menu-body { flex: 1; padding: 40px 30px; display: flex; flex-direction: column; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.mobile-nav-links a { font-size: 15px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #000; text-decoration: none; padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-menu-footer { border-top: 1px solid #f9f9f9; padding-top: 30px; display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-footer-link { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #111; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 1024px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }
    .mobile-menu-toggle { display: block; }
    .header-main { padding: 0.75rem 15px; } /* Even tighter padding for mobile */
    .header-right { gap: 1rem; }
    .header-left { gap: 1rem; }
    .header-icon-link span { display: none; }
    .main-nav { display: none; }
}

@media (max-width: 768px) {
    .top-bar-thin { padding: 6px 15px; font-size: 9px; letter-spacing: 1px; }
    .header-main { grid-template-columns: 50px 1fr 100px; } /* Better balance for mobile header */
    .logo-text { font-size: 1.25rem; }
    .section { padding: 40px 15px; }
    .section-title { font-size: 22px; }
    .hero-slider { height: 70vh; min-height: 450px; } /* Shorter height on mobile */
    .hero-content { justify-content: flex-end; padding-bottom: 60px; }
}

@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 100%; }
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; max-width: 100%; }
    .section-header { padding: 2.5rem 20px 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
    .view-all-link { align-self: flex-end; }
}

/* --- Google Translate Suppression --- */
iframe.skiptranslate, .goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon { display: none !important; }
body { top: 0px !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; border: none !important; }
.goog-te-gadget { font-size: 0 !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
font { background: transparent !important; color: inherit !important; box-shadow: none !important; }
.goog-te-combo { display: none !important; }
