/** Shopify CDN: Minification failed

Line 3920:0 Expected "}" to go with "{"

**/
/* =============================================
   BOLANDY — JEAN-LOUIS SABAJI STYLE THEME
   Monochrome Luxury Design System
   ============================================= */

:root {
    /* Monochrome Luxury Palette */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-dark: #3F1521; /* Deep Burgundy (Bordo) */
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-muted: #888888;
    --border-light: #E5E5E5;
    --border-dark: #333333;

    /* Typography */
    --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;

    /* Layout */
    --navbar-height: 80px;
    --container-max: 1440px;
    --side-padding: 40px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s var(--ease-smooth);
    --transition-slow: all 0.8s var(--ease-smooth);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============================================
   SHOPIFY THEME OVERRIDES — CRITICAL
   Override base.css page-wrapper restrictions
   ============================================= */
html:has(.page-wrapper),
html:has(.page-wrapper) body {
    height: auto !important;
    overflow: visible !important;
}

.page-wrapper {
    height: auto !important;
    overflow: visible !important;
    overflow-y: visible !important;
}

/* Ensure Shopify header/footer groups don't duplicate our custom ones */
body.template-index #shopify-section-header,
body.template-index .shopify-section-header-group {
    display: none !important;
}

/* Move footer-group inside scroll context visually */
.shopify-section-footer-group {
    display: block !important;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: pageLoad 1s var(--ease-smooth) forwards;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Hide Shopify default header/footer on index */
body.template-index #shopify-section-header,
body.template-index #shopify-section-footer,
body.template-index .site-header,
body.template-index .site-footer {
    display: none !important;
}

/* Fix product page overlap with native headers */
body:not(.template-index) main,
body:not(.template-index) #MainContent,
body:not(.template-index) .main-content {
    padding-top: 80px !important;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--side-padding);
}

.section-padding {
    padding: 100px 0;
}

.elegant-title {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* =============================================
   NAVBAR — Transparent → Solid
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    height: 65px;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    padding: 0 var(--side-padding);
}

/* Nav colors — transparent state (white on dark hero) */
.navbar:not(.scrolled) .logo,
.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .icon-link,
.navbar:not(.scrolled) .mobile-menu-btn {
    color: var(--bg-primary);
}

/* Nav colors — scrolled state */
.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .icon-link,
.navbar.scrolled .mobile-menu-btn {
    color: var(--text-primary) !important;
}

.navbar.scrolled .icon-link svg {
    color: var(--text-primary) !important;
    stroke: var(--text-primary) !important;
}

.navbar:not(.scrolled) .icon-link svg {
    color: var(--bg-primary) !important;
    stroke: var(--bg-primary) !important;
}

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
}

/* Nav Left */
.nav-left {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s var(--ease-smooth);
}

.nav-links > li > a:hover::after {
    width: 100%;
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.icon-link {
    display: flex;
    align-items: center;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    transition: var(--transition);
}

.icon-link i, .icon-link svg {
    width: 18px;
    height: 18px;
}

.icon-link:hover {
    opacity: 0.6;
}

.nav-text-link {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 0.55rem;
    font-weight: 600;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.navbar:not(.scrolled) .cart-count {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn i, .mobile-menu-btn svg {
    width: 22px;
    height: 22px;
}

/* =============================================
   MEGA MENU
   ============================================= */
.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    z-index: 999;
    padding: 50px 0;
    pointer-events: none;
}

.has-mega-menu:hover .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    display: flex;
    gap: 60px;
    padding: 0 var(--side-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.mega-col {
    flex: 1;
}

.mega-col h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.mega-col ul li {
    margin-bottom: 12px;
}

.navbar .nav-links .mega-col ul a {
    color: var(--text-secondary) !important;
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.navbar .nav-links .mega-col ul a:hover {
    color: var(--text-primary) !important;
}

.mega-col.image-col {
    flex: 2;
    text-align: center;
}

.mega-col.image-col img {
    width: 100%;
    height: 380px; /* Increased height to give vertical images more room */
    object-fit: contain; /* Shows the full image without cropping */
    background-color: transparent;
    margin-bottom: 12px;
}

.mega-col.image-col span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =============================================
   HERO — Full-Screen Video/Image Slider
   ============================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* mobil tarayıcı çubuğunu hesaba katar (adres çubuğu) */
    min-height: 600px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide video,
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.05) 40%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 3;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--bg-primary);
    z-index: 4;
    width: 100%;
    max-width: 800px;
    padding: 0 var(--side-padding);
}

.hero-content .subtitle {
    color: rgba(255, 255, 255, 0.75);
    display: block;
    margin-bottom: 15px;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--bg-primary);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-dot.active {
    background: var(--bg-primary);
    border-color: var(--bg-primary);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: var(--side-padding);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* =============================================
   SECTION TITLES — JLS Style
   ============================================= */
.section-title {
    text-align: center;
    padding: 80px 0 50px;
}

.section-title .subtitle {
    display: block;
    margin-bottom: 12px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* =============================================
   PRODUCT GRID — 4 Columns (JLS "Ready to Ship")
   ============================================= */
.product-section {
    padding: 0 var(--side-padding) 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    text-decoration: none;
    color: var(--text-primary);
    display: block;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background-color: var(--bg-secondary);
    margin-bottom: 18px;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease, transform 1.2s var(--ease-smooth);
}

.product-image-wrapper .img-hover {
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
}

.product-card:hover .img-main {
    opacity: 0;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.03);
}

.product-info {
    text-align: center;
    padding: 0 10px;
}

.product-info h3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.product-info .price {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Center CTA under grid */
.grid-cta {
    text-align: center;
    padding: 50px 0 80px;
}

.btn {
    display: inline-block;
    padding: 14px 38px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--text-primary);
    background: var(--text-primary);
    color: var(--bg-primary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: transparent;
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-white {
    border-color: var(--bg-primary);
    background: transparent;
    color: var(--bg-primary);
}

.btn-white:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* =============================================
   COLLECTION CARDS — 4 Columns (JLS Category Banners)
   ============================================= */
.collection-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding: 0 var(--side-padding);
}

.collection-card {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 3 / 4;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-smooth);
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
    color: var(--bg-primary);
    z-index: 2;
}

.collection-card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.collection-card-overlay .btn-white {
    font-size: 0.65rem;
    padding: 10px 25px;
}

/* =============================================
   SHOP THE LOOK — Editorial Hotspot Section
   ============================================= */
.shop-the-look {
    padding: 100px var(--side-padding);
}

.stl-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: var(--container-max);
    margin: 0 auto;
}

.stl-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.stl-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hotspot Dots */
.hotspot {
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 10;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.hotspot-dot {
    width: 12px;
    height: 12px;
    background-color: var(--bg-primary);
    border-radius: 50%;
    position: relative;
    top: 8px;
    left: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hotspot-dot::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: hotspotPulse 2s infinite ease-in-out;
}

@keyframes hotspotPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hotspot:hover .hotspot-dot {
    transform: scale(1.3);
}

/* Hotspot Product Popup */
.hotspot-popup {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 200px;
    background: var(--bg-primary);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    pointer-events: none;
    z-index: 20;
}

.hotspot-popup::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--bg-primary);
}

