﻿/*
Theme Name: KARTE - Turkish Fashion Storefront
Version: 1.2
Description: Cleaned & Organized - Metallic palette with Y2K Pink accents.
*/

/* Previous font import backup:
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Montserrat:wght@300;400;600;700&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/*--------------------------------------------------------------
1. VARIABLES & ROOT
--------------------------------------------------------------*/
:root {
    /* Colors */
    --white: #FFFFFF;
    /*--peony: #F4C9D6;*/
    --peony: #FFD9F1;
    --peony-hover: #eebdc9;
    --peony-soft: #fdf2f5;
    --text-main: #1a1a1a;
    --text-soft: #666666;
    /* Effects */
    --liquid-silver: linear-gradient(135deg, #ffffff 0%, #f2f2f2 25%, #d6d6d6 50%, #f2f2f2 75%, #ffffff 100%);
    --silver-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    --silver-border: 1px solid rgba(255, 255, 255, 0.8);
    /* Typography */
    /* Previous heading font backup:
    --heading-font: "Playfair Display", serif;
    --heading-font-weight: 700;
    */
    --heading-font: "Montserrat", sans-serif;
    --heading-font-weight: 800;
    --heading-color: #111;
    /* Bootstrap Overrides */
    --body-font: "Montserrat", sans-serif;
    --bs-body-font-family: 'Montserrat', sans-serif;
    --bs-body-font-size: 18px;
    --bs-body-line-height: 1.5;
    --bs-body-color: #1a1a1a;
    --bs-primary: #F4C9D6;
}

/*--------------------------------------------------------------
2. GENERAL TYPOGRAPHY & BASE
--------------------------------------------------------------*/
body {
    font-family: var(--body-font);
    color: var(--text-main);
    background-color: var(--peony-soft);
    letter-spacing: 0.03rem;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: var(--heading-font);
    font-weight: var(--heading-font-weight);
    color: var(--heading-color);
    letter-spacing: 0;
}

h1, .h1,
h2, .h2 {
    font-weight: 800;
}

h3, .h3,
h4, .h4 {
    font-weight: 700;
}

h5, .h5,
h6, .h6 {
    font-weight: 600;
}

p {
    font-weight: 400;
}

.best-sellers {
    background-color: var(--peony-soft); /* Pure white like the 'About' section in image */
    padding-top: 80px;
    padding-bottom: 80px;
}

    .best-sellers h4 {
        background: -webkit-linear-gradient(#333, #999);
        font-style: italic;
        text-transform: capitalize !important;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 0;
    }

    .best-sellers .container {
        max-width: 100% !important;
        padding-left: 5%;
        padding-right: 5%;
    }

a {
    text-decoration: none;
    transition: 0.3s;
}

/*--------------------------------------------------------------
3. NAVIGATION & HEADER UTILITIES
--------------------------------------------------------------*/
/*header.site-header {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}*/

header.site-header {
    position: fixed; /* Changed to fixed to allow hero to slide underneath */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000 !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: all 0.3s ease-in-out;
}

    /* 2. Scrolled State: Apply Blur & Background here */
    header.site-header.scrolled {
        background: transparent !important; /* Semi-transparent white */
        backdrop-filter: blur(15px) !important; /* BLUR ONLY ON SCROLL */
        -webkit-backdrop-filter: blur(15px) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

@media (max-width: 991px) {
    header.site-header {
        position: fixed;
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
        padding-bottom: clamp(0.85rem, 4vw, 1.5rem);
        background: transparent !important;
        background-color: transparent !important;
        border-bottom-color: rgba(255, 255, 255, 0.12);
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    header.site-header.scrolled {
        padding-bottom: clamp(0.85rem, 4vw, 1.5rem) !important;
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }

    header.site-header .navbar {
        width: 100%;
        max-width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
        background: transparent !important;
        background-color: transparent !important;
    }

    header.site-header .container-fluid {
        width: 100%;
        max-width: 100%;
        padding-left: clamp(0.85rem, 4vw, 1.25rem);
        padding-right: clamp(0.85rem, 4vw, 1.25rem);
        overflow-x: clip;
    }

    header.site-header .row {
        --bs-gutter-x: 0;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        row-gap: 0.35rem;
    }

    header.site-header .row > * {
        min-width: 0;
        padding-left: 0;
        padding-right: 0;
    }

    header.site-header .navbar-brand img {
        max-width: min(177px, 48vw);
        height: auto;
    }

    header.site-header .col-auto.d-flex {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
        justify-content: flex-start !important;
    }

    header.site-header .col-auto.d-flex > ul {
        flex: 0 1 auto;
        max-width: calc(100% - 3rem);
        min-width: 0;
        gap: clamp(0.72rem, 3.5vw, 1rem) !important;
    }

    header.site-header .navbar-toggler {
        flex: 0 0 auto;
        margin-left: auto !important;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    header.site-header .search-box,
    header.site-header .search-button,
    header.site-header .search-wrapper {
        min-width: 0;
    }

    header.site-header .search-text {
        max-width: 4.8rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 991px) {
    :root {
        --mobile-site-header-clearance: 8.75rem;
    }
}

@supports not (overflow: clip) {
    @media (max-width: 991px) {
        header.site-header,
        header.site-header .container-fluid {
            overflow-x: hidden;
        }
    }
}

@media (max-width: 380px) {
    header.site-header .search-text {
        display: none;
    }

    header.site-header .search-wrapper {
        padding-bottom: 0;
    }

    header.site-header .col-auto.d-flex > ul {
        gap: clamp(0.65rem, 3vw, 0.9rem) !important;
    }
}

/* --- Brand/Logo --- */
.navbar-brand svg {
    fill: var(--text-main);
    transition: fill 0.3s ease;
    max-height: 40px;
}

/* --- Typography & Nav Links (Mobile & Desktop) --- */
.navbar-nav .nav-link,
.offcanvas-body .nav-link {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-main) !important;
    padding: 12px 20px !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active,
    .offcanvas-body .nav-link:hover {
        color: var(--peony) !important;
    }

/* Animated Underline (Desktop Only) */
@media (min-width: 992px) {
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        width: 0;
        height: 3px;
        background: transparent;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
        width: 80%;
    }
}

@media (min-width: 992px) {
    header.site-header .container-fluid {
        max-width: 100%;
        padding-left: clamp(1.25rem, 2vw, 2.25rem);
        padding-right: clamp(1.25rem, 2vw, 2.25rem);
    }

    header.site-header .row {
        --bs-gutter-x: clamp(0.6rem, 1vw, 1rem);
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    header.site-header .row > * {
        min-width: 0;
    }

    header.site-header .col {
        flex: 1 1 auto;
        min-width: 0;
    }

    header.site-header .navbar-nav {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        min-width: 0;
    }

    header.site-header .col-auto.d-flex > ul {
        flex-wrap: nowrap;
        min-width: 0;
    }
}

@media (min-width: 1600px) and (max-width: 1919.98px) {
    header.site-header .navbar {
        padding: 0.85rem 1rem !important;
    }

    header.site-header .navbar-brand img {
        width: 165px;
        height: auto;
    }

    header.site-header .navbar-nav {
        gap: 0.85rem !important;
    }

    header.site-header .navbar-nav .nav-link,
    header.site-header .offcanvas-body .nav-link {
        padding: 0.75rem 0.8rem !important;
        font-size: 0.82rem !important;
        letter-spacing: 0.14em !important;
    }

    header.site-header .col-auto.d-flex > ul {
        gap: 1rem !important;
    }
}

@media (min-width: 1400px) and (max-width: 1599.98px) {
    header.site-header .navbar {
        padding: 0.75rem 0.85rem !important;
    }

    header.site-header .navbar-brand img {
        width: 148px;
        height: auto;
    }

    header.site-header .navbar-nav {
        gap: 0.45rem !important;
    }

    header.site-header .navbar-nav .nav-link,
    header.site-header .offcanvas-body .nav-link {
        padding: 0.65rem 0.55rem !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.12em !important;
    }

    header.site-header .search-text {
        display: none;
    }

    header.site-header #headerAuthLinkDesktop,
    header.site-header .col-auto.d-flex > ul > li.d-none.d-xxl-block {
        display: none !important;
    }

    header.site-header #headerAuthLinkMobile {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    header.site-header .col-auto.d-flex > ul > li.d-xxl-none {
        display: list-item !important;
    }

    header.site-header .col-auto.d-flex > ul {
        gap: 0.9rem !important;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    header.site-header .navbar {
        padding: 0.75rem 0.9rem !important;
    }

    header.site-header .navbar-brand img {
        width: 152px;
        height: auto;
    }

    header.site-header .search-text {
        display: none;
    }

    header.site-header .col-auto.d-flex > ul {
        gap: 1rem !important;
    }

    header.site-header .offcanvas-body .navbar-nav {
        align-items: stretch;
        gap: 0 !important;
    }

    header.site-header .offcanvas-body .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.85rem 0 !important;
        white-space: normal;
    }
}

/* --- Right Side Utilities Container --- */
.user-tools-wrapper {
    display: flex;
    align-items: center;
    gap: 15px; /* Spacing between the "pill" and the Hamburger */
}

.user-items {
    background: var(--liquid-silver);
    padding: 8px 20px;
    border-radius: 50px;
    border: var(--silver-border);
    box-shadow: var(--silver-shadow);
    display: flex;
    align-items: center;
    gap: 25px; /* Spacing between icons inside the pill */
    margin: 0;
    list-style: none;
}

    .user-items a {
        color: var(--text-main);
        text-decoration: none;
        position: relative;
        display: flex;
        align-items: center;
        transition: color 0.3s ease;
    }

        .user-items a:hover {
            color: var(--peony);
        }

/* --- Counter Badges --- */
.wishlist-count,
.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--peony) !important;
    color: var(--text-soft) !important;
    min-width: 18px;
    height: 18px;
    padding: 2px 5px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    position: absolute;
    top: -16px;
    right: -20px;
    border: 1.5px solid var(--white);
    box-shadow: 0 2px 5px rgba(244, 201, 214, 0.5);
    z-index: 10;
}

/* Mobile Tweak for Badges */
@media (max-width: 991px) {
    header.site-header .col-auto ul > li > a.position-relative {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 24px;
        min-height: 24px;
    }

    header.site-header .wishlist-count.badge,
    header.site-header .cart-count.badge {
        top: -7px;
        right: -9px;
        transform: none !important;
    }

    header.site-header .wishlist-count.badge.is-empty,
    header.site-header .cart-count.badge.is-empty {
        display: none;
    }
}

/* --- Components & UI --- */
.navbar-toggler {
    border: none;
    padding: 0.4rem 0.6rem;
}

.dropdown-menu {
    background: var(--white);
    border: var(--silver-border);
    box-shadow: var(--silver-shadow);
    border-radius: 15px;
    padding: 10px;
    margin-top: 10px !important;
}

.dropdown-item {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .dropdown-item:hover {
        background-color: var(--peony);
        color: var(--white) !important;
    }

/* --- Offcanvas (Mobile Menu) --- */
.offcanvas {
    background-color: var(--white);
    border-left: var(--silver-border);
}

.offcanvas-header {
    border-bottom: 1px solid var(--peony);
}

@media (max-width: 1399.98px) {
    header.site-header #offcanvasNavbar,
    header.site-header #offcanvasNavbar.offcanvas,
    header.site-header #offcanvasNavbar.offcanvas-end {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        left: auto !important;
        display: flex !important;
        flex-direction: column;
        width: min(16.5rem, calc(100vw - 1.25rem)) !important;
        max-width: calc(100vw - 1.25rem);
        height: auto !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        max-height: none !important;
        overflow: visible !important;
        overflow-y: visible !important;
    }

    header.site-header #offcanvasNavbar .offcanvas-body {
        flex: 0 0 auto;
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
        overflow-y: visible !important;
        overscroll-behavior: auto;
    }

    header.site-header #offcanvasNavbar .navbar-nav {
        width: 100%;
        align-items: stretch;
        gap: 0 !important;
    }

    header.site-header #offcanvasNavbar .nav-item.dropdown {
        position: static;
    }

    header.site-header #offcanvasNavbar .dropdown-menu {
        position: static !important;
        inset: auto !important;
        transform: none !important;
        width: 100%;
        min-width: 100%;
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
        overflow-y: visible !important;
        margin: 0 0 0.6rem !important;
        padding: 0.35rem 0.45rem 0.55rem;
        border-radius: 12px;
        box-shadow: none;
    }

    header.site-header #offcanvasNavbar .dropdown-menu[data-bs-popper] {
        left: auto !important;
        margin-top: 0 !important;
    }

    header.site-header #offcanvasNavbar .dropdown-item {
        width: 100%;
        white-space: normal;
        line-height: 1.35;
        padding: 0.65rem 0.75rem;
    }
}

