/* Frontend Styles - Modern & Premium Design */

:root {
    /* Sabit header yığını — birbirini kapatmayacak sıra (cart drawer tema: ~1059+) */
    --z-topbar: 1050;
    --z-main-header: 1040;
    --z-categories-bar: 1035;
    --z-category-dropdown: 1045;
    /* Açık mobil menü: main/hero + mobil alt bar (100010) üstüne çizilsin */
    --z-mobile-menu: 100500;
    --z-header-search-panel: 1055;
    /* Üst çubuk + ana header (arama sarımı) + kategori şeridi — taşmayı önlemek için güvenli boşluklar */
    --layout-categories-offset: 170px;
    --layout-chrome-pad: 240px;
    /* JS (frontend_header + footer) ile güncellenir; ilk boyamada layout ile yakın hizalama */
    --header-main-top: 0px;
    --header-categories-top: var(--layout-categories-offset);
    /* Takı / mücevher vitrin paleti (altın vurgu + antrasit + şampanya) */
    --jewelry-charcoal: #221b26;
    --jewelry-charcoal-mid: #2d2430;
    --jewelry-champagne: #f7f0e4;
    --jewelry-gold: #b8860b;
    --jewelry-gold-dark: #8a6810;
    --jewelry-gold-light: #d4b85c;
    --primary-red: var(--jewelry-gold);
    --primary-red-dark: var(--jewelry-gold-dark);
    --primary-red-light: var(--jewelry-gold-light);
    --text-dark: #25201c;
    --text-gray: #6b5d52;
    --text-light: #9a8b7e;
    --bg-white: #fffef9;
    --bg-light: #faf6ef;
    --bg-dark: #212529;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    /* Bootstrap 5.3 "info" (cyan) → şampanya / altın (vitrin) */
    --bs-info: #8a6810;
    --bs-info-rgb: 138, 104, 16;
    --bs-info-text-emphasis: #4a3b22;
    --bs-info-bg-subtle: #f7ecd6;
    --bs-info-border-subtle: #e4ce9a;
}

/* Vitrin: Bootstrap bilgi sınıfları (cyan) → şampanya / altın */
.alert-info {
    color: var(--bs-info-text-emphasis);
    background-color: var(--bs-info-bg-subtle);
    border-color: var(--bs-info-border-subtle);
}
.alert-info .alert-link {
    color: var(--jewelry-gold-dark);
}

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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    /* max(): JS ölçümü düşük kalırsa (font/yüklenme) en az --layout-chrome-pad uygulanır */
    padding-top: max(var(--header-stack-height, 0px), var(--layout-chrome-pad));
    overflow-x: hidden;
}

/* Homepage hero (slider) da aynı güvenli üst boşluk */
body.page-homepage {
    padding-top: max(var(--header-stack-height, 0px), var(--layout-chrome-pad));
}

/* Move only homepage first slider up, keep header position intact */
body.page-homepage #homepageSections > .homepage-section-wrapper:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.page-homepage #homepageSections > .homepage-section-wrapper:first-child .hero-slider-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Keep homepage sections slightly separated */
body.page-homepage #homepageSections > .homepage-section-wrapper + .homepage-section-wrapper {
    margin-top: 0.35rem;
}

body.page-homepage #homepageSections.homepage-fallback-sections > section + section {
    margin-top: 0.35rem;
}

/* Homepage boxed mode (slider included)
   Tema (ör. modern/style.css) #homepageSections { margin: 0 !important } kullandığı için
   yatay ortalamayı korumak için !important gerekir. */
body.page-homepage.homepage-layout-boxed #homepageSections {
    max-width: min(1320px, calc(100% - 1.5rem)) !important;
    margin: 0 auto 1rem !important;
}

body.page-homepage.homepage-layout-boxed #homepageSections > .homepage-section-wrapper {
    padding: 0;
}

body.page-homepage.homepage-layout-boxed #homepageSections > .homepage-section-wrapper > .section-content > section {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(18, 16, 14, 0.08);
}

body.page-homepage.homepage-layout-boxed #homepageSections > .homepage-section-wrapper > .section-content > section.fullwidth-banner-section {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

body.page-homepage.homepage-layout-boxed #homepageSections.homepage-fallback-sections > section {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(18, 16, 14, 0.08);
}

@media (max-width: 767.98px) {
    body.page-homepage #homepageSections > .homepage-section-wrapper + .homepage-section-wrapper,
    body.page-homepage #homepageSections.homepage-fallback-sections > section + section {
        margin-top: 0.28rem;
    }

    body.page-homepage.homepage-layout-boxed #homepageSections {
        max-width: calc(100% - 0.9rem) !important;
        margin: 0 auto !important;
    }

    body.page-homepage.homepage-layout-boxed #homepageSections > .homepage-section-wrapper > .section-content > section {
        border-radius: 10px;
    }

    body.page-homepage.homepage-layout-boxed #homepageSections > .homepage-section-wrapper > .section-content > section.fullwidth-banner-section {
        border-radius: 0;
    }

    body.page-homepage.homepage-layout-boxed #homepageSections.homepage-fallback-sections > section {
        border-radius: 10px;
    }
}

/* Full-width single banner section */
.fullwidth-banner-section {
    padding: 0 !important;
    background: transparent !important;
}

.fullwidth-banner-media {
    display: block;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: auto;
    overflow: visible;
    text-decoration: none;
}

.fullwidth-banner-media img {
    width: 100%;
    height: auto;
    display: block;
}

.fullwidth-banner-section.has-fixed-height .fullwidth-banner-media {
    height: var(--fwb-height, clamp(220px, 31vw, 420px));
    overflow: hidden;
}

.fullwidth-banner-section.has-fixed-height .fullwidth-banner-media img {
    height: 100%;
    object-fit: cover;
}

body.page-homepage.homepage-layout-boxed .fullwidth-banner-media {
    width: 100%;
    margin-left: 0;
}

.fullwidth-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.12) 100%);
}

.fullwidth-banner-copy {
    position: absolute;
    left: clamp(0.9rem, 4vw, 4rem);
    bottom: clamp(0.9rem, 4vw, 3rem);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: #fff;
    max-width: min(90vw, 760px);
}

.fullwidth-banner-title {
    font-size: clamp(1.4rem, 2.9vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.fullwidth-banner-subtitle {
    font-size: clamp(0.95rem, 1.35vw, 1.15rem);
    line-height: 1.45;
    opacity: 0.96;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Ana sayfa: sol banner + sağ kategori ürünleri (banner_product_row) */
.banner-product-row-section {
    background: #fff;
}

.banner-product-row-section .bpr-section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Sol banner kutusu: ürün carousel ile aynı çerçeve / şampanya tonu */
.bpr-banner {
    padding: 0.55rem 0.4rem;
    background: linear-gradient(180deg, rgba(247, 240, 228, 0.45) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 14px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.65),
        0 2px 16px rgba(34, 27, 38, 0.06);
}

.bpr-banner-media {
    position: relative;
    min-height: clamp(280px, 58vw, 480px);
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-color: #e8e4df;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(184, 134, 11, 0.12);
}

@media (min-width: 992px) {
    .bpr-banner-media {
        min-height: clamp(340px, 36vw, 520px);
    }
}

/* İki sütun: sol banner sütun yüksekliğini doldurur, sağ ürünler blok dikey ortada */
@media (min-width: 992px) {
    .bpr-layout--split .bpr-banner {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 0;
    }

    .bpr-layout--split .bpr-banner-media {
        flex: 1 1 auto;
        min-height: clamp(320px, 30vw, 520px);
        height: auto;
    }

    .bpr-layout--split .bpr-products-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        min-height: 100%;
    }

    .bpr-layout--split .bpr-products-carousel {
        width: 100%;
    }
}

/* Ürün şeridi: yatay carousel (scroll-snap); dış çerçeve .bpr-banner ile ortak */
.bpr-products-carousel {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.55rem 0.4rem;
    background: linear-gradient(180deg, rgba(247, 240, 228, 0.45) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 14px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.65),
        0 2px 16px rgba(34, 27, 38, 0.06);
}

.bpr-carousel--no-scroll {
    gap: 0;
}

.bpr-carousel--no-scroll .bpr-carousel-nav {
    display: none;
}

.bpr-products-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
    padding: 0.35rem 0.2rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 134, 11, 0.45) transparent;
}

.bpr-products-track::-webkit-scrollbar {
    height: 6px;
}

.bpr-products-track::-webkit-scrollbar-thumb {
    background: rgba(184, 134, 11, 0.35);
    border-radius: 6px;
}

.bpr-carousel-item {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

@media (min-width: 576px) {
    .bpr-carousel-item {
        flex: 0 0 calc(50% - 0.5rem);
        scroll-snap-align: start;
    }
}

@media (min-width: 992px) {
    .bpr-carousel-item {
        flex: 0 0 calc(33.333% - 0.67rem);
        max-width: none;
    }
}

.bpr-carousel-nav {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(184, 134, 11, 0.38);
    background: rgba(255, 255, 255, 0.95);
    color: var(--jewelry-gold-dark, #8a6810);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(34, 27, 38, 0.08);
}

.bpr-carousel-nav:hover {
    background: var(--jewelry-champagne, #f7f0e4);
    border-color: var(--jewelry-gold, #b8860b);
    color: var(--jewelry-charcoal, #221b26);
    box-shadow: 0 2px 10px rgba(184, 134, 11, 0.18);
}

.bpr-carousel-nav:focus-visible {
    outline: 2px solid var(--jewelry-gold, #b8860b);
    outline-offset: 2px;
}

.bpr-banner-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
}

.bpr-banner-inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: clamp(1rem, 3vw, 1.75rem);
    z-index: 2;
    color: #fff;
}

.bpr-banner-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    opacity: 0.95;
    margin-bottom: 0.25rem;
}

.bpr-banner-heading {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.85rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.bpr-banner-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.55rem 1rem;
    border-radius: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bpr-banner-btn:hover {
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.bpr-product-card {
    background: #fff;
    border: 1px solid rgba(184, 134, 11, 0.22);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 2px 14px rgba(34, 27, 38, 0.06);
}

.bpr-product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    padding: 0.55rem;
}

.bpr-product-card-link:hover .bpr-product-title {
    text-decoration: underline;
}

/* Kare yerine hafif dikey kutu; lg+ daha portre — sol banner ile yükseklik dengesi */
.bpr-product-img-wrap {
    aspect-ratio: 4 / 5;
    background: #f6f6f6;
    overflow: hidden;
    margin: -0.55rem -0.55rem 0.65rem;
    border-radius: 10px 10px 0 0;
}

@media (min-width: 992px) {
    .bpr-product-img-wrap {
        aspect-ratio: 3 / 4;
    }

    /* Banner ile aynı satırda: daha uzun portre; yükseklik üst sınırı sol blokla orantılı */
    .bpr-layout--split .bpr-product-img-wrap {
        aspect-ratio: 2 / 3;
        max-height: min(520px, 56vh);
    }
}

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

.bpr-product-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 0.35rem;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bpr-layout--split .bpr-product-card-link {
    text-align: center;
}

.bpr-product-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
}

.bpr-layout--split .bpr-product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem;
}

.bpr-product-price-old {
    font-size: 0.8rem;
    font-weight: 500;
    color: #888;
    text-decoration: line-through;
    margin-right: 0.35rem;
}

/* İkili promosyon (dual_promo_banners) — banner_product_row ile uyumlu çerçeve */
.dual-promo-banners-section {
    background: #fff;
}

.dual-promo-banners-section .dpb-section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.dpb-panel {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 0.55rem 0.45rem;
    background: linear-gradient(180deg, rgba(247, 240, 228, 0.45) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 14px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.65),
        0 2px 16px rgba(34, 27, 38, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dpb-panel--link:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.65),
        0 8px 26px rgba(34, 27, 38, 0.1);
}

.dpb-panel-inner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.dpb-panel-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e8e4df;
    box-shadow: inset 0 0 0 1px rgba(184, 134, 11, 0.12);
}

.dpb-panel-overlay {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    max-width: calc(100% - 1.5rem);
}

/* Fırça / boya darbesi hissi — organik border-radius */
.dpb-brush {
    display: inline-flex;
    flex-direction: column;
    gap: 0.12rem;
    padding: 0.55rem 1rem 0.6rem 0.85rem;
    background: rgba(10, 10, 10, 0.92);
    border-radius: 3px 42px 14px 22px / 22px 10px 32px 8px;
    transform: rotate(-1.1deg);
    box-shadow: 5px 7px 0 rgba(0, 0, 0, 0.12);
}

.dpb-line1 {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
}

.dpb-line2 {
    font-size: clamp(0.95rem, 2.6vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.12;
}

.dpb-panel-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    padding: 0;
    border: none;
    border-radius: 0;
    pointer-events: none;
}

.dpb-panel-btn-text {
    display: inline-block;
    padding: 0.48rem 1rem;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dpb-panel-btn--muted {
    opacity: 0.85;
}

/* 4'lü promosyon grid (promo_grid_4) */
.promo-grid-4-section {
    background: #fff;
}

.promo-grid-4-section .pg4-section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.pg4-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .pg4-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.pg4-card {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 0.55rem 0.45rem;
    background: linear-gradient(180deg, rgba(247, 240, 228, 0.45) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 14px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.65),
        0 2px 16px rgba(34, 27, 38, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pg4-card--link:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.65),
        0 8px 26px rgba(34, 27, 38, 0.1);
}

.pg4-card-inner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.pg4-card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 170px;
    background-size: cover;
    background-position: center;
    background-color: #e8e4df;
    box-shadow: inset 0 0 0 1px rgba(184, 134, 11, 0.12);
}

.pg4-card-content {
    position: absolute;
    inset: 0;
    padding: 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    gap: 0.65rem;
    background: linear-gradient(90deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.55) 46%, rgba(255,255,255,0.86) 100%);
}

.pg4-line1 {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(45, 36, 48, 0.55);
    font-weight: 600;
}

.pg4-line2 {
    font-size: clamp(1.05rem, 2.4vw, 1.55rem);
    font-weight: 800;
    line-height: 1.1;
    color: #111;
}

.pg4-cta {
    display: inline-block;
    padding-bottom: 2px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.82);
    border-bottom: 2px solid rgba(17, 17, 17, 0.22);
}

@media (max-width: 767.98px) {
    .pg4-card-content {
        align-items: flex-start;
        text-align: left;
        background: linear-gradient(90deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.62) 52%, rgba(255,255,255,0.0) 100%);
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 1;
    position: relative;
    min-height: 80px;
}

.logo-image {
    max-height: 80px !important;
    max-width: 250px !important;
    height: 80px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: var(--transition);
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    flex-shrink: 0;
    overflow: visible;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Product detail page specific padding */
body.product-detail-page {
    padding-top: max(var(--header-stack-height, 0px), var(--layout-chrome-pad));
}

/* The first block after the fixed header should never add extra top gap */
main > :first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Top Bar — antrasit zemin, şampanya metin (mavi kırmızı yerine takı vitrin tonu) */
.top-bar {
    background: linear-gradient(90deg, var(--jewelry-charcoal) 0%, var(--jewelry-charcoal-mid) 100%);
    color: var(--jewelry-champagne);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-topbar);
    height: auto;
    border-bottom: 1px solid rgba(184, 134, 11, 0.35);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-link {
    color: var(--jewelry-champagne);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-weight: 500;
    white-space: nowrap;
}

.top-bar-link:hover {
    color: var(--jewelry-gold-light);
    transform: translateY(-2px);
}

.top-bar-link i {
    font-size: 0.9rem;
}

.top-bar-center {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 24px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    padding: 0 3rem;
    display: inline-block;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.appointment-btn {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: white;
    padding: 0.6rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.appointment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.appointment-btn:hover::before {
    left: 100%;
}

.appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* Main Header */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-main-header);
    transition: var(--transition);
    overflow: visible;
    min-height: 90px;
    border-bottom: 1px solid var(--border-color);
}

.main-header .container {
    position: relative;
    z-index: 0;
}

.main-header.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
}

.main-header.scrolled .logo-icon {
    z-index: 1;
}

/* Categories Bar */
.categories-bar {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: var(--header-categories-top, var(--layout-categories-offset));
    left: 0;
    right: 0;
    z-index: var(--z-categories-bar);
    padding: 0.35rem 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    overflow: visible !important;
}