.hotspot:hover .hotspot-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.hotspot-popup img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin-bottom: 8px;
}

.hotspot-popup h4 {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotspot-popup .popup-price {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* STL Product Card (right side) */
.stl-product {
    padding-top: 40px;
}

.stl-product-image {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin-bottom: 20px;
}

.stl-product h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 6px;
    line-height: 1.5;
}

.stl-product .price {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* =============================================
   COUTURE CAROUSEL — Tab-based Collection Showcase
   ============================================= */
.couture-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-light);
}

.couture-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.couture-tab {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 8px 0;
    cursor: pointer;
    transition: var(--transition);
}

.couture-tab.active,
.couture-tab:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

.couture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 var(--side-padding);
}

.couture-panel {
    display: none;
}

.couture-panel.active {
    display: block;
}

.couture-card {
    text-decoration: none;
    color: var(--text-primary);
    display: block;
}

.couture-card .product-image-wrapper {
    margin-bottom: 15px;
}

.couture-card h3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    text-align: center;
    line-height: 1.5;
    color: var(--text-secondary);
    padding: 0 10px;
}

.couture-cta {
    text-align: center;
    padding: 50px 0;
}

/* =============================================
   EDITORIAL / ABOUT — Dark Section
   ============================================= */
.editorial-section {
    background: var(--bg-dark);
    color: var(--bg-primary);
    padding: 120px 0;
}

.editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--side-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.editorial-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease-smooth);
}

.editorial-image:hover img {
    transform: scale(1.05);
}

.editorial-content .subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    display: block;
}

.editorial-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.15;
    margin-bottom: 25px;
}

.editorial-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.editorial-content .signature {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 35px;
    opacity: 0.7;
}

.btn-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--bg-primary);
    background: transparent;
}

.btn-light:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--bg-primary);
}

/* =============================================
   FOOTER — 4 Column Minimalist (JLS Style)
   ============================================= */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 80px var(--side-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-brand .read-more {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--text-primary);
}

/* Footer Contact */
.footer-contact a {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-contact a:hover {
    color: var(--text-primary);
}

/* Newsletter */
.footer-newsletter p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-right: none;
    background: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--text-primary);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: transparent;
    color: var(--text-primary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 25px var(--side-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-links a {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-primary);
}

.social-links a i, .social-links a svg {
    width: 16px;
    height: 16px;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* =============================================
   SIDEBARS — Mobile Menu & Cart
   ============================================= */
.mobile-menu-overlay,
.cart-sidebar {
    position: fixed;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1100;
    padding: 40px;
    transition: transform 0.5s var(--ease-out), visibility 0s linear 0.5s;
    overflow-y: auto;
    visibility: hidden;
}

.mobile-menu-overlay {
    left: 0;
    transform: translateX(-100%);
}

.cart-sidebar {
    right: 0;
    transform: translateX(100%);
    border-left: 1px solid var(--border-light);
}

.mobile-menu-overlay.active,
.cart-sidebar.active {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.5s var(--ease-out), visibility 0s linear 0s;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-header h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.close-btn i, .close-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Links */
.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--text-muted);
}

/* Menüye taşınan Arama & Dil butonları — linklerle aynı görünüm */
.mobile-nav-links .mobile-menu-action {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-nav-links .mobile-menu-action:hover {
    color: var(--text-muted);
}

/* Cart Items */
.cart-items {
    padding-bottom: 180px;
}

.cart-empty {
    text-align: center;
    color: var(--text-muted);
    margin-top: 60px;
    font-size: 0.85rem;
}

.cart-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--text-primary);
    transition: var(--transition);
    margin-bottom: 8px;
}

.checkout-btn:hover {
    background: transparent;
    color: var(--text-primary);
}

.checkout-btn.secondary {
    background: transparent;
    color: var(--text-primary);
}

.checkout-btn.secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

/* =============================================
   SEARCH OVERLAY
   ============================================= */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 100%;
    max-width: 700px;
    padding: 40px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s var(--ease-smooth);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: var(--bg-primary);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-close i, .search-close svg {
    width: 24px;
    height: 24px;
}

.search-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 12px;
}

.search-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    outline: none;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-form button {
    background: transparent;
    border: none;
    color: var(--bg-primary);
    cursor: pointer;
}

.search-form button i, .search-form button svg {
    width: 22px;
    height: 22px;
}

/* =============================================
   ANIMATIONS — Scroll Reveal
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Image Curtain Reveal */
.img-reveal {
    position: relative;
    overflow: hidden;
    display: block;
}

.img-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}

.img-reveal.active::after {
    transform: scaleY(0);
}



/* =============================================
   WISHLIST DRAWER
   ============================================= */
.wishlist-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.wishlist-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wishlist-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.wishlist-drawer.active {
    right: 0;
}

.wishlist-drawer-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wishlist-drawer-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wishlist-count-badge {
    background: var(--text-primary);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
}

.wishlist-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: 0.3s;
    padding: 5px;
}

.wishlist-drawer-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.wishlist-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.wishlist-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-muted);
    gap: 15px;
}

.wishlist-empty-state svg {
    margin-bottom: 10px;
    stroke: var(--border-light);
}

.wishlist-empty-state p {
    font-size: 1rem;
}

.wishlist-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
}

.wishlist-item-img {
    width: 100px;
    height: 140px;
    object-fit: cover;
}

.wishlist-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wishlist-item-title {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.wishlist-item-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.wishlist-item-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.wishlist-item-remove {
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    padding: 6px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    flex: 1;
}

.wishlist-item-remove:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.wishlist-header-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 0.55rem;
    min-width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* =============================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
    :root {
        --side-padding: 25px;
    }

    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    .nav-container {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    /* Logo ortada - flex akışından bağımsız */
    .nav-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .logo {
        text-align: center;
    }

    .product-grid,
    .couture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .stl-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .editorial-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .mega-menu {
        display: none;
    }
}

/* =============================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
    :root {
        --side-padding: 18px;
        --navbar-height: 65px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content {
        bottom: 20%;
    }

    .section-title h2 {
        font-size: 1.3rem;
    }

    .product-grid,
    .couture-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .collection-cards {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .collection-card {
        aspect-ratio: 4 / 3;
    }

    .collection-card img {
        object-position: center 15%; /* Shows the head/shoulders perfectly */
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mobile-menu-overlay,
    .cart-sidebar {
        width: 100%;
    }

    .couture-tabs {
        gap: 20px;
        flex-wrap: wrap;
    }

    .couture-tab {
        font-size: 0.85rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* =============================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
        letter-spacing: 0.08em;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 0.65rem;
    }

    .product-info h3 {
        font-size: 0.65rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.65rem;
    }
}