.list-unstyled a {
    color: var(--text-main) !important; /* Restores 'İstekler' and 'Sepet' text color */
    text-decoration: none;
    transition: color 0.3s ease;
}

    .list-unstyled a svg {
        fill: var(--text-main) !important; /* Restores icon colors on mobile */
        transition: fill 0.3s ease;
    }

/* --- Search Icon & Text Styling --- */
.search-button {
    color: var(--text-main) !important;
    transition: color 0.3s ease;
}

.search-wrapper {
    display: inline-flex;
    align-items: center;
    padding-bottom: 2px; /* Space between text/icon and the line */
    border-bottom: 2px solid var(--text-main); /* The underline */
    transition: border-color 0.3s ease;
}

.search-text {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 5px;
}

/* Hover Effect */
.search-button:hover {
    color: var(--peony) !important;
}

    .search-button:hover .search-wrapper {
        border-bottom-color: var(--peony); /* Underline turns pink on hover */
    }

.search-button svg {
    fill: currentColor; /* Matches the text color automatically */
}

/* Mobile Adjustment: Hide text if space is tight (Optional) */
@media (max-width: 480px) {
    /* If you want to keep only the icon on very small screens, 
       uncomment the line below: */
    /* .search-text { display: none; } */
}

/*--------------------------------------------------------------
4. SEARCH POPUP (FUNCTIONAL FIX)
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    inset: 0;
    background: rgba(253, 242, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

    .search-popup.active,
    .search-popup.is-visible {
        opacity: 1;
        visibility: visible;
    }

.search-popup-container {
    width: 90%;
    max-width: 900px;
    padding: 40px;
}

/* Close Button */
.btn-close-search {
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
    color: var(--text-soft);
    transition: 0.3s;
}

    .btn-close-search:hover {
        color: var(--peony);
        transform: rotate(90deg);
    }

/* Typography & Form */
.search-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-main);
    text-align: center;
}

.search-form-modern {
    position: relative;
    border-bottom: 3px solid var(--peony);
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.search-input-modern {
    background: transparent;
    border: none;
    font-size: 2.2rem;
    padding: 15px 0;
    width: 100%;
    color: var(--text-main);
    font-family: var(--heading-font);
    font-weight: 300;
    outline: none;
}

    .search-input-modern::placeholder {
        color: #ccc;
        font-style: italic;
    }

.search-submit-btn {
    background: transparent;
    border: none;
    color: var(--peony);
    transition: 0.3s;
}

    .search-submit-btn:hover {
        transform: scale(1.2);
    }

/* Category Pill Buttons */
.cat-list-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-soft);
    margin-bottom: 25px;
    text-align: center;
}