.categories-bar .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible !important;
}

.categories-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: visible !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
    width: 100%;
    position: relative;
}

.categories-menu::-webkit-scrollbar {
    display: none;
}

.categories-menu .category-item {
    flex-shrink: 0;
    position: relative !important;
    z-index: 1;
}

.categories-menu .category-item.has-dropdown {
    position: relative !important;
    z-index: 2;
}

.categories-menu .category-item.has-dropdown:hover {
    z-index: 50;
}

.category-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    height: 100%;
}

.category-link:hover,
.category-item:hover .category-link,
.category-link.active {
    color: var(--primary-red);
    background-color: rgba(220, 53, 69, 0.05);
}

.category-link i {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: var(--transition);
}

.category-item:hover .category-link i {
    transform: rotate(180deg);
}

/* Category Dropdown - Modern Shopify Style */
.category-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: white !important;
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    list-style: none;
    margin: 0;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: var(--z-category-dropdown) !important;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: visible !important;
    pointer-events: none;
    margin-top: 0;
    display: block !important;
}

.category-item:hover .category-dropdown,
.category-item.has-dropdown:hover .category-dropdown,
.categories-menu .category-item:hover .category-dropdown,
.categories-menu .category-item.has-dropdown:hover .category-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
    display: block !important;
}

.category-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
}

.category-dropdown li {
    margin: 0;
    position: relative;
}

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
    position: relative;
    border-left: 3px solid transparent;
}

.dropdown-link strong {
    font-weight: 600;
    color: var(--primary-red);
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.05) 0%, rgba(220, 53, 69, 0.02) 100%);
    color: var(--primary-red);
    padding-left: 1.75rem;
    border-left-color: var(--primary-red);
    transform: translateX(4px);
}

.dropdown-link:hover strong {
    color: var(--primary-red-dark);
}

/* Add subtle animation to dropdown items */
.category-item:hover .category-dropdown li,
.category-item.has-dropdown:hover .category-dropdown li {
    animation: fadeInUp 0.3s ease forwards;
}

.category-item:hover .category-dropdown li:nth-child(1) { animation-delay: 0.05s; }
.category-item:hover .category-dropdown li:nth-child(2) { animation-delay: 0.1s; }
.category-item:hover .category-dropdown li:nth-child(3) { animation-delay: 0.15s; }
.category-item:hover .category-dropdown li:nth-child(4) { animation-delay: 0.2s; }
.category-item:hover .category-dropdown li:nth-child(5) { animation-delay: 0.25s; }
.category-item:hover .category-dropdown li:nth-child(6) { animation-delay: 0.3s; }
.category-item:hover .category-dropdown li:nth-child(7) { animation-delay: 0.35s; }
.category-item:hover .category-dropdown li:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced category link hover effect */
.category-item.has-dropdown:hover .category-link {
    background: linear-gradient(180deg, rgba(220, 53, 69, 0.08) 0%, rgba(220, 53, 69, 0.03) 100%);
    color: var(--primary-red);
}

.category-item.has-dropdown:hover .category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
}

.dropdown-link strong {
    color: var(--primary-red);
    font-weight: 700;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 90px;
}

.logo-section:hover {
    transform: scale(1.05);
}

.logo-section:hover .logo-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-text-sub {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.25rem;
    font-weight: 600;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.nav-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-red);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: visible !important;
}

.search-form {
    position: relative;
    overflow: visible !important;
}

/* Header Search Suggestions */
.search-suggestions {
    position: fixed !important;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    margin-top: 0.35rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    z-index: var(--z-header-search-panel) !important;
    max-height: 380px;
    overflow-y: auto;
    padding: 0.5rem 0;
    display: none;
}

.search-suggestions.visible {
    display: block;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.search-suggestion-item:hover {
    background: var(--bg-light);
    text-decoration: none;
}

.search-suggestion-image {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    overflow: hidden;
}

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

.search-suggestion-info {
    flex: 1;
    min-width: 0;
}

.search-suggestion-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-suggestion-price {
    font-weight: 600;
    color: var(--primary-red);
}

.search-suggestions-empty {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.search-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.search-form .form-control {
    border: 2px solid var(--border-color);
    border-right: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.search-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: none;
}

.search-form .btn-primary {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-red);
    border-left: none;
    background: var(--primary-red);
    color: white;
}

.search-form .btn-primary:hover {
    background: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
    color: white;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    border: 1px solid transparent;
}

.header-action-btn:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(200, 35, 51, 0.1));
    color: var(--primary-red);
    border-color: rgba(220, 53, 69, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.header-action-btn i {
    font-size: 1.1rem;
    color: var(--primary-red);
    transition: var(--transition);
}

.header-action-btn:hover i {
    transform: scale(1.1);
    color: var(--primary-red-dark);
}

.header-action-btn .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    border-radius: 12px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    border: 2px solid white;
    line-height: 1;
}

.header-action-btn span {
    color: var(--text-dark);
    transition: var(--transition);
}

.header-action-btn:hover span {
    color: var(--primary-red);
}

.action-icon {
    position: relative;
    color: var(--text-dark);
    font-size: 1.3rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.action-icon:hover {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(200, 35, 51, 0.1));
    color: var(--primary-red);
    transform: translateY(-3px) scale(1.1);
}

.action-icon .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

/* Mobil menü: z-index, main/hero yığınının ta üstü; top = body padding ile aynı (krom bittiği yer) */
@media (max-width: 991.98px) {
    #mobileMenu.collapse.show {
        position: fixed;
        left: 0;
        right: 0;
        top: var(--header-stack-height, var(--layout-chrome-pad));
        bottom: 0;
        z-index: var(--z-mobile-menu) !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--bg-white);
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border-color);
    }
}

body.ecommerce-off #mobileMenu.collapse.show {
    top: var(--header-stack-height, 88px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-bottom: 6rem;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.85) 0%, rgba(200, 35, 51, 0.9) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.9) 0%, rgba(200, 35, 51, 0.95) 100%);
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    animation: slideUp 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 400;
    animation: slideUp 1s ease-out 0.4s both;
}

.hero-btn {
    background-color: white;
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    animation: slideUp 1s ease-out 0.6s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--text-dark);
}

.hero-btn i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.hero-btn:hover i {
    transform: translateX(5px);
}

.hero-slider-section {
    padding: 0 !important;
}

/* Corano-like hero slider variant */
.hero-slider-section.hero-slider-corano {
    position: relative;
    margin-bottom: 0;
    padding: 0 !important;
}

.hero-slider-section.hero-slider-corano .carousel-item,
.hero-slider-section.hero-slider-corano .hero-slide {
    min-height: 580px;
}

.hero-slider-section.hero-slider-corano .hero-slide {
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slider-section.hero-slider-corano .hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.12) 45%, rgba(255, 255, 255, 0.03) 100%) !important;
}

.hero-slider-section.hero-slider-corano .hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 95% at 18% 48%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 72%);
}

.hero-slider-section.hero-slider-corano .hero-content {
    text-align: left;
    max-width: none;
    width: 100%;
    padding: 3.5rem 0;
    animation: none;
}

.hero-slider-section.hero-slider-corano .hero-copy-col {
    position: relative;
}

.hero-slider-section.hero-slider-corano .hero-copy-panel {
    max-width: 600px;
    padding: clamp(1rem, 2.5vw, 1.6rem) clamp(0.9rem, 2.2vw, 1.4rem);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(14, 18, 28, 0.22) 0%, rgba(14, 18, 28, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(1.5px);
}

.hero-slider-section.hero-slider-corano .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.hero-slider-section.hero-slider-corano .hero-subtitle {
    font-size: clamp(1rem, 1.65vw, 1.15rem);
    font-weight: 400;
    line-height: 1.65;
    max-width: 52ch;
    margin-bottom: 1.6rem;
    opacity: 0.98;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-slider-section.hero-slider-corano .hero-description {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.4rem;
    max-width: 56ch;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-slider-section.hero-slider-corano .hero-btn-corano {
    border: 0;
    border-radius: 999px;
    padding: 0.82rem 2rem;
    min-height: 46px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #d2b16f 0%, #bd9750 100%);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(189, 151, 80, 0.25);
}

.hero-slider-section.hero-slider-corano .hero-btn-corano:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #c7a35e 0%, #aa833c 100%);
    box-shadow: 0 14px 30px rgba(170, 131, 60, 0.3);
}

.hero-slider-section.hero-slider-corano .carousel-indicators {
    justify-content: center;
    margin: 0;
    padding-left: 0;
    bottom: 1.15rem;
    left: 0;
    right: 0;
}

.hero-slider-section.hero-slider-corano .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    margin: 0 0.38rem 0 0;
    background-color: rgba(34, 34, 34, 0.32);
    opacity: 1;
}

.hero-slider-section.hero-slider-corano .carousel-indicators .active {
    background-color: #1f1f1f;
}

.hero-slider-section.hero-slider-corano .carousel-control-prev,
.hero-slider-section.hero-slider-corano .carousel-control-next {
    display: none;
}

@media (max-width: 991.98px) {
    .hero-slider-section.hero-slider-corano .carousel-item,
    .hero-slider-section.hero-slider-corano .hero-slide {
        min-height: 500px;
    }

    .hero-slider-section.hero-slider-corano .hero-content {
        padding: 2.2rem 0 3rem;
    }

    .hero-slider-section.hero-slider-corano .hero-copy-panel {
        max-width: 100%;
        padding: 0.95rem 0.95rem 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-slider-section.hero-slider-corano .carousel-item,
    .hero-slider-section.hero-slider-corano .hero-slide {
        min-height: 440px;
        background-position: 68% center;
    }

    .hero-slider-section.hero-slider-corano .hero-title {
        font-size: clamp(1.7rem, 7.2vw, 2.05rem);
        margin-bottom: 0.7rem;
    }

    .hero-slider-section.hero-slider-corano .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.45;
        margin-bottom: 1rem;
    }

    .hero-slider-section.hero-slider-corano .hero-description {
        font-size: 0.88rem;
        line-height: 1.45;
        margin-bottom: 0.95rem;
    }
}

/* Feature strip section (Corano-inspired benefits row) */
.feature-strip-section {
    border-top: 1px solid rgba(184, 134, 11, 0.14);
    border-bottom: 1px solid rgba(184, 134, 11, 0.14);
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
}

.feature-strip-section .feature-strip-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.feature-strip-section .feature-strip-heading::after {
    display: none !important;
}

.feature-strip-subheading {
    color: var(--text-gray);
    font-size: 0.98rem;
}

.feature-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    height: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(184, 134, 11, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 6px 16px rgba(18, 16, 14, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-strip-item:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 134, 11, 0.28);
    box-shadow: 0 10px 24px rgba(18, 16, 14, 0.09);
}

.feature-strip-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-red);
    background: color-mix(in srgb, var(--primary-red) 14%, white);
    border: 1px solid color-mix(in srgb, var(--primary-red) 24%, white);
    font-size: 1rem;
    margin-top: 0.05rem;
}

.feature-strip-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.34rem;
    line-height: 1.25;
}

.feature-strip-description {
    font-size: 0.87rem;
    color: #5f6368;
    line-height: 1.52;
    margin: 0;
}

/* Product tabs / accordion-like section */
.product-tabs-section .product-tabs-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2226;
    margin: 0;
}

.product-tabs-section .product-tabs-subtitle {
    color: #7a8087;
    font-size: 0.98rem;
}

.product-tabs-nav {
    gap: 0.6rem;
    border-bottom: 0;
}

.product-tabs-nav {
    flex-wrap: wrap;
}

.product-tabs-nav .nav-item {
    flex: 1 1 0;
    min-width: min(160px, 48%);
    display: flex;
}