/* =============================================
   WISHLIST BUTTON
   ============================================= */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0.8;
}

.wishlist-btn:hover {
    color: var(--text-primary);
    transform: scale(1.1);
    opacity: 1;
}

.wishlist-btn.active svg {
    fill: var(--text-primary);
    stroke: var(--text-primary);
}

.product-image-wrapper:hover .wishlist-btn {
    opacity: 1;
}

/* =============================================
   WISHLIST TOAST
   ============================================= */
.wishlist-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-dark);
    color: var(--bg-primary);
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 90%;
    max-width: 400px;
}

.wishlist-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.wishlist-toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wishlist-toast-content p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    flex: 1;
}

.wishlist-toast-content a {
    color: #B8A466;
    text-decoration: underline;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    color: var(--bg-primary);
}


/* =============================================
   PRODUCT PAGE LUXURY LAYOUT
   ============================================= */
.bolandy-product-page {
    padding: 120px 0 80px;
    background-color: var(--color-background);
}

.product-page-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 60px;
}

/* Left: Media Gallery */
.product-media-gallery {
    flex: 1 1 55%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-media-item {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.product-media-item:first-child {
    grid-column: span 2; /* First image full width */
}

.product-single-image, .product-single-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right: Product Info */
.product-info-container {
    flex: 1 1 35%;
    min-width: 380px;
}

.product-info-sticky {
    position: sticky;
    top: 100px; /* Offset for navbar */
}

.product-breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.product-breadcrumb a {
    color: var(--color-text-light);
    text-decoration: none;
}

.product-breadcrumb span {
    color: var(--color-text);
}

.product-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-price {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 30px;
}

/* Variants */
.product-variants {
    margin-bottom: 30px;
}

.variant-option {
    margin-bottom: 20px;
}

.variant-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.variant-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-btn {
    border: 1px solid #ddd;
    background: transparent;
    padding: 10px 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
}

.variant-radio:checked + .variant-btn {
    border-color: var(--color-text);
    background: var(--color-text);
    color: var(--color-background);
}

/* Add to Cart Actions */
.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-add-to-cart {
    flex: 1;
    background: var(--color-text);
    color: var(--color-background);
    border: none;
    padding: 18px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-add-to-cart:hover {
    background: #333;
}

.btn-add-to-cart.sold-out {
    background: #ccc;
    cursor: not-allowed;
    color: #fff;
}

.wishlist-btn-large {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-base);
}

.wishlist-btn-large:hover {
    border-color: var(--color-text);
}

.wishlist-btn-large.active svg {
    fill: var(--color-text);
}

/* Accordions */
.product-accordions {
    border-top: 1px solid #eee;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.accordion-content {
    display: none;
    padding-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .product-page-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .product-media-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        margin: 0 -20px; /* Bleed edge */
        padding: 0 20px;
    }
    
    .product-media-gallery::-webkit-scrollbar {
        display: none;
    }

    .product-media-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    .product-media-item:first-child {
        grid-column: auto;
    }

    .product-info-sticky {
        position: static;
    }
}


/* =============================================
   COLLECTION PAGE LUXURY LAYOUT
   ============================================= */
.bolandy-collection-page {
    padding: 120px 20px 80px;
    max-width: 100%;
    margin: 0 auto;
}

.collection-header {
    text-align: center;
    margin-bottom: 60px;
}

.collection-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.collection-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.collection-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sort-by-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-text);
    padding: 5px 20px 5px 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    color: var(--color-text);
    outline: none;
}

.bolandy-pagination {
    margin-top: 60px;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.bolandy-pagination a, .bolandy-pagination span {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-base);
}

.bolandy-pagination .current {
    color: var(--color-text);
    border-bottom: 1px solid var(--color-text);
}

.bolandy-pagination a:hover {
    color: var(--color-text);
}

@media (max-width: 768px) {
    .bolandy-collection-page {
        padding: 100px 20px 60px;
    }

    .collection-title {
        font-size: 1.8rem;
    }
    /* Mobilde başlık↔araç çubuğu↔grid arasındaki fazla boşluğu topla */
    .collection-header {
        margin-bottom: 22px;
    }
    .collection-toolbar {
        margin-bottom: 22px;
        padding-bottom: 14px;
    }
}


/* =============================================
   SEARCH OVERLAY
   ============================================= */
.search-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
    display: flex; align-items: center; justify-content: center;
}
.search-overlay.active {
    opacity: 1; visibility: visible;
}
.search-close {
    position: absolute; top: 40px; right: 40px;
    background: none; border: none; cursor: pointer;
}
.search-container {
    width: 90%; max-width: 800px;
}
.search-form {
    position: relative; border-bottom: 2px solid var(--text-primary);
}
.search-input {
    width: 100%; border: none; background: transparent;
    padding: 20px 60px 20px 0; font-size: 2rem;
    font-family: var(--font-body); outline: none;
}
.search-submit {
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer;
}
.predictive-search-results {
    margin-top: 40px;
}
.predictive-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.predictive-item {
    text-decoration: none; color: var(--text-primary); text-align: center;
}
.predictive-item img {
    width: 100%; height: auto; margin-bottom: 15px;
}
.predictive-info span {
    display: block; font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 5px;
}
.p-price { color: var(--text-muted); }

/* =============================================
   CART DRAWER
   ============================================= */