.cat-pill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cat-pill {
    background: var(--white);
    color: var(--text-main);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

    .cat-pill:hover {
        background: var(--peony);
        color: white;
        border-color: var(--peony);
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(244, 201, 214, 0.4);
    }

/*--------------------------------------------------------------
5. LAYOUT COMPONENTS
--------------------------------------------------------------*/
.chrome-bg.logo-footer {
    /*background: var(--liquid-silver);*/ /* Metallic silver look */
    background-image: url('../images/liquid_silver_banner.jpg');
    background-repeat: no-repeat;
    background-size: 100% auto; /* No scaling; uses the image's real pixels */
    background-position: 25% 20%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.categories {
    background-color: #FFEEFA;
    background-image: radial-gradient(rgba(255,255,255,0.3) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    padding-top: 100px;
    padding-bottom: 100px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.cat-item .image-holder {
    position: relative;
    isolation: isolate;
    aspect-ratio: 4 / 5;
    overflow: visible;
    padding: clamp(10px, 1vw, 16px);
    border: 1px solid rgba(17, 18, 18, 0.62) !important;
    border-radius: 3px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(62, 66, 66, 0.6) 12%, rgba(255, 255, 255, 0.96) 22%, rgba(18, 20, 20, 0.5) 38%, rgba(250, 252, 251, 0.95) 54%, rgba(66, 70, 70, 0.62) 73%, rgba(255, 255, 255, 0.9)),
        linear-gradient(45deg, rgba(18, 20, 20, 0.24), transparent 18%, rgba(255, 255, 255, 0.72) 34%, transparent 52%, rgba(18, 20, 20, 0.18) 78%),
        url('../images/liquid_silver_banner.jpg');
    background-size: 180% 180%, 130% 130%, cover;
    background-position: 48% 52%, center, center;
    box-shadow:
        0 22px 36px rgba(26, 26, 26, 0.2),
        0 2px 0 rgba(255, 255, 255, 0.72),
        inset 0 6px 5px rgba(255, 255, 255, 0.96),
        inset 0 -7px 10px rgba(15, 17, 17, 0.5),
        inset 7px 0 9px rgba(255, 255, 255, 0.68),
        inset -8px 0 12px rgba(12, 14, 14, 0.44) !important;
    transform: none;
    transition: none;
}

.col-md-3:nth-child(even) .cat-item .image-holder {
    transform: none;
}

.cat-item .image-holder::before {
    content: "";
    position: absolute;
    pointer-events: none;
    inset: clamp(3px, 0.35vw, 5px);
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 0 0 1px rgba(17, 18, 18, 0.54),
        0 0 0 3px rgba(255, 255, 255, 0.68),
        inset 0 0 0 1px rgba(17, 18, 18, 0.34),
        inset 6px 6px 10px rgba(255, 255, 255, 0.32),
        inset -7px -7px 12px rgba(0, 0, 0, 0.28);
}

.cat-item .image-holder a {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.88),
        0 0 0 2px rgba(18, 20, 20, 0.76),
        inset 10px 10px 18px rgba(0, 0, 0, 0.3),
        inset -8px -8px 16px rgba(255, 255, 255, 0.2),
        0 8px 12px rgba(0, 0, 0, 0.28);
}

.cat-item .image-holder a::before,
.cat-item .image-holder a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.cat-item .image-holder a::before {
    box-shadow:
        inset 12px 12px 22px rgba(0, 0, 0, 0.34),
        inset -10px -10px 20px rgba(255, 255, 255, 0.18);
}

.cat-item .image-holder a::after {
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.36),
        inset 0 0 22px rgba(0, 0, 0, 0.14);
}

.cat-item .image-holder img {
    display: block; /* Removes bottom gap in some browsers */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    filter: none;
    opacity: 1;
    transition: none;
}

.cat-item .btn-common {
    margin-top: 0;
    position: relative;
    z-index: 10;
}

/* Modern category showcase: intentionally avoids every liquid-silver frame/button layer. */
.categories.category-showcase {
    --category-peony: #d83183;
    padding: clamp(5.5rem, 9vw, 10rem) clamp(1rem, 5vw, 6rem) clamp(7rem, 11vw, 12rem);
    border: 0;
    background:
        radial-gradient(circle at 8% 6%, rgba(244, 174, 208, .2), transparent 25rem),
        linear-gradient(180deg, #fff8fb 0%, #fff 100%);
}

.category-showcase__shell {
    width: min(1640px, 100%);
    margin: 0 auto;
}

.category-showcase__header {
    max-width: 860px;
    margin-right: auto;
    margin-bottom: clamp(3.5rem, 7vw, 7rem);
    margin-left: auto;
    text-align: center;
}

.category-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1.2rem;
    color: var(--category-peony);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    justify-content: center;
}

.category-showcase__eyebrow::before {
    width: 2rem;
    height: 1px;
    background: currentColor;
    content: "";
}

.category-showcase__header h2 {
    margin: 0;
    color: var(--category-peony);
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: .94;
}

.category-showcase__header h2 em {
    color: var(--category-peony);
    font-weight: 400;
}

.category-showcase__header > p {
    max-width: 42rem;
    margin: 1.6rem auto 0;
    padding-top: 0;
    border-top: 0;
    color: var(--category-peony);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.75;
}

.category-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: clamp(1rem, 2vw, 2.25rem);
}

.category-showcase__item {
    min-width: 0;
    opacity: 1;
    transform: none;
    visibility: visible;
}

/* This section must never depend on AOS viewport measurements to render. */
.category-showcase [data-aos],
.category-showcase [data-aos].aos-init,
.category-showcase [data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.category-showcase__item:nth-child(even) {
    margin-top: 0;
}

.category-showcase__card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #eadfe4;
    box-shadow: 0 16px 38px rgba(53, 32, 42, .09);
    color: #fff;
    text-decoration: none;
    isolation: isolate;
}

.category-showcase__card img {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    filter: saturate(.92) contrast(1.02);
    transform: scale(1.001);
    transition: transform .75s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.category-showcase__shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 9, 11, .02) 42%, rgba(13, 9, 11, .8) 100%);
    pointer-events: none;
}

.category-showcase__number {
    position: absolute;
    z-index: 2;
    top: 1.25rem;
    right: 1.25rem;
    display: grid;
    width: 2.8rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(216, 49, 131, .28);
    border-radius: 50%;
    background: rgba(255, 217, 241, .9);
    color: var(--category-peony);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    backdrop-filter: blur(9px);
}