.product-tabs-nav .nav-link {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.product-tabs-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.product-tabs-cart-btn i {
    margin: 0 !important;
    flex: 0 0 auto;
}

.product-tabs-nav .nav-link {
    border: 1px solid #d9dce1;
    background: #fff;
    color: #5d636b;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.product-tabs-nav .nav-link.active {
    color: #1f2226;
    border-color: rgba(184, 134, 11, 0.45);
    background: rgba(184, 134, 11, 0.08);
}

.product-tabs-card {
    background: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-tabs-image-wrap {
    display: block;
    aspect-ratio: 1 / 1;
    background: #f1f2f4;
}

.product-tabs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-tabs-body {
    padding: 0.85rem 0.9rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.product-tabs-product-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    line-height: 1.35;
    /* Don't reserve 2-line height; avoids extra gap for 1-line titles */
    min-height: 0;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-tabs-product-title a {
    color: #2b2f35;
    text-decoration: none;
}

.product-tabs-product-title a:hover {
    color: var(--primary-red);
}

.product-tabs-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2b2f35;
}

.product-tabs-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-top: auto;
}

/* Desktop: keep action row aligned across cards */
@media (min-width: 992px) {
    .product-tabs-product-title {
        min-height: calc(1.35em * 2);
    }
}

.product-tabs-cart-btn {
    flex: 1;
    border: 1px solid rgba(184, 134, 11, 0.5);
    background: linear-gradient(180deg, #d2b16f 0%, #bd9750 100%);
    color: #fff;
    border-radius: 999px;
    font-size: 0.66rem !important;
    font-weight: 800;
    line-height: 1.1 !important;
    min-height: 26px !important;
    padding: 0.32rem 0.55rem !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-tabs-cart-btn i {
    font-size: 0.85em;
}

@media (min-width: 992px) {
    .product-tabs-cart-btn {
        font-size: 0.68rem !important;
        min-height: 28px !important;
        padding: 0.34rem 0.6rem !important;
    }
}

.product-tabs-cart-btn:hover {
    color: #fff;
    background: linear-gradient(180deg, #c7a35e 0%, #aa833c 100%);
}

.product-tabs-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-tabs-wishlist-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #d9dce1;
    background: #fff;
    color: #57606a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.product-tabs-wishlist-btn:hover {
    border-color: #e0627d;
    color: #e0627d;
    background: #fff6f8;
}

/* Related products: keep "Ürünü İncele" on one line on mobile/tablet */
@media (max-width: 991.98px) {
    .related-product-buttons .btn-outline-primary {
        white-space: nowrap !important;
        font-size: 0.76rem !important;
        padding: 0.45rem 0.5rem !important;
    }
}

.product-tabs-accordion .accordion-item {
    border: 1px solid #e3e6ea;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.55rem;
    background: #fff;
}

.product-tabs-accordion .accordion-button {
    font-size: 0.92rem;
    font-weight: 600;
    color: #30343a;
    background: #fff;
    box-shadow: none;
}

.product-tabs-accordion .accordion-button:not(.collapsed) {
    color: #1f2226;
    background: rgba(184, 134, 11, 0.08);
}

.product-tabs-accordion .accordion-button:focus {
    box-shadow: none;
}

.product-tabs-accordion .accordion-body {
    padding: 0.8rem;
}

/* Promo + mini product lists section */
.promo-product-lists-section .promo-lists-title {
    font-size: clamp(1.5rem, 2.4vw, 1.8rem);
    font-weight: 700;
    color: #1f2226;
    margin: 0;
}

.promo-product-lists-section .promo-lists-subtitle {
    color: #7a8087;
    font-size: 0.98rem;
}

.promo-lists-banner {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    height: clamp(280px, 34vw, 430px);
    text-decoration: none;
}

.promo-lists-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

.promo-lists-banner:hover img {
    transform: scale(1.05);
}

.promo-lists-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, rgba(248, 248, 248, 0.92) 0%, rgba(248, 248, 248, 0.68) 38%, rgba(248, 248, 248, 0.08) 100%);
}

.promo-lists-copy {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: #20242a;
}

.promo-lists-badge {
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6f7780;
}

.promo-lists-headline {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.15;
    max-width: 12ch;
}

.promo-lists-link {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2226;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.promo-mini-list {
    background: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 12px;
    height: 100%;
    padding: 1rem 0.9rem;
}

.promo-mini-list-title {
    font-size: clamp(1.05rem, 1.7vw, 1.2rem);
    font-weight: 700;
    margin: 0 0 0.7rem;
    color: #1f2226;
}

.promo-mini-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    padding: 0.45rem 0;
    border-top: 1px solid #f0f2f4;
}

.promo-mini-list .promo-mini-item:first-of-type {
    border-top: 0;
    padding-top: 0.1rem;
}

.promo-mini-thumb {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    object-fit: cover;
    background: #f3f4f6;
    flex-shrink: 0;
}

.promo-mini-meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.promo-mini-name {
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 600;
    color: #2b2f35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promo-mini-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3a3f46;
}

@media (max-width: 991.98px) {
    .promo-lists-banner img {
        min-height: 0;
    }

    .promo-lists-banner {
        height: clamp(250px, 52vw, 340px);
    }

    .promo-lists-copy {
        left: 1.2rem;
        bottom: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .promo-lists-banner {
        height: clamp(220px, 58vw, 300px);
    }

    .promo-product-lists-section .promo-lists-title {
        font-size: 1.35rem;
    }

    .promo-mini-list-title {
        font-size: 1rem;
    }

    .promo-mini-thumb {
        width: 58px;
        height: 58px;
    }
}

/* Featured cards section: keep vertical rhythm consistent */
.featured-cards-section .featured-card-item {
    height: 100%;
}

.featured-cards-section .featured-card-item .card-body {
    display: flex;
    flex-direction: column;
    padding: 1.15rem 1rem !important;
}

.featured-cards-section .featured-card-item .featured-card-icon {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 0.75rem !important;
}

.featured-cards-section .featured-card-item .card-title {
    min-height: 2.45em;
    line-height: 1.28;
    margin-bottom: 0.45rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-cards-section .featured-card-item .card-text {
    min-height: 3.1em;
    line-height: 1.5;
    margin-bottom: 0.7rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-cards-section .featured-card-item .btn {
    margin-top: auto !important;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
    .feature-strip-item {
        padding: 0.85rem 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .feature-strip-section {
        padding-top: 1.2rem !important;
        padding-bottom: 1.2rem !important;
    }

    .feature-strip-item {
        padding: 0.75rem 0.82rem;
        border-radius: 12px;
    }

    .feature-strip-icon {
        width: 36px;
        min-width: 36px;
        height: 36px;
        font-size: 0.92rem;
    }
}

/* Section Headings */
section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
    border-radius: 2px;
}

section .text-muted {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards - Modern Design */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: white;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    transition: var(--transition-slow);
}

.card:hover .card-img-top {
    transform: scale(1.15);
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.card:hover .card-title {
    color: var(--primary-red);
}

/* Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-body .btn {
    margin-top: auto;
}

.product-description {
    font-size: 0.875rem;
    line-height: 1.5;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Homepage featured products (card refinement) */
.homepage-products-section .homepage-product-card {
    background: #fff;
    border: 1px solid rgba(18, 16, 14, 0.08);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(18, 16, 14, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.homepage-products-section .homepage-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 134, 11, 0.3);
    box-shadow: 0 14px 30px rgba(18, 16, 14, 0.12);
}

.homepage-products-section .product-image-wrapper {
    height: clamp(170px, 24vw, 250px);
    border-radius: 14px 14px 0 0;
    background: #f4f4f4;
}

.homepage-products-section .product-card:hover .product-image-wrapper img {
    transform: scale(1.06);
}

.homepage-products-section .homepage-product-body {
    padding: 0.95rem 0.95rem 1rem;
}

.homepage-products-section .product-card-title {
    margin: 0 0 0.45rem;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    min-height: 2.7em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.homepage-products-section .product-card-title a {
    color: #2a2a2a;
    text-decoration: none;
}

.homepage-products-section .product-card-title a:hover {
    color: var(--primary-red);
}

.homepage-products-section .product-card-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    color: #646a70;
    min-height: 2.9em;
    margin-bottom: 0.65rem;
}

.homepage-products-section .product-card-price {
    border-top: 0;
    border-bottom: 0;
    padding: 0;
    margin-bottom: 0.75rem !important;
}

.homepage-products-section .product-card-price .current-price {
    font-size: 1.02rem;
    font-weight: 700;
    color: #222;
}

.homepage-products-section .product-card-price .old-price {
    font-size: 0.82rem;
    margin-left: 0.35rem;
}

.homepage-products-section .product-card-btn {
    border-radius: 999px;
    padding: 0.58rem 0.8rem;
    font-size: 0.77rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .homepage-products-section .homepage-product-body {
        padding: 0.7rem 0.72rem 0.8rem;
    }

    .homepage-products-section .product-card-title {
        font-size: 0.92rem;
        min-height: 2.55em;
    }

    .homepage-products-section .product-card-desc {
        font-size: 0.79rem;
        min-height: 2.75em;
    }

    .homepage-products-section .product-card-price .current-price {
        font-size: 0.95rem;
    }

    .homepage-products-section .product-card-btn {
        font-size: 0.72rem;
        padding: 0.52rem 0.62rem;
    }
}

/* Products Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: white;
    margin-top: 0;
}

.page-header h1 {
    color: white;
}

.page-header .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-flex;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: white;
}

.products-section {
    background: var(--bg-light);
    min-height: 60vh;
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: 100px;
}

.filters-container {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

/* Active Filters Chips */
.active-filters {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.active-filter-chip {
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.active-filter-chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.active-filter-chip a:hover {
    opacity: 0.8;
}

/* Price Range Slider */
.price-slider-wrapper {
    padding: 1rem 0;
}

.price-range-slider {
    position: relative;
    height: 6px;
    background: var(--bg-light);
    border-radius: 3px;
    margin: 1rem 0;
}

.price-range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-red);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.price-range-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

.price-range-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary-red);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.price-range-slider input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

/* Color Filter Preview */
.color-filter-item .color-preview {
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.color-filter-item input:checked + label .color-preview {
    box-shadow: 0 0 0 3px var(--primary-red);
    transform: scale(1.1);
}

/* Product Detail Page Styles */
.breadcrumb-section {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    margin-top: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-detail-section {
    background: var(--bg-light);
    min-height: 60vh;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

/* Takı ürün sayfası — Corano benzeri: galeri kartı + yapışkan özet + dar yan şerit */
body.product-detail-page .product-detail-section.product-jewellery {
    background: linear-gradient(180deg, #faf6ef 0%, #efe4d8 100%);
}

.jewellery-breadcrumb-section {
    background: #fffef9 !important;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2) !important;
    padding: 0.85rem 0 !important;
}

/* Breadcrumb bar rhythm across devices */
@media (max-width: 991.98px) {
    .jewellery-breadcrumb-section {
        padding: 0.75rem 0 !important;
    }
}

.jewellery-breadcrumb-section nav[aria-label="breadcrumb"] {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.jewellery-breadcrumb-section .breadcrumb-current {
    max-width: min(70vw, 360px) !important;
}

.jewellery-breadcrumb-section .breadcrumb-link {
    color: var(--text-gray) !important;
}

.jewellery-breadcrumb-section .breadcrumb-current {
    color: var(--jewelry-charcoal, #221b26) !important;
}

.product-jewellery-gallery {
    background: #fff;
    border-radius: 20px;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(184, 134, 11, 0.16);
    box-shadow: 0 18px 50px rgba(34, 27, 38, 0.07);
}

.product-purchase-sidebar {
    position: sticky;
    top: calc(var(--layout-categories-offset, 158px) + 0.75rem);
    align-self: flex-start;
    background: #fffef9 !important;
    border: 1px solid rgba(184, 134, 11, 0.24) !important;
    border-radius: 20px;
    padding: 1.3rem 1.2rem !important;
    box-shadow: 0 22px 55px rgba(34, 27, 38, 0.09);
}

.product-purchase-minimal {
    border-radius: 14px;
    padding: 1rem 0.95rem !important;
    box-shadow: 0 10px 28px rgba(34, 27, 38, 0.06);
    position: relative;
    top: 0;
}

.product-purchase-minimal .product-title-jewellery {
    font-size: clamp(1.2rem, 2.1vw, 1.45rem) !important;
    line-height: 1.35;
    margin-bottom: 0.55rem !important;
    letter-spacing: 0.01em;
}

.product-rating-minimal {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.product-rating-minimal .stars-rating i {
    font-size: 0.75rem;
    opacity: 0.9;
}

.product-feature-list {
    border-top: 1px solid rgba(184, 134, 11, 0.16);
    border-bottom: 1px solid rgba(184, 134, 11, 0.16);
    padding: 0.75rem 0;
}

.product-feature-list ul {
    list-style: disc;
    margin: 0;
    padding-left: 1rem;
}

.product-feature-list li {
    font-size: 0.87rem;
    line-height: 1.45;
    color: #2c2c2c;
    margin-bottom: 0.2rem;
}

.product-feature-list li:last-child {
    margin-bottom: 0;
}

.product-short-description-minimal {
    border-top: 1px solid rgba(184, 134, 11, 0.16);
    border-bottom: 1px solid rgba(184, 134, 11, 0.16);
    padding: 0.75rem 0;
}

.product-short-description-minimal p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #2c2c2c;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-summary-copy {
    border-top: 1px dashed rgba(184, 134, 11, 0.2);
    padding-top: 0.65rem;
}

/* Minimal PDP: price block uses Bootstrap mb-4; pull description closer */
body.product-detail-page .pdp__panel .product-price.product-price-minimal {
    margin-bottom: 0.45rem !important;
}

body.product-detail-page .pdp__panel .product-price.product-price-minimal + .product-summary-copy {
    padding-top: 0.35rem !important;
    margin-top: 0 !important;
}

body.product-detail-page .pdp__panel .product-price.product-price-minimal .price-caption.mt-2 {
    margin-top: 0.35rem !important;
}

.product-price-minimal {
    border: none;
    padding: 0;
}

.product-price-minimal .discount-badge {
    background: #6c757d !important;
    color: #fff !important;
    border-radius: 6px;
    padding: 0.4rem 0.65rem;
    font-size: 0.84rem;
    font-weight: 600;
}

.product-price-minimal .price-old {
    font-size: 1rem !important;
    color: #8d8d8d !important;
}

.product-price-minimal .price-current {
    font-size: 1.8rem !important;
    color: #c69a4f !important;
    line-height: 1;
}

.product-price-minimal .price-caption {
    font-size: 0.78rem;
    color: #8d8d8d;
}

.product-price-minimal .price-installment {
    font-size: 0.84rem;
    color: #444;
}

.purchase-availability {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.purchase-stock-badge {
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.28rem 0.62rem;
    letter-spacing: 0.01em;
}

.purchase-stock-badge.in-stock {
    background: rgba(25, 135, 84, 0.12);
    color: #1f7d4f;
}

.purchase-stock-badge.out-of-stock {
    background: rgba(220, 53, 69, 0.1);
    color: #a63341;
}

.purchase-delivery-hint {
    font-size: 0.8rem;
    color: #6e6e6e;
}

.product-side-benefits {
    display: grid;
    gap: 0.45rem;
    margin-top: -0.15rem;
}

.product-side-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.84rem;
    color: #434343;
}

.product-side-benefits .benefit-item i {
    color: #b8860b;
    font-size: 0.9rem;
}

.stock-alert-box {
    border: 1px solid rgba(184, 134, 11, 0.22);
    background: #fffdf9;
    border-radius: 10px;
    padding: 0.6rem;
}

.stock-alert-header {
    color: #2f2b28;
    font-size: 0.94rem;
    margin-bottom: 0.3rem;
}

.stock-alert-text {
    font-size: 0.8rem;
    color: #6a6a6a;
}

.stock-alert-input-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
}

.stock-alert-form .form-control {
    height: 40px;
    border-radius: 6px;
    font-size: 0.88rem;
}

.stock-alert-form .btn {
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    height: 40px;
    white-space: nowrap;
    padding: 0 0.85rem;
}

@media (max-width: 767.98px) {
    .stock-alert-input-wrap {
        grid-template-columns: 1fr;
    }
}

.variant-selection-minimal {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.variant-selection-minimal .form-label {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #444;
}

.variant-selection-minimal .variant-options {
    gap: 0.45rem !important;
}

.variant-selection-minimal .variant-option:not(.color-option) {
    min-height: 38px;
    padding: 0.45rem 0.7rem;
    font-size: 0.86rem;
}

.variant-selection-minimal .variant-option.color-option {
    min-height: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
}

.variant-selection-minimal .variant-option:not(.color-option) {
    white-space: nowrap;
    border-color: rgba(184, 134, 11, 0.45);
    color: var(--text-dark, #212529) !important;
    -webkit-text-fill-color: var(--text-dark, #212529);
}

.variant-selection-minimal .variant-option:not(.color-option).btn-outline-secondary {
    background: rgba(255, 255, 255, 0.96);
}

.variant-selection-minimal .variant-option:not(.color-option).btn-primary,
.variant-selection-minimal .variant-option:not(.color-option).active {
    color: #fff !important;
    -webkit-text-fill-color: #fff;
}

.variant-attributes-row {
    align-items: flex-start;
}

.variant-chip-label {
    display: inline-block;
    pointer-events: none;
    font-weight: 600;
    font-size: inherit;
    line-height: 1.25;
}

.variant-chip-label-renk-img {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.75rem;
    color: #555;
    width: max-content;
    pointer-events: none;
    z-index: 2;
}

.variant-selection-minimal .variant-group-renk .variant-options {
    margin-bottom: 0.6rem;
}

.add-to-cart-minimal form {
    align-items: stretch !important;
}

.add-to-cart-form-minimal {
    display: grid !important;
    grid-template-columns: 126px minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.65rem !important;
    align-items: stretch !important;
}

.quantity-selector-minimal {
    min-width: 0;
}

.quantity-selector-minimal .quantity-input-group-minimal {
    height: 46px;
    border-radius: 6px;
    border: 1px solid #d9d4cc;
    overflow: hidden;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    align-items: stretch;
}

.quantity-selector-minimal .quantity-input-group-minimal .btn {
    width: 36px;
    min-width: 36px;
    padding: 0;
    border: none;
    background: #f4f1eb;
    color: #5a5a5a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector-minimal .quantity-input-group-minimal input {
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    background: #fff;
    pointer-events: auto !important;
    user-select: auto !important;
    min-width: 0;
    width: 100%;
    color: #212529 !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #212529 !important;
}

/* Keep +/- visible even if icons/fonts fail */
body.product-detail-page .quantity-input-group .quantity-btn .qty-symbol {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1;
    font-size: 1.1rem;
    font-weight: 800;
    color: currentColor;
}

/* Desktop-only fallback: some themes/media rules may hide inner text */
@media (min-width: 1024px) {
    body.product-detail-page .quantity-input-group-minimal .quantity-btn {
        position: relative;
        overflow: visible;
        color: #5a5a5a;
    }

    body.product-detail-page .quantity-input-group-minimal .quantity-btn[data-qty-action="increase"]::before {
        content: "+";
        display: block;
        font-weight: 800;
        font-size: 1.1rem;
        line-height: 1;
        color: currentColor;
    }

    body.product-detail-page .quantity-input-group-minimal .quantity-btn[data-qty-action="decrease"]::before {
        content: "−";
        display: block;
        font-weight: 800;
        font-size: 1.1rem;
        line-height: 1;
        color: currentColor;
    }

    body.product-detail-page .quantity-input-group-minimal .quantity-btn .qty-symbol {
        display: none !important;
    }
}

.add-to-cart-minimal .quantity-selector .form-label {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #444;
}

.add-to-cart-minimal .quantity-input-group {
    border-radius: 6px;
    height: 46px;
}

.add-to-cart-minimal .btn {
    height: 46px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.92rem;
}

.add-to-cart-minimal .btn-primary {
    background: #5b646b;
    border-color: #5b646b;
}

.add-to-cart-minimal .btn-primary:hover {
    background: #4a5258;
    border-color: #4a5258;
}

/* Sepete Ekle: dar sütunda iki satıra düşmesin */
body.product-detail-page .add-to-cart-minimal #addToCartBtn.btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.35rem !important;
    white-space: nowrap !important;
    font-size: 0.8rem !important;
    line-height: 1.15 !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

body.product-detail-page .add-to-cart-minimal #addToCartBtn.btn-primary i {
    flex-shrink: 0;
    font-size: 0.95em;
}

.add-to-cart-minimal .btn-outline-secondary {
    background: #d8be97;
    border-color: #d8be97;
    color: #fff;
}

.add-to-cart-minimal .btn-outline-secondary:hover {
    background: #c9ab80;
    border-color: #c9ab80;
    color: #fff;
}

body.product-detail-page .product-detail-section.product-jewellery .product-jewellery-row {
    align-items: flex-start;
}

body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .product-jewellery-gallery {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
}

body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .main-image-wrapper {
    min-height: 0 !important;
    max-height: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem !important;
    aspect-ratio: auto;
}

body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .main-product-image {
    width: 60% !important;
    height: auto !important;
    max-width: 60% !important;
    max-height: 100% !important;
    object-fit: contain;
}

body.product-detail-page .product-detail-section.product-jewellery .product-jewellery-gallery,
body.product-detail-page .product-detail-section.product-jewellery .product-purchase-minimal {
    height: auto;
}

body.product-detail-page .product-detail-section.product-jewellery .product-purchase-minimal .product-price-minimal {
    margin-top: 0.2rem;
}

@media (min-width: 992px) {
    body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .product-jewellery-row {
        display: flex;
        align-items: stretch;
    }

    body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .product-jewellery-row > [class*="col-"] {
        flex: 1 1 0;
        width: 50%;
        max-width: 50%;
    }

    body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .product-jewellery-row > [class*="col-"]:first-child {
        display: flex;
    }

    body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .product-jewellery-gallery,
    body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .product-gallery {
        width: 100%;
        height: 100%;
    }

    body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .main-image-wrapper {
        height: 100%;
        max-height: 100%;
    }

    body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .main-product-image {
        width: 38% !important;
        max-width: 38% !important;
    }

    body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .product-purchase-minimal {
        padding: 1.2rem 1.1rem !important;
    }
}

body.product-detail-page .product-detail-section.product-jewellery .product-purchase-minimal .product-short-description + .product-price-minimal {
    margin-top: 0;
}

body.product-detail-page .product-detail-section.product-jewellery .product-purchase-minimal .quantity-input-group input {
    pointer-events: auto;
    user-select: auto;
    -webkit-user-select: auto;
}

/* PDP: <1024px — tek sütun, önce görsel (tam genişlik), sonra metin & CTA (scroll akışı) */
@media (max-width: 1023.98px) {
    body.product-detail-page .product-detail-section {
        overflow-x: clip;
    }

    body.product-detail-page .pdp__grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 1.2rem !important;
    }

    body.product-detail-page .pdp__col {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        min-width: 0 !important;
    }

    body.product-detail-page .pdp__col--gallery {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
    }

    body.product-detail-page .pdp__gallery {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        box-shadow: 0 12px 40px rgba(34, 27, 38, 0.09) !important;
        padding: 0.75rem 1rem 1rem !important;
    }

    body.product-detail-page .pdp__gallery,
    body.product-detail-page .pdp__panel {
        height: auto !important;
        max-height: none !important;
        min-height: 0 !important;
        position: static !important;
        top: auto !important;
    }

    body.product-detail-page .pdp__col--summary .pdp__panel {
        border-left-width: 1px !important;
        border-left-color: rgba(34, 27, 38, 0.1) !important;
        box-shadow: 0 12px 42px rgba(34, 27, 38, 0.11) !important;
        padding: 1.1rem 1.15rem !important;
    }

    body.product-detail-page .pdp__col--summary .pdp__panel.pdp__panel--minimal {
        --pdp-panel-pad-x: 1.15rem;
    }

    body.product-detail-page .pdp__media {
        height: auto !important;
        min-height: 0 !important;
        flex: 0 0 auto !important;
    }

    body.product-detail-page .pdp__media .main-image-wrapper {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        max-width: min(100%, 400px) !important;
        max-height: min(68vw, 360px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        border-radius: 14px !important;
    }

    body.product-detail-page .pdp__media .main-product-image {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
    }

    body.product-detail-page .pdp__thumbs {
        height: auto !important;
        max-height: none !important;
        flex: 0 0 auto !important;
        margin-top: 0.65rem !important;
        padding: 0.35rem 0 0.15rem !important;
    }

    /* Minimal PDP: compact title→price, richer blocks, CTA before long copy */
    body.product-detail-page .pdp__panel.pdp__panel--minimal {
        display: flex !important;
        flex-direction: column !important;
    }

    body.product-detail-page .pdp__panel--minimal > h1.product-title-jewellery {
        order: 1;
        margin-bottom: 0.25rem !important;
        padding-bottom: 0.35rem !important;
        border-bottom: 1px solid rgba(184, 134, 11, 0.1) !important;
    }

    body.product-detail-page .pdp__panel--minimal > .product-rating-minimal {
        order: 2;
        margin-bottom: 0.35rem !important;
    }

    /* Mağaza tarzı tam genişlik fiyat bandı — Modanisa akışı, altın / koyu kahve paleti */
    body.product-detail-page .pdp__panel--minimal > .product-price.product-price-minimal {
        order: 3;
        width: calc(100% + 2 * var(--pdp-panel-pad-x, 1.15rem)) !important;
        max-width: none !important;
        margin-left: calc(-1 * var(--pdp-panel-pad-x, 1.15rem)) !important;
        margin-right: calc(-1 * var(--pdp-panel-pad-x, 1.15rem)) !important;
        margin-bottom: 0.65rem !important;
        margin-top: 0 !important;
        padding: 0.65rem var(--pdp-panel-pad-x, 1.15rem) 0.7rem !important;
        border-radius: 0 !important;
        border: none !important;
        background: linear-gradient(100deg, #3d2f24 0%, #5a4330 42%, #4a3628 100%) !important;
        box-shadow: 0 8px 28px rgba(34, 24, 18, 0.28) !important;
        color: rgba(255, 252, 245, 0.95) !important;
    }

    body.product-detail-page .pdp__panel--minimal > .product-price.product-price-minimal .price-current {
        font-size: 1.42rem !important;
        line-height: 1.15 !important;
        color: #fcecc8 !important;
    }

    body.product-detail-page .pdp__panel--minimal > .product-price.product-price-minimal .price-old {
        color: rgba(255, 250, 240, 0.55) !important;
    }

    body.product-detail-page .pdp__panel--minimal > .product-price.product-price-minimal .price-caption,
    body.product-detail-page .pdp__panel--minimal > .product-price.product-price-minimal .price-installment {
        font-size: 0.76rem !important;
        line-height: 1.35 !important;
        color: rgba(255, 248, 235, 0.82) !important;
    }

    body.product-detail-page .pdp__panel--minimal > .product-price.product-price-minimal .discount-badge {
        background: rgba(255, 220, 160, 0.22) !important;
        color: #fff8e8 !important;
        border: 1px solid rgba(255, 210, 140, 0.35) !important;
    }

    /* Özet metin → stok/rozet → varyant → sepet (metin alta kayıp alta sabit şeritle çakışmasın) */
    body.product-detail-page .pdp__panel--minimal > .product-summary-copy {
        order: 4;
        margin-bottom: 0.6rem !important;
        padding-bottom: 0.35rem !important;
        border-top: none !important;
    }

    body.product-detail-page .pdp__panel--minimal > #purchaseAvailability {
        order: 5;
        margin-bottom: 0.5rem !important;
    }

    body.product-detail-page .pdp__panel--minimal > .variant-selection {
        order: 6;
        margin-bottom: 0.5rem !important;
    }

    body.product-detail-page .pdp__panel--minimal > .add-to-cart-section,
    body.product-detail-page .pdp__panel--minimal > .stock-alert-box {
        order: 7;
        margin-bottom: 0.85rem !important;
    }

    body.product-detail-page .pdp__panel--minimal > .add-to-cart-section {
        padding-top: 0.5rem !important;
        margin-top: 0 !important;
        border-top: 1px solid rgba(184, 134, 11, 0.14) !important;
    }

    body.product-detail-page .pdp__panel--minimal > .product-side-benefits {
        order: 8;
        margin-bottom: 0 !important;
    }

    body.product-detail-page .pdp__panel--minimal .add-to-cart-minimal .btn-outline-secondary {
        font-weight: 600 !important;
    }

    /* Adet üst satır; Sepete Ekle geniş + Hemen Al kompakt (Modanisa benzeri satır) */
    body.product-detail-page .pdp__panel--minimal .add-to-cart-form-minimal {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: stretch !important;
        align-self: stretch !important;
        gap: 0.65rem !important;
        width: 100% !important;
    }

    body.product-detail-page .pdp__panel--minimal .add-to-cart-form-minimal > .quantity-selector {
        flex: 1 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
    }

    body.product-detail-page .pdp__panel--minimal .add-to-cart-form-minimal > .flex-grow-1:nth-child(2) {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: none !important;
        order: 2 !important;
    }

    body.product-detail-page .pdp__panel--minimal .add-to-cart-form-minimal > .flex-grow-1:nth-child(3) {
        flex: 0 0 4.65rem !important;
        width: 4.65rem !important;
        max-width: 4.65rem !important;
        order: 3 !important;
    }

    body.product-detail-page .pdp__panel--minimal .add-to-cart-form-minimal > .flex-grow-1:nth-child(2) .btn {
        width: 100% !important;
    }

    body.product-detail-page .pdp__panel--minimal .add-to-cart-form-minimal > .flex-grow-1:nth-child(3) .btn {
        width: 100% !important;
        height: 100% !important;
        min-height: 48px !important;
        padding: 0.35rem 0.4rem !important;
        font-size: 0.72rem !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border-width: 2px !important;
        border-color: rgba(184, 134, 11, 0.55) !important;
        color: #4a3728 !important;
        background: rgba(255, 252, 246, 0.95) !important;
    }

    body.product-detail-page .pdp__panel--minimal .add-to-cart-form-minimal .btn-primary {
        font-weight: 700 !important;
        letter-spacing: 0.02em !important;
        min-height: 48px !important;
        background: linear-gradient(180deg, #c9a24a 0%, #9a7428 100%) !important;
        border-color: #7a5c1f !important;
        color: #fffdf8 !important;
        box-shadow: 0 6px 20px rgba(122, 92, 31, 0.35) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.3rem !important;
        white-space: nowrap !important;
        font-size: 0.74rem !important;
        line-height: 1.15 !important;
        padding-left: 0.45rem !important;
        padding-right: 0.45rem !important;
    }

    body.product-detail-page .pdp__panel--minimal .add-to-cart-form-minimal .btn-primary i {
        flex-shrink: 0 !important;
        font-size: 0.95em !important;
    }
}

@media (max-width: 767.98px) {
    body.product-detail-page .pdp__grid {
        gap: 1.35rem !important;
    }

    body.product-detail-page .pdp__gallery {
        padding: 0.85rem 1.1rem 1.1rem !important;
    }

    body.product-detail-page .pdp__col--summary .pdp__panel {
        padding: 1.3rem 1.2rem !important;
    }

    body.product-detail-page .pdp__col--summary .pdp__panel.pdp__panel--minimal {
        --pdp-panel-pad-x: 1.2rem;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    body.product-detail-page .pdp__media .main-image-wrapper {
        max-width: min(100%, 440px) !important;
        max-height: min(48vw, 400px) !important;
    }
}

@media (max-width: 575.98px) {
    body.product-detail-page .pdp .stock-alert-input-wrap {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    body.product-detail-page .pdp__media .main-image-wrapper {
        aspect-ratio: 3 / 4 !important;
        max-width: min(100%, 320px) !important;
        max-height: min(44vh, 360px) !important;
    }
}

@media (min-width: 1024px) {
    body.product-detail-page .pdp__panel--minimal > * {
        order: 0 !important;
    }

    body.product-detail-page .pdp {
        --pdp-square: 540px;
        --pdp-thumb-h: 92px;
    }

    body.product-detail-page .pdp__grid {
        display: flex !important;
        align-items: stretch !important;
        justify-content: center !important;
        gap: 1.75rem !important;
    }

    body.product-detail-page .pdp__col {
        flex: 0 0 var(--pdp-square) !important;
        width: var(--pdp-square) !important;
        max-width: var(--pdp-square) !important;
    }

    body.product-detail-page .pdp__gallery,
    body.product-detail-page .pdp__panel {
        box-sizing: border-box !important;
        width: var(--pdp-square) !important;
        max-width: var(--pdp-square) !important;
    }

    body.product-detail-page .pdp__panel:not(.pdp__panel--minimal) {
        height: var(--pdp-square) !important;
        max-height: var(--pdp-square) !important;
    }

    body.product-detail-page .pdp__col--gallery {
        display: flex !important;
        flex-direction: column !important;
        align-self: stretch !important;
        min-height: 0 !important;
    }

    body.product-detail-page .pdp__panel.pdp__panel--minimal {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        justify-content: flex-start !important;
    }

    body.product-detail-page .pdp__col--summary {
        overflow: visible !important;
    }

    body.product-detail-page .pdp__gallery {
        height: 100% !important;
        flex: 1 1 auto !important;
        min-height: var(--pdp-square) !important;
        max-height: none !important;
        padding: 0 !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
    }

    body.product-detail-page .pdp__media {
        padding: 0 !important;
        flex: 1 1 auto !important;
        min-height: 0 !important;
        height: auto !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
    }

    body.product-detail-page .pdp__media .main-image-wrapper {
        flex: 1 1 auto !important;
        min-height: 0 !important;
        height: 100% !important;
        max-height: 100% !important;
        aspect-ratio: auto !important;
        padding: 0 !important;
        border-radius: 0 !important;
        border: 0 !important;
        background: #fff !important;
    }

    body.product-detail-page .pdp__media .main-product-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    body.product-detail-page .pdp__thumbs {
        flex: 0 0 auto !important;
        height: var(--pdp-thumb-h) !important;
        max-height: var(--pdp-thumb-h) !important;
        padding: 8px 10px 10px 10px !important;
        margin-top: 0 !important;
        box-sizing: border-box !important;
        align-items: center !important;
    }

    body.product-detail-page .pdp__panel .product-title-jewellery {
        font-size: 1.25rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.6rem !important;
        letter-spacing: 0.02em !important;
    }

    body.product-detail-page .pdp__panel .product-rating-minimal {
        margin-bottom: 0.65rem !important;
    }

    body.product-detail-page .pdp__panel .product-price-minimal .price-current {
        font-size: 1.55rem !important;
    }

    body.product-detail-page .pdp__panel .product-price-minimal .price-old {
        font-size: 0.95rem !important;
    }

    body.product-detail-page .pdp__panel .product-side-benefits {
        gap: 0.35rem !important;
        margin-bottom: 0.85rem !important;
    }

    body.product-detail-page .pdp__panel .product-side-benefits .benefit-item {
        font-size: 0.82rem !important;
    }

    body.product-detail-page .pdp__panel .add-to-cart-form-minimal {
        /* Ensure quantity control never collapses on desktop */
        grid-template-columns: minmax(126px, 150px) minmax(0, 1fr) minmax(110px, 150px) !important;
        gap: 0.55rem !important;
    }

    body.product-detail-page .pdp__panel .add-to-cart-minimal .btn,
    body.product-detail-page .pdp__panel .add-to-cart-minimal .quantity-input-group-minimal {
        height: 44px !important;
    }

    body.product-detail-page .pdp__panel .add-to-cart-minimal #addToCartBtn.btn-primary {
        white-space: nowrap !important;
        font-size: 0.8rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.3rem !important;
    }

    body.product-detail-page .pdp__panel .product-short-description-minimal p {
        -webkit-line-clamp: 2 !important;
    }

    body.product-detail-page .pdp__panel {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    /* Subtle column separation (summary card reads as its own block) */
    body.product-detail-page .pdp__col--summary .pdp__panel {
        border-left-width: 2px !important;
        border-left-color: rgba(184, 134, 11, 0.22) !important;
    }

    /*
     * Out of stock: less content than in-stock (no benefits/cart). Push the availability +
     * notify block toward the bottom so vertical weight mirrors gallery (image + thumb strip).
     */
    body.product-detail-page .pdp__panel:has(#purchaseAvailability[data-in-stock="0"]) {
        justify-content: flex-start !important;
    }

    body.product-detail-page .pdp__panel:has(#purchaseAvailability[data-in-stock="0"]) #purchaseAvailability {
        margin-top: auto !important;
    }

    /* Out of stock: tighten vertical rhythm so panel matches image */
    body.product-detail-page .pdp__panel #purchaseAvailability[data-in-stock="0"] {
        margin-bottom: 0.75rem !important;
    }

    body.product-detail-page .pdp__panel #purchaseAvailability[data-in-stock="0"] ~ .stock-alert-box {
        margin-bottom: 0.75rem !important;
    }

    body.product-detail-page .pdp__panel #purchaseAvailability[data-in-stock="0"] ~ .stock-alert-box .stock-alert-text {
        margin-bottom: 0.5rem !important;
    }

    body.product-detail-page .pdp__panel #purchaseAvailability[data-in-stock="0"] ~ .stock-alert-box .stock-alert-input-wrap {
        gap: 0.45rem !important;
    }

    body.product-detail-page .pdp__panel #purchaseAvailability[data-in-stock="0"] ~ .product-summary-copy,
    body.product-detail-page .pdp__panel #purchaseAvailability[data-in-stock="0"] ~ .variant-selection,
    body.product-detail-page .pdp__panel #purchaseAvailability[data-in-stock="0"] ~ .add-to-cart-section {
        margin-bottom: 0.75rem !important;
    }
}

body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .product-gallery,
body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .product-purchase-sidebar {
    position: static;
    top: auto;
}

.jewellery-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.jewellery-eyebrow-link {
    color: var(--jewelry-gold-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(184, 134, 11, 0.35);
    padding-bottom: 1px;
}

.jewellery-eyebrow-link:hover {
    color: var(--primary-red);
}

.product-title-jewellery {
    font-size: clamp(1.35rem, 2.4vw, 1.9rem) !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em;
    color: var(--jewelry-charcoal, #221b26) !important;
    line-height: 1.35;
}

.product-jewellery-aside {
    position: sticky;
    top: calc(var(--layout-categories-offset, 158px) + 0.75rem);
    align-self: flex-start;
}

.product-aside-block {
    padding: 1rem 0.35rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.product-aside-block:last-child {
    border-bottom: none;
}

.product-aside-label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--jewelry-gold-dark);
    margin-bottom: 0.55rem;
}

.product-aside-list li {
    margin-bottom: 0.15rem;
}

.product-aside-list a {
    display: block;
    font-size: 0.84rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.2rem 0;
}

.product-aside-list a:hover {
    color: var(--primary-red);
}

.product-aside-text {
    color: var(--text-gray);
    line-height: 1.45;
}

.product-aside-wa {
    background: #1f5c44 !important;
    color: #fffef9 !important;
    border: none !important;
}

.product-aside-wa:hover {
    background: #164232 !important;
    color: #fff !important;
}

/* Dikey küçük resimler (tema dosyasına bağımlı kalmadan) */
body.product-detail-page .thumbnail-images-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    max-height: min(560px, 72vh);
    overflow-y: auto;
    padding-right: 0.35rem;
}

body.product-detail-page .thumbnail-images-vertical::-webkit-scrollbar {
    width: 4px;
}

body.product-detail-page .thumbnail-images-vertical::-webkit-scrollbar-thumb {
    background: rgba(184, 134, 11, 0.45);
    border-radius: 10px;
}

body.product-detail-page .thumbnail-item {
    width: 68px;
    height: 68px;
    min-width: 68px;
    min-height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    background: #faf6ef;
    transition: var(--transition);
}

body.product-detail-page .thumbnail-item:hover {
    border-color: rgba(184, 134, 11, 0.55);
    transform: scale(1.04);
}

body.product-detail-page .thumbnail-image.active,
body.product-detail-page .thumbnail-item .thumbnail-image.active {
    border-color: var(--jewelry-gold) !important;
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.25);
}

body.product-detail-page .product-jewellery .variant-selection {
    background: rgba(255, 254, 249, 0.95);
    border: 1px solid rgba(184, 134, 11, 0.14);
}

body.product-detail-page .product-jewellery .color-option {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 10px !important;
}

@media (max-width: 1023.98px) {
    body.product-detail-page .product-detail-section.product-jewellery.product-jewellery-minimal .main-product-image {
        width: 90% !important;
        height: 90% !important;
        max-width: 90% !important;
        max-height: 90% !important;
    }

    body.product-detail-page .thumbnail-images-vertical {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.35rem;
    }

    body.product-detail-page .thumbnail-item {
        border-radius: 12px;
    }

    .product-purchase-sidebar {
        position: static;
    }

    .product-jewellery-aside {
        position: static;
    }

    .add-to-cart-minimal form {
        flex-direction: column;
    }

    .add-to-cart-form-minimal {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    .add-to-cart-minimal .quantity-selector,
    .add-to-cart-minimal .quantity-selector .input-group {
        width: 100% !important;
    }
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 120px;
    z-index: 10;
}

body.product-detail-page .product-gallery {
    top: calc(var(--layout-categories-offset, 158px) + 0.75rem);
}

.main-image-wrapper {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: zoom-in;
}

body.product-detail-page .product-jewellery .main-image-wrapper {
    background: #faf6ef;
    border-radius: 16px;
    border: 1px solid rgba(184, 134, 11, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    aspect-ratio: 1 / 1;
    padding: clamp(0.45rem, 1vw, 0.75rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile scroll ergonomics: avoid "drag feels stuck" over gallery area */
@media (hover: none) and (pointer: coarse) {
    body.product-detail-page .main-image-wrapper,
    body.product-detail-page .pdp__thumb-btn,
    body.product-detail-page .pdp__thumb-btn img {
        touch-action: pan-y;
    }

    body.product-detail-page .main-image-wrapper {
        cursor: default;
    }
}

.main-product-image {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    display: block;
    object-fit: contain;
    object-position: center;
}

.main-product-image:hover {
    transform: scale(1.05);
}

/* Desktop hover: wrapper hover daha stabil (img üstünde değilken de) */
@media (hover: hover) and (pointer: fine) {
    body.product-detail-page .main-image-wrapper:hover .main-product-image {
        /* Side-zoom will be the primary affordance; keep subtle scale */
        transform: scale(1.02);
    }
}

.pdp-zoom-lens {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 14px;
    pointer-events: none;
    opacity: 0;
    /* Lens only shows magnified image; no "frosted glass" */
    background-color: transparent;
    border: 1px solid rgba(184, 134, 11, 0.32);
    box-shadow:
        0 10px 26px rgba(34, 27, 38, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    backdrop-filter: none;
    will-change: transform, width, height;
    transition: opacity 0.12s ease;
}

.pdp-zoom-pane {
    display: none !important;
}

@media (hover: hover) and (pointer: fine) {
    body.product-detail-page .main-image-wrapper.pdp-zoom-active .pdp-zoom-lens,
    body.product-detail-page .pdp-zoom-lens.is-visible {
        opacity: 1;
    }
}

.image-zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    opacity: 0;
    transition: var(--transition);
}

.main-image-wrapper:hover .image-zoom-hint {
    opacity: 1;
}

.thumbnail-images {
    margin-top: 1rem;
}

.thumbnail-image {
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0.7;
}

.thumbnail-image:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: var(--primary-red);
}

.thumbnail-image.active {
    opacity: 1;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.28);
}

/* Product Info */
.product-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    text-align: left;
}

/* İçerik tam genişlik, soldan hizalı (e-ticaret kapalı) */
.product-content-full {
    max-width: 100%;
    text-align: left;
}
.product-content-full .product-description-below {
    max-width: 100%;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
}

.stars-rating {
    color: #ffc107;
}

.product-price {
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.product-short-description {
    text-align: left !important;
}

.product-short-description p,
.product-short-description *,
.product-info .product-short-description,
.product-info .product-short-description p,
.product-info .product-short-description * {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.price-current {
    color: var(--primary-red);
}

.discount-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.stock-status {
    margin-top: 1rem;
}

/* Variant Selection */
.variant-selection {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.variant-group {
    margin-bottom: 1.5rem;
}

.variant-group:last-child {
    margin-bottom: 0;
}

.variant-option {
    min-width: 50px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    color: inherit;
}

/* Eski kurallarda tüm alt elemanlarda pointer-events:none vardı; bazı mobil tarayıcılar seçimi kırıyordu */

.variant-option:hover:not(.color-option) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.variant-option.active:not(.color-option) {
    background: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: white !important;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.35);
    font-weight: 600;
}

.color-option {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    padding: 0 !important;
    position: relative;
    min-width: 44px !important;
    border: 2px solid rgba(34, 27, 38, 0.16) !important;
    overflow: hidden !important;
    flex-shrink: 0;
    background-clip: padding-box;
}

body.product-detail-page .variant-selection .variant-option.color-option.color-option--solid {
    background-color: var(--pdp-swatch-bg, #d0d0d0) !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}

body.product-detail-page .variant-selection .variant-option.color-option.color-option--solid:hover {
    transform: scale(1.06);
    border-color: rgba(184, 134, 11, 0.45) !important;
}

/* Genel .variant-option.active kırmızı zemin — renk swatch: --pdp-swatch-bg + altın çerçeve */
body.product-detail-page .variant-selection .variant-option.color-option.active {
    background-color: var(--pdp-swatch-bg, #d0d0d0) !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    box-shadow: 0 0 0 2px #fffef9, 0 0 0 4px var(--jewelry-gold, #b8860b) !important;
    transform: scale(1.05);
    border-color: rgba(184, 134, 11, 0.65) !important;
}

body.product-detail-page .variant-selection .variant-option.color-option.color-option--image {
    background-color: #e8e6e1 !important;
}

body.product-detail-page .variant-selection .variant-option.color-option.color-option--image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    z-index: 0;
}

.color-option,
.color-option *,
.color-option img {
    border-radius: 10px !important;
}

.variant-option.color-option {
    border-radius: 10px !important;
}

.variant-option.color-option img {
    border-radius: 10px !important;
}

.color-option:hover:not(.active) {
    transform: scale(1.06);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 0.85rem;
    line-height: 1;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0, 0, 0, 0.55);
    z-index: 2;
    pointer-events: none;
}

/* Quantity Selector */
.quantity-selector {
    flex-shrink: 0;
}

.quantity-input-group {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.quantity-input-group .btn {
    border-radius: 0;
    border: none;
    background: var(--bg-light);
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.quantity-input-group .btn:hover {
    background: var(--primary-red);
    color: white;
}

.quantity-input-group .btn:active {
    transform: scale(0.95);
}

.quantity-input-group .qty-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1;
    font-size: 1.1rem;
    font-weight: 800;
    color: currentColor;
    pointer-events: none;
    user-select: none;
}

/* Ensure + stays visible even when disabled (e.g. stock=1) */
.quantity-input-group .btn:disabled {
    opacity: 0.55;
}

.quantity-input-group input {
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 1.1rem;
    background: white;
    pointer-events: auto;
    user-select: auto;
}

body.product-detail-page .product-quantity-input {
    -moz-appearance: textfield;
    appearance: textfield;
}

body.product-detail-page .product-quantity-input::-webkit-outer-spin-button,
body.product-detail-page .product-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input-group input:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

/* Shipping Info */
.shipping-info {
    padding: 0.5rem 0;
}

.shipping-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.shipping-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-red);
}

.shipping-card-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.shipping-card-header i {
    font-size: 1.2rem;
}

.shipping-card-body {
    padding: 1.5rem;
}

.shipping-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    line-height: 1.6;
}

.shipping-item:last-child {
    border-bottom: none;
}

.shipping-item strong {
    color: var(--text-dark);
    display: inline-block;
    min-width: 140px;
    font-weight: 600;
}

/* Trust Badges */
.trust-badges {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-top: 1rem;
}

.trust-badge-item {
    transition: var(--transition);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.trust-badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red) !important;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08), rgba(138, 104, 16, 0.06));
}

.trust-badge-icon {
    transition: var(--transition);
}

.trust-badge-item:hover .trust-badge-icon {
    transform: scale(1.1);
}

.trust-badge-item:hover .trust-badge-icon i {
    color: var(--primary-red) !important;
}

/* Product Tabs */
.product-tabs {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.product-tabs .nav-tabs {
    border-bottom: 2px solid var(--border-color);
    padding: 0 1rem;
    margin: 0;
}

.product-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-gray);
    padding: 1rem 1.5rem;
    transition: var(--transition);
}

.product-tabs .nav-link:hover {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

.product-tabs .nav-link.active {
    color: var(--primary-red);
    background: transparent;
    border-bottom-color: var(--primary-red);
    font-weight: 600;
}

body.product-detail-page .product-detail-section.product-jewellery .product-tabs .tab-content {
    background: #fffef9 !important;
    border-color: rgba(184, 134, 11, 0.16) !important;
}

.product-description-content {
    line-height: 1.8;
    color: var(--text-dark);
}

/* Ürün açıklaması içindeki h etiketleri */
.product-description-content h1,
.product-description-below h1 { font-size: 1.4rem; margin: 1.1rem 0 0.65rem; font-weight: 600; text-align: left; }
.product-description-content h1::after,
.product-description-below h1::after { display: none; }
.product-description-content h2,
.product-description-below h2 { font-size: 1.6rem !important; margin: 1rem 0 0.6rem !important; font-weight: 600 !important; text-align: left !important; }
.product-description-content h2::after,
.product-description-below h2::after { display: none !important; content: none !important; }
.product-description-content h3,
.product-description-below h3 { font-size: 1.2rem; margin: 0.95rem 0 0.55rem; font-weight: 600; text-align: left; }
.product-description-content h3::after,
.product-description-below h3::after { display: none; }
.product-description-content h4,
.product-description-below h4 { font-size: 1.1rem; margin: 0.9rem 0 0.5rem; font-weight: 600; text-align: left; }
.product-description-content h4::after,
.product-description-below h4::after { display: none; }
.product-description-content h5,
.product-description-below h5 { font-size: 1.05rem; margin: 0.85rem 0 0.45rem; font-weight: 600; text-align: left; }
.product-description-content h5::after,
.product-description-below h5::after { display: none; }
.product-description-content h6,
.product-description-below h6 { font-size: 1rem; margin: 0.8rem 0 0.45rem; font-weight: 600; text-align: left; }
.product-description-content h6::after,
.product-description-below h6::after { display: none; }

/* Reviews Section */
.reviews-section {
    max-width: 100%;
}

.reviews-summary {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.average-rating-display {
    padding: 1rem;
}

.rating-bar .progress {
    background-color: var(--bg-light);
}

.rating-bar .progress-bar {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
}

.review-item {
    padding: 1rem 0;
}

.review-item:last-child {
    border-bottom: none !important;
}

/* Sticky Add to Cart (Mobile) */
.sticky-add-to-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-add-to-cart .sticky-add-wrap {
    border-radius: 10px 10px 0 0;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.sticky-add-to-cart .btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.sticky-add-to-cart .sticky-add-qty {
    border: 1px solid #d9d4cc;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.sticky-add-to-cart .sticky-qty-btn {
    border: none !important;
    border-radius: 0 !important;
    padding: 0.25rem 0.55rem !important;
    min-width: 2.35rem;
    line-height: 1.2;
    font-size: 1.05rem;
    font-weight: 700;
    color: #5a5a5a;
    background: #f4f1eb !important;
}

.sticky-add-to-cart .sticky-qty-btn:hover:not(:disabled) {
    background: #eae4da !important;
}

.sticky-add-to-cart .sticky-qty-value {
    min-width: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    padding: 0 0.2rem;
}

.sticky-add-to-cart .sticky-add-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 100%;
}

.sticky-add-to-cart .sticky-add-cta {
    flex-wrap: nowrap;
}

.sticky-add-to-cart .sticky-add-cart-main {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    padding: 0.5rem 0.85rem !important;
    border-radius: 999px;
}

.sticky-add-to-cart .sticky-add-buy-now {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    padding: 0.45rem 0.72rem !important;
    border-radius: 999px;
    border-color: rgba(184, 134, 11, 0.55) !important;
    color: #4a3728 !important;
    background: rgba(255, 252, 246, 0.96) !important;
}

.sticky-add-to-cart .sticky-add-buy-now:hover:not(:disabled) {
    border-color: var(--jewelry-gold, #b8860b) !important;
    background: rgba(255, 250, 240, 0.98) !important;
    color: var(--jewelry-gold-dark, #8a6810) !important;
}

@media (max-width: 380px) {
    .sticky-add-to-cart .sticky-add-cart-main {
        font-size: 0.72rem;
        padding: 0.45rem 0.65rem !important;
    }

    .sticky-add-to-cart .sticky-add-buy-now {
        font-size: 0.68rem;
        padding: 0.4rem 0.58rem !important;
    }

    .sticky-add-to-cart .sticky-qty-btn {
        padding: 0.2rem 0.42rem !important;
        min-width: 2.1rem;
    }
}

/* PDP mobil: yapışkan şeritte adet + sepet birleşik; akış içi tekrarı gizle */
@media (max-width: 991.98px) {
    body.product-detail-page {
        padding-top: var(--header-stack-height, 96px) !important;
    }

    body.product-detail-page .jewellery-breadcrumb-section {
        padding-top: 0.45rem !important;
        padding-bottom: 0.45rem !important;
    }

    body.product-detail-page .product-detail-section {
        padding-top: 0.85rem !important;
        padding-bottom: 1.25rem !important;
    }

    body.product-detail-page .add-to-cart-section {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    body.product-detail-page {
        padding-top: var(--header-stack-height, 88px) !important;
    }
}

/* Social Share */
.social-share .btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .product-gallery {
        position: static;
        margin-bottom: 2rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .product-title {
        font-size: 1.25rem;
    }
    
    .variant-options {
        gap: 0.5rem !important;
    }
    
    .add-to-cart-section {
        flex-direction: column;
    }
    
    .quantity-selector {
        width: 100%;
    }
    
    .quantity-selector .input-group {
        width: 100% !important;
    }

    body.product-detail-page {
        padding-bottom: 84px;
    }
}

.filter-section {
    margin-bottom: 1rem;
}

.filter-accordion {
    --bs-accordion-border-color: var(--border-color);
    --bs-accordion-border-radius: 8px;
    --bs-accordion-inner-border-radius: 8px;
}

.filter-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.filter-accordion .accordion-button {
    background: transparent;
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    box-shadow: none;
}

.filter-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--primary-red);
}

/* Always open filters (Categories, Price) */
.filter-accordion .accordion-item:first-child .accordion-button,
.filter-accordion .accordion-item:nth-child(2) .accordion-button {
    font-weight: 700;
}

.filter-accordion .accordion-item:first-child .accordion-button:not(.collapsed),
.filter-accordion .accordion-item:nth-child(2) .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border-left: 3px solid var(--primary-red);
}

.filter-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.filter-accordion .accordion-body {
    padding: 1rem;
    padding-top: 0.5rem;
}

.filter-group {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.filter-title i {
    color: var(--primary-red);
}

.filter-list {
    max-height: 300px;
    overflow-y: auto;
}

.filter-list .form-check {
    padding: 0.5rem 0;
}

.filter-list .form-check-label {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.filter-list .form-check-input:checked + .form-check-label {
    color: var(--primary-red);
    font-weight: 500;
}

.filter-list .form-check-input {
    cursor: pointer;
    margin-top: 0.25rem;
}

.filter-list .form-check-input:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Products Toolbar */
.products-toolbar {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.products-toolbar .form-select {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.5rem 2.5rem 0.5rem 1rem;
}

.products-toolbar .btn-group .btn {
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.products-toolbar .btn-check:checked + .btn {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

/* List View */
.products-grid.list-view .product-card {
    flex-direction: row;
    max-width: 100%;
}

.products-grid.list-view .product-image-wrapper {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.products-grid.list-view .card-body {
    padding: 2rem;
    flex: 1;
}

.products-grid.list-view .product-description {
    min-height: auto;
    -webkit-line-clamp: 3;
    margin-bottom: 1rem;
}

.products-grid.list-view .price-display {
    justify-content: flex-start !important;
    margin-bottom: 1.5rem;
}

.products-grid.list-view .btn {
    width: auto;
    min-width: 200px;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    color: var(--primary-red);
    border-color: var(--border-color);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 991.98px) {
    .filters-sidebar {
        position: static;
    }
    
    .products-grid.list-view .product-card {
        flex-direction: column;
    }
    
    .products-grid.list-view .product-image-wrapper {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .products-toolbar {
        padding: 0.75rem;
    }
    
    .products-toolbar .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .products-toolbar .form-select,
    .products-toolbar .btn-group {
        width: 100%;
    }
    
    .products-toolbar .form-select {
        width: 100% !important;
    }
}

.product-card .badge {
    position: absolute;
    top: 15px;
    z-index: 10;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.product-card .badge.bg-danger {
    right: 15px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark)) !important;
}

.product-card .badge.bg-warning {
    left: 15px;
    background: linear-gradient(135deg, #ffc107, #ff9800) !important;
    color: white;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--bg-light);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1) rotate(2deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 5;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.product-card:hover .product-overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-size: 1.1rem;
}

.overlay-icon:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.overlay-icon.active {
    background: var(--primary-red);
    color: white;
}

.overlay-icon.active:hover {
    background: var(--primary-red-dark);
    color: white;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-red);
}

/* Price Display */
.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.price-old {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Section Spacing */
section {
    padding: 5rem 0;
    position: relative;
}

section.bg-light {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Process Steps (legacy) */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-15px);
}

.process-step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.process-step:hover .process-step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.process-step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid var(--primary-red);
    opacity: 0;
    transition: var(--transition);
}

.process-step:hover .process-step-number::before {
    opacity: 0.3;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

.process-step h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Process Section – Modern (Sipariş Süreci) */
.process-section-modern .process-title-underline {
    border-bottom: 3px solid var(--primary-red);
    padding-bottom: 2px;
}

.process-step-modern {
    text-align: center;
    padding: 1.5rem 0.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step-modern:hover {
    transform: translateY(-4px);
}

.process-step-number-modern {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 14px rgba(220, 53, 69, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step-modern:hover .process-step-number-modern {
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.process-step-modern .process-step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-step-modern .process-step-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Blog Cards */
.blog-card {
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.blog-card:hover .card-img-top {
    transform: scale(1.1);
}

.blog-date {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card .card-title {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card .card-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Social Proof Notification */
.social-proof-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 999;
    animation: slideInLeft 0.5s ease-out;
    max-width: 350px;
    border-left: 4px solid var(--primary-red);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.social-proof-notification img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.social-proof-content {
    flex: 1;
}

.social-proof-content strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.social-proof-content small {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.social-proof-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
    transition: var(--transition);
}

.social-proof-close:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

/* Footer — renkler :root (--theme-footer-*, tema ayarları) ile gelir; inline header stilleri ile uyumlu */
footer.site-footer {
    background: var(--theme-footer-bg, #121820);
    color: var(--theme-footer-heading, #f1f5f9);
    margin-top: 6rem;
    padding: 4rem 0 2rem;
    border-top: 1px solid color-mix(in srgb, var(--theme-primary, #64748b) 22%, transparent);
}

footer.site-footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--theme-footer-heading, #f1f5f9);
}

footer.site-footer a {
    color: color-mix(in srgb, var(--theme-footer-heading, #f1f5f9) 78%, transparent);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

footer.site-footer a:hover {
    color: var(--theme-primary, #64748b);
    transform: translateX(5px);
}

footer.site-footer .text-muted {
    color: color-mix(in srgb, var(--theme-footer-heading, #f1f5f9) 52%, transparent) !important;
}

footer.site-footer hr {
    border-color: color-mix(in srgb, var(--theme-footer-heading, #f1f5f9) 18%, transparent);
}

/* Responsive */
@media (max-width: 992px) {
    :root {
        --layout-categories-offset: 190px;
        --layout-chrome-pad: 260px;
    }
    /* Mobilde max() büyük tabanı seçip header–içerik arasında fazla boşluk bırakıyordu; JS ölçümüne güven */
    body,
    body.page-homepage {
        padding-top: var(--header-stack-height, var(--layout-chrome-pad));
    }
    
    .top-bar {
        padding: 0.4rem 0;
        font-size: 0.75rem;
    }
    
    .top-bar-left {
        gap: 1rem;
    }
    
    .top-bar-center {
        display: none;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .header-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    /* Prevent mobile/tablet search from looking clipped */
    .search-form .form-control {
        padding: 0.6rem 1rem;
        font-size: 0.92rem;
    }

    .search-form .btn-primary {
        padding: 0.6rem 1rem;
    }
    
    .categories-bar {
        top: var(--header-categories-top, var(--layout-categories-offset));
    }
    
    .categories-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    /* Move actions to bottom bar on mobile/tablet */
    .header-actions {
        display: none !important;
    }

    body {
        padding-bottom: 72px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    section h2 {
        font-size: 2.5rem;
    }
}

.mobile-bottom-bar {
    display: none;
}

@media (max-width: 992px) {
    /* Keep PDP sticky cart above content but below bottom nav */
    body.product-detail-page .sticky-add-to-cart {
        bottom: calc(72px + env(safe-area-inset-bottom));
        z-index: 1000;
    }

    body.product-detail-page {
        padding-bottom: calc(72px + 72px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto !important;
        z-index: 100010;
        background: rgba(255, 254, 249, 0.92);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(184, 134, 11, 0.18);
        padding: 0.4rem 0.25rem calc(0.4rem + env(safe-area-inset-bottom));
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.25rem;
    }

    a.mobile-bottom-item,
    button.mobile-bottom-item {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        padding: 0.35rem 0.2rem;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 0.72rem;
        border-radius: 10px;
    }

    button.mobile-bottom-item {
        appearance: none;
        border: none;
        background: transparent;
        width: 100%;
        margin: 0;
        font: inherit;
        line-height: inherit;
        text-align: center;
        cursor: pointer;
    }

    a.mobile-bottom-item i,
    button.mobile-bottom-item i {
        font-size: 1.1rem;
        color: var(--primary-red);
    }

    a.mobile-bottom-item:hover,
    button.mobile-bottom-item:hover {
        background: rgba(184, 134, 11, 0.08);
        color: var(--text-dark);
    }

    .mobile-bottom-badge {
        position: absolute;
        top: 0.15rem;
        right: 0.4rem;
        min-width: 18px;
        height: 18px;
        padding: 0 6px;
        border-radius: 999px;
        background: var(--primary-red);
        color: #fff;
        font-size: 0.7rem;
        line-height: 18px;
        text-align: center;
        font-weight: 800;
    }
}

/* Alt menüdeki “Ara” ile açılan arama (üst arama gizlendi) */
.mobile-search-sheet {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100200;
    box-sizing: border-box;
}

.mobile-search-sheet.is-open {
    display: block;
}

.mobile-search-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.mobile-search-sheet__panel {
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: calc(72px + env(safe-area-inset-bottom) + 0.35rem);
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 0.85rem 1rem 1rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-search-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mobile-search-sheet__head button {
    border: none;
    background: rgba(0, 0, 0, 0.06);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-search-sheet .search-form {
    position: relative;
    overflow: visible !important;
}

.mobile-search-sheet .search-suggestions {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin-top: 0.35rem;
    z-index: 3;
    box-shadow: var(--shadow-lg) !important;
}

@media (min-width: 992px) {
    .mobile-search-sheet {
        display: none !important;
    }
}

@media (max-width: 768px) {
    :root {
        --layout-categories-offset: 200px;
        --layout-chrome-pad: 276px;
    }
    body,
    body.page-homepage {
        padding-top: var(--header-stack-height, var(--layout-chrome-pad));
    }
    
    .top-bar {
        padding: 0.3rem 0;
        font-size: 0.7rem;
    }
    
    .top-bar-left {
        gap: 0.75rem;
    }
    
    .top-bar-link span {
        display: none;
    }
    
    .header-content {
        padding: 0.75rem 0;
    }

    .search-form .input-group {
        border-radius: 16px;
    }
    
    .logo-text-main {
        font-size: 1.5rem;
    }
    
    .logo-image {
        max-height: 60px !important;
        max-width: 180px !important;
        height: 60px !important;
        width: auto !important;
    }
    
    .header-action-btn span {
        display: none;
    }
    
    .categories-bar {
        top: var(--layout-categories-offset);
        padding: 0.45rem 0;
    }
    
    .categories-menu {
        gap: 0.75rem;
        font-size: 0.8rem;
    }
    
    .hero-section {
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .process-step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .social-proof-notification {
        left: 15px;
        right: 15px;
        max-width: none;
    }
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    z-index: 9999;
    min-width: 300px;
    transform: translateX(400px);
    opacity: 0;
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-notification.toast-success {
    border-left-color: #28a745;
}

.toast-notification.toast-error {
    border-left-color: var(--primary-red);
}

.toast-notification.toast-info {
    border-left-color: var(--jewelry-gold-dark);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.toast-content i {
    font-size: 1.25rem;
}

.toast-success .toast-content i {
    color: #28a745;
}

.toast-error .toast-content i {
    color: var(--primary-red);
}

.toast-info .toast-content i {
    color: var(--jewelry-gold-dark);
}

.toast-content span {
    flex: 1;
    font-weight: 500;
    color: var(--text-dark);
}

/* Utility Classes */
.text-red {
    color: var(--primary-red) !important;
}

.bg-red {
    background-color: var(--primary-red) !important;
}

.border-red {
    border-color: var(--primary-red) !important;
}

/* Account Sidebar */
.account-sidebar {
    position: sticky;
    top: 160px;
}

.account-sidebar .card {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.account-sidebar .list-unstyled {
    margin: 0;
    padding: 0;
}

.account-sidebar .list-unstyled li {
    margin-bottom: 0.5rem;
}

.account-sidebar .list-unstyled a {
    display: block;
    padding: 0.75rem 1rem;
    color: #555;
    text-decoration: none;
}

/* Homepage Editor Styles */
.homepage-editor-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    display: block;
}

.homepage-editor-toolbar:not(.active) {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.homepage-editor-toolbar.active {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.homepage-editor-toolbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Corano-like container width on desktop (prevents XXL widening) */
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1140px !important;
    }
}

body.edit-mode-active {
    padding-top: 250px;
}

#homepageSections.edit-mode .homepage-section-wrapper {
    position: relative;
    margin-bottom: 1rem;
    border: 2px dashed transparent;
    transition: var(--transition);
}

#homepageSections.edit-mode .homepage-section-wrapper:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
}

.section-editor-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(200, 35, 51, 0.1));
    border-bottom: 2px solid var(--primary-red);
    border-radius: 8px 8px 0 0;
}

.section-handle {
    cursor: grab;
    color: var(--primary-red);
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: var(--transition);
}

.section-handle:active {
    cursor: grabbing;
}

.section-handle:hover {
    color: var(--primary-red-dark);
    transform: scale(1.1);
}

.section-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-type-badge {
    background: var(--primary-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title-preview {
    color: var(--text-dark);
    font-weight: 500;
}

.section-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.edit-section-btn {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.edit-section-btn:hover {
    background: var(--primary-red);
    color: white;
}

.section-ghost {
    opacity: 0.5;
    background: var(--bg-light);
}

.section-chosen {
    border-color: var(--primary-red) !important;
    box-shadow: var(--shadow-lg) !important;
}

.section-drag {
    opacity: 0.8;
}

.section-content {
    position: relative;
}

#homepageSections.edit-mode .section-content {
    opacity: 1;
}

#homepageSections.edit-mode .homepage-section-wrapper:not(.is-visible) .section-content {
    opacity: 0.5;
    filter: grayscale(50%);
}
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.account-sidebar .list-unstyled a:hover,
.account-sidebar .list-unstyled a.active {
    background: rgba(220, 53, 69, 0.1);
    border-left-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateX(5px);
    font-weight: 600;
}

/* Statistics Cards */
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-red);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1;
}

.stat-card p {
    margin: 0;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 1rem;
}

/* Tables */
.table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.table thead {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: white;
}

.table thead th {
    border: none;
    padding: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.table tbody tr {
    transition: var(--transition);
}

.table tbody tr:hover {
    background: var(--bg-light);
    transform: scale(1.01);
}

.table tbody td {
    padding: 1.25rem;
    vertical-align: middle;
}

/* Forms */
.form-control {
    border-radius: 8px;
    border: 2px solid var(--border-color);
    padding: 0.875rem 1.25rem;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    outline: none;
    transform: translateY(-2px);
}

/* Cart Upsell Styles */
.cart-upsell-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.cart-upsell-alert {
    border-left: 4px solid #ffc107;
    background: #fff3cd;
}

.cart-upsell-alert .progress {
    background-color: #e9ecef;
    border-radius: 4px;
}

.cart-upsell-alert .progress-bar {
    transition: width 0.3s ease;
}

.cart-upsell-products h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-upsell-products .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-upsell-products .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.cart-upsell-products .card-img-top {
    border-radius: 4px 4px 0 0;
}

.cart-upsell-products .card-title a {
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.4;
}

.cart-upsell-products .card-title a:hover {
    color: var(--primary-red);
}

.cart-upsell-bundle .alert {
    border-left: 4px solid var(--jewelry-gold);
    background: #f7ecd6;
    color: var(--text-dark);
}

.cart-upsell-bundle .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-upsell-bundle .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* Exit Intent Popup Styles */
.exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Must sit above fixed header + mobile bottom bar + cookie bar */
    z-index: 100020;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.exit-intent-popup {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.exit-intent-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 2;
    pointer-events: auto;
}

.exit-intent-close:hover {
    color: var(--primary-red);
}

.exit-intent-content {
    text-align: center;
}

.exit-intent-icon {
    margin-bottom: 1.5rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.exit-intent-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.exit-intent-message {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.exit-intent-coupon {
    margin: 1.5rem 0;
    animation: fadeIn 0.5s ease;
}

.exit-intent-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.exit-intent-actions .btn {
    min-width: 150px;
}

@media (max-width: 576px) {
    .exit-intent-popup {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .exit-intent-title {
        font-size: 1.5rem;
    }
    
    .exit-intent-message {
        font-size: 1rem;
    }
    
    .exit-intent-actions {
        flex-direction: column;
    }
    
    .exit-intent-actions .btn {
        width: 100%;
    }
}

/* Optimia Credit */
.optimia-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

footer.site-footer .optimia-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: color-mix(in srgb, var(--theme-footer-heading, #f1f5f9) 70%, transparent);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

footer.site-footer .optimia-link:hover {
    color: var(--theme-primary, #64748b);
    text-decoration: none;
}

.optimia-logo {
    height: 16px;
    width: auto;
    vertical-align: middle;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer.site-footer .optimia-link:hover .optimia-logo {
    opacity: 1;
}

footer.site-footer .optimia-text {
    color: color-mix(in srgb, var(--theme-footer-heading, #f1f5f9) 70%, transparent);
    font-size: 0.85rem;
}

footer.site-footer .optimia-link:hover .optimia-text {
    color: var(--theme-primary, #64748b);
}

footer.site-footer .optimia-text-fallback {
    color: color-mix(in srgb, var(--theme-footer-heading, #f1f5f9) 82%, transparent);
    font-weight: 600;
    font-size: 0.85rem;
}

@media (max-width: 575.98px) {
    .optimia-credit {
        font-size: 0.75rem;
    }
    
    footer.site-footer .optimia-link {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
    }
    
    footer.site-footer .optimia-logo {
        height: 14px;
    }
}

/* ===== Project Detail - Modern Gallery ===== */
.project-gallery-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    grid-auto-rows: 140px;
    grid-auto-flow: dense;
}

.project-gallery-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.project-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.project-gallery-item .gallery-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-gallery-item .gallery-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-gallery-item:hover .gallery-image-wrap img {
    transform: scale(1.08);
}

.project-gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.project-gallery-item .gallery-zoom-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark, #212529);
    font-size: 1.25rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.project-gallery-item:hover .gallery-zoom-icon {
    transform: scale(1);
}

/* Hero: ilk görsel tam genişlik */
.project-gallery-item.gallery-hero {
    grid-column: 1 / -1;
    grid-row: span 1;
}

.project-gallery-item.gallery-hero .gallery-image-wrap {
    min-height: 240px;
}

/* Wide: 2. ve 3. görsel yan yana */
.project-gallery-item.gallery-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* Regular: diğerleri 1x1 */
.project-gallery-item.gallery-regular {
    grid-column: span 1;
    grid-row: span 1;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .project-gallery-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-gallery-item.gallery-hero {
        grid-column: 1 / -1;
        grid-row: span 1;
    }
    
    .project-gallery-item.gallery-hero .gallery-image-wrap {
        min-height: 200px;
    }
    
    .project-gallery-item.gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 575.98px) {
    .project-gallery-modern {
        grid-template-columns: 1fr;
        grid-auto-rows: 160px;
    }
    
    .project-gallery-item.gallery-hero .gallery-image-wrap {
        min-height: 180px;
    }
}

/* =============================================================================
   Mağaza listesi (ürünler) — Corano mücevher referansı: #c29958 aksan, ince çizgiler
   body: products-listing shop-corano (products.php e-ticaret açıkken)
   ============================================================================= */
body.products-listing.shop-corano {
    --shop-accent: #c29958;
    --shop-accent-deep: #a88247;
    --shop-accent-rgb: 194, 153, 88;
    --shop-border: #ededed;
    --shop-toolbar-bg: #f7f5f2;
    --shop-card-bg: #fafafa;
    --bs-primary: #c29958;
    --bs-primary-rgb: 194, 153, 88;
}

body.products-listing.shop-corano section.page-header.shop-corano-page-header {
    background: #fff !important;
    color: #1a1a1a !important;
    border-bottom: 1px solid var(--shop-border);
    margin-top: 0;
}

body.products-listing.shop-corano section.page-header.shop-corano-page-header h1 {
    color: #1a1a1a !important;
    font-weight: 600;
    letter-spacing: 0.06em;
    font-size: 1.5rem !important;
}

body.products-listing.shop-corano section.page-header.shop-corano-page-header .breadcrumb {
    background: transparent !important;
    padding: 0;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}

body.products-listing.shop-corano section.page-header.shop-corano-page-header .breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

body.products-listing.shop-corano section.page-header.shop-corano-page-header .breadcrumb-item + .breadcrumb-item::before {
    display: inline-flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

body.products-listing.shop-corano section.page-header.shop-corano-page-header .breadcrumb-item a {
    color: var(--shop-accent) !important;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.2;
}

body.products-listing.shop-corano section.page-header.shop-corano-page-header .breadcrumb-item.active {
    color: #8a8278 !important;
    font-size: 0.875rem;
}

body.products-listing.shop-corano .shop-corano-listing {
    background: #fff;
}

body.products-listing.shop-corano .filters-sidebar {
    top: calc(var(--layout-categories-offset, 158px) + 0.5rem);
}

body.products-listing.shop-corano .shop-corano-filters-card {
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 2px;
    box-shadow: none;
    padding: 0;
}

body.products-listing.shop-corano .shop-corano-sidebar-mobile-toggle {
    border: 1px solid var(--shop-border);
    background: #fff;
    color: #222;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    border-radius: 2px;
}

body.products-listing.shop-corano .shop-corano-sidebar-mobile-toggle:hover {
    border-color: var(--shop-accent);
    color: var(--shop-accent);
}

body.products-listing.shop-corano .shop-corano-widget {
    padding: 1.35rem 1.25rem;
    border-bottom: 1px solid var(--shop-border);
}

body.products-listing.shop-corano .shop-corano-widget:last-child {
    border-bottom: none;
}

body.products-listing.shop-corano .shop-corano-widget--clear {
    padding-top: 0.75rem;
}

body.products-listing.shop-corano .shop-corano-widget-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 1rem;
}

body.products-listing.shop-corano .shop-corano-cat-list > li {
    margin-bottom: 0.35rem;
}

body.products-listing.shop-corano .shop-corano-cat-link {
    display: block;
    padding: 0.35rem 0;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.35;
    transition: color 0.15s ease;
}

body.products-listing.shop-corano .shop-corano-cat-link:hover {
    color: var(--shop-accent);
}

body.products-listing.shop-corano .shop-corano-cat-link.is-active {
    color: var(--shop-accent);
    font-weight: 600;
}

body.products-listing.shop-corano .shop-corano-cat-sub {
    margin: 0.15rem 0 0.5rem 0.65rem;
    padding-left: 0.5rem;
    border-left: 1px solid #ece8e2;
}

body.products-listing.shop-corano .shop-corano-cat-link--child {
    font-size: 0.86rem;
    padding: 0.28rem 0;
    color: #666;
}

body.products-listing.shop-corano .shop-corano-more {
    border: none;
    padding: 0;
}

body.products-listing.shop-corano .shop-corano-more-summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1a1a1a;
    border-bottom: 1px solid var(--shop-border);
}

body.products-listing.shop-corano .shop-corano-more-summary::-webkit-details-marker {
    display: none;
}

body.products-listing.shop-corano .shop-corano-more-summary::after {
    content: '\25BE';
    float: right;
    font-size: 0.75rem;
    opacity: 0.4;
    line-height: 1.2;
}

body.products-listing.shop-corano .shop-corano-more[open] > .shop-corano-more-summary::after {
    content: '\25B4';
}

body.products-listing.shop-corano .shop-corano-more-body {
    padding: 1rem 1.25rem 1.25rem;
}

body.products-listing.shop-corano .shop-corano-subfilter-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #333;
    margin: 0 0 0.65rem;
}

body.products-listing.shop-corano .shop-corano-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.86rem;
    color: #444;
    cursor: pointer;
    margin: 0;
}

body.products-listing.shop-corano .shop-corano-check input[type="radio"],
body.products-listing.shop-corano .shop-corano-check input[type="checkbox"] {
    accent-color: var(--shop-accent);
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

body.products-listing.shop-corano .shop-corano-check--color .color-preview {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

body.products-listing.shop-corano .shop-corano-toolbar-search .form-control {
    border: 1px solid var(--shop-border);
    border-radius: 2px;
    font-size: 0.875rem;
}

body.products-listing.shop-corano .shop-corano-toolbar-search-btn {
    background: var(--shop-accent);
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 0 0.75rem;
}

body.products-listing.shop-corano .shop-corano-toolbar-search-btn:hover {
    background: var(--shop-accent-deep);
    color: #fff;
}

body.products-listing.shop-corano .shop-corano-toolbar-sort {
    min-width: 11rem;
    max-width: 100%;
}

body.products-listing.shop-corano .products-grid:not(.list-view) .product-description {
    display: none;
}

body.products-listing.shop-corano .price-range-slider {
    background: #e5e0da;
}

body.products-listing.shop-corano .price-range-slider input[type="range"]::-webkit-slider-thumb {
    background: var(--shop-accent);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.products-listing.shop-corano .price-range-slider input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 2px 10px rgba(var(--shop-accent-rgb), 0.45);
}

body.products-listing.shop-corano .price-range-slider input[type="range"]::-moz-range-thumb {
    background: var(--shop-accent);
}

body.products-listing.shop-corano .price-range-slider input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 0 2px 10px rgba(var(--shop-accent-rgb), 0.45);
}

body.products-listing.shop-corano .shop-corano-filter-submit {
    background: var(--shop-accent);
    color: #fff;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.65rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
}

body.products-listing.shop-corano .shop-corano-filter-submit:hover {
    background: var(--shop-accent-deep);
    color: #fff;
}

body.products-listing.shop-corano .shop-corano-accent-text {
    color: var(--shop-accent) !important;
}

body.products-listing.shop-corano .shop-corano-clear-filters,
body.products-listing.shop-corano .shop-corano-clear-all {
    border: 1px solid var(--shop-border);
    background: #fff;
    color: #333;
    font-size: 0.8rem;
    border-radius: 4px;
}

body.products-listing.shop-corano .shop-corano-clear-filters:hover,
body.products-listing.shop-corano .shop-corano-clear-all:hover {
    border-color: var(--shop-accent);
    color: var(--shop-accent);
}

body.products-listing.shop-corano .active-filters {
    background: #fff;
    border: 1px solid var(--shop-border);
    box-shadow: none;
}

body.products-listing.shop-corano .shop-corano-filter-chip {
    background: var(--shop-accent) !important;
    color: #fff !important;
    border-radius: 999px;
    font-weight: 500;
}

body.products-listing.shop-corano .shop-corano-toolbar {
    background: var(--shop-toolbar-bg);
    border: 1px solid var(--shop-border);
    border-radius: 4px;
    box-shadow: none;
}

/* Mobile refinements for /urunler toolbar + header spacing */
@media (max-width: 768px) {
    body.products-listing.shop-corano section.page-header.shop-corano-page-header {
        padding-top: 0.9rem !important;
        padding-bottom: 0.75rem !important;
    }

    body.products-listing.shop-corano section.page-header.shop-corano-page-header h1 {
        margin-bottom: 0.35rem !important;
        font-size: 1.35rem !important;
        letter-spacing: 0.04em;
    }

    body.products-listing.shop-corano .shop-corano-listing.products-section {
        padding-top: 1.1rem !important;
        padding-bottom: 1.25rem !important;
    }

    body.products-listing.shop-corano .shop-corano-toolbar {
        padding: 0.85rem !important;
        margin-bottom: 0.85rem !important;
        border-radius: 10px;
    }

    body.products-listing.shop-corano .shop-corano-toolbar .row > [class^="col-"],
    body.products-listing.shop-corano .shop-corano-toolbar .row > [class*=" col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    body.products-listing.shop-corano .shop-corano-toolbar-search {
        width: 100%;
    }

    body.products-listing.shop-corano .shop-corano-toolbar-right {
        width: 100%;
        flex-wrap: wrap !important;
    }

    body.products-listing.shop-corano .shop-corano-toolbar .shop-corano-toolbar-sort {
        width: 100% !important;
        flex: 1 0 100%;
    }

    body.products-listing.shop-corano .shop-corano-toolbar .btn-group {
        width: 100%;
        flex: 1 0 100%;
    }

    body.products-listing.shop-corano .shop-corano-view-btn {
        flex: 1 1 0;
        width: auto;
    }
}

/* Mobile controls (Filtrele | Sırala) */
body.products-listing.shop-corano .shop-corano-mobile-controls {
    display: none;
}

@media (max-width: 991.98px) {
    body.products-listing.shop-corano .shop-corano-mobile-controls {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 0.9rem;
        align-items: stretch;
    }

    body.products-listing.shop-corano .shop-corano-mobile-ctl {
        border: 1px solid var(--shop-border);
        background: #fff;
        color: #222;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        border-radius: 10px;
        padding: 0.75rem 0.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.78rem;
    }

    body.products-listing.shop-corano .shop-corano-mobile-ctl i {
        color: var(--shop-accent);
    }

    /* Inside bottom sheets, show filters content (not the collapse button) */
    body.products-listing.shop-corano .shop-mobile-sheet .shop-corano-sidebar-mobile-toggle {
        display: none !important;
    }

    body.products-listing.shop-corano .shop-mobile-sheet #filtersCollapse {
        display: block !important;
        height: auto !important;
        visibility: visible !important;
    }

    body.products-listing.shop-corano .shop-mobile-sheet {
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        border-top: 1px solid var(--shop-border);
        /* Bootstrap offcanvas uses --bs-offcanvas-height for bottom sheets */
        --bs-offcanvas-height: min(88vh, calc(100dvh - 1.25rem));
        height: var(--bs-offcanvas-height);
        max-height: none;
    }

    body.products-listing.shop-corano .shop-mobile-sheet .offcanvas-body {
        padding: 1rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Filters sidebar uses sticky on desktop; disable inside bottom sheet */
    body.products-listing.shop-corano .shop-mobile-sheet .filters-sidebar {
        position: static !important;
        top: auto !important;
        height: auto !important;
    }

    body.products-listing.shop-corano .shop-mobile-sheet .filters-container {
        box-shadow: none;
        padding: 0;
    }

    body.products-listing.shop-corano .shop-mobile-sort-list .list-group-item.active {
        background: var(--shop-accent);
        border-color: var(--shop-accent);
        color: #fff;
    }

    /* 2-column grid should feel tighter */
    body.products-listing.shop-corano .products-grid > .row.g-4 {
        --bs-gutter-x: 0.9rem;
        --bs-gutter-y: 1rem;
    }
}

body.products-listing.shop-corano .shop-corano-toolbar .form-select {
    border-color: #ddd;
    background: #fff;
    font-size: 0.875rem;
}

body.products-listing.shop-corano .shop-corano-toolbar .form-select:focus {
    border-color: var(--shop-accent);
    box-shadow: 0 0 0 0.2rem rgba(var(--shop-accent-rgb), 0.2);
}

/* Breadcrumb offset for fixed header stack (desktop) */
@media (min-width: 992px) {
    .modern-breadcrumb-section {
        margin-top: 0 !important;
    }

    /* Jewellery theme breadcrumb uses !important padding shorthand; override it on desktop */
    .jewellery-breadcrumb-section {
        margin-top: 0 !important;
        padding: 0.85rem 0 !important;
    }
}

body.products-listing.shop-corano .shop-corano-view-btn {
    border: 1px solid #ddd !important;
    color: #333 !important;
    background: #fff !important;
}

body.products-listing.shop-corano .btn-check:checked + .shop-corano-view-btn {
    background: var(--shop-accent) !important;
    border-color: var(--shop-accent) !important;
    color: #fff !important;
}

body.products-listing.shop-corano .shop-corano-pagination .page-link {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 0.2rem;
    border-radius: 50% !important;
    color: #222;
    border-color: #ddd;
}

body.products-listing.shop-corano .shop-corano-pagination .page-item.active .page-link {
    background: var(--shop-accent);
    border-color: var(--shop-accent);
    color: #fff;
}

body.products-listing.shop-corano .shop-corano-pagination .page-link:hover {
    background: var(--shop-accent);
    border-color: var(--shop-accent);
    color: #fff;
}

body.products-listing.shop-corano .shop-corano-listing .product-card {
    border: 1px solid var(--shop-border) !important;
    background: #fff;
    border-radius: 2px;
}

body.products-listing.shop-corano .shop-corano-listing .product-image-wrapper {
    background: #f0eeeb;
}

body.products-listing.shop-corano .shop-corano-badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    width: 46px;
    height: 46px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--shop-accent) !important;
    color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

body.products-listing.shop-corano .shop-corano-badge-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    left: auto;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    border: 1px solid var(--shop-border);
    font-size: 0.62rem;
    font-weight: 600;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0;
}

body.products-listing.shop-corano .shop-corano-product-cat {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.products-listing.shop-corano .shop-corano-product-title {
    color: #1a1a1a;
    font-weight: 600;
}

body.products-listing.shop-corano .shop-corano-product-title:hover {
    color: var(--shop-accent);
}

body.products-listing.shop-corano .shop-corano-price-amount {
    color: #1a1a1a !important;
    font-weight: 600;
}

body.products-listing.shop-corano .shop-corano-price-row .price-old {
    color: #9a9a9a;
    margin-right: 0.45rem;
}

body.products-listing.shop-corano .shop-corano-btn-atc {
    background: var(--shop-accent);
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.68rem;
    padding: 0.65rem 1rem;
    border-radius: 4px;
}

body.products-listing.shop-corano .shop-corano-card-actions .btn {
    min-height: 32px;
    padding: 0.34rem 0.55rem;
    font-size: 0.85rem;
    line-height: 1.1;
    white-space: nowrap;
    border-radius: 10px;
}

@media (max-width: 991.98px) {
    body.products-listing.shop-corano .shop-corano-card-actions .btn {
        min-height: 30px;
        padding: 0.3rem 0.5rem;
        font-size: 0.82rem;
        border-radius: 10px;
    }
}

body.products-listing.shop-corano .shop-corano-btn-atc:hover {
    background: var(--shop-accent-deep);
    color: #fff;
}

body.products-listing.shop-corano .shop-corano-btn-outline {
    border: 1px solid var(--shop-border);
    color: #333;
    background: #fff;
    font-size: 0.8rem;
    border-radius: 4px;
}

body.products-listing.shop-corano .shop-corano-btn-outline:hover {
    border-color: var(--shop-accent);
    color: var(--shop-accent);
    background: #fff;
}

body.products-listing.shop-corano .shop-corano-check--color input:checked + .color-preview {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--shop-accent);
}

body.products-listing.shop-corano .products-grid.list-view .shop-corano-card-body {
    text-align: left;
}

body.products-listing.shop-corano .products-grid.list-view .shop-corano-product-cat {
    text-align: left;
}


/* Corano card/toolbar refinements (requested alignment + card proportions) */
body.products-listing.shop-corano .shop-corano-toolbar .row {
    align-items: center;
}

body.products-listing.shop-corano .shop-corano-toolbar-count {
    min-height: 38px;
    display: flex;
    align-items: center;
    line-height: 1.25;
}

body.products-listing.shop-corano .shop-corano-toolbar-search .form-control,
body.products-listing.shop-corano .shop-corano-toolbar-search-btn,
body.products-listing.shop-corano .shop-corano-toolbar .shop-corano-toolbar-sort,
body.products-listing.shop-corano .shop-corano-view-btn {
    height: 38px;
}

body.products-listing.shop-corano .shop-corano-toolbar-search-btn {
    min-width: 38px;
    padding: 0;
}

body.products-listing.shop-corano .shop-corano-view-btn {
    width: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.products-listing.shop-corano .products-grid:not(.list-view) .shop-corano-product-card {
    max-width: 281px;
    margin: 0 auto;
    border: none !important;
    box-shadow: none;
    background: transparent;
}

body.products-listing.shop-corano .products-grid:not(.list-view) .shop-corano-product-card .product-image-wrapper {
    width: 281px;
    height: 354px;
    margin: 0 auto;
    border: 1px solid #efefef;
    background: #ebe8e3;
    position: relative;
    overflow: hidden;
}

body.products-listing.shop-corano .products-grid:not(.list-view) .shop-corano-product-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
    display: block;
}

body.products-listing.shop-corano .shop-corano-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

body.products-listing.shop-corano .shop-corano-product-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

body.products-listing.shop-corano .shop-corano-product-icons {
    position: absolute;
    top: 18px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
    pointer-events: auto;
}

body.products-listing.shop-corano .shop-corano-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e8e8e8;
    color: #444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body.products-listing.shop-corano .shop-corano-icon-btn:hover {
    color: var(--shop-accent);
    border-color: var(--shop-accent);
    background: #fff;
}

body.products-listing.shop-corano .shop-corano-view-products-btn {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    background: #fff;
    color: #2a2a2a;
    border: 1px solid #ebebeb;
    border-radius: 999px;
    padding: 0.6rem 1.55rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0;
    pointer-events: auto;
    white-space: nowrap;
}

body.products-listing.shop-corano .shop-corano-view-products-btn:hover {
    border-color: var(--shop-accent);
    color: var(--shop-accent);
    background: #fff;
}

body.products-listing.shop-corano .products-grid:not(.list-view) .shop-corano-card-body {
    max-width: 281px;
    margin: 0.9rem auto 0;
    padding: 0;
}

body.products-listing.shop-corano .shop-corano-product-cat {
    font-size: 0.72rem;
    color: #8b8b8b !important;
    letter-spacing: 0.02em;
    text-transform: none;
}

body.products-listing.shop-corano .shop-corano-product-title {
    font-size: 1.02rem;
    line-height: 1.25;
    font-weight: 500;
}

body.products-listing.shop-corano .shop-corano-price-row {
    gap: 0.35rem;
}

body.products-listing.shop-corano .shop-corano-price-amount {
    font-size: 1.05rem;
    font-weight: 500;
}

body.products-listing.shop-corano .products-grid:not(.list-view) .shop-corano-badge-sale,
body.products-listing.shop-corano .products-grid:not(.list-view) .shop-corano-badge-featured {
    display: none;
}

@media (max-width: 991.98px) {
    body.products-listing.shop-corano .shop-corano-toolbar-count {
        min-height: auto;
    }

    body.products-listing.shop-corano .products-grid:not(.list-view) .shop-corano-product-card {
        max-width: 100%;
    }

    body.products-listing.shop-corano .products-grid:not(.list-view) .shop-corano-product-card .product-image-wrapper,
    body.products-listing.shop-corano .products-grid:not(.list-view) .shop-corano-card-body {
        width: 100%;
        max-width: 281px;
    }
}


/* Toolbar compact alignment fix */
body.products-listing.shop-corano .shop-corano-toolbar {
    padding: 0.95rem 1rem;
}

body.products-listing.shop-corano .shop-corano-toolbar-count {
    white-space: nowrap;
    font-size: 0.92rem !important;
}

body.products-listing.shop-corano .shop-corano-toolbar-search {
    margin: 0;
}

body.products-listing.shop-corano .shop-corano-toolbar-right {
    min-width: 0;
}

body.products-listing.shop-corano .shop-corano-toolbar-sort {
    width: auto !important;
    min-width: 175px;
    flex: 0 0 auto;
}

@media (max-width: 991.98px) {
    /* Mobile: keep header compact (hamburger is the menu) */
    .header-inline-nav,
    .header-inline-menu,
    .header-menu,
    .main-header .nav,
    .main-header nav:not(.mobile-bottom-bar) {
        display: none !important;
    }

    /* Arama altta sabit menüde (Ara) — üstteki arama gizlensin */
    .main-header .header-search {
        display: none !important;
    }

    .categories-bar {
        display: none !important;
    }

    .main-header .header-content {
        padding-top: 0.65rem !important;
        padding-bottom: 0.65rem !important;
    }

    body.products-listing.shop-corano .shop-corano-toolbar {
        padding: 0.85rem;
    }

    body.products-listing.shop-corano .shop-corano-toolbar-count {
        white-space: normal;
    }

    body.products-listing.shop-corano .shop-corano-toolbar-right {
        justify-content: flex-start !important;
    }
}

/* Cart page modern refresh */
.cart-page-hero {
    background: linear-gradient(180deg, #efe4cd 0%, #e8d8b6 100%);
    border-color: rgba(138, 104, 16, 0.26) !important;
}

/* Generic shop-style page header (used across pages) */
section.page-header.shop-corano-page-header {
    background: #fff !important;
    color: #1a1a1a !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 0;
    display: flex;
    align-items: center; /* vertically center header content */
}

/* Force /urunler header alignment (theme CSS may override) */
body.products-listing.shop-corano section.page-header.shop-corano-page-header {
    display: flex !important;
    align-items: center !important;
}

body.products-listing.shop-corano section.page-header.shop-corano-page-header.py-4 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 104px !important;
}

@media (max-width: 991.98px) {
    body.products-listing.shop-corano section.page-header.shop-corano-page-header.py-4 {
        min-height: 92px !important;
    }
}

body.products-listing.shop-corano section.page-header.shop-corano-page-header > .container {
    padding-top: 1.1rem !important;
    padding-bottom: 1.1rem !important;
}

section.page-header.shop-corano-page-header.py-4 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 104px;
}

@media (max-width: 991.98px) {
    section.page-header.shop-corano-page-header.py-4 {
        min-height: 92px;
    }
}

section.page-header.shop-corano-page-header > .container {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

section.page-header.shop-corano-page-header .breadcrumb {
    background: transparent !important;
    padding: 0;
    border-radius: 0;
    margin-top: 0.35rem;
    row-gap: 0.25rem;
    align-items: center;
    line-height: 1.2;
}

section.page-header.shop-corano-page-header .breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

section.page-header.shop-corano-page-header .breadcrumb-item + .breadcrumb-item::before {
    display: inline-flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

section.page-header.shop-corano-page-header .breadcrumb-item a {
    color: var(--jewelry-gold-dark, #a88247) !important;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.25;
}

section.page-header.shop-corano-page-header .breadcrumb-item.active {
    color: #8a8278 !important;
    font-size: 0.875rem;
    line-height: 1.25;
}

.cart-page-hero.py-2 {
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
}

.cart-page-hero h1 {
    color: #3b2f1d;
}

.cart-page-hero h1.h3 {
    font-size: 1.35rem;
    letter-spacing: -0.01em;
}

.cart-page-hero p {
    color: #5b4b31 !important;
}

.cart-page-hero p {
    font-size: 0.95rem;
    line-height: 1.35;
    max-width: 62ch;
}

.cart-page-hero .d-flex.flex-column {
    align-items: flex-start;
    text-align: left;
}

.cart-page-hero nav[aria-label="breadcrumb"] {
    margin-top: 0.5rem !important;
}

.cart-page-hero .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
}

.cart-page-hero .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 0.35rem;
}

.cart-page-hero .breadcrumb-item,
.cart-page-hero .breadcrumb-item.active {
    color: #5b4b31 !important;
}

.cart-page-hero .breadcrumb-item a {
    color: #4a3b22 !important;
    text-decoration: none;
}

.cart-page-hero .breadcrumb-item a:hover {
    text-decoration: underline;
}

.cart-section {
    min-height: 60vh;
    background: #f6f4ee;
}

.cart-section.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
}

.cart-layout {
    align-items: flex-start;
}

/* Ensure desktop 2-column layout even if other CSS interferes */
@media (min-width: 992px) {
    .cart-layout {
        display: flex;
        flex-wrap: wrap;
    }
    .cart-layout > .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .cart-layout > .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

.empty-cart {
    padding: 3.5rem 1rem;
}

.empty-cart-shell {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3rem 1.5rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.cart-items-card,
.cart-summary-card {
    border: 1px solid rgba(26, 22, 36, 0.08);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    margin-top: 0 !important;
}

.cart-item-row {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(26, 22, 36, 0.08);
    transition: background-color 0.2s ease;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-row:hover {
    background-color: #fcfbf8;
}

.cart-item-content {
    display: flex;
    gap: 1.15rem;
    flex: 1;
    min-width: 0;
}

.cart-item-image {
    width: 112px;
    height: 112px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(26, 22, 36, 0.08);
    background: #f3f1ea;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.cart-item-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #fff2e6;
    color: #be4a00;
    border: 1px solid #ffd9bf;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 700;
    padding: 0.22rem 0.55rem;
    margin-bottom: 0.6rem;
}

.cart-item-price {
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.cart-item-quantity {
    margin-top: 0.25rem;
}

.quantity-controls {
    display: flex !important;
    align-items: center;
    gap: 0.45rem;
}

.quantity-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(26, 22, 36, 0.18);
    background: #fff;
}

.quantity-input {
    width: 60px;
    text-align: center;
    font-weight: 700;
    border-radius: 10px;
    border: 1px solid rgba(26, 22, 36, 0.18);
    padding: 0.4rem 0.35rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.65rem;
    min-width: 140px;
}

.subtotal-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-gray);
}

.subtotal-value {
    display: block;
    font-size: 1.08rem;
    font-weight: 800;
}

.cart-actions .btn {
    border-radius: 12px;
    font-weight: 700;
}

.cart-summary-card.sticky-top {
    top: calc(max(var(--header-stack-height, 0px), var(--layout-chrome-pad)) + 12px) !important;
}

/* Tighten summary spacing */
.cart-summary-card .cart-summary-item {
    margin-bottom: 0.85rem !important;
}
.cart-summary-card .cart-summary-item.pb-3 {
    padding-bottom: 0.85rem !important;
}
.cart-summary-card .cart-summary-item.border-top {
    padding-top: 0.85rem !important;
}
.cart-summary-card .cart-total.mb-4 {
    margin-bottom: 1rem !important;
}
.cart-summary-card .cart-total.pb-3 {
    padding-bottom: 0.85rem !important;
}

.btn-modern-secondary {
    border-color: rgba(26, 22, 36, 0.2);
}

.cart-security {
    font-size: 0.78rem;
    line-height: 1.35;
}

.cart-security .small {
    font-size: 0.78rem !important;
}

.cart-security i {
    font-size: 0.82rem;
}

@media (max-width: 991px) {
    .cart-page-hero h1.h3 {
        font-size: 1.2rem;
    }

    .cart-page-hero p {
        font-size: 0.92rem;
    }

    .cart-page-hero .d-flex.flex-column {
        gap: 0.25rem !important;
    }

    .cart-section.py-5 {
        padding-top: 1.1rem !important;
        padding-bottom: 1.5rem !important;
    }

    .cart-item-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .cart-item-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: auto;
    }

    .cart-summary-card.sticky-top {
        position: static !important;
        top: auto !important;
    }
}

@media (max-width: 576px) {
    .empty-cart-shell {
        padding: 2rem 1.2rem;
    }

    .cart-item-content {
        flex-direction: column;
        gap: 0.85rem;
    }

    .cart-item-image {
        width: 100%;
        height: 160px;
    }

    .quantity-btn {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .quantity-input {
        width: 56px;
    }
}