.cart-drawer-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 9998;
    opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.cart-drawer-overlay.active {
    opacity: 1; visibility: visible;
}
.cart-drawer {
    position: fixed; top: 0; right: -500px; width: 100%; max-width: 450px;
    height: 100vh; background: #fff; z-index: 9999;
    display: flex; flex-direction: column; transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.cart-drawer.active { right: 0; }
.cart-drawer-header {
    padding: 30px; display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid #eee;
}
.cart-drawer-header h2 {
    font-size: 1.2rem; letter-spacing: 0.1em;
}
.cart-close {
    background: none; border: none; cursor: pointer;
}
.cart-drawer-body {
    flex: 1; overflow-y: auto; padding: 30px;
}
.cart-item {
    display: flex; gap: 20px; margin-bottom: 30px;
}
.cart-item-img {
    width: 100px; height: 130px; object-fit: cover;
}
.cart-item-details h3 {
    font-size: 0.9rem; margin-bottom: 5px; letter-spacing: 0.1em;
}
.cart-item-variant {
    font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px;
}
.cart-item-price {
    font-size: 0.9rem; margin-bottom: 15px;
}
.cart-item-qty {
    display: flex; align-items: center; gap: 15px; border: 1px solid #eee; width: max-content; padding: 5px 15px;
}
.qty-btn { text-decoration: none; color: var(--text-primary); }
.cart-drawer-footer {
    padding: 30px; border-top: 1px solid #eee; background: #f9f9f9;
}
.cart-subtotal {
    display: flex; justify-content: space-between; font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 0.1em;
}
.shipping-note {
    font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; text-align: center;
}
.btn-checkout {
    width: 100%; padding: 18px; background: var(--text-primary); color: #fff;
    border: none; font-size: 0.9rem; letter-spacing: 0.1em; cursor: pointer; transition: 0.3s;
}
.btn-checkout:hover { background: #333; }
.cart-empty-message {
    text-align: center; margin-top: 50px;
}
.cart-empty-message p { margin-bottom: 20px; color: var(--text-muted); }
.btn-continue {
    display: inline-block; padding: 15px 30px; border: 1px solid var(--text-primary);
    color: var(--text-primary); text-decoration: none; letter-spacing: 0.1em; font-size: 0.8rem;
}


/* Fix search overlay colors to ensure they are visible on white background */
.search-close, .search-submit {
    color: #101010 !important;
}
.search-input {
    color: #101010 !important;
}
.search-input::placeholder {
    color: #888888 !important;
}


/* =============================================
   CONTACT PAGE LUXURY LAYOUT
   ============================================= */
.bolandy-contact-page {
    padding: 120px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}
.contact-header {
    text-align: center; margin-bottom: 80px;
}
.contact-header .subtitle {
    display: block; margin-bottom: 15px; font-size: 0.8rem; letter-spacing: 0.2em;
}
.contact-header h1 {
    font-size: 3rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase;
}
.contact-layout {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px;
}
.contact-info {
    padding-right: 40px;
}
.info-block {
    margin-bottom: 40px;
}
.info-block h3 {
    font-size: 1.2rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 15px;
}
.info-block h4 {
    font-size: 0.9rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; color: var(--text-secondary);
}
.info-block p {
    font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
}
.info-block a {
    color: var(--text-primary); text-decoration: underline; text-underline-offset: 4px;
}
.info-block a:hover {
    color: var(--text-muted);
}
.small-text {
    font-size: 0.75rem !important; margin-top: 5px;
}
.contact-form-wrapper {
    background: #f9f9f9; padding: 50px;
}
.bolandy-form .form-field {
    margin-bottom: 25px;
}
.form-field-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 25px;
}
.bolandy-form input, .bolandy-form textarea {
    width: 100%; padding: 15px 0; border: none; border-bottom: 1px solid var(--border-light);
    background: transparent; font-family: var(--font-body); font-size: 0.9rem;
    color: var(--text-primary); outline: none; transition: 0.3s;
}
.bolandy-form input:focus, .bolandy-form textarea:focus {
    border-bottom-color: var(--text-primary);
}
.bolandy-form input::placeholder, .bolandy-form textarea::placeholder {
    color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.75rem;
}
.form-status {
    padding: 15px; background: #e8f5e9; color: #2e7d32; font-size: 0.85rem; margin-bottom: 30px; display: flex; align-items: center; gap: 10px;
}
.visually-hidden {
    position: absolute !important; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0;
}
@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }
    .contact-info { padding-right: 0; }
    .contact-form-wrapper { padding: 30px 20px; }
    .form-field-row { grid-template-columns: 1fr; gap: 0; }
}


/* =============================================
   ABOUT PAGE LUXURY LAYOUT
   ============================================= */
.bolandy-about-page {
    padding-top: 80px; /* Account for fixed header */
}
.about-hero {
    position: relative; width: 100%; height: 70vh; min-height: 500px;
    background: var(--bg-dark); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.about-hero-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.5;
}
.about-hero-image img {
    width: 100%; height: 100%; object-fit: cover;
}
.about-hero-content {
    position: relative; z-index: 2; text-align: center; color: var(--bg-primary);
}
.about-hero-content .subtitle {
    color: var(--bg-primary); display: block; margin-bottom: 20px; font-size: 0.9rem; letter-spacing: 0.3em;
}
.about-hero-content h1 {
    font-size: 4rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.2;
}
.about-story-section {
    padding: 120px var(--side-padding);
}
.story-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-text h2 {
    font-size: 2rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 30px;
}
.story-text p {
    font-size: 0.95rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 20px;
}
.story-image {
    position: relative; padding-bottom: 120%; /* 5:6 aspect ratio */
}
.story-image img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}
.about-signature-section {
    background: #f9f9f9; padding: 100px var(--side-padding); text-align: center;
}
.about-signature-section blockquote {
    font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; font-weight: 300;
    line-height: 1.6; max-width: 800px; margin: 0 auto 40px; color: var(--text-primary);
}
.founder-name {
    display: block; font-size: 1.2rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px;
}
.founder-title {
    font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase;
}
@media (max-width: 900px) {
    .about-hero h1 { font-size: 2.5rem; }
    .story-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-signature-section blockquote { font-size: 1.3rem; }
}


/* =============================================
   MOBILE MENU ACCORDION
   ============================================= */
.mobile-has-submenu {
    display: flex;
    flex-direction: column;
}
.mobile-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.mobile-toggle-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0 10px;
    font-weight: 300;
}
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 15px;
}
.mobile-submenu-group {
    margin-top: 15px;
    margin-bottom: 10px;
}
.mobile-submenu-group h4 {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 5px;
}
.mobile-submenu-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-submenu-group ul li {
    margin-bottom: 8px;
    border: none;
}
.mobile-submenu-group ul li a {
    font-size: 0.9rem;
    text-transform: capitalize;
    letter-spacing: normal;
    color: var(--text-secondary);
}


/* =============================================
   ULTIMATE MOBILE RESPONSIVENESS PATCH
   ============================================= */