.category-showcase__content {
    position: absolute;
    z-index: 2;
    right: clamp(1.2rem, 2vw, 2rem);
    bottom: clamp(1.25rem, 2vw, 2rem);
    left: clamp(1.2rem, 2vw, 2rem);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.category-showcase__content > strong {
    max-width: 8ch;
    color: var(--peony);
    font-size: clamp(1.35rem, 2vw, 2.3rem);
    font-weight: 650;
    letter-spacing: -.04em;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
}

.category-showcase__content > span {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: .45rem;
    padding-bottom: .25rem;
    border-bottom: 1px solid var(--peony);
    color: var(--peony);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    opacity: .86;
    transition: opacity .25s ease, transform .25s ease;
}

.category-showcase__card:hover img,
.category-showcase__card:focus-visible img {
    filter: saturate(1) contrast(1.04);
    transform: scale(1.045);
}

.category-showcase__card:hover .category-showcase__content > span,
.category-showcase__card:focus-visible .category-showcase__content > span {
    opacity: 1;
    transform: translateX(3px);
}

.category-showcase__card:focus-visible {
    outline: 3px solid #d83183;
    outline-offset: 4px;
}

@media (max-width: 1100px) {
    .category-showcase__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .category-showcase__item:nth-child(even) { margin-top: 0; }
}

@media (max-width: 767px) {
    .categories.category-showcase { padding: 4.5rem 1rem 6rem; }
    .category-showcase__header { max-width: 34rem; }
    .category-showcase__header h2 { font-size: clamp(3rem, 15vw, 5.2rem); }
    .category-showcase__grid { gap: .8rem; }
    .category-showcase__item:nth-child(even) { margin-top: 0; }
    .category-showcase__card { border-radius: 0; box-shadow: 0 12px 30px rgba(53, 32, 42, .08); }
    .category-showcase__content { align-items: flex-start; flex-direction: column; gap: .7rem; }
    .category-showcase__content > strong { font-size: clamp(1.05rem, 5vw, 1.45rem); }
    .category-showcase__content > span { font-size: .54rem; }
    .category-showcase__number { top: .8rem; right: .8rem; width: 2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
    .category-showcase__card img,
    .category-showcase__content > span { transition: none; }
}

/*--------------------------------------------------------------
6. PRODUCT & CATEGORY ITEMS
--------------------------------------------------------------*/
.product-item {
    background: var(--white);
    border: 2px solid var(--peony-soft);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}

    .product-item .image-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.best-sellers .swiper-slide {
    height: auto;
    display: flex;
}

.best-sellers .product-item {
    width: 100%;
}

.best-sellers .product-item .image-holder {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.best-sellers .product-item .image-holder > a:first-child {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper,
.swiper-wrapper {
    touch-action: pan-y;
}

.swiper-slide {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.swiper a,
.swiper button {
    touch-action: manipulation;
}

    .product-item:hover {
        transform: translateY(-5px); /* Mobilde daha stabil bir değer */
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .product-item .cart-concern {
        position: absolute;
        bottom: -60px;
        left: 0;
        width: 100%;
        background: var(--liquid-silver);
        padding: 12px;
        text-align: center;
        transition: bottom 0.3s ease;
    }

    .product-item:hover .cart-concern {
        bottom: 0;
    }

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    /* Buzlu Cam Efekti */
    background: rgba(255, 255, 255, 0.6); /* Hafif beyaz şeffaflık */
    backdrop-filter: blur(10px); /* Arkayı bulandırır */
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 5;
    transition: all 0.3s ease;
}

    .product-content h5 {
        font-family: var(--body-font);
        font-weight: 600;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }

    .best-sellers .product-content h5 {
        min-height: 2.6em;
        display: -webkit-box;
        overflow: hidden;
        line-height: 1.3;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

        .product-content h5 a {
            color: var(--text-main);
            font-size: inherit;
        }

    .product-content span {
        color: var(--peony);
        font-weight: 700;
        font-size: 1.1rem;
        display: block;
    }

.product-item:hover .product-content {
    padding-bottom: 20px;
}

/*--------------------------------------------------------------
7. BUTTONS & UI ELEMENTS
--------------------------------------------------------------*/
.btn-common {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.42) 15%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.2) 72%, rgba(255, 255, 255, 0) 88%),
        linear-gradient(180deg, #f3f1eb 0%, #d8d5cf 28%, #aaa7a2 62%, #767579 100%) !important;
    color: var(--text-main) !important;
    border: 0 !important;
    border-radius: 999px;
    min-height: 52px;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    box-shadow:
        0 4px 15px rgba(244, 201, 214, 0.4),
        0 14px 28px rgba(26, 26, 26, 0.13),
        inset 0 0 0 5px rgba(238, 241, 239, 0.42),
        inset 0 0 0 7px rgba(64, 68, 67, 0.16),
        inset 0 8px 10px rgba(255, 255, 255, 0.72),
        inset 0 -8px 10px rgba(42, 43, 43, 0.32),
        inset 9px 0 13px rgba(255, 255, 255, 0.3),
        inset -9px 0 13px rgba(52, 54, 54, 0.18);
    transition: 0.3s;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

    .btn-common::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        border-radius: inherit;
        padding: 6px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.32) 62%, rgba(255, 255, 255, 0) 100%),
            url('../images/liquid_silver_banner.jpg');
        background-size: 180% 180%, 320% auto;
        background-position: 25% 20%, 25% 20%;
        -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }

    .btn-common::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        z-index: 1;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: 0.5s;
        pointer-events: none;
    }

    .btn-common:hover::after {
        left: 100%;
    }

.btn-common:hover,
.btn-common:focus-visible {
    color: var(--peony-hover) !important;
    border-color: var(--peony-hover) !important;
}

.btn-common.karte-metallic-button:hover > .karte-metallic-button__content,
.btn-common.karte-metallic-button:focus-visible > .karte-metallic-button__content {
    color: var(--peony-hover) !important;
}

.btn-common.karte-metallic-button {
    --karte-metal-border-size: 5px;
    border-style: groove;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--karte-metal-border-size) !important;
    background: transparent !important;
    background-color: transparent !important;
    color: var(--text-main) !important;
    text-shadow: none !important;
    line-height: 1.1;
    box-shadow:
        0 4px 15px rgba(244, 201, 214, 0.4),
        0 14px 28px rgba(26, 26, 26, 0.13),
        inset 0 2px 2px rgba(255, 255, 255, 0.72),
        inset 0 -2px 4px rgba(22, 24, 24, 0.45) !important;
}

.btn-common.karte-metallic-button::before,
.btn-common.karte-metallic-button::after {
    content: none;
}

.btn-common.karte-metallic-button > .metal {
    border-radius: inherit;
    pointer-events: none;
    z-index: 0 !important;
}

.btn-common.karte-metallic-button > .karte-metallic-button__content {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-height: calc(52px - (var(--karte-metal-border-size) * 2));
    padding: 0 24px;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(232, 231, 226, 0.98) 0%, rgba(205, 202, 197, 0.98) 27%, rgba(166, 162, 158, 0.98) 62%, rgba(105, 105, 108, 1) 100%);
    box-shadow:
        0 -1px 2px rgba(34, 35, 35, 0.2),
        0 1px 2px rgba(255, 255, 255, 0.28),
        inset 0 3px 8px rgba(35, 36, 37, 0.24),
        inset 0 -7px 12px rgba(255, 255, 255, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.28),
        inset 10px 0 14px rgba(255, 255, 255, 0.18),
        inset -10px 0 14px rgba(35, 36, 37, 0.18);
    color: inherit;
    white-space: nowrap;
    transform: translateY(1px);
}

.btn-link {
    font-family: var(--body-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-soft);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #ddd;
    transition: 0.3s;
}

    .btn-link:hover {
        color: var(--peony-hover);
        border-color: var(--peony-hover);
    }

.icon-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* Ensure it stays above the images */
    /* Modern Visuals: Liquid Silver */
    width: 80px;
    height: 80px;
    background: var(--liquid-silver) !important;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* Modern Depth & Glassmorphism */
    opacity: 0.5; /* Subtle when not in use */
    box-shadow: var(--silver-shadow), inset 0 2px 5px rgba(255,255,255,1);
    transition: all 0.4s ease;
}

    .icon-arrow svg {
        width: 32px;
        height: 32px;
        fill: var(--text-main);
        transition: fill 0.3s ease, transform 0.3s ease;
    }

    .icon-arrow:hover {
        opacity: 1;
        background: var(--peony) !important; /* Turns Pink on hover */
        border-color: var(--peony);
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 10px 20px rgba(244, 201, 214, 0.4);
    }

        .icon-arrow:hover svg {
            fill: var(--white);
        }

    .icon-arrow.icon-arrow-left {
        left: 30px;
    }

    .icon-arrow.icon-arrow-right {
        right: 30px;
    }

.swiper-pagination {
    display: none;
}

@media (max-width: 991px) {
    .best-sellers .swiper,
    #billboard .main-swiper {
        overflow: hidden !important;
        padding-bottom: 50px; /* Space for the pagination dots below */
    }

    /* Reposition pagination because we turned overflow to hidden */
    .best-sellers .swiper-pagination,
    #billboard .main-swiper .swiper-pagination {
        bottom: 0px !important;
        position: absolute !important;
        margin-top: 0 !important;
    }

    .icon-arrow {
        display: none !important;
    }

    /* 2. Make pagination visible on Mobile */
    .swiper-pagination {
        display: flex !important; /* Forces visibility */
        position: relative;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 30px; /* Spacing below the cards */
        width: 100% !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 10;
    }

    /* 3. Prevent the swiper from cutting off the dots */
    .swiper {
        overflow: visible !important;
        clip-path: none !important;
    }

    /* 4. Pill shape for active dot */
    .swiper-pagination-bullet {
        background: #d1d1d1;
        opacity: 1;
        width: 10px;
        height: 10px;
        margin: 0 !important; /* Reset swiper default margins */
    }

    .swiper-pagination-bullet-active {
        background: var(--peony) !important;
        width: 28px;
        border-radius: 5px;
    }
}

.btn-wishlist {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px); /* Buzlu cam efekti */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--peony); /* Pink border for heart button */
    box-shadow: 0 4px 10px rgba(244, 201, 214, 0.3);
    transition: 0.3s;
}

    .btn-wishlist:hover {
        background: var(--peony);
    }

    .btn-wishlist svg {
        fill: #aaa;
        width: 20px;
        height: 20px;
    }

    .btn-wishlist:hover svg {
        fill: #fff;
    }

/*--------------------------------------------------------------
8. FOOTER
--------------------------------------------------------------*/
.logo-footer {
    padding: 50px 0;
}

    .logo-footer img {
        opacity: 0.8;
        mix-blend-mode: multiply;
        max-height: 70px;
    }

.border-animation-left .item-anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--peony);
    transition: width 0.3s ease;
}

.border-animation-left .item-anchor:hover::after {
    width: 100%;
}

#footer {
    background-color: var(--peony-soft);
    /*border-top: 3px solid var(--peony);*/
    padding-top: 80px;
    color: var(--text-main);
    font-size: 0.9rem;
}

    #footer .widget-title {
        letter-spacing: 2px;
        font-size: 0.85rem;
        color: var(--text-main);
    }

    /* Elegant Link Hover with Peony Accent */
    #footer .item-anchor {
        color: var(--text-soft);
        position: relative;
        transition: color 0.3s ease;
        display: inline-block;
    }

        #footer .item-anchor:hover {
            color: var(--peony);
        }

        #footer .item-anchor::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--peony);
            transition: width 0.3s ease;
        }

        #footer .item-anchor:hover::after {
            width: 100%;
        }

.footer-container {
    /* 1. Remove the maximum width limit */
    max-width: 100% !important;
    /* 2. Occupy the full width of the screen */
    width: 100% !important;
    /* 3. Kill the margins entirely */
    margin-left: 0 !important;
    margin-right: 0 !important;
    /* 4. Optional: Add horizontal padding so text doesn't touch the screen glass */
    padding-left: 40px !important;
    padding-right: 40px !important;
}

    /* Ensure the Bootstrap 'row' inside doesn't add accidental side-margins */
    .footer-container .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }

/* Social Icons with Header Vibe */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--liquid-silver);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-main);
    transition: all 0.3s ease !important;
}

    .social-icon:hover {
        background: var(--peony) !important;
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(244, 201, 214, 0.4);
    }

    .social-icon svg {
        fill: currentColor;
    }

/* Newsletter Customization */
.newsletter-form .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px;
}

    .newsletter-form .form-control:focus {
        border-color: var(--peony);
        box-shadow: none;
    }

.btn-peony {
    background-color: var(--peony);
    color: var(--white);
    border: none;
    transition: background 0.3s ease;
}

    .btn-peony:hover {
        background-color: var(--peony-hover);
        color: var(--white);
    }

/* Bottom Bar */
.bg-light-silver {
    background: #fbfbfb;
}

.fs-xs {
    font-size: 0.75rem;
}

.text-soft {
    color: var(--text-soft);
}

/*--------------------------------------------------------------
9. ANIMATIONS & MISC
--------------------------------------------------------------*/
@keyframes open-up {
    0% {
        clip-path: inset(48% 34% 36% 35%);
    }

    100% {
        clip-path: inset(0% 0% 0% 0%);
    }
}

.open-up {
    clip-path: inset(48% 34% 36% 35%);
}

.aos-animate.open-up {
    animation: 1s open-up forwards;
}

.preloader {
    position: fixed;
    inset: 0;
    background: var(--text-main);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .preloader.loaded {
        opacity: 0;
        visibility: hidden;
    }

/*--------------------------------------------------------------
10. MODERNIZED CART OFFCANVAS
--------------------------------------------------------------*/
.modern-offcanvas {
    background: rgba(253, 242, 245, 0.9);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--peony);
    width: 400px !important;
}

.cart-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
}

.btn-close-custom {
    background: transparent;
    border: none;
    color: var(--text-soft);
    transition: 0.3s;
}

    .btn-close-custom:hover {
        color: var(--peony-hover);
        transform: rotate(90deg);
    }

/* Cart Item Styling */
.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--peony-soft);
}

.cart-item-name {
    font-family: var(--heading-font);
    font-weight: 700;
    font-style: italic;
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-main);
}

.cart-item-meta {
    font-family: var(--body-font);
    color: var(--text-soft);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item-price {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--text-main);
}

/* Summary & Checkout */
.total-label {
    font-family: var(--body-font);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
}

.total-amount {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main); /* Y2K Pink highlight for the money */
}

.btn-checkout-modern {
    background: var(--white) !important;
    color: var(--text-main) !important;
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-family: var(--body-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 15px rgba(244, 201, 214, 0.4);
    transition: all 0.4s ease;
}

    .btn-checkout-modern:hover {
        transform: translateY(-3px);
        background: var(--peony-hover) !important;
        color: var(--white) !important;
        box-shadow: 0 12px 20px rgba(244, 201, 214, 0.6);
    }

.cart-shipping-note {
    font-family: var(--body-font);
    font-size: 0.75rem;
    color: var(--text-soft);
    font-style: italic;
    text-align: center;
    display: block;
    margin-top: 15px;
}

/*--------------------------------------------------------------
10.5. CART SECTION
--------------------------------------------------------------*/
.cart-page-section {
    background-color: var(--white); /* Keep the outer area clean */
    padding: 80px 0;
    margin-top: 5rem;
    display: flex;
    align-items: stretch;
}

.cart-page-title {
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 2rem;
}

/* Item Rows */
.cart-page-item-row {
    display: flex;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid var(--peony-soft);
}

.item-visual {
    width: 140px;
    height: 180px;
    background: var(--peony-soft);
    border-radius: 8px;
    overflow: hidden;
}

.item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex-grow: 1;
}

.item-name {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.btn-remove-link {
    background: none;
    border: none;
    font-size: 0.8rem;
    color: var(--peony);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.2s;
}

    .btn-remove-link:hover {
        color: var(--peony-hover);
    }

/* Controls */
.item-controls {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--peony-soft);
    border-radius: 50px;
    padding: 5px 15px;
    width: 100px; /* Fixed small width to prevent stretching */
    height: 40px;
}