@media (max-width: 768px) {
    /* Global Typography & Spacing */
    h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
    h2 { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
    h3 { font-size: 1.2rem !important; }
    p { font-size: 0.9rem !important; }
    
    .section, .container { padding-left: 20px !important; padding-right: 20px !important; }
    
    /* Sidebars (Cart & Mobile Menu) */
    .cart-sidebar, .mobile-menu-overlay {
        width: 100% !important; /* Full width on mobile */
        max-width: 100% !important;
        padding: 20px !important;
    }
    
    /* Hero Section */
    .hero-content h1 { font-size: clamp(2.5rem, 10vw, 4rem) !important; margin-bottom: 15px !important; }
    .hero-content .subtitle { font-size: 0.8rem !important; margin-bottom: 15px !important; }
    .hero-content .btn { padding: 12px 30px !important; font-size: 0.8rem !important; }
    
    /* Grids & Layouts */
    .grid-2, .collection-grid, .about-story-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Contact Page */
    .bolandy-contact-page { padding: 80px 20px 60px !important; }
    .contact-layout { grid-template-columns: 1fr !important; gap: 40px !important; }
    .contact-info { padding-right: 0 !important; }
    .contact-form-wrapper { padding: 30px 20px !important; }
    .form-field-row { grid-template-columns: 1fr !important; gap: 0 !important; }
    
    /* About Page */
    .about-hero { height: 60vh !important; min-height: 400px !important; }
    .about-story-section, .about-signature-section { padding: 60px 20px !important; }
    .story-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    
    /* 404 Page */
    .bolandy-404-page .error-content { padding: 40px 20px !important; }
    .error-actions { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .error-actions .btn { margin: 0 !important; width: 100% !important; max-width: 100% !important; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr !important; gap: 40px !important; }
    .footer-col { text-align: center; }
    .footer-brand { text-align: center; }
    .footer-newsletter form { flex-direction: column; }
    .footer-newsletter input, .footer-newsletter button { width: 100% !important; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 480px) {
    /* Extra Small Devices (iPhone SE, etc) */
    .header-logo { font-size: 1.2rem !important; }
    .hero-content h1 { font-size: 2.2rem !important; }
}


/* =============================================
   URGENT MOBILE LAYOUT FIXES
   ============================================= */

@media (max-width: 768px) {
    /* 1. Fix Collection Page Title Spacing */
    .collection-hero { padding: 20px 0 !important; }
    .collection-hero__title { font-size: 2rem !important; margin: 10px 0 !important; }

    /* 2. Fix Collection Sorting/Filtering overlap */
    .facets__form {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    .facets__wrapper { width: 100% !important; margin: 0 !important; }
    .product-count { margin: 10px 0 !important; width: 100% !important; text-align: left !important; }
    .facets__sort-wrapper { width: 100% !important; display: flex !important; flex-direction: column !important; align-items: flex-start !important; }
    
    /* 3. Fix Product Titles getting cut off */
    .card__heading, .card-information__text, .card__heading a {
        font-size: 0.85rem !important;
        white-space: normal !important;
        line-height: 1.4 !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }

    /* 4. Fix Hero Banner Text getting cut off on the right */
    .banner__content, .slideshow__text-wrapper {
        padding: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .banner__box, .slideshow__text {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 15px !important;
        text-align: center !important;
        align-items: center !important;
    }
    .banner__box > *, .slideshow__text > * {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        word-wrap: break-word !important;
    }
    .banner__heading {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.1 !important;
    }
}


/* =============================================
   ABSOLUTE FINAL MOBILE FIXES (NO CACHE)
   ============================================= */

@media (max-width: 768px) {
    /* 1. Collection Toolbar Exact Fixes */
    .collection-toolbar {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 15px 20px !important;
        height: auto !important;
    }
    .toolbar-left, .toolbar-right {
        width: 100% !important;
        margin-bottom: 10px !important;
    }
    .sort-by-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
    }
    .sort-select { width: 100% !important; margin-top: 5px !important; }
    
    /* 2. Hero Content Absolute Centering Fix */
    .hero-content {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 10% !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 auto !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
    .hero-content h1 {
        word-wrap: break-word !important;
        white-space: normal !important;
        font-size: clamp(2rem, 8vw, 2.5rem) !important;
    }
    
    /* 3. Product Titles (Abaya etc.) */
    .grid-product__title, .card__heading, .product-item__title {
        white-space: normal !important;
        overflow: visible !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
}


/* =============================================
   LOGO AND FOOTER CENTERING FIX
   ============================================= */

@media (max-width: 900px) {
    /* 1. Header Logo Perfect Centering */
    .nav-container {
        grid-template-columns: 1fr auto 1fr !important; /* Forces exact center */
    }
    .nav-left {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    .nav-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }
    .nav-center {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
}

/* 2. Footer Text Centering Assurance (All devices) */
.footer-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}
.footer-brand p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 90% !important;
    word-break: break-word !important;
}


/* =============================================
   ULTRA PREMIUM MOBILE MENU & PRODUCT TITLES
   ============================================= */

@media (max-width: 900px) {
    /* 1. Mobile Menu Redesign */
    .mobile-menu-overlay {
        background-color: #ffffff !important;
        box-shadow: 2px 0 20px rgba(0,0,0,0.05) !important;
    }
    
    .sidebar-header {
        border-bottom: 1px solid #f0f0f0 !important;
        padding-bottom: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .sidebar-header .logo {
        font-family: var(--font-heading) !important;
        letter-spacing: 0.2em !important;
        color: #101010 !important;
        font-size: 1.4rem !important;
    }
    
    .mobile-nav-links {
        padding: 0 10px !important;
    }
    
    .mobile-nav-links > li {
        border-bottom: 1px solid #f5f5f5 !important;
        margin-bottom: 0 !important;
        padding: 18px 0 !important;
    }
    
    .mobile-nav-links > li:last-child {
        border-bottom: none !important;
    }
    
    .mobile-nav-links a, .mobile-submenu-toggle a, .mobile-nav-links .mobile-menu-action {
        font-size: 0.95rem !important;
        font-weight: 400 !important;
        color: #222 !important;
        letter-spacing: 0.15em !important;
    }
    
    .mobile-toggle-btn {
        font-size: 1.2rem !important;
        color: #666 !important;
        font-weight: 300 !important;
        border: none !important;
        background: transparent !important;
    }
    
    .mobile-submenu-group h4 {
        color: #999 !important;
        font-size: 0.7rem !important;
        margin-top: 15px !important;
        border-bottom: 1px solid #f0f0f0 !important;
        padding-bottom: 8px !important;
    }
    
    .mobile-submenu-group ul li a {
        font-size: 0.85rem !important;
        color: #555 !important;
        letter-spacing: 0.05em !important;
        text-transform: capitalize !important;
    }
    
    /* 2. Product Titles Size Reduction */
    .card__heading, .card__heading a, .grid-product__title, .product-item__title {
        font-size: 0.75rem !important;
        letter-spacing: 0.05em !important;
        font-weight: 400 !important;
        color: #333 !important;
        line-height: 1.5 !important;
        margin-bottom: 5px !important;
    }
    
    .price, .price__regular, .price-item {
        font-size: 0.75rem !important;
        color: #888 !important;
    }
}


/* =============================================
   GLOBAL TYPOGRAPHY OVERRIDE (HELVETICA & SIZES)
   ============================================= */

/* Force Helvetica everywhere as requested */
*, h1, h2, h3, h4, h5, h6, p, a, span, div, button, input {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

/* Force Product Titles to be extremely elegant and small across ALL devices */
.card__heading, 
.card__heading a, 
.card-information__text, 
.grid-product__title, 
.product-item__title,
.card-information .h5,
.card-information .h4,
.card-information .h3,
.card-information__wrapper .h5,
.card-information__wrapper .h4,
.product-card .h5,
.product-card .h4,
.product-card-title {
    font-size: 0.8rem !important;
    letter-spacing: 0.05em !important;
    font-weight: 400 !important;
    color: #222 !important;
    line-height: 1.4 !important;
    margin-bottom: 5px !important;
    text-transform: none !important;
}

/* Mobile specific smaller size */
@media (max-width: 768px) {
    .card__heading, 
    .card__heading a, 
    .card-information__text, 
    .grid-product__title, 
    .product-item__title,
    .card-information .h5,
    .card-information .h4,
    .card-information .h3,
    .card-information__wrapper .h5,
    .card-information__wrapper .h4,
    .product-card .h5,
    .product-card .h4,
    .product-card-title {
        font-size: 0.75rem !important;
    }
}

/* Force Price to be small and subdued */
.price, .price__regular, .price-item, .price-item--regular, .price-item--sale {
    font-size: 0.75rem !important;
    color: #888 !important;
    font-weight: 300 !important;
}

/* Localization Sidebar */
.localization-sidebar {
    width: 350px;
}
@media (max-width: 768px) {
    .localization-sidebar {
        width: 100%;
    }
}
.lang-option:hover {
    color: var(--text-primary);
    opacity: 0.8;
}

/* =============================================
   LUXURY COLLECTION PAGE & PRODUCT GRID ENHANCEMENTS
   Enlarge product cards and force wide spacious layout
   ============================================= */
.template-collection .page-width,
.template-collection .collection,
.template-collection .product-grid-container,
.bolandy-collection-page {
    max-width: 100% !important;
    width: 98% !important;
    margin: 0 auto !important;
}

/* Base grid setup */
.template-collection .grid,
.template-collection ul.grid,
.template-collection .product-grid,
.bolandy-collection-page .product-grid {
    display: grid !important;
    gap: 15px 15px !important;
}

/* Image Wrapper Height Fixes */
.template-collection .product-image-wrapper {
    aspect-ratio: 2 / 3 !important;
    height: auto !important;
}

@media (max-width: 1100px) {
    .template-collection .grid,
    .template-collection ul.grid,
    .template-collection .product-grid,
    .bolandy-collection-page .product-grid {
        gap: 15px 15px !important;
    }
}

@media (max-width: 768px) {
    .template-collection .grid,
    .template-collection ul.grid,
    .template-collection .product-grid,
    .bolandy-collection-page .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px 10px !important;
    }
    
    .template-collection .page-width,
    .template-collection .collection,
    .template-collection .product-grid-container,
    .bolandy-collection-page {
        padding: 24px 10px 50px !important;
        width: 100% !important;
    }
}

/* Ensure grid items fill their column width */
.template-collection .grid__item,
.template-collection .product-card,
.template-collection .card-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

/* Make product card image wrapper tall, large and crisp */
.template-collection .card__inner,
.template-collection .card__media,
.template-collection .media,
.template-collection .product-image-wrapper {
    aspect-ratio: 2 / 3 !important;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    background-color: #f7f7f7 !important;
}

.template-collection .card__media img,
.template-collection .media img,
.template-collection .product-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.template-collection .card:hover .card__media img,
.template-collection .card:hover .media img,
.template-collection .product-card:hover img {
    transform: scale(1.04) !important;
}

/* Collection Titles and Headings */
.template-collection .collection-hero__title,
.template-collection .collection-title {
    font-family: var(--font-heading, "Playfair Display", serif) !important;
    font-size: 2.2rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    margin-top: 40px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}


/* =============================================
   BOLANDY — PRODUCT PAGE LUXURY STYLING
   ============================================= */
.bolandy-product-page {
    padding-top: var(--navbar-height);
    background: var(--bg-primary);
    min-height: 100vh;
}
.product-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}
.product-media-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-media-item {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: #f8f8f8;
}
.product-single-image, .product-single-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center; /* Prevents heads from cutting off */
}

@media (max-width: 768px) {
    .bolandy-product-page {
        padding-top: calc(var(--navbar-height) + 15px); /* Extra padding for navbar */
    }
    .product-page-container {
        padding: 0 0 40px 0; /* Remove side padding for edge-to-edge images */
    }
    .product-media-gallery {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 0;
    }
    .product-media-gallery::-webkit-scrollbar {
        display: none;
    }
    .product-media-item {
        flex: 0 0 100%;
        scroll-snap-align: start;
        border-radius: 0;
    }
    .product-single-image, .product-single-video {
        height: 75vh; /* Fits perfectly within the mobile screen */
        object-fit: cover;
        object-position: top center; /* Keeps the head in frame */
    }
    .product-info-container {
        padding: 0 20px;
        margin-top: 20px;
    }
}

.product-info-container {
    position: relative;
}
.product-info-sticky {
    position: sticky;
    top: calc(var(--navbar-height) + 40px);
}
.product-breadcrumb {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.product-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}
.product-breadcrumb a:hover {
    color: var(--text-primary);
}
.product-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.1;
    color: var(--text-primary);
}
.product-price {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}
.product-variants {
    margin-bottom: 40px;
}
.variant-option {
    margin-bottom: 25px;
}
.variant-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-secondary);
}
.variant-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.variant-btn {
    padding: 10px 20px;
    border: 1px solid var(--border-light);
    background: transparent;
    cursor: pointer;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.variant-radio:checked + .variant-btn {
    border-color: var(--text-primary);
    background: var(--text-primary);
    color: var(--bg-primary);
}
.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}
.btn-add-to-cart {
    flex: 1;
    padding: 18px 0;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
}
.btn-add-to-cart.sold-out {
    background: #ccc;
    color: #fff;
    cursor: not-allowed;
    border-color: #ccc;
}
.wishlist-btn-large {
    width: 60px;
    height: auto;
    border: 1px solid var(--border-light);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
}
.wishlist-btn-large:hover {
    border-color: var(--text-primary);
}
.wishlist-btn-large.active svg {
    fill: var(--text-primary);
}
.product-accordions {
    border-top: 1px solid var(--border-light);
}
.accordion-item {
    border-bottom: 1px solid var(--border-light);
}
.accordion-header {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--text-primary);
}
.accordion-icon {
    font-size: 1.2rem;
    font-weight: 300;
}
.accordion-content {
    display: none;
    padding-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}