.qty-btn {
    background: none;
    border: none;
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

    .qty-btn:hover {
        color: var(--peony-hover);
    }

.qty-input {
    width: 35px;
    border: none;
    text-align: center;
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0;
}

.item-total-price {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Sidebar Summary Card */
.order-summary-card {
    background: var(--peony-soft);
    padding: 40px;
    border-radius: 20px;
    height: fit-content;
    align-self: flex-start;
    position: sticky;
    top: 20px;
}

.summary-title {
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25rem;
    border-bottom: 2px solid var(--peony);
    padding-bottom: 15px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: var(--body-font);
    font-weight: 500;
}

.total-line {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
}

.btn-checkout-page {
    background: var(--text-main);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
}

    .btn-checkout-page:hover {
        transform: scale(1.02);
        background: var(--peony-hover);
    }

.btn-continue-shopping {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/*--------------------------------------------------------------
11. ABOUT ME SECTION
--------------------------------------------------------------*/
.about-me {
    background-color: var(--white);
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .about-me {
        padding-top: var(--mobile-site-header-clearance);
    }

    .contact-hero.py-5 {
        padding-top: var(--mobile-site-header-clearance) !important;
    }
}

.about-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: #eee3e8;
    box-shadow: 0 24px 60px rgba(53, 32, 42, 0.11) !important;
}

.about-image-frame::before {
    content: none;
}

.about-image-frame__image {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #eee3e8;
    box-shadow: none;
}

.about-image-frame__image::before,
.about-image-frame__image::after {
    content: none;
}

.about-image-frame__image::before {
    box-shadow: none;
}

.about-image-frame__image::after {
    border: 0;
    box-shadow: none;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 0;
    border-radius: 0;
    transform: scale(1.001);
    filter: saturate(.94) contrast(1.02);
    opacity: 1;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .35s ease;
}

.about-image-frame:hover img {
    transform: scale(1.025);
    filter: saturate(1) contrast(1.03);
}

/* Typography to match the reference */
.about-subtitle {
    font-family: var(--body-font);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--peony);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-style: italic; /* Editorial style from reference */
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}

/*--------------------------------------------------------------
12. BILLBOARD / NEW COLLECTIONS
--------------------------------------------------------------*/
.main-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .main-swiper .swiper-wrapper {
        align-items: stretch;
        transition-timing-function: ease-out;
    }

    /* 3. Prevent Bootstrap columns from interfering with slide width */
    .main-swiper .swiper-slide {
        height: auto;
        display: flex;
        justify-content: center;
        flex-shrink: 0;
    }

.billboard-kaira {
    background: var(--white);
}

.italic-title {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 4rem;
    color: var(--text-main);
}

.divider-silver {
    height: 2px;
    width: 60px;
    background: var(--liquid-silver);
}

/* Card Styling */
.modern-card {
    background: transparent;
    transition: all 0.4s ease;
}

.billboard-kaira .banner-item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.billboard-kaira .main-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.billboard-kaira .main-swiper .banner-item {
    min-width: 0;
    height: 100%;
}

.billboard-kaira .banner-item > .image-holder {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.billboard-kaira .banner-item > .image-holder > a:first-child {
    display: block;
    width: 100%;
    height: 100%;
}

.billboard-kaira .banner-item > .image-holder img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.silver-border-frame {
    position: relative;
    isolation: isolate;
    padding: clamp(6px, 0.8vw, 10px);
    border: 1px solid rgba(17, 18, 18, 0.55);
    border-radius: 4px;
    overflow: visible;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(64, 68, 68, 0.55) 13%, rgba(255, 255, 255, 0.94) 24%, rgba(22, 24, 24, 0.46) 42%, rgba(249, 251, 250, 0.94) 58%, rgba(73, 76, 76, 0.58) 76%, rgba(255, 255, 255, 0.88)),
        url('../images/liquid_silver_banner.jpg');
    background-size: 170% 170%, cover;
    background-position: 48% 52%, center;
    box-shadow:
        0 16px 28px rgba(26, 26, 26, 0.16),
        inset 0 5px 4px rgba(255, 255, 255, 0.94),
        inset 0 -6px 9px rgba(14, 16, 16, 0.44),
        inset 6px 0 8px rgba(255, 255, 255, 0.58),
        inset -7px 0 10px rgba(12, 14, 14, 0.38);
    transform: none;
    transition: none;
}

.silver-border-frame::before,
.silver-border-frame::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.silver-border-frame::before {
    inset: clamp(2px, 0.28vw, 4px);
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow:
        0 0 0 1px rgba(17, 18, 18, 0.45),
        0 0 0 2px rgba(255, 255, 255, 0.58),
        inset 0 0 0 1px rgba(17, 18, 18, 0.28),
        inset 5px 5px 9px rgba(255, 255, 255, 0.28),
        inset -6px -6px 11px rgba(0, 0, 0, 0.24);
}

.silver-border-frame::after {
    inset: clamp(7px, 0.9vw, 11px);
    z-index: 3;
    box-shadow:
        inset 11px 11px 18px rgba(0, 0, 0, 0.34),
        inset -9px -9px 18px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.36),
        0 0 0 2px rgba(255, 255, 255, 0.3);
}

.billboard-kaira .silver-border-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
}

.silver-border-frame > a:first-child,
.billboard-kaira .silver-border-frame a {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.82),
        0 0 0 2px rgba(18, 20, 20, 0.7),
        inset 8px 8px 15px rgba(0, 0, 0, 0.3),
        inset -7px -7px 14px rgba(255, 255, 255, 0.16);
}

.silver-border-frame > a:first-child::before,
.silver-border-frame > a:first-child::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.silver-border-frame > a:first-child::before {
    box-shadow:
        inset 10px 10px 18px rgba(0, 0, 0, 0.3),
        inset -8px -8px 16px rgba(255, 255, 255, 0.16);
}

.silver-border-frame > a:first-child::after {
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.34),
        inset 0 0 18px rgba(0, 0, 0, 0.12);
}

.silver-border-frame img,
.billboard-kaira .silver-border-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: none;
    transition: none;
}

#billboard .silver-border-frame,
.billboard-kaira .main-swiper .silver-border-frame {
    isolation: auto;
    padding: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    overflow: hidden !important;
    background: var(--white) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

#billboard .silver-border-frame::before,
#billboard .silver-border-frame::after,
#billboard .silver-border-frame > a:first-child::before,
#billboard .silver-border-frame > a:first-child::after,
.billboard-kaira .main-swiper .silver-border-frame::before,
.billboard-kaira .main-swiper .silver-border-frame::after,
.billboard-kaira .main-swiper .silver-border-frame > a:first-child::before,
.billboard-kaira .main-swiper .silver-border-frame > a:first-child::after {
    content: none !important;
    display: none !important;
}

#billboard .silver-border-frame > a:first-child,
.billboard-kaira .main-swiper .silver-border-frame > a:first-child {
    background: transparent !important;
    box-shadow: none !important;
}

.billboard-kaira .banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.banner-item .element-title a {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}

/* Nav Button Specifics for Billboard */
.billboard-nav {
    top: 40% !important; /* Centers arrows relative to the image holder */
}

/* Ensure the zoom effect stays clean */
.zoom-effect img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.zoom-effect:hover img {
    transform: scale(1.08);
}

/* Fix for potential flex conflicts in Swiper */
/*.swiper-wrapper {
    display: flex !important;*/ /* Overrides any bootstrap row interference */
/*flex-direction: row;
}*/

/* Ensure the titles don't wrap awkwardly when 4 items are visible */
.banner-item .element-title {
    font-size: 1rem;
    min-height: 2.4em; /* Keeps alignment if title wraps to 2 lines */
}

.billboard-kaira .banner-content .text-soft:last-of-type {
    min-height: 4.5em;
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.billboard-kaira .btn-center {
    margin-top: auto;
}

/* Adjust navigation arrows for 4-card density */
@media (min-width: 1400px) {
    .icon-arrow-left {
        left: -50px;
    }

    .icon-arrow-right {
        right: -50px;
    }
}

/*--------------------------------------------------------------
13. HERO-BILLBOARD (MODERN SILVER & PINK EDITION)
--------------------------------------------------------------*/

.hero-billboard {
    margin-top: -100px;
    padding-top: 90px;
    background-color: var(--peony-soft);
    position: relative;
    z-index: 1;
}

.hero-main-img {
    height: 80vh;
    object-fit: cover;
    object-position: center;
    /*border: var(--silver-border);*/ /* Gümüş çerçeve */
    box-shadow: var(--silver-shadow); /* Gümüş derinlik efekti */
}

.hero-content-overlay {
    z-index: 10;
    max-width: 600px;
}

.main-title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-style: italic;
    font-size: 5.5rem;
    line-height: 1;
    padding-top: 0.08em;
    margin-top: -0.08em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #666 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
    padding-right: 0.2em !important;
    display: inline-block; /* block yerine inline-block kutu hesaplamasını düzeltir */
    overflow: visible !important;
    white-space: normal;
}

.hero-subtitle,
.hero-content-overlay h4 {
    font-family: var(--body-font);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--peony);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.hero-billboard .btn-hero-peony {
    display: inline-block;
    position: relative;
    z-index: 20;
    font-family: var(--body-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--peony);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #ddd;
}

.hero-billboard a.btn-hero-peony[data-aos] {
    transition-property: transform, opacity, color, border-color !important;
    transition-duration: 1.2s, 1.2s, 0.3s, 0.3s !important;
    transition-delay: 0.6s, 0.6s, 0s, 0s !important;
    transition-timing-function: ease !important;
}

.hero-billboard .btn-hero-peony:hover {
    color: var(--peony-hover) !important;
    border-color: var(--peony-hover) !important;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    .hero-main-img {
        height: 60vh;
        margin-bottom: 30px;
    }

    .hero-content-overlay {
        position: relative !important; /* Mobilde görselin altından devam etmesi için */
        top: 0 !important;
        transform: none !important;
        padding: 40px 20px !important;
        text-align: center;
        max-width: 100%;
        margin-left: 0 !important;
        background: white; /* Metinlerin okunabilirliği için temiz bir fon */
    }

    .main-title {
        font-size: 2.8rem;
        letter-spacing: 0;
        margin-top: 10px;
    }

    .hero-subtitle,
    .hero-content-overlay h4 {
        letter-spacing: 2px;
        font-size: 0.8rem;
    }

    .hero-billboard .btn-hero-peony {
        width: 100%; /* Mobilde tıklanabilirliği artırmak için tam genişlik */
        max-width: 250px;
        margin: 0 auto;
        padding-bottom: 10px;
    }
}

/*--------------------------------------------------------------
14. PRODUCT PAGE (STICKY LAYOUT)
--------------------------------------------------------------*/
.product-page-section {
    margin-top: 100px;
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: var(--white);
}

/* LEFT COLUMN: Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Tight gap like the reference */
}

.gallery-grid {
    display: flex;
    gap: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    /* Optional: Slight fade-in effect on load */
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RIGHT COLUMN: Sticky Sidebar */
.product-info-sticky {
    position: -webkit-sticky;
    position: sticky;
    /*top: 100px;*/ /* Stays 100px from top of window */
    padding: 60px 40px;
    height: fit-content;
    align-self: flex-start;
}

/* Typography & Headers */
.product-title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-main);
}

.product-price {
    font-family: var(--body-font);
    font-size: 1.2rem;
    color: var(--text-soft);
    letter-spacing: 1px;
}

/* Color Swatches */
.option-label {
    font-family: var(--body-font);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-soft);
    display: block;
}

.color-swatches {
    display: flex;
    gap: 15px;
}

.swatch {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}

    .swatch:hover {
        transform: scale(1.1);
    }

    .swatch.active {
        border: 2px solid var(--text-main); /* Black ring for active color */
        padding: 2px; /* creates space between ring and color */
        background-clip: content-box;
    }

/* Size Buttons */
.size-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-outline-size {
    border: 1px solid #e0e0e0;
    color: var(--text-main);
    border-radius: 0; /* Square/Sharp edges for high fashion */
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--body-font);
    font-size: 0.9rem;
    transition: 0.2s;
}

.btn-check:checked + .btn-outline-size {
    background-color: var(--peony); /* Active size is Peony */
    border-color: var(--peony);
    color: var(--text-main);
    font-weight: 700;
}

.btn-outline-size:hover {
    border-color: var(--peony-hover);
}

.btn-size-guide {
    background: none;
    border: none;
    text-decoration: underline;
    font-size: 0.8rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Add to Bag Button */
.btn-add-bag {
    background: var(--text-main);
    color: var(--white);
    border: none;
    padding: 18px;
    text-transform: uppercase;
    font-family: var(--body-font);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    /* The Signature Shadow Effect */
    box-shadow: 6px 6px 0px var(--peony);
}

    .btn-add-bag:hover {
        background: var(--peony);
        color: var(--text-main);
        transform: translate(-2px, -2px);
        box-shadow: 8px 8px 0px var(--text-main);
    }

/* Accordion Styling */
.accordion-item-custom {
    border-top: 1px solid #eee;
}

    .accordion-item-custom:last-child {
        border-bottom: 1px solid #eee;
    }

.accordion-header-custom {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    font-family: var(--body-font);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    color: var(--text-main);
}

    .accordion-header-custom .icon {
        font-size: 1.2rem;
        font-weight: 300;
    }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.accordion-header-custom.active {
    color: var(--peony-hover); /* Pink text when open */
}

/* Links */
.text-link-underline {
    color: var(--text-soft);
    text-decoration: underline;
    font-size: 0.85rem;
    transition: 0.2s;
}

    .text-link-underline:hover {
        color: var(--peony);
    }

/*--------------------------------------------------------------
   SHOP LAYOUT & FILTERS
--------------------------------------------------------------*/
.shop-grid-section {
    margin-top: 100px;
}

.shop-header {
    position: relative;
    top: 80px; /* Adjust based on your main Navbar height */
    z-index: 90;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: top 0.3s;
}

/* Custom Dropdowns (The Magda Look) */
.custom-dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    font-family: var(--body-font);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s;
}

    .dropdown-btn:hover {
        color: var(--peony);
    }

.custom-dropdown.active .dropdown-btn {
    color: var(--peony);
}

    .custom-dropdown.active .dropdown-btn i {
        transform: rotate(180deg);
    }

/* Dropdown Menu Box */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--peony);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 100;
}

.custom-dropdown.align-right .dropdown-menu-custom {
    left: auto;
    right: 0;
}

.custom-dropdown.active .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Filter Options */
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-family: var(--body-font);
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-soft);
}

    .filter-option:hover {
        color: var(--text-main);
    }

    .filter-option input[type="checkbox"] {
        accent-color: var(--peony);
        width: 16px;
        height: 16px;
        border-color: var(--text-soft);
    }

/* Simple List (Sort) */
.simple-list a {
    display: block;
    text-decoration: none;
    color: var(--text-soft);
    padding: 8px 0;
    font-size: 0.9rem;
    transition: 0.2s;
}

    .simple-list a:hover, .simple-list a.active {
        color: var(--text-main);
        font-weight: 600;
    }

/* Swatches */
.swatch-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-block;
}

    .swatch-circle.black {
        background: #000;
    }

    .swatch-circle.cream {
        background: #fdfceb;
    }

    .swatch-circle.peony {
        background: var(--peony);
    }

    .swatch-circle.red {
        background: #a81c1c;
    }

/* Filter Buttons */
.dropdown-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.btn-reset, .btn-apply {
    background: none;
    border: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.btn-reset {
    color: var(--text-soft);
}

.btn-apply {
    color: var(--text-main);
    text-decoration: underline;
}

/*--------------------------------------------------------------
15. PRODUCT CARDS (HIGH FASHION)
--------------------------------------------------------------*/
.product-card-fashion {
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--peony-soft);
    aspect-ratio: 3 / 4; /* Standard fashion ratio */
}

.img-primary, .img-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card-fashion:hover .img-secondary {
    opacity: 1;
}