@media (max-width: 1024px) {
    .product-page-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 30px;
    }
    .product-info-sticky {
        position: relative;
        top: 0;
    }
    .product-title {
        font-size: 2rem;
    }
}

/* NOT: Media query dışında kalmış, karşılıksız kapanış parantezi olan tekrar
   eden hero/navbar blok kaldırıldı — aynı kurallar aşağıda
   @media (max-width: 768px) içinde zaten mevcut. */

/* =============================================
   ULTIMATE MOBILE FIXES V5 (SİMGELER VE BEYAZ BOŞLUK)
   ============================================= */
html, body, .page-wrapper, main {
    overflow-x: clip !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
}

@media (max-width: 768px) { 
    /* Force navbar items to be dark on mobile */
    .navbar .logo,
    .navbar .nav-links a,
    .navbar .icon-link,
    .navbar .mobile-menu-btn,
    .navbar .icon-link svg,
    .navbar .mobile-menu-btn svg,
    .navbar .cart-count {
        color: #101010 !important;
        stroke: #101010 !important;
    }
    
    .navbar .cart-count {
        background: #101010 !important;
        color: #FFFFFF !important;
    }

    /* Hero Alanı ve Fotoğraf Düzeltmesi */
    .hero {
        margin-top: 0 !important;
        height: 100vh !important;
        height: 100dvh !important; /* gerçek mobil görünür yükseklik */
        min-height: 500px !important;
        width: 100% !important;
    }
    .hero-slider, .hero-slide {
        height: 100% !important;
        width: 100% !important;
    }
    .hero-slide img, .hero-slide video, .hero-bg-video {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh !important;
        height: 100dvh !important; /* video/görsel gerçek görünür alanı doldurur */
        object-fit: cover !important;
        z-index: 1 !important;
    }

    /* Yazı Boyutu Düzeltmesi */
    .hero-content {
        padding: 0 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 20px !important;
    }
}