/* Quick Add Button (+) */
.btn-quick-add {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card-fashion:hover .btn-quick-add {
    opacity: 1;
    transform: translateY(0);
}

.btn-quick-add:hover {
    background: var(--peony);
    color: var(--white);
}

/* Info Section */
.product-title a {
    font-family: var(--heading-font);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-price {
    display: block;
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-top: 5px;
}

/* Hover Sizes (Magda Style) */
.hover-sizes {
    margin-top: 8px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    color: var(--text-soft);
}

    .hover-sizes span {
        margin-right: 8px;
    }

.product-card-fashion:hover .hover-sizes {
    height: auto;
    opacity: 1;
}

/* Load More Button */
.btn-load-more {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s;
}

    .btn-load-more:hover {
        background: var(--liquid-silver);
        border-color: transparent;
        color: var(--text-main);
    }

/*--------------------------------------------------------------
16. BODY-CONTENT
--------------------------------------------------------------*/

main[role="main"] > section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden; /* Prevents elements from causing horizontal scroll */
}

main[role="main"] {
    max-width: 100%;
}

    /* This keeps the content inside the section from hitting the glass */
    main[role="main"] > section > .container {
        max-width: 1400px; /* Or whatever width you prefer for content */
        margin: 0 auto;
    }

.container,
.container-lg,
.container-md {
    max-width: 1320px !important; /* Standard high-res desktop width */
    width: 90% !important; /* Fallback for smaller screens */
    margin-right: auto !important;
    margin-left: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}


@media (max-width: 768px) {
    .container {
        width: 95% !important; /* More space on mobile */
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    main[role="main"] > section {
        max-width: 100vw;
    }

    h1,
    h2,
    .main-title,
    .hero-subtitle,
    .about-title,
    .auth-display,
    .customer-title,
    .customer-dashboard__title,
    .customer-address-dashboard__title,
    .store-title {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .btn-common,
    .store-button,
    .store-button-secondary,
    .customer-button,
    .customer-button--ghost,
    .customer-button--soft,
    .customer-subnav__link {
        max-width: 100%;
        white-space: normal;
    }
}

.btn-wishlist {
    appearance: none;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    width: 2.75rem;
    height: 2.75rem;
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 217, 241, 0.95);
    box-shadow: 0 12px 28px rgba(26, 26, 26, 0.08);
    cursor: pointer;
    z-index: 7;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.btn-wishlist:hover,
.btn-wishlist:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(26, 26, 26, 0.14);
    outline: none;
}

.btn-wishlist svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: rgba(26, 26, 26, 0.36);
    transition: fill 0.22s ease;
    pointer-events: none;
}

.btn-wishlist:hover svg,
.btn-wishlist:focus-visible svg,
.btn-wishlist.is-active svg {
    fill: var(--peony);
}

.btn-wishlist.is-active {
    background: rgba(255, 217, 241, 0.38);
    border-color: var(--peony);
    box-shadow: 0 16px 32px rgba(255, 159, 204, 0.2);
}

.session-expiry-warning {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1080;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    width: min(24rem, calc(100vw - 2rem));
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(26, 26, 26, 0.08);
    background: rgba(255, 255, 255, 0.94);
    color: var(--text-main);
    box-shadow: 0 18px 42px rgba(26, 26, 26, 0.12);
    backdrop-filter: blur(12px);
}

.session-expiry-warning[hidden] {
    display: none;
}

.session-expiry-warning__dot {
    flex: 0 0 auto;
    width: 0.7rem;
    height: 0.7rem;
    margin-top: 0.42rem;
    border-radius: 999px;
    background: #c98517;
}

.session-expiry-warning.is-danger .session-expiry-warning__dot {
    background: #c7525b;
}

.session-expiry-warning__body {
    display: grid;
    gap: 0.28rem;
    min-width: 0;
}

.session-expiry-warning__title,
.session-expiry-warning__text {
    margin: 0;
    line-height: 1.5;
}

.session-expiry-warning__title {
    font-family: var(--heading-font);
    font-size: 1.05rem;
}

.session-expiry-warning__text {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.session-expiry-warning__action {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-main);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: underline;
    text-underline-offset: 0.14em;
    cursor: pointer;
}

.session-expiry-warning__action:hover,
.session-expiry-warning__action:focus-visible {
    color: var(--peony);
    outline: none;
}

.session-expiry-warning__action:disabled {
    opacity: 0.64;
    cursor: wait;
}

@media (max-width: 767.98px) {
    .session-expiry-warning {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 0.75rem;
        width: auto;
    }
}

.newsletter-form {
    display: grid;
    gap: 0.75rem;
}

.newsletter-form__row {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.newsletter-form__row .form-control {
    min-width: 0;
}

.newsletter-form__row--pill {
    gap: 0.75rem;
    justify-content: center;
}

.newsletter-form__row--pill .form-control {
    flex: 1 1 16rem;
}

.newsletter-form__row--pill .btn-common {
    flex: 0 0 auto;
    border-radius: 999px;
    white-space: nowrap;
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 0;
    color: var(--text-soft);
    font-size: 0.78rem;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
}

.newsletter-consent--center {
    justify-content: center;
    text-align: left;
}

.newsletter-consent__text--peony {
    color: var(--peony);
}

.newsletter-consent input {
    flex: 0 0 auto;
    margin-top: 0.22rem;
    accent-color: var(--peony);
}

.newsletter-feedback {
    min-height: 1.25rem;
    margin: 0;
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.45;
}

.newsletter-feedback.is-success {
    color: #2f855a;
}

.newsletter-feedback.is-danger {
    color: #9b2c2c;
}

.footer-link-button {
    appearance: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-main);
    font: inherit;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
    color: var(--peony-hover);
    outline: none;
}

.cookie-consent {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 1090;
    width: min(34rem, calc(100vw - 2rem));
    padding: 1.05rem;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    box-shadow: 0 18px 42px rgba(26, 26, 26, 0.13);
    backdrop-filter: blur(14px);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__body {
    display: grid;
    gap: 0.75rem;
}

.cookie-consent__eyebrow {
    color: var(--text-soft);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.14rem;
}

.cookie-consent__title {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.2;
}

.cookie-consent__text,
.cookie-consent__feedback {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.55;
}

.cookie-consent__feedback {
    min-height: 1.2rem;
}

.cookie-consent__feedback.is-danger {
    color: #9b2c2c;
}

.cookie-consent__settings {
    display: grid;
    gap: 0.65rem;
    padding: 0.85rem;
    border: 1px solid rgba(255, 217, 241, 0.95);
    border-radius: 0.8rem;
    background: rgba(253, 242, 245, 0.58);
}

.cookie-consent__settings[hidden] {
    display: none;
}

.cookie-consent__toggle {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    color: var(--text-main);
    line-height: 1.4;
    cursor: pointer;
}

.cookie-consent__toggle input {
    flex: 0 0 auto;
    margin-top: 0.18rem;
    accent-color: var(--peony);
}

.cookie-consent__toggle small {
    display: block;
    margin-top: 0.12rem;
    color: var(--text-soft);
    font-size: 0.78rem;
    letter-spacing: 0;
}

.cookie-consent__toggle.is-disabled {
    cursor: default;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.cookie-consent__button {
    min-height: 2.6rem;
    padding: 0.65rem 0.95rem;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 999px;
    background: var(--white);
    color: var(--text-main);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
    border-color: var(--peony);
    outline: none;
    transform: translateY(-1px);
}

.cookie-consent__button--primary {
    border-color: var(--peony);
    background: var(--peony);
}

.cookie-consent__button--ghost {
    background: transparent;
}

.cookie-consent__button:disabled {
    opacity: 0.62;
    cursor: wait;
    transform: none;
}

@media (max-width: 767.98px) {
    .chrome-bg.logo-footer {
        background-size: cover;
        background-position: center center;
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .auth-submit.karte-metallic-button {
        width: 100%;
        max-width: 260px;
        min-height: 42px;
        margin-left: auto;
        margin-right: auto;
    }

    .auth-submit.karte-metallic-button > .karte-metallic-button__content {
        min-height: 32px;
        padding: 0 18px;
    }

    .auth-submit.karte-metallic-button > .metal {
        inset: 0;
        max-width: none;
        border-radius: inherit;
    }

    .newsletter-form__row,
    .newsletter-form__row--pill {
        display: grid;
        gap: 0.75rem;
    }

    .newsletter-form__row--pill .btn-common {
        width: 100%;
    }

    .cookie-consent {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 0.75rem;
        width: auto;
    }
}