/* =============================================
   MOBİL NAVBAR + TAŞMA DÜZELTMESİ (2026-07-28)
   1) Navbar simgeleri her durumda görünür (koyu)
   2) Sağdaki beyaz boşluk / yatay kayma engellenir
   ============================================= */
@media (max-width: 1024px) {

    /* 1) SİMGELER — .navbar:not(.scrolled) kuralıyla aynı özgüllükte
       yazıldığı ve dosyada sonra geldiği için beyaz-simge kuralını yener */
    .navbar:not(.scrolled) .icon-link,
    .navbar.scrolled .icon-link,
    .navbar:not(.scrolled) .mobile-menu-btn,
    .navbar.scrolled .mobile-menu-btn,
    .navbar .lang-trigger {
        color: #101010 !important;
    }

    .navbar:not(.scrolled) .icon-link svg,
    .navbar.scrolled .icon-link svg,
    .navbar:not(.scrolled) .mobile-menu-btn svg,
    .navbar.scrolled .mobile-menu-btn svg {
        color: #101010 !important;
        stroke: #101010 !important;
    }

    /* Sepet rozeti — koyu daire, beyaz rakam */
    .navbar:not(.scrolled) .cart-count,
    .navbar.scrolled .cart-count {
        background: #101010 !important;
        color: #ffffff !important;
    }

    /* 2) NAVBAR GÖRÜNÜRLÜĞÜ — mobilde düz beyaz zemin.
       Hero fotoğrafı arkada tam ekran olsa bile logo/simgeler ASLA kaybolmaz. */
    .navbar,
    .navbar.scrolled {
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    }
    .navbar .logo,
    .navbar .logo span {
        color: #101010 !important;
    }
    .navbar .dynamic-logo {
        filter: brightness(0) !important;
    }

    /* 3) DÜZEN — logo mutlak ortada, hamburger solda, simgeler sağda.
       Logo position:absolute ile ortalanır → sol/sağ genişlik farkından
       etkilenmez, hiçbir zaman ekranı taşırmaz. */
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        position: relative !important;
        padding: 0 15px !important;
    }

    /* Logo: flex akışından çıkart, tam ortaya sabitle */
    .nav-center {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        width: auto !important;
        pointer-events: auto !important;
    }

    .nav-left {
        display: flex !important;
        align-items: center !important;
        z-index: 2 !important;
    }
    .nav-right {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 13px !important;
        margin: 0 !important;
        padding-right: 0 !important;
        z-index: 2 !important;
    }

    /* Dil (EN/TR) simgesi logonun dibinde durmasın → ikonların en sağına al */
    .nav-right .lang-trigger { order: 9 !important; margin: 0 0 0 3px !important; }
}

/* 3) YATAY TAŞMA (sağdaki beyaz şerit) — :has(.page-wrapper) kuralının
   overflow:visible'ını ezer. AYNI özgüllükte + dosyada sonra geldiği için kazanır.
   overflow-y'ye dokunmadan sadece yatay kaymayı keser. */
html:has(.page-wrapper),
html:has(.page-wrapper) body {
    overflow-x: clip !important;
    max-width: 100% !important;
}

html,
body {
    overflow-x: clip !important;
    max-width: 100% !important;
}

@media (max-width: 1024px) {
    /* Navbar tam ekran genişliğinde ve sabit */
    .navbar {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* ANA İÇERİK SARMALAYICILARI — tema tabanının verdiği max-width /
       kenar boşluğu / padding yüzünden içerik ekrandan dar kalıp sağda
       beyaz bırakıyordu. Sarmalayıcıları zorla tam genişliğe çekiyoruz. */
    main,
    #MainContent,
    .content-for-layout,
    .shopify-section,
    [id^="shopify-section"] {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* ★ ASIL ÇÖZÜM ★ — Taşmayı SECTION seviyesinde kes.
       main/section normal blok olduğu için overflow-x: hidden burada
       dikey kaydırmayı BOZMADAN yatay taşmayı keser (kök elemanda
       senin tarayıcının yapamadığı şey). Taşan öğe hangisiyse artık
       kendi bölümü içinde kırpılır → sağdaki boşluk biter. */
    main,
    #MainContent,
    .content-for-layout,
    .shopify-section,
    [id^="shopify-section"],
    section,
    .hero,
    .footer,
    footer,
    .footer-top,
    .footer-bottom {
        overflow-x: hidden !important;
    }

    /* Uzun kelime/link taşmasın */
    #MainContent, .shopify-section {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }

    /* Hiçbir bölüm görünen alandan geniş olamaz */
    section,
    .hero,
    .hero-slider,
    .hero-slide,
    .nav-container,
    .container,
    .product-grid,
    .couture-grid,
    .collection-cards,
    .footer-top {
        max-width: 100% !important;
    }
}

/* =============================================
   MOBİL İNCE AYAR — 2026-08-05
   1) Ana sayfa hero'su tam ekran (üstteki beyaz boşluk giderilir)
   2) Küçük telefonlarda (≤380px) logo/ikon çakışması giderilir
   ============================================= */

/* 1) HERO TAM EKRAN
   `body:not(.template-index) #MainContent { padding-top: 80px }` kuralı,
   body'ye template-index sınıfı hiç eklenmediği için ANA SAYFADA da devreye
   girip hero'nun üstünde ölü beyaz boşluk bırakıyordu. Hero içeren sayfada
   (yalnızca ana sayfa) bu padding'i sıfırlıyoruz → hero navbar'ın altında
   tam ekran oturur. Diğer sayfalarda 80px boşluk (sabit navbar payı) korunur. */
body:has(.hero) main,
body:has(.hero) #MainContent,
body:has(.hero) .content-for-layout {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
/* Hero'nun kendi bölüm sarmalayıcısında da üst boşluk kalmasın */
body:has(.hero) #MainContent > .shopify-section:first-child,
body:has(.hero) .content-for-layout > .shopify-section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 2) KÜÇÜK TELEFON HEADER — logo ile sağdaki ikonların çakışmasını önle.
   Seçici özgüllüğü, theme.liquid'in inline `#navbar .nav-center .logo span`
   kurallarını (1,3,1) yenmek için `.nav-container` eklenerek (1,4,1) yapıldı. */
@media (max-width: 380px) {
    #navbar .nav-container {
        padding: 0 10px !important;
    }
    #navbar .nav-container .nav-center .logo span:first-child {
        font-size: 0.92rem !important;
        letter-spacing: 0.06em !important;
    }
    #navbar .nav-container .nav-center .logo span:last-child {
        font-size: 0.48rem !important;
        letter-spacing: 0.14em !important;
    }
    #navbar .nav-container .nav-right {
        gap: 7px !important;
    }
    #navbar .nav-container .nav-right .icon-link svg {
        width: 14px !important;
        height: 14px !important;
    }
    #navbar .nav-container .nav-right .lang-trigger {
        font-size: 0.62rem !important;
        margin-left: 2px !important;
    }
}

/* =============================================
   WOW LUXURY ANIMATIONS (Added as per Plan)
   ============================================= */

/* 1. Cinematic Text Reveal */
.text-reveal {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}
.text-reveal span {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.text-reveal.active span {
    transform: translateY(0);
    opacity: 1;
}
.text-reveal-delay-1 span { transition-delay: 0.1s; }
.text-reveal-delay-2 span { transition-delay: 0.2s; }
.text-reveal-delay-3 span { transition-delay: 0.3s; }

/* 2. Advanced Product Hover (Ultra Slow Zoom) */
.product-image-wrapper {
    overflow: hidden; /* Ensure zoom doesn't break box */
}
.product-image-wrapper img {
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .img-main {
    transform: scale(1.05);
}
.product-card:hover .img-hover {
    transform: scale(1.05);
}

/* 3. Luxury Magnetic/Fill Button */
.btn-luxury {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.6s cubic-bezier(0.77, 0, 0.175, 1), border-color 0.6s;
}
.btn-luxury::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark); /* Burgundy fill */
    transition: top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}
.btn-luxury:hover {
    color: #fff !important;
    border-color: var(--bg-dark) !important;
}
.btn-luxury:hover::before {
    top: 0;
}

/* 4. Smooth Parallax Wrapper */
.parallax-wrapper {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
}
.parallax-img {
    height: 130%; /* Taller to allow scrolling */
    width: 100%;
    object-fit: cover;
    will-change: transform;
}

/* 5. Update Image Reveal to use Burgundy */
.img-reveal::after {
    background: var(--bg-dark) !important; /* Vintage Wine reveal */
}
/* =============================================
   CREATIVE HERO STYLES
   ============================================= */
.creative-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.creative-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05); /* Slight zoom for parallax */
    transition: transform 0.3s ease-out;
}
.hero-vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 20%, rgba(30,10,15,0.7) 100%), rgba(0,0,0,0.3);
    z-index: 1;
}
.hero-content {
    z-index: 2;
}
/* Smoky Text Reveal - PURE CSS ANIMATION */
.smoky-reveal {
    display: inline-block;
    animation: smokyRevealAnim 1.5s cubic-bezier(0.25, 1, 0.5, 1) both;
}
@keyframes smokyRevealAnim {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}
.text-reveal-delay-1 { animation-delay: 0.3s; }
.text-reveal-delay-2 { animation-delay: 0.6s; }
.text-reveal-delay-3 { animation-delay: 0.9s; }

/* Glassmorphism Magnetic Button */
.glass-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s ease, border 0.4s ease !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}
.glass-btn .btn-text {
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* BÜTÜN DUVARLARI YIKAN KOD - SADECE KOLEKSİYON SAYFASI İÇİN */
@media screen and (min-width: 1px) {
  html, 
  body.template-collection, 
  body.template-collection.page-width,
  body.template-collection .page-width,
  body.template-collection .container,
  body.template-collection .wrapper,
  body.template-collection main,
  body.template-collection #MainContent,
  body.template-collection .shopify-section {
      max-width: none !important;
      width: 100% !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      margin-left: 0 !important;
}

/* BÜTÜN DUVARLARI YIKAN KOD - SADECE KOLEKSİYON SAYFASI İÇİN */
@media screen and (min-width: 1px) {
  html, 
  body.template-collection, 
  body.template-collection.page-width,
  body.template-collection .page-width,
  body.template-collection .container,
  body.template-collection .wrapper,
  body.template-collection main,
  body.template-collection #MainContent,
  body.template-collection .shopify-section {
      max-width: none !important;
      width: 100% !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      overflow-x: visible !important;
  }
}

body.template-collection .bolandy-collection-page {
  width: 100% !important;
  max-width: none !important;
}

/* =============================================
   TOUCH DEVICE FIXES (Prevent scroll sliding)
   ============================================= */
@media (hover: none) {
    .collection-card:hover img,
    .product-card:hover .product-image-wrapper img,
    .couture-card:hover .product-image-wrapper img,
    .editorial-image:hover img {
        transform: scale(1) !important;
    }
}
