/* ==========================================
   LAMELIF – Ramazan Temalı E-Ticaret Anasayfa
   Custom Styles (Tailwind + Vanilla CSS)
   ========================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css?family=Comfortaa:400,500,600,700&subset=latin,latin-ext');

/* ---------- Root Variables ---------- */
:root {
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #a68a3e;
    --cream: #faf6ed;
    --cream-dark: #f0e8d5;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --dark-footer: #1e1e2f;
    --text-dark: #2c2c2c;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --danger: #e74c3c;
    --success: #27ae60;
}

/* ---------- Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Comfortaa", sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ---------- Utility Bar (Gray Top) ---------- */
.utility-bar {
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 0;
    font-size: 0.72rem;
    color: #666;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1001;
}

.utility-link {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.72rem;
}

.utility-link:hover {
    color: var(--gold-dark);
}

.utility-sep {
    color: #ccc;
    font-size: 0.65rem;
}

.utility-flag {
    font-size: 0.72rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color 0.2s;
}

.utility-flag:hover {
    color: var(--gold-dark);
}

/* ---------- Language Dropdown ---------- */
.utility-lang-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.utility-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 1100;
}

.utility-lang-wrap:hover .utility-lang-dropdown,
.utility-lang-wrap.is-open .utility-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.utility-lang-title {
    padding: 6px 14px 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 2px;
}

.utility-lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    font-size: 0.75rem;
    color: #444;
    text-decoration: none;
    transition: background 0.15s;
    cursor: pointer;
}

.utility-lang-item:hover {
    background: #f8f8f8;
    color: #333;
}

.utility-lang-item.active {
    color: var(--gold-dark);
    font-weight: 600;
}

.utility-lang-item img {
    width: 18px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.utility-lang-item .fa-check {
    margin-left: auto;
    font-size: 0.6rem;
    color: var(--gold);
}

.utility-lang-country {
    padding: 4px 10px 8px;
}

.utility-country-select {
    width: 100%;
    padding: 5px 8px;
    font-size: 0.72rem;
    font-family: 'Comfortaa', sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fafafa;
    color: #444;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.utility-country-select:focus {
    border-color: var(--gold);
}

/* ---------- Logo Section (White) ---------- */
.logo-section {
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.logo-section.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.site-logo {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
}

.logo-lame {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    font-style: italic;
    letter-spacing: -0.5px;
}

.logo-dot {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--danger);
}

.logo-com {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.5px;
}

/* Header Search */
.header-search-input {
    width: 100%;
    padding: 10px 50px 10px 18px;
    border: 2px solid #ddd;
    border-radius: 14px;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s;
    background: #fafafa;
}

.header-search-input:focus {
    border-color: var(--gold);
    background: var(--white);
    outline: none;
    box-shadow: none;
}

.header-search-input::placeholder {
    color: #aaa;
    font-size: 0.85rem;
}

.header-search-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44px;
    border-left: none;
    color: #F36A25;
    font-size: 21px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

/* Header Icon Buttons */
.header-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.header-icon-btn i {
    font-size: 1.15rem;
    color: #444;
    transition: color 0.3s;
}

.header-icon-btn:hover,
.header-icon-btn:hover i {
    color: var(--gold-dark);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--danger);
    color: white;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Header Icon Wrapper (for dropdowns) */
.header-icon-wrap {
    position: relative;
}

.header-icon-wrap:hover .header-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header Dropdowns (Login / Cart) */
.header-dropdown {
    position: absolute;
    top: 100%;
    right: -10px;
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    padding: 16px;
    min-width: 200px;
    margin-top: 8px;
}

.header-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border-left: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
    transform: rotate(45deg);
}

/* Login Dropdown */
.login-dropdown {
    min-width: 180px;
}

.login-dropdown-btn {
    display: block;
    width: 100%;
    padding: 10px 16px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 8px;
}

.login-dropdown-btn:last-child {
    margin-bottom: 0;
}

.login-dropdown-btn.btn-giris {
    background: #f39c12;
    color: white;
}

.login-dropdown-btn.btn-giris:hover {
    background: #e67e22;
}

.login-dropdown-btn.btn-uye {
    background: var(--white) !important;
    color: #555;
    border: 1px solid #ddd;
}

.login-dropdown-btn.btn-uye:hover {
    border-color: #999;
    color: #333;
}

/* Cart Dropdown */
.cart-dropdown {
    min-width: 300px;
    right: -20px;
}

.cart-dropdown-empty {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #666;
}

.cart-dropdown-empty i {
    font-size: 1.8rem;
    color: #bbb;
    flex-shrink: 0;
    margin-top: 2px;
}

.cart-dropdown-empty p {
    font-size: 0.8rem;
    line-height: 1.55;
    color: #777;
}

/* ---------- Hero V2 — Premium Full-Bleed Slider ---------- */
.hero-v2 {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.hv2-slide {
    position: relative;
    height: 560px;
    overflow: hidden;
}

/* Full-bleed background */
.hv2-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.slick-active .hv2-bg {
    transform: scale(1);
}

/* Overlays */
.hv2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.15) 100%);
}

.hv2-overlay-warm {
    background: linear-gradient(90deg, rgba(60, 20, 10, 0.88) 0%, rgba(80, 30, 20, 0.5) 45%, rgba(0, 0, 0, 0.1) 100%);
}

.hv2-overlay-emerald {
    background: linear-gradient(90deg, rgba(5, 30, 20, 0.9) 0%, rgba(10, 50, 35, 0.55) 45%, rgba(0, 0, 0, 0.1) 100%);
}

/* Floating particles */
.hv2-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(201, 168, 76, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 70%, rgba(201, 168, 76, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 60%, rgba(255, 255, 255, 0.25) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 10% 80%, rgba(201, 168, 76, 0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    animation: floatParticles 15s ease-in-out infinite alternate;
    z-index: 2;
    pointer-events: none;
}

@keyframes floatParticles {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translate(-10px, -15px) rotate(1deg);
        opacity: 1;
    }

    100% {
        transform: translate(5px, 10px) rotate(-0.5deg);
        opacity: 0.7;
    }
}

/* ---------- Hero Geometric Shapes ---------- */
.hv2-geo-shapes {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.geo {
    position: absolute;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

/* Circle */
.geo-circle {
    border-radius: 50%;
}

/* Diamond (rotated square) */
.geo-diamond {
    transform: rotate(45deg);
}

/* Ring (circle with bigger border, transparent fill) */
.geo-ring {
    border-radius: 50%;
    border-width: 2px;
    border-style: dashed;
}

/* Hexagon via clip-path */
.geo-hexagon {
    border: none;
    background: rgba(201, 168, 76, 0.06);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Dots pattern */
.geo-dots {
    border: none;
    background-image:
        radial-gradient(circle, rgba(201, 168, 76, 0.2) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    border-radius: 4px;
}

/* Individual shape positions & sizes */
.geo-1 {
    width: 120px;
    height: 120px;
    top: 8%;
    right: 12%;
    animation: geoSpin 25s linear infinite;
    border-color: rgba(201, 168, 76, 0.12);
}

.geo-2 {
    width: 45px;
    height: 45px;
    top: 20%;
    left: 8%;
    animation: geoDrift 18s ease-in-out infinite alternate;
    border-color: rgba(255, 255, 255, 0.1);
}

.geo-3 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 25%;
    animation: geoSpin 35s linear infinite reverse;
    border-color: rgba(201, 168, 76, 0.08);
}

.geo-4 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 35%;
    animation: geoFloat 12s ease-in-out infinite alternate;
}

.geo-5 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 15%;
    animation: geoSpin 20s linear infinite;
    border-color: rgba(255, 255, 255, 0.07);
}

.geo-6 {
    width: 30px;
    height: 30px;
    top: 55%;
    left: 40%;
    animation: geoDrift 15s ease-in-out infinite alternate-reverse;
    border-color: rgba(201, 168, 76, 0.18);
}

.geo-7 {
    width: 100px;
    height: 100px;
    top: 5%;
    left: 35%;
    animation: geoSpin 30s linear infinite;
    border-color: rgba(255, 255, 255, 0.06);
}

.geo-8 {
    width: 70px;
    height: 50px;
    bottom: 30%;
    right: 8%;
    animation: geoFloat 10s ease-in-out infinite alternate;
}

/* Geometric Animations */
@keyframes geoSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes geoFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-15px) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes geoDrift {
    0% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 0.4;
    }

    100% {
        transform: rotate(45deg) translate(10px, -10px);
        opacity: 0.7;
    }
}

/* Inner wrapper */
.hv2-inner {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 60px;
}

/* Grid: 8 cols text + 4 cols image */
.hv2-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

/* Content (left side) */
.hv2-content {
    color: #fff;
}

/* Product Visual (right side) */
.hv2-product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hv2-product-visual img {
    max-height: 420px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    animation: heroProductFloat 4s ease-in-out infinite alternate;
}

@keyframes heroProductFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-12px) rotate(1deg);
    }
}

/* Product image slide-in when active */
.hv2-product-visual {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.3s;
}

.slick-active .hv2-product-visual {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Badge */
.hv2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #f0d080;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hv2-badge i {
    font-size: 0.75rem;
}

.hv2-badge-rose {
    background: rgba(220, 80, 80, 0.2);
    border-color: rgba(220, 80, 80, 0.4);
    color: #f8b4b4;
}

.hv2-badge-emerald {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    color: #6ee7b7;
}

/* Title */
.hv2-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hv2-title span {
    background: linear-gradient(135deg, #c9a84c, #f0d080, #c9a84c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hv2-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 18px;
    max-width: 90%;
}

/* Price tag */
.hv2-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 8px 18px;
    margin-bottom: 20px;
}

.hv2-from {
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hv2-amount {
    font-size: 1.4rem;
    font-weight: 900;
    color: #f0d080;
}

/* CTA Buttons */
.hv2-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.hv2-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #c9a84c, #d4b85a);
    color: #1a0a00;
    font-size: 0.82rem;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.hv2-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(201, 168, 76, 0.55);
    background: linear-gradient(135deg, #d4b85a, #e8cc6e);
    color: #1a0a00;
}

.hv2-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hv2-cta-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: #fff;
}

/* Trust badges */
.hv2-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.hv2-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    opacity: 0.7;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hv2-trust i {
    font-size: 0.68rem;
    color: #c9a84c;
    opacity: 1;
}

/* Controls bar */
.hv2-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hv2-counter {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
}

.hv2-cur {
    color: #f0d080;
    font-size: 1rem;
}

.hv2-progress {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.hv2-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c9a84c, #f0d080);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.hv2-progress-bar.animate {
    animation: progressFill var(--progress-duration, 5s) linear forwards;
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.hv2-arrows {
    display: flex;
    gap: 6px;
}

.hv2-arrows button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hv2-arrows button:hover {
    background: rgba(201, 168, 76, 0.6);
    border-color: rgba(201, 168, 76, 0.8);
    transform: scale(1.1);
}

/* Content animation on slide change */
.hv2-content .hv2-badge,
.hv2-content .hv2-title,
.hv2-content .hv2-desc,
.hv2-content .hv2-price-tag,
.hv2-content .hv2-actions,
.hv2-content .hv2-trust {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slick-active .hv2-content .hv2-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.slick-active .hv2-content .hv2-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slick-active .hv2-content .hv2-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.slick-active .hv2-content .hv2-price-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

.slick-active .hv2-content .hv2-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}

.slick-active .hv2-content .hv2-trust {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.75s;
}

/* Hide default slick dots */
.hero-v2 .slick-dots {
    display: none !important;
}

/* ---------- Dark Navigation Bar ---------- */

.main-navbar-dark {
    background: #2c2c2c;
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.main-navbar-dark>.max-w-7xl {
    position: relative;
}

.nav-links-dark {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-links-dark>li {
    position: relative;
}

.nav-links-dark>li.has-mega {
    position: static;
}

/* Mega menu'nun .max-w-7xl container'ına göre konumlanması için */
.nav-links-dark {
    position: static;
}

.nav-links-dark>li>a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
}

/* Hover underline - ortadan genişleyen çizgi */
.nav-links-dark>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-links-dark>li>a:hover::after,
.nav-links-dark>li.active>a::after {
    width: 100%;
    left: 0;
}

.nav-links-dark>li>a:hover {
    color: white;
}

.nav-links-dark>li>a .fa-chevron-down {
    font-size: 0.5rem;
    opacity: 0.6;
    transition: transform 0.3s;
}

.nav-links-dark>li:hover>a .fa-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
}

/* OUTLET Button */
.outlet-btn {
    background: #C6081E !important;
    color: white !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

.outlet-btn:hover {
    background: #a93226 !important;
}

.outlet-li>a.outlet-btn::after {
    background: #ff6b7a !important;
}

/* ---------- Mega Menu ---------- */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

.has-mega:hover>.mega-menu {
    display: block;
}

/* Mega Menü Overlay — ayrı element, mega menünün altında kalır */
.mega-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    z-index: 998;
    pointer-events: none;
}

.mega-inner {
    display: flex;
    padding: 25px 50px;
    gap: 30px;
    align-items: flex-start;
}

.mega-col {
    min-width: 140px;
}

.mega-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cream-dark);
    letter-spacing: 0.5px;
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li {
    margin-bottom: 10px;
}

.mega-col ul li a {
    color: #444 !important;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
    padding: 5px 0 !important;
    display: block;
    transition: color 0.2s;
    text-decoration: none;
    letter-spacing: 0 !important;
    white-space: nowrap;
}

.mega-col ul li a:hover {
    color: #000 !important;
    background: none !important;
}

.mega-images {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-left: auto;
}

.mega-images img {
    width: 150px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.mega-images img:hover {
    transform: scale(1.03);
}

/* Mega Menu Products */
.mega-products {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-left: auto;
    flex-shrink: 0;
}

.mega-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 140px;
    transition: transform 0.2s;
}

.mega-product-card:hover {
    transform: translateY(-2px);
}

.mega-product-img {
    width: auto;
    height: 245px;
    overflow: hidden;
}

.mega-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mega-product-card:hover .mega-product-img img {
    transform: scale(1.04);
}

.mega-product-name {
    margin-top: 8px;
    font-size: 0.72rem;
    color: #333;
    text-align: center;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 140px;
}

/* Mobile Nav Toggle */
.mobile-toggle,
.mobile-toggle-dark {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-toggle {
    color: #444;
}

.mobile-toggle-dark {
    color: white;
}

/* ---------- Hero Section ---------- */
.hero-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Mosque Silhouette SVG Banner */
.mosque-banner {
    position: relative;
    text-align: center;
    padding: 60px 20px 40px;
}

.mosque-svg-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 700px;
}

.mosque-svg-wrap svg {
    width: 100%;
    height: auto;
}

.mosque-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.mosque-title h1 {
    font-family: 'Amiri', serif;
    font-size: 2.2rem;
    color: var(--gold-dark);
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(201, 168, 76, 0.2);
    margin-bottom: 8px;
}

.mosque-title p {
    font-family: 'Amiri', serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Gold Decorative Line */
.gold-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
}

.gold-ornament .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.gold-ornament .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* Stars Animation */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    color: var(--gold-light);
    animation: twinkle 3s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* ---------- Category Cards ---------- */
.category-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
}

.category-card img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-card .cat-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: white;
    padding: 20px 10px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ---------- Section Banner (Islamic Decorative) ---------- */
.section-banner {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 12px 0;
    text-align: center;
    position: relative;
    overflow: visible;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

/* Decorative gradient lines on sides */
.section-banner::before,
.section-banner::after {
    content: '';
    position: static;
    flex: 1;
    height: 1px;
    width: auto;
    background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
    opacity: 0.5;
}

.section-banner .banner-mosque {
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.section-banner h2 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-banner .price-range {
    font-size: 0.78rem;
    color: var(--gold-dark);
    font-weight: 600;
    white-space: nowrap;
    background: rgba(201, 168, 76, 0.08);
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

/* Hide old decorative elements */
.corner-decor,
.sparkle-overlay,
.gold-ornament {
    display: none;
}

/* ---------- Product Cards ---------- */
.product-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}

.product-card .product-img-wrap {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.product-card .product-img-wrap img {
    width: 100%;
    height: auto;
    min-height: 525px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-card .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.product-card .product-badge.new {
    background: var(--success);
}

.product-card .product-badge.kampanya {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark);
}

.product-card .quick-actions {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .quick-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.quick-actions button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-actions button:hover {
    background: var(--gold);
    color: var(--white);
}

.product-card .product-info {
    padding: 14px 16px;
}

.product-card .product-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.product-card .product-price .old-price {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 6px;
}

/* ---------- Search Overlay ---------- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.95);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay .search-box {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-overlay .search-box input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.search-overlay .search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-overlay .search-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.3rem;
    cursor: pointer;
}

/* ---------- Autocomplete Dropdown ---------- */
.ui-autocomplete {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 10000 !important;
}

.ui-autocomplete .ui-menu-item-wrapper {
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s;
}

.ui-autocomplete .ui-menu-item-wrapper:hover,
.ui-autocomplete .ui-state-active {
    background: var(--cream) !important;
    color: var(--gold-dark) !important;
    border: none;
}

/* ---------- Footer ---------- */
.main-footer {
    background: var(--dark-footer);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.65rem;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-links a:hover i {
    opacity: 1;
}

/* Footer Gallery */
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.footer-gallery a {
    border-radius: 8px;
    overflow: hidden;
    display: block;
    position: relative;
}

.footer-gallery a::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 168, 76, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-gallery a:hover::after {
    opacity: 1;
}

.footer-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: transform 0.4s;
}

.footer-gallery a:hover img {
    transform: scale(1.1);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 40px;
}

.payment-icons img {
    height: 28px;
    opacity: 0.5;
    transition: opacity 0.3s;
    filter: grayscale(1) brightness(2);
}

.payment-icons img:hover {
    opacity: 1;
    filter: none;
}

/* ---------- Customer Photos Section ---------- */
.customer-photos-section {
    padding: 30px 0 0;
    background: #fff;
}

.cp-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.cp-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.cp-avatar svg {
    width: 100%;
    height: 100%;
}

.cp-header-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px;
}

.cp-header-text p {
    font-size: 0.78rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

.cp-link {
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}

.cp-link:hover {
    text-decoration: underline;
}

/* Customer Photos Slider */
.cp-slider-wrap {
    position: relative;
    overflow: hidden;
}

.cp-slide {
    position: relative;
    outline: none;
    cursor: pointer;
    overflow: hidden;
}

.cp-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    pointer-events: none;
}

.cp-slide:hover::after {
    opacity: 1;
}

.cp-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cp-slide:hover img {
    transform: scale(1.08);
}

/* Instagram badge */
.cp-ig-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cp-slide:hover .cp-ig-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cp-ig-badge i {
    color: #fff;
    font-size: 1.4rem;
}

/* Slider arrows */
.cp-slider .slick-prev,
.cp-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.cp-slider .slick-prev {
    left: 12px;
}

.cp-slider .slick-next {
    right: 12px;
}

.cp-slider .slick-prev::before,
.cp-slider .slick-next::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.9rem;
    color: #333;
}

.cp-slider .slick-prev::before {
    content: '\f053';
}

.cp-slider .slick-next::before {
    content: '\f054';
}

/* ---------- Payment Logos Bar ---------- */
.payment-bar {
    background: #f5f5f5;
    padding: 16px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pay-logo {
    font-size: 0.82rem;
    font-weight: 700;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.pay-logo:hover {
    opacity: 1;
}

.pay-logo i {
    font-size: 1.8rem;
}

.pay-text {
    font-size: 0.95rem !important;
    opacity: 0.8;
}

.pay-last {
    font-size: 0.6rem !important;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
}

.pay-last i {
    font-size: 1rem;
    color: #888;
}

/* ---------- Newsletter Bar ---------- */
.newsletter-bar {
    background: #444;
    padding: 14px 0;
}

.nl-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nl-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
}

.nl-text i {
    font-size: 1.1rem;
}

.nl-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    margin: 0;
}

/* ---------- Footer Phone & New Elements ---------- */
.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.footer-phone i {
    color: var(--gold);
    font-size: 1rem;
}

.footer-phone a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.footer-email i {
    color: var(--gold);
    font-size: .9rem;
}

.footer-email a {
    color: rgba(255, 255, 255, .75);
    font-size: .85rem;
    text-decoration: none;
    transition: color .2s;
}

.footer-email a:hover {
    color: #fff;
}

.footer-copyright-col {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
}

/* Footer SEO text */
.footer-seo {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

.footer-seo h4 {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-seo p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer bottom updated */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 20px;
    padding: 14px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    margin: 0;
}

.footer-gelisir {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.footer-gelisir:hover {
    text-decoration: underline;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-4px);
}


/* ---------- Ramadan Category Banners ---------- */
.rb-layout {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 16px;
}

.rb-banners-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

/* Individual Banner */
.rb-banner {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rb-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(180, 140, 50, 0.15);
}

.rb-banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.rb-banner:hover .rb-banner-img {
    transform: scale(1.02);
}

/* Banner footer with CTA */
.rb-footer {
    background: #1b1b1b;
    text-align: right;
    padding: 5px 15px;
}

.rb-cta {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.rb-cta i {
    font-size: 0.6rem;
    margin-left: 3px;
}

/* ---------- Sidebar Column ---------- */
.rb-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    overflow: hidden;
}

/* Sidebar Slider */
.rb-sidebar-slider-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.rb-sidebar-slider {
    width: 100%;
}

.rb-sidebar-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.rb-sidebar-slider .slick-prev,
.rb-sidebar-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rb-sidebar-slider-wrap:hover .slick-prev,
.rb-sidebar-slider-wrap:hover .slick-next {
    opacity: 1;
}

.rb-sidebar-slider .slick-prev {
    left: 8px;
}

.rb-sidebar-slider .slick-next {
    right: 8px;
}

.rb-sidebar-slider .slick-prev::before,
.rb-sidebar-slider .slick-next::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: #333;
}

.rb-sidebar-slider .slick-prev::before {
    content: '\f053';
}

.rb-sidebar-slider .slick-next::before {
    content: '\f054';
}

/* Static Banner Items */
.rb-sidebar-static {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rb-static-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rb-static-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.rb-static-item a {
    display: block;
}

.rb-static-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.rb-static-item:hover img {
    transform: scale(1.02);
}

/* WhatsApp floating */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ============================================
   MOBILE HEADER COMPONENTS
   ============================================ */

/* Mobile header left (hamburger + search) - hidden on desktop */
.mobile-header-left {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-header-left .mobile-toggle {
    display: flex;
    background: none;
    border: none;
    font-size: 1.35rem;
    color: #333;
    cursor: pointer;
    padding: 4px;
}

.mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.15rem;
    color: #333;
    cursor: pointer;
    padding: 4px;
}

/* Mobile user header icon - hidden on desktop */
.mobile-header-user {
    display: none;
}

.mobile-header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    text-decoration: none;
    color: #555;
    font-size: 1.1rem;
}

.mobile-header-label {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #888;
}

/* Desktop only icon (Favorites) */
.desktop-only-icon {
    display: block;
}

/* ============================================
   MOBILE CATEGORY TABS (Horizontal scroll)
   ============================================ */
.mobile-cat-tabs {
    display: none;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}

.mobile-cat-tabs-inner {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding: 0 8px;
}

.mobile-cat-tabs-inner::-webkit-scrollbar {
    display: none;
}

.mobile-cat-tab {
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.mobile-cat-tab:hover,
.mobile-cat-tab.active {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
}

/* ============================================
   MOBILE SEARCH OVERLAY
   ============================================ */
.mobile-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 10000;
    flex-direction: column;
}

.mobile-search-overlay.active {
    display: flex;
}

/* Header strip with close button */
.mob-search-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 14px;
    background: #f0f0f0;
    border-bottom: 1px solid #e5e5e5;
}

.mob-search-close-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #333;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

/* Body: centered form */
.mob-search-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mob-search-form {
    padding: 40px 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mob-search-form input {
    width: 100%;
    max-width: 360px;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 12px 4px;
    font-size: 1rem;
    font-family: 'Comfortaa', sans-serif;
    color: #333;
    text-align: center;
    outline: none;
    background: transparent;
    transition: border-color 0.3s;
}

.mob-search-form input::placeholder {
    color: #aaa;
    font-size: 0.95rem;
}

.mob-search-form input:focus {
    border-bottom-color: #e67e22;
}

.mob-search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 40px;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Comfortaa', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.mob-search-submit:active {
    background: #d35400;
}

.mobile-search-dropdown {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* ============================================
   PREMIUM MOBILE NAV SIDEBAR (Push Navigation)
   ============================================ */

/* Page wrapper - wraps all content, pushed right when menu opens */
.page-wrap {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    background: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.page-wrap.menu-open {
    transform: translateX(85vw);
    overflow: hidden;
}

@media (min-width: 480px) {
    .page-wrap.menu-open {
        transform: translateX(340px);
    }
}

/* Overlay on pushed page */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* The sidebar - fixed at left, behind page */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 85vw;
    max-width: 340px;
    height: 100%;
    background: #fafafa;
    z-index: 0;
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.mobile-nav.active {
    z-index: 0;
}

/* Panel system for drill-down */
.mn-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mn-panel.active {
    transform: translateX(0);
}

.mn-panel.slide-right {
    transform: translateX(100%);
}

/* Header */
.mn-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
    min-height: 54px;
}

.mn-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.3px;
}

.mn-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.mn-close:hover {
    color: #333;
}

.mn-back {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.mn-back i {
    font-size: 0.7rem;
    color: #999;
}

.mn-back:hover {
    color: var(--gold-dark);
}

.mn-breadcrumb {
    font-size: 0.82rem;
    color: #999;
    font-weight: 400;
    margin-left: 4px;
    flex: 1;
}

/* Section Title */
.mn-section-title {
    padding: 18px 20px 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.3px;
}

/* Item List */
.mn-list {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mn-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
}

.mn-item:hover {
    background: #faf9f7;
}

.mn-item:active {
    background: #f5f3ef;
}

/* Circular category image */
.mn-item-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mn-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mn-item-img i {
    font-size: 1.2rem;
    color: #bbb;
}

/* Category text */
.mn-item-text {
    flex: 1;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #333;
}

/* Arrow */
.mn-item-arrow {
    font-size: 0.7rem;
    color: #ccc;
    transition: color 0.2s;
}

.mn-item:hover .mn-item-arrow {
    color: #999;
}

/* View All item */
.mn-viewall {
    background: #faf9f7;
    margin-top: 4px;
    border-bottom: none;
    justify-content: center;
    gap: 8px;
}

.mn-viewall .mn-item-text {
    flex: none;
    color: var(--gold-dark);
    font-weight: 700;
}

.mn-viewall .mn-item-arrow {
    color: var(--gold-dark);
}

/* Footer */
.mn-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 14px 20px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
    background: #fff;
}

.mn-footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 12px;
    transition: color 0.2s;
}

.mn-footer-link:hover {
    color: var(--gold-dark);
}

/* ============================================
   FOOTER (Desktop + Mobile Toggle)
   ============================================ */

/* Desktop footer - visible on desktop, hidden on mobile */
.footer-desktop {
    display: block;
}

.footer-mobile {
    display: none;
}

/* Footer phone styling */
.footer-phone {
    margin-top: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-phone i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer-phone a {
    color: #fff;
    text-decoration: none;
}

.footer-email {
    margin-top: 8px;
    font-size: 0.82rem;
}

.footer-email i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-email a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-copyright-col {
    margin-top: 16px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* Mobile Footer Styles */
.footer-mobile-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mobile-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-mobile-links li {
    margin-bottom: 8px;
}

.footer-mobile-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.2s;
    line-height: 1.5;
}

.footer-mobile-links li a:hover {
    color: var(--gold);
}

/* Mobile Social Section */
.footer-mobile-social {
    text-align: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mobile-social-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.footer-mobile-social-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    margin: 0 0 18px;
}

.footer-mobile-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.footer-mobile-social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.footer-mobile-social-icons a:hover {
    background: var(--gold);
    color: #1a0a00;
}

/* Mobile Footer Bottom */
.footer-mobile-bottom {
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    line-height: 1.7;
}

.footer-mobile-credit {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    margin-top: 4px;
}

.footer-mobile-credit a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-sub {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.65rem;
    margin-top: 6px;
}

/* ============================================
   MOBILE PRODUCTS PAGE
   ============================================ */

/* Hide mobile-only elements by default (shown via media query) */
.mob-kat-header,
.mob-toolbar,
.mob-load-status {
    display: none;
}

.desktop-only-block {
    display: block;
}

/* Mobile Category Header */
.mob-kat-header {
    text-align: center;
    padding: 16px 0 8px;
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}

.mob-kat-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 6px;
}

.mob-kat-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #888;
}

.mob-kat-breadcrumb a {
    color: #888;
    text-decoration: none;
}

.mob-kat-breadcrumb i {
    font-size: 0.55rem;
    color: #ccc;
}

.mob-kat-breadcrumb span {
    color: #333;
    font-weight: 500;
}

/* Mobile Sort + Filter Toolbar */
.mob-toolbar {
    align-items: stretch;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}

.mob-sort-wrap {
    flex: 1;
    position: relative;
}

.mob-sort-select {
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 32px 0 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #333;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.mob-filter-btn {
    flex: 1;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* ---- Mobile Filter Sidebar ---- */
.mob-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s;
}

.mob-filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mob-filter-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mob-filter-sidebar.active {
    right: 0;
}

.mob-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.mob-filter-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.mob-filter-close {
    width: 44px;
    height: 44px;
    background: #333;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-filter-reset {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.mob-filter-reset a {
    color: #666;
    text-decoration: none;
    font-size: 0.82rem;
}

.mob-filter-reset a i {
    margin-right: 6px;
    color: #999;
}

.mob-filter-list {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mob-filter-item {
    border-bottom: 1px solid #f0f0f0;
}

.mob-filter-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.mob-filter-item-header:hover {
    background: #fafafa;
}

.mob-filter-item-header span {
    font-size: 0.88rem;
    color: #333;
    font-weight: 400;
}

.mob-filter-item-header i {
    font-size: 0.7rem;
    color: #ccc;
    transition: transform 0.3s;
}

.mob-filter-item-header.open i {
    transform: rotate(90deg);
}

.mob-filter-item-body {
    display: none;
    padding: 0 20px 16px;
}

.mob-filter-item-body.open {
    display: block;
}

.mob-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.82rem;
    color: #555;
    cursor: pointer;
}

.mob-filter-option input[type="checkbox"],
.mob-filter-option input[type="radio"] {
    accent-color: var(--gold-dark, #c47a2a);
    width: 16px;
    height: 16px;
}

.mob-filter-option.checked {
    color: var(--gold-dark, #c47a2a);
    font-weight: 500;
}

/* Filter Footer - fixed Uygula button */
.mob-filter-footer {
    padding: 16px 20px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.mob-filter-apply {
    width: 100%;
    height: 48px;
    background: #e88b2e;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.mob-filter-apply:hover {
    background: #d07820;
}

/* Mobile Infinite Scroll Status */
.mob-load-status {
    text-align: center;
    padding: 24px 0 32px;
}

.mob-all-loaded {
    display: inline-block;
    padding: 10px 32px;
    border: 2px solid #e88b2e;
    border-radius: 25px;
    color: #e88b2e;
    font-size: 0.85rem;
    font-weight: 600;
}

.mob-loading-spinner {
    color: #999;
    font-size: 0.85rem;
}


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ---------- Tablet (< 1024px) ---------- */
@media (max-width: 1024px) {
    .nav-links-dark {
        display: none !important;
    }

    .mobile-toggle-dark {
        display: block;
    }

    .header-search {
        max-width: 350px;
    }

    .mosque-title h1 {
        font-size: 1.6rem;
    }

    .product-card .product-img-wrap img {
        min-height: auto;
        height: auto;
    }

    .mega-menu {
        display: none !important;
    }

    .header-dropdown {
        display: none !important;
    }

    .hv2-slide {
        height: 500px;
    }

    .hv2-title {
        font-size: 2.4rem;
    }

    .hv2-grid {
        grid-template-columns: 7fr 5fr;
        gap: 24px;
    }

    .hv2-product-visual img {
        max-height: 360px;
    }

    .rb-layout {
        grid-template-columns: 1fr;
    }

    .rb-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rb-sidebar-slider-wrap {
        flex: 1 1 100%;
    }

    .rb-sidebar-static {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .rb-static-item {
        flex: 1 1 45%;
    }
}

/* ---------- Mobile (< 768px) ---------- */
@media (max-width: 768px) {

    /* --- Header Mobile Layout --- */
    .utility-bar {
        display: none !important;
    }

    .logo-section .max-w-7xl {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    /* Show mobile elements */
    .mobile-header-left {
        display: flex;
    }

    .mobile-search-toggle {
        display: flex;
    }

    .mobile-header-user {
        display: flex;
    }

    /* Hide desktop elements */
    .header-search {
        display: none !important;
    }

    .header-icon-btn span {
        display: none !important;
    }

    .desktop-only-icon {
        display: none !important;
    }

    .header-actions {
        gap: 25px !important;
    }

    /* Simplify header icon display */
    .header-icon-btn {
        font-size: 1.1rem;
    }

    .header-icon-btn i {
        font-size: 1.1rem;
    }

    /* Show mobile cat tabs, hide desktop navbar */
    .main-navbar-dark {
        display: none !important;
    }

    .mobile-cat-tabs {
        display: block;
    }

    .mobile-nav {
        display: flex;
    }

    /* --- Hero --- */
    .hero-section {
        min-height: auto;
    }

    .mosque-title h1 {
        font-size: 1.3rem;
    }

    .mosque-title p {
        font-size: 0.85rem;
    }

    .hv2-slide {
        height: 440px;
    }

    .hv2-title {
        font-size: 2rem;
    }

    .hv2-desc {
        font-size: 0.82rem;
    }

    .hv2-inner {
        padding-bottom: 50px;
    }

    .hv2-trust span {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .hv2-grid {
        grid-template-columns: 1fr;
    }

    .hv2-product-visual {
        display: none;
    }

    /* --- Section Banners --- */
    .section-banner {
        padding: 10px 0;
        gap: 8px;
    }

    .section-banner h2 {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .section-banner .banner-mosque {
        font-size: 0.9rem;
    }

    /* --- Product Cards Mobile --- */
    .product-card .product-img-wrap img {
        min-height: auto;
        height: auto;
    }

    .product-card .product-info {
        padding: 10px 12px;
    }

    .product-card .product-name {
        font-size: 0.78rem;
        margin-bottom: 4px;
    }

    .product-card .product-price {
        font-size: 0.88rem;
    }

    .product-card .product-price .old-price {
        font-size: 0.72rem;
    }

    /* Quick actions always visible on mobile */
    .product-card .quick-actions {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .quick-actions button {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    /* --- Banners --- */
    .ramadan-banners {
        margin-top: 0 !important;
        padding: 12px !important;
    }

    .rb-layout {
        gap: 10px;
    }

    .rb-sidebar {
        display: none;
    }

    .rb-footer {
        padding: 4px 10px;
    }

    .rb-cta {
        font-size: 12px;
    }

    .rb-static-item {
        flex: 1 1 100%;
    }

    /* --- Main Content --- */
    #products {
        padding: 16px 12px !important;
    }

    #products .space-y-14>*+* {
        margin-top: 24px;
    }

    /* --- Mobile Products Page --- */
    .mob-kat-header {
        display: block !important;
    }

    .mob-toolbar {
        display: flex !important;
        padding: 0px 5px 3px 5px !important;
    }

    .mob-load-status {
        display: block !important;
    }

    .desktop-only-block {
        display: none !important;
    }

    .kat-sidebar {
        display: none !important;
    }

    .kat-cat-label,
    .kat-main>h1,
    .kat-main-desc,
    .kat-toolbar {
        display: none !important;
    }

    .kat-wrapper {
        display: block !important;
    }

    .kat-main {
        width: 100% !important;
    }

    .kat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .kat-product-info {
        padding: 8px 6px !important;
    }

    .kat-product-name {
        font-size: 0.78rem !important;
    }

    .kat-product-sub {
        font-size: 0.7rem !important;
    }

    .kat-product-price {
        font-size: 0.82rem !important;
    }

    /* --- Footer Desktop/Mobile Toggle --- */
    .footer-desktop {
        display: none !important;
    }

    .footer-mobile {
        display: block !important;
    }

    .main-footer {
        padding-top: 32px;
    }

    .footer-seo {
        display: none;
    }

    .newsletter-bar {
        display: none;
    }

    /* --- Customer Photos --- */
    .cp-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cp-header-text h3 {
        font-size: 0.9rem;
    }

    .cp-header-text p {
        font-size: 0.72rem;
    }

    .cp-slide img {
        height: 220px;
    }

    /* --- Payment Bar --- */
    .payment-bar {
        padding: 10px 0;
    }

    .payment-logos {
        gap: 10px;
    }

    .pay-logo i {
        font-size: 1.3rem;
    }

    .pay-text {
        font-size: 0.75rem !important;
    }

    /* --- Newsletter --- */
    .nl-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .nl-text {
        font-size: 0.82rem;
    }

    .nl-desc {
        font-size: 0.72rem;
    }

    /* --- Footer Gallery --- */
    .footer-gallery img {
        height: 65px;
    }

    /* --- WhatsApp / Back to Top --- */
    .whatsapp-float {
        bottom: 20px;
        left: 16px;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
}

/* ---------- Small Mobile (< 480px) ---------- */
@media (max-width: 480px) {
    .mosque-title h1 {
        font-size: 1.1rem;
    }

    .hv2-slide {
        height: 360px;
    }

    .hv2-title {
        font-size: 1.5rem;
    }

    .hv2-badge {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .hv2-actions {
        flex-direction: column;
        gap: 8px;
    }

    .hv2-cta-primary,
    .hv2-cta-outline {
        font-size: 0.75rem;
        padding: 10px 20px;
    }

    .mobile-cat-tab {
        padding: 9px 14px;
        font-size: 0.72rem;
    }

    .section-banner h2 {
        font-size: 0.7rem;
    }
}

/* ---------- AOS Overrides ---------- */
[data-aos] {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* AOS fallback — if JS fails, elements still show after 2s */
@keyframes aosFallback {
    to {
        opacity: 1 !important;
        transform: none !important;
    }
}

[data-aos]:not(.aos-animate) {
    animation: aosFallback 0s ease 2.5s forwards;
}

/* ---------- Marquee ---------- */
.marquee-wrap {
    background: var(--gold);
    color: var(--dark);
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 25s linear infinite;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Loading Spinner */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

.page-loader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-crescent {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gold-light);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    margin-top: 15px;
    font-family: 'Amiri', serif;
    color: var(--gold-dark);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.kat-breadcrumb {
    padding: 10px 0;
    font-size: .75rem;
    color: #999
}

.kat-breadcrumb a {
    color: #999;
    text-decoration: none
}

.kat-breadcrumb a:hover {
    color: #333
}

.kat-wrapper {
    display: flex;
    gap: 24px;
    padding: 20px;
    padding-bottom: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04)
}

.kat-sidebar {
    width: 200px;
    min-width: 200px;
    font-size: .78rem
}

.kat-filter-top {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee
}

.kat-filter-top-title {
    font-weight: 700;
    font-size: .82rem;
    color: #333
}

.kat-filter-top label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: .72rem;
    color: #666;
    cursor: pointer
}

.kat-filter-group {
    margin-bottom: 10px;
}

.kat-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    user-select: none
}

.kat-filter-header h4 {
    font-size: .78rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px
}

.kat-filter-header h4 i {
    font-size: .55rem;
    transition: transform .2s
}

.kat-filter-header.open h4 i {
    transform: rotate(180deg)
}

.kat-filter-clear {
    font-size: .62rem;
    color: #999;
    text-decoration: none
}

.kat-filter-clear:hover {
    color: #333
}

.kat-filter-body {
    display: none;
    padding-bottom: 10px;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent
}

.kat-filter-body::-webkit-scrollbar {
    width: 4px
}

.kat-filter-body::-webkit-scrollbar-track {
    background: transparent
}

.kat-filter-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px
}

.kat-filter-body::-webkit-scrollbar-thumb:hover {
    background: #999
}

.kat-filter-body.open {
    display: block
}

.kat-filter-body label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
    color: #555;
    cursor: pointer;
    font-size: .75rem
}

.kat-filter-body label:hover {
    color: #333
}

.kat-filter-body input[type="checkbox"],
.kat-filter-body input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid #bbb;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all .15s;
    margin: 0;
}

.kat-filter-body input[type="checkbox"]:checked,
.kat-filter-body input[type="radio"]:checked {
    background: #333;
    border-color: #333;
}

.kat-filter-body input[type="checkbox"]:checked::after,
.kat-filter-body input[type="radio"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.kat-filter-body input[type="checkbox"]:hover,
.kat-filter-body input[type="radio"]:hover {
    border-color: #888;
}

.kat-price-row {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 4px
}

.kat-price-row input {
    width: 60px;
    font-size: .7rem;
    border: 1px solid #ddd;
    padding: 4px 5px;
    border-radius: 3px
}

.kat-price-row span {
    color: #999;
    font-size: .7rem
}

.kat-price-row button {
    font-size: .62rem;
    background: #333;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600
}

.kat-main {
    flex: 1;
    min-width: 0
}

.kat-cat-label {
    font-size: .72rem;
    color: #999;
    margin-bottom: 2px
}

.kat-main h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px 0
}

.kat-main-desc {
    font-size: .82rem;
    color: #545454;
    line-height: 1.5;
    margin-bottom: 12px
}

.kat-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 16px
}

.kat-toolbar-left {
    font-size: .72rem;
    color: #666
}

.kat-toolbar-left strong {
    color: #333
}

.kat-toolbar select {
    font-size: .72rem;
    border: 1px solid #ddd;
    padding: 5px 8px;
    border-radius: 3px;
    color: #333;
    background: #fff
}

.kat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.kat-product {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    min-width: 0;
    overflow: hidden
}

.kat-product:hover {
    z-index: 2
}

.kat-product-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5
}

.kat-product-images {
    position: relative;
    width: 100%
}

.kat-product-img {
    width: 100%;
    height: auto;
    display: none
}

.kat-product-img.active {
    display: block
}

/* Before JS runs, show the original img */
.kat-product-img-wrap>.kat-product-img {
    display: block
}

.kat-img-indicators {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 3;
    opacity: 0;
    transition: opacity .2s
}

.kat-product:hover .kat-img-indicators {
    opacity: 1
}

.kat-img-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    transition: background .15s
}

.kat-img-dot.active {
    background: #fff
}

.kat-hover-zones {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 2
}

.kat-hover-zone {
    flex: 1;
    cursor: pointer
}

.kat-size-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .95);
    padding: 6px 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    transform: translateY(100%);
    transition: transform .25s ease;
    border-top: 1px solid #eee
}

.kat-product:hover .kat-size-bar {
    transform: translateY(0)
}

.kat-size-btn {
    font-size: .62rem;
    border: 1px solid #ccc;
    background: #fff;
    padding: 3px 8px;
    border-radius: 2px;
    cursor: pointer;
    color: #333;
    transition: all .15s
}

.kat-size-btn:hover {
    background: #333;
    color: #fff;
    border-color: #333
}

.kat-product-info {
    padding: 8px 0;
    overflow: hidden
}

.kat-product-name {
    font-size: .88rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.kat-product-sub {
    font-size: .7rem;
    color: #aaa;
    margin-bottom: 4px
}

.kat-product-price {
    font-size: .88rem;
    font-weight: 700;
    color: #222;
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.kat-product-price .price-amount {
    font-size: 1.4rem;
    font-weight: 700
}

.kat-product-price .price-dec {
    font-size: .95rem;
    font-weight: 600;
    margin-left: -5px;
    margin-top: 8px;
}

.kat-product-price .price-currency {
    font-size: 1.3rem;
    font-weight: 600;
}

.kat-product-price .old {
    text-decoration: line-through;
    color: #aaa;
    font-weight: 400;
    font-size: .7rem
}

.kat-product-price .sepette-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to right, #f36523, #db0300);
    color: #fff;
    border-radius: 6px;
    padding: 2px 8px;
    line-height: 1.2;
    margin-left: auto
}

.kat-product-price .sepette-badge .sepette-label {
    font-size: .55rem;
    font-weight: 600
}

.kat-product-price .sepette-badge .sepette-price {
    font-size: .92rem;
    font-weight: 700
}

.kat-sold-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: .6rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: .5px
}

/* Mobile-only Favorite Heart on Product Card */
.kat-fav-btn {
    display: none !important;
}

@media (max-width: 768px) {
    .kat-fav-btn {
        width: 35px !important;
        height: 35px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 10px;
        right: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.52) !important;
        color: #888 !important;
        font-size: 1rem !important;
        z-index: 5;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .kat-fav-btn:active {
        transform: scale(0.9);
    }

    .kat-fav-btn.is-fav,
    .kat-fav-btn.is-fav i {
        color: #e74c3c;
    }

    .kat-fav-btn i {
        line-height: 1;
        pointer-events: none;
    }
}

.kat-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #eee
}

.kat-pagination a,
.kat-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    font-size: .72rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #555;
    text-decoration: none;
    padding: 0 8px;
    transition: all .2s
}

.kat-pagination a:hover {
    border-color: #333;
    color: #333
}

.kat-pagination .active {
    background: #333;
    color: #fff;
    border-color: #333
}

.kat-pagination .dots {
    border: none;
    color: #aaa
}

@media(max-width:768px) {
    .kat-wrapper {
        flex-direction: column;
        padding: 2px;
    }

    .kat-sidebar {
        width: 100%;
        min-width: auto
    }

    .kat-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* ===== PRODUCT DETAIL PAGE STYLES ===== */

/* Breadcrumb */
.pd-breadcrumb {
    font-size: .82rem;
    color: #888;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}

.pd-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color .2s;
}

.pd-breadcrumb a:hover {
    color: var(--danger);
}

/* Product Detail Container */
.pd-container {
    display: flex;
    gap: 36px;
    margin-bottom: 40px;
}

/* Left: Image Gallery */
.pd-gallery {
    flex: 0 0 550px;
    max-width: 550px;
    position: relative;
}

.pd-gallery-wrapper {
    display: flex;
    gap: 10px;
}

.pd-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 70px;
    flex-shrink: 0;
}

.pd-thumb {
    width: 70px;
    height: 90px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s;
}

.pd-thumb.active {
    border-color: var(--danger);
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-main-image {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    cursor: crosshair;
}

.pd-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Zoom Magnifier */
.pd-zoom-result {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 16px;
    width: 480px;
    height: 520px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-color: #fff;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}

.pd-zoom-result.visible {
    opacity: 1;
}

.pd-zoom-lens {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 0, 0, .2);
    background: rgba(255, 255, 255, .25);
    border-radius: 4px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity .15s ease;
}

.pd-zoom-lens.visible {
    opacity: 1;
}

.pd-img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .85rem;
    color: #555;
    transition: all .2s;
    z-index: 5;
}

.pd-img-nav:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.pd-img-prev {
    left: 8px;
}

.pd-img-next {
    right: 8px;
}

/* Right: Product Info */
.pd-info {
    flex: 1;
    min-width: 0;
}

.pd-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 4px;
}

.pd-model {
    font-size: .82rem;
    color: #999;
    margin-bottom: 16px;
}

/* Price */
.pd-price-box {
    margin-bottom: 18px;
}

.pd-price-box.has-border {
    border-radius: 4px;
    display: inline-block;
}

.pd-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.pd-price-amount {
    font-size: 2.3rem;
    font-weight: 700;
    color: #333;
}

.has-border .pd-price-amount {
    color: #e55a3c;
}

.pd-price-dec {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    vertical-align: super;
    margin-left: -2px;
}

.has-border .pd-price-dec {
    color: #e55a3c;
}

.pd-price-currency {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-left: 2px;
}

.has-border .pd-price-currency {
    color: #e55a3c;
}

.pd-price-old {
    text-decoration: line-through;
    margin-left: 4px;
}

.pd-price-old .pd-price-amount {
    font-size: 1.5rem !important;
    color: #545454 !important;
}

.pd-price-old .pd-price-dec {
    font-size: .85rem !important;
    color: #545454 !important;
}

.pd-price-old .pd-price-currency {
    font-size: 1rem !important;
    color: #545454 !important;
}

.pd-sepet-indirim {
    margin-top: 13px;
    position: relative;
}

.pd-sepet-badge {
    display: inline-block;
    position: relative;
    background: linear-gradient(to right, #f36523, #db0300);
    padding: 8px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;
}

.pd-price-box .pd-sepet-badge::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 25px;
    border: 11px solid transparent;
    border-bottom-color: #f0581f;
}

/* Color Selector */
.pd-section-label {
    font-size: .85rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.pd-section-label span {
    font-weight: 600;
    color: #333;
}

.pd-colors {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.pd-color-swatch {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}

.pd-color-swatch.active,
.pd-color-swatch:hover {
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .1);
}

/* Size Selector */
.pd-sizes {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.pd-size-btn {
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all .2s;
    background: #fff;
    gap: 4px;
    white-space: nowrap;
}

.pd-size-btn.active {
    border-color: #333;
    color: #000;
}

.pd-size-btn:hover:not(.active):not(.out-of-stock) {
    border-color: #999;
}

/* Variant Stock Badges */
.pd-stok-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 8px;
    margin-left: 3px;
    vertical-align: middle;
    letter-spacing: .3px;
    white-space: nowrap;
    line-height: 1;
}

.pd-stok-critical {
    background: #fee2e2;
    color: #dc2626;
    animation: stokPulse 1.5s ease infinite;
}

.pd-stok-low {
    background: #fef3c7;
    color: #d97706;
}

.pd-stok-ok {
    background: #d1fae5;
    color: #059669;
}

.pd-stok-out {
    background: #f3f4f6;
    color: #9ca3af;
}

.pd-size-btn.out-of-stock {
    opacity: .4;
    pointer-events: none;
    position: relative;
    text-decoration: line-through;
    cursor: default;
}

.pd-color-swatch.out-of-stock {
    opacity: .3;
    pointer-events: none;
}

.pd-stok-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    margin: 8px 0 10px;
}

.pd-stok-bar-critical {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fecaca;
    color: #dc2626;
}

.pd-stok-bar-critical i {
    animation: stokPulse 1.5s ease infinite;
}

.pd-stok-bar-low {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fde68a;
    color: #d97706;
}

.pd-stok-bar-ok {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
    color: #059669;
}

@keyframes stokPulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .6
    }
}

/* Stoğa Gelince Haber Ver Button */
.pd-add-cart.pd-btn-notify {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%) !important;
    border-color: #7c3aed !important;
    color: #fff !important;
    animation: notifyPulse 2s ease infinite;
}

.pd-add-cart.pd-btn-notify:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, .4);
}

.pd-add-cart.pd-btn-notify i {
    animation: bellShake 2s ease infinite;
}

@keyframes notifyPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, .3)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(139, 92, 246, 0)
    }
}

@keyframes bellShake {

    0%,
    100% {
        transform: rotate(0)
    }

    10% {
        transform: rotate(12deg)
    }

    20% {
        transform: rotate(-10deg)
    }

    30% {
        transform: rotate(6deg)
    }

    40% {
        transform: rotate(0)
    }
}

/* Quantity + Add to Cart */
.pd-action-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pd-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.pd-qty-btn {
    width: 38px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    transition: background .2s;
}

.pd-qty-btn:hover {
    background: #e8e8e8;
}

.pd-qty-input {
    width: 42px;
    height: 42px;
    border: none;
    text-align: center;
    font-size: .95rem;
    font-weight: 600;
    color: #333;
    outline: none;
}

.pd-add-cart {
    flex: 1;
    height: 44px;
    background: var(--danger);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
    letter-spacing: .3px;
}

.pd-add-cart:hover {
    background: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, .3);
}

.pd-fav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    background: #fff;
    transition: all .2s;
    font-size: 1.1rem;
}

.pd-fav-btn:hover {
    border-color: var(--danger);
    color: var(--danger);
}

.pd-fav-btn.is-fav {
    border-color: var(--danger);
    color: var(--danger);
    background: #fff0f0;
}

/* Info Notice */
.pd-notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: #fff8e1;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: .8rem;
    color: #666;
    line-height: 1.5;
}

.pd-notice i {
    color: var(--danger);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Social Share */
.pd-share {
    display: flex;
    gap: 8px;
}

.pd-share-btn {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .95rem;
    cursor: pointer;
    transition: opacity .2s;
}

.pd-share-btn:hover {
    opacity: .85;
}

.pd-share-wp {
    background: #25d366;
}

.pd-share-fb {
    background: #3b5998;
}

.pd-share-tw {
    background: #1da1f2;
}

/* ===== TABS SECTION ===== */
.pd-tabs-section {
    margin-bottom: 50px;
}

.pd-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 24px;
}

.pd-tab {
    padding: 10px 20px;
    font-size: .85rem;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    border: 1px solid #eee;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    background: #f9f9f9;
    transition: all .2s;
    white-space: nowrap;
}

.pd-tab.active {
    background: var(--danger);
    color: #fff;
    border-color: var(--danger);
}

.pd-tab:hover:not(.active) {
    color: #555;
    background: #f0f0f0;
}

.pd-tab-content {
    display: none;
    font-size: .88rem;
    color: #555;
    line-height: 1.8;
}

.pd-tab-content.active {
    display: block;
}

.pd-tab-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pd-tab-content ul li {
    padding: 3px 0;
    position: relative;
    padding-left: 16px;
}

.pd-tab-content ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

/* Rating Badge (near title) */
.pd-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none !important;
    cursor: pointer;
    transition: opacity .2s;
}

.pd-rating-badge:hover {
    opacity: .8;
}

.pd-stars-mini {
    display: inline-flex;
    gap: 1px;
}

.pd-stars-mini i {
    color: #f5a623;
    font-size: .75rem;
}

.pd-rating-count {
    font-size: .78rem;
    color: #f5a623;
    font-weight: 600;
}

/* Tab Badge */
.pd-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    font-size: .7rem;
    font-weight: 700;
    background: #f5a623;
    color: #fff;
    margin-left: 6px;
    line-height: 1;
}

.pd-tab.active .pd-tab-badge {
    background: #fff;
    color: var(--danger);
}

/* ===== REVIEWS SECTION ===== */
.rv-container {
    padding: 0;
}

/* Summary */
.rv-summary {
    display: flex;
    gap: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: 12px;
    margin-bottom: 28px;
    align-items: center;
}

.rv-avg {
    text-align: center;
    min-width: 120px;
    flex-shrink: 0;
}

.rv-avg-num {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    line-height: 1;
    margin-bottom: 4px;
}

.rv-avg-stars {
    margin-bottom: 4px;
}

.rv-avg-stars i {
    color: #f5a623;
    font-size: 1rem;
}

.rv-avg-count {
    font-size: .8rem;
    color: #999;
}

/* Rating Bars */
.rv-bars {
    flex: 1;
}

.rv-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.rv-bar-label {
    font-size: .78rem;
    color: #888;
    min-width: 36px;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.rv-bar-label i {
    color: #f5a623;
    font-size: .65rem;
}

.rv-bar-track {
    flex: 1;
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.rv-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f5a623, #f7c948);
    border-radius: 4px;
    transition: width .6s ease;
}

.rv-bar-count {
    font-size: .78rem;
    color: #aaa;
    min-width: 18px;
    text-align: right;
}

/* Review Cards */
.rv-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rv-card {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    transition: box-shadow .2s;
}

.rv-card:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.rv-card-img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.rv-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform .3s;
}

.rv-card-img img:hover {
    transform: scale(1.05);
}

.rv-card-body {
    flex: 1;
    min-width: 0;
}

.rv-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.rv-card-name {
    font-weight: 600;
    font-size: .88rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rv-ig {
    font-size: .72rem;
    color: #c13584;
    font-weight: 500;
}

.rv-ig i {
    margin-right: 2px;
}

.rv-card-date {
    font-size: .75rem;
    color: #bbb;
    white-space: nowrap;
}

.rv-card-stars {
    margin-bottom: 6px;
}

.rv-card-stars i {
    color: #f5a623;
    font-size: .8rem;
}

.rv-card-text {
    font-size: .84rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Reviews */
@media (max-width: 640px) {
    .rv-summary {
        flex-direction: column;
        gap: 20px;
    }

    .rv-avg {
        min-width: auto;
    }

    .rv-card {
        flex-direction: column;
        gap: 10px;
    }

    .rv-card-img {
        width: 100%;
        height: 200px;
    }

    .rv-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
}

/* ===== RECOMMENDATIONS ===== */
.pd-reco-section {
    margin-bottom: 50px;
}

.pd-reco-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-reco-title i {
    color: var(--danger);
}

.pd-reco-slider {
    position: relative;
}

.pd-reco-slider .slick-prev,
.pd-reco-slider .slick-next {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    z-index: 5;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.pd-reco-slider .slick-prev {
    left: -18px;
}

.pd-reco-slider .slick-next {
    right: -18px;
}

.pd-reco-slider .slick-prev:before,
.pd-reco-slider .slick-next:before {
    color: #555;
    font-size: 14px;
}

.pd-reco-card {
    padding: 0 8px;
}

.pd-reco-card-inner {
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.pd-reco-card-inner:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.pd-reco-img {
    position: relative;
    overflow: hidden;
}

.pd-reco-img img {
    width: 100%;
    height: auto;
    display: block;
}

.pd-reco-info {
    padding: 10px 8px;
}

.pd-reco-name {
    font-size: .82rem;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.pd-reco-sub {
    font-size: .75rem;
    color: #999;
    margin-bottom: 6px;
}

.pd-reco-prices {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-reco-discount {
    background: linear-gradient(to right, #f36523, #db0300);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
}

.pd-reco-old-price {
    font-size: .78rem;
    color: #bbb;
    text-decoration: line-through;
}

.pd-reco-price {
    font-size: .95rem;
    font-weight: 700;
    color: #222;
}

.pd-reco-price-currency {
    font-size: .85rem;
}

/* Mobile-only product title — hidden on desktop */
.pd-mob-title {
    display: none;
}

/* ===== MOBILE PRODUCT DETAIL REDESIGN ===== */
@media (max-width: 768px) {

    /* Show mobile title */
    .pd-mob-title {
        display: block;
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        text-align: center;
        padding: 6px 14px 8px;
        margin: 0;
        line-height: 1.4;
    }

    /* Hide original desktop title */
    .pd-info .pd-title {
        display: none;
    }

    /* Container: stack vertically */
    .pd-container {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    /* ---- BREADCRUMB ---- */
    .pd-breadcrumb {
        font-size: .72rem;
        padding: 8px 10px 4px;
        color: #888;
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pd-breadcrumb::-webkit-scrollbar {
        display: none;
    }

    /* ---- IMAGE GALLERY ---- */
    .pd-gallery {
        flex: none;
        max-width: 100%;
    }

    .pd-gallery-wrapper {
        flex-direction: column;
        gap: 0;
    }

    /* Hide thumbnails on mobile */
    .pd-thumbnails {
        display: none;
    }

    /* Full-width main image */
    .pd-main-image {
        border-radius: 0;
        cursor: default;
    }

    .pd-main-image img {
        width: 100%;
        height: auto;
    }

    /* Image nav arrows */
    .pd-img-nav {
        width: 32px;
        height: 32px;
        font-size: .75rem;
        background: rgba(255, 255, 255, .7);
    }

    .pd-img-prev {
        left: 6px;
    }

    .pd-img-next {
        right: 6px;
    }

    /* Hide zoom */
    .pd-zoom-result,
    .pd-zoom-lens {
        display: none !important;
    }

    /* ---- PRODUCT INFO ---- */
    .pd-info {
        padding: 10px 0px 0;
    }

    /* Hide model code and rating badge row — or make subtle */
    .pd-info>.flex.items-center.justify-between {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 8px;
        padding: 0 14px;
    }

    .pd-model {
        font-size: .72rem;
        margin-bottom: 0;
    }

    /* ---- PRICE BOX ---- */
    .pd-price-box {
        margin-bottom: 12px;
        padding: 12px 14px;
        background: #fff;
        display: flex !important;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .pd-price {
        align-items: center;
        gap: 4px;
    }

    .pd-price-amount {
        font-size: 1.8rem;
    }

    .pd-price-dec {
        font-size: .9rem;
    }

    .pd-price-currency {
        font-size: 1.1rem;
    }

    .pd-price-old .pd-price-amount {
        font-size: 1rem !important;
    }

    .pd-price-old .pd-price-dec {
        font-size: .7rem !important;
    }

    .pd-price-old .pd-price-currency {
        font-size: .8rem !important;
    }

    /* Sepet indirim badge */
    .pd-sepet-indirim {
        margin-top: 0;
    }

    .pd-sepet-badge {
        font-size: 12px;
        padding: 6px 10px;
    }

    .pd-price-box .pd-sepet-badge::before {
        display: none;
    }

    /* ---- NOTICE (savings info) ---- */
    .pd-notice {
        margin: 0 0 12px;
        padding: 10px 14px;
        border-radius: 0;
        font-size: .78rem;
        background: #fff;
        border-bottom: 1px solid #f0f0f0;
    }

    /* ---- VARIANTS ---- */
    .pd-section-label {
        padding: 0 14px;
        font-size: .8rem;
        margin-bottom: 8px;
    }

    .pd-colors {
        padding: 0 14px;
        margin-bottom: 14px;
        flex-wrap: wrap;
    }

    .pd-sizes {
        padding: 0 14px;
        margin-bottom: 14px;
        flex-wrap: wrap;
    }

    .pd-color-swatch {
        width: 38px;
        height: 38px;
    }

    .pd-size-btn {
        min-width: 38px;
        height: 38px;
        font-size: .8rem;
    }

    /* Stock bar */
    #pdStokBar {
        padding: 0 14px;
    }

    /* ---- ACTION ROW: Full-width stacked ---- */
    .pd-action-row {
        flex-direction: column;
        gap: 10px;
        padding: 12px 14px;
        margin-bottom: 0;
    }

    /* Hide desktop quantity selector on mobile */
    .pd-quantity {
        display: none;
    }

    /* Full-width cart button */
    .pd-add-cart {
        width: 100%;
        padding: 10px;
        border-radius: 6px;
        font-size: .95rem;
        font-weight: 600;
        background: #e67e22;
        order: 1;
    }

    .pd-add-cart:hover {
        background: #d35400;
        box-shadow: none;
        transform: none;
    }

    /* Full-width fav button (outlined) */
    .pd-fav-btn#pdFavBtn {
        width: 100% !important;
        height: 46px !important;
        border: 1px solid #ddd !important;
        border-radius: 6px !important;
        font-size: .9rem !important;
        background: #fff !important;
        color: #555 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        order: 2;
    }

    .pd-fav-btn#pdFavBtn::after {
        content: 'Favorilere ekle';
        font-family: 'Comfortaa', sans-serif;
        font-size: .85rem;
        font-weight: 500;
    }

    .pd-fav-btn#pdFavBtn.is-fav::after {
        content: 'Favorilerden çıkar';
    }

    .pd-fav-btn#pdFavBtn.is-fav {
        border-color: var(--danger) !important;
        color: var(--danger) !important;
        background: #fff0f0 !important;
    }

    /* ---- SOCIAL SHARE ---- */
    .pd-share {
        padding: 10px 14px;
        justify-content: center;
        display: none;
    }

    /* ---- TABS SECTION → ACCORDION ---- */
    .pd-tabs-section {
        margin-bottom: 0;
        border-top: 6px solid #f5f5f5;
    }

    /* Hide horizontal tab bar */
    .pd-tabs {
        display: none !important;
    }

    /* Show all tab contents as accordion items */
    .pd-tab-content {
        display: block !important;
        border-bottom: 1px solid #e8e8e8;
        padding: 0 !important;
        font-size: .82rem;
        line-height: 1.7;
    }

    .pd-tab-content::before {
        content: attr(data-tab-title);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        font-size: .92rem;
        font-weight: 600;
        color: #333;
        cursor: pointer;
    }

    .pd-tab-content::after {
        content: '+';
        position: absolute;
        right: 16px;
        top: 14px;
        font-size: 1.3rem;
        font-weight: 300;
        color: #888;
        pointer-events: none;
    }

    .pd-tab-content {
        position: relative;
        overflow: hidden;
    }

    /* Inner content wrapper — initially hidden */
    .pd-tab-content>* {
        display: none;
        padding: 0 16px 16px !important;
    }

    /* When accordion is open */
    .pd-tab-content.mob-accordion-open>* {
        display: block;
    }

    .pd-tab-content.mob-accordion-open::after {
        content: '−';
    }

    /* ---- RECOMMENDATIONS ---- */
    .pd-reco-section {
        border-top: 6px solid #f5f5f5;
        padding: 20px 0 30px;
    }

    .pd-reco-title {
        text-align: center;
        justify-content: center;
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .pd-reco-title i {
        display: none;
    }

    .pd-reco-slider {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 10px;
    }

    .pd-reco-slider .slick-list,
    .pd-reco-slider .slick-track {
        display: contents !important;
    }

    .pd-reco-slider .slick-prev,
    .pd-reco-slider .slick-next {
        display: none !important;
    }

    .pd-reco-card {
        padding: 0;
    }

    .pd-reco-card-inner {
        border-radius: 0;
    }

    .pd-reco-img img {
        width: 100%;
        height: auto;
    }

    .pd-reco-info {
        padding: 8px 4px;
    }

    .pd-reco-name {
        font-size: .78rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pd-reco-prices {
        flex-wrap: wrap;
        gap: 4px;
    }

    .pd-reco-price {
        font-size: .85rem;
        color: var(--danger);
    }

    .pd-reco-old-price {
        font-size: .7rem;
    }

    .pd-reco-discount {
        font-size: .6rem;
        padding: 1px 4px;
    }
}

/* Fancybox custom - scrollable image */
.fancybox__content {
    overflow-y: auto !important;
    max-height: 100vh !important;
}

.fancybox__content img {
    width: auto;
    max-width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
}

.fancybox__thumbs {
    display: flex;
    flex-direction: column;
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    backdrop-filter: blur(2px);
}

.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SweetAlert sidebar üstünde göster */
.swal2-container {
    z-index: 999999 !important;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 92vw;
    height: 100vh;
    z-index: 99999;
    background: #fff;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .18);
    display: flex;
    flex-direction: column;
    transition: right .35s cubic-bezier(.4, 0, .2, 1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.cart-sidebar-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-sidebar-header h3 i {
    color: #c9a84c;
}

.cart-sidebar-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: all .2s;
}

.cart-sidebar-close:hover {
    background: rgba(255, 255, 255, .2);
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-sidebar-body::-webkit-scrollbar {
    width: 4px;
}

.cart-sidebar-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.cart-sidebar-empty {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.cart-sidebar-empty i {
    font-size: 3rem;
    color: #ddd;
    display: block;
    margin-bottom: 14px;
}

.cs-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    animation: csItemIn .3s ease both;
}

@keyframes csItemIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cs-item-img {
    width: 72px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    background: #f5f5f5;
    flex-shrink: 0;
}

.cs-item-info {
    flex: 1;
    min-width: 0;
}

.cs-item-name {
    font-size: .82rem;
    font-weight: 600;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    margin-bottom: 4px;
}

.cs-item-variant {
    font-size: .72rem;
    color: #999;
    margin-bottom: 6px;
}

.cs-item-variant span {
    background: #f3f3f3;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 4px;
    display: inline-block;
    margin-bottom: 2px;
}

.cs-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cs-item-qty {
    font-size: .78rem;
    color: #888;
    background: #f5f5f5;
    padding: 3px 10px;
    border-radius: 12px;
}

.cs-item-price {
    font-size: .9rem;
    font-weight: 700;
    color: #333;
}

.cs-item-remove {
    position: absolute;
    top: 6px;
    right: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: #fee;
    color: #e74c3c;
    cursor: pointer;
    font-size: .65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
}

.cs-item {
    position: relative;
}

.cs-item:hover .cs-item-remove {
    opacity: 1;
}

.cart-sidebar-footer {
    border-top: 1px solid #eee;
    padding: 16px 20px;
    background: #fafafa;
}

.cs-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: .85rem;
    color: #666;
}

.cs-total-row.grand {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    padding-top: 8px;
    border-top: 1px solid #eee;
    margin-top: 4px;
}

.cs-total-row.grand span:last-child {
    color: var(--danger);
}

.cs-btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 46px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    margin-top: 10px;
    text-decoration: none;
}

.cs-btn-checkout:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(231, 76, 60, .35);
}

.cs-btn-continue {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: .82rem;
    color: #888;
    cursor: pointer;
    text-decoration: underline;
    border: none;
    background: none;
    width: 100%;
}

.cs-btn-continue:hover {
    color: #555;
}

/* Variant validation shake */
.pd-variant-error {
    animation: variantShake .5s ease;
    border: 2px solid #e74c3c !important;
    border-radius: 6px;
    padding: 4px;
    margin: -4px;
}

@keyframes variantShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

/* Sidebar Qty Controls */
.cs-qty-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    height: 28px;
}

.cs-qty-btn {
    width: 26px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: .75rem;
    color: #555;
    transition: background .15s;
    padding: 0;
}

.cs-qty-btn:hover {
    background: #e8e8e8;
}

.cs-qty-btn:active {
    background: #ddd;
}

.cs-qty-btn.disabled {
    opacity: .35;
    pointer-events: none;
}

.cs-qty-val {
    width: 30px;
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    color: #333;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    line-height: 28px;
    background: #fff;
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }
}

/* ==========================================================================
   SEPET SAYFASI (sepet.php) — LAMELIF DESIGN
   ========================================================================== */

/* Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

@media (max-width:1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

/* Empty Cart */
.cart-empty {
    max-width: 480px;
    margin: 40px auto;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    padding: 48px 32px;
}

.cart-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-empty-icon i {
    font-size: 40px;
    color: #ccc;
}

.cart-empty h2 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 8px;
}

.cart-empty p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s;
}

.cart-empty-btn:hover {
    background: var(--gold-dark);
    box-shadow: 0 4px 16px rgba(201, 168, 76, .3);
}

/* Cart Header */
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--cream-dark);
}

.cart-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-title i {
    color: var(--gold);
    font-size: 20px;
}

.cart-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    background: var(--cream);
    padding: 6px 16px;
    border-radius: 20px;
}

/* Alert */
.cart-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 13px;
}

.cart-alert i {
    font-size: 18px;
    margin-top: 2px;
}

.cart-alert strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
}

.cart-alert-error {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.cart-alert-error i {
    color: #ef4444;
}

/* Product Card */
.cart-product {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
    transition: all .3s;
}

.cart-product:hover {
    border-color: var(--gold-light);
    box-shadow: 0 2px 12px rgba(201, 168, 76, .08);
}

.cart-product--gift {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 2px solid #86efac;
}

.cart-product-img {
    flex-shrink: 0;
    width: 100px;
    height: 145px;
    border-radius: 10px;
    overflow: hidden;
    background: #f9f9f9;
}

.cart-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.cart-product-img:hover img {
    transform: scale(1.08);
}

.cart-product-detail {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.cart-product-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.cart-product-info {
    flex: 1;
    min-width: 0;
}

.cart-product-name {
    font-family: 'Comfortaa', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.cart-product-name:hover {
    color: var(--gold);
}

.cart-gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
    padding: 2px 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 10px;
    vertical-align: middle;
}

.cart-product-brand {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 2px;
    display: block;
}

.cart-product-remove {
    width: 32px;
    height: 32px;
    border: none;
    background: #f9f9f9;
    border-radius: 8px;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    flex-shrink: 0;
}

.cart-product-remove:hover {
    background: #fef2f2;
    color: #ef4444;
}

/* Variants */
.cart-product-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
}

.cart-variant-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.cart-variant-img {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    object-fit: cover;
    border: 1px solid #eee;
}

.cart-variant-label {
    color: var(--text-muted);
}

.cart-variant-value {
    font-weight: 600;
    color: var(--dark);
}

.cart-variant-extra {
    font-size: 11px;
    padding: 2px 8px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 10px;
    font-weight: 500;
}

/* Parts */
.cart-product-parts {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 10px;
    padding: 10px 12px;
    margin: 8px 0;
}

.cart-parts-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-parts-title i {
    color: var(--gold);
    font-size: 11px;
}

.cart-part-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    padding: 4px 0;
}

.cart-part-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-part-img {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    object-fit: cover;
}

.cart-part-price {
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

/* Tags */
.cart-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 6px 0;
}

.cart-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

/* Bottom: Qty + Price */
.cart-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    margin-top: auto;
    border-top: 1px solid #f3f4f6;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.cart-qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 12px;
    transition: all .2s;
}

.cart-qty-btn:hover {
    background: var(--gold);
    color: #fff;
}

.cart-qty-input {
    width: 46px;
    height: 34px;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    background: #fff;
    -moz-appearance: textfield;
}

.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-gift-qty {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: #dcfce7;
    color: #15803d;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #bbf7d0;
}

.cart-product-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cart-price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.cart-price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Comfortaa', sans-serif;
}

.cart-price-special {
    color: #16a34a;
}

.cart-price-free {
    color: #059669;
    font-weight: 700;
    font-size: 16px;
}

.cart-price-save {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    padding: 3px 10px;
    background: #f0fdf4;
    color: #15803d;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #bbf7d0;
}

/* Member Discount */
.cart-member-discount {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 10px;
}

.cart-member-title {
    font-size: 13px;
    font-weight: 600;
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.cart-member-title i {
    font-size: 11px;
}

.cart-member-detail {
    font-size: 12px;
    color: #047857;
}

.cart-member-arrow {
    margin: 0 6px;
    color: #34d399;
}

/* ===== KUPON ALANI ===== */
.cart-coupon-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px;
    margin-top: 20px;
}

.cart-coupon-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 12px;
}

.cart-coupon-header i {
    color: var(--gold);
}

.cart-coupon-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cart-coupon-input {
    flex: 1;
    min-width: 160px;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all .3s;
}

.cart-coupon-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}

.cart-coupon-btn {
    padding: 10px 20px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .3s;
}

.cart-coupon-btn:hover {
    background: var(--gold-dark);
}

.cart-coupon-remove {
    padding: 10px 16px;
    background: #f3f4f6;
    color: #555;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .3s;
}

.cart-coupon-remove:hover {
    background: #e5e7eb;
}

.cart-coupon-login-msg {
    margin-top: 10px;
    font-size: 12px;
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-coupon-login-msg a {
    font-weight: 700;
    text-decoration: underline;
    color: #92400e;
}

.cart-coupon-login-msg a:hover {
    color: #78350f;
}

.cart-coupon-applied {
    margin-top: 10px;
    font-size: 13px;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-coupon-expiry {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-coupon-expiry--urgent {
    color: #dc2626;
    font-weight: 600;
    background: #fef2f2;
    border-color: #fecaca;
}

.cart-coupon-hint {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Coupon Suggestions */
.cart-coupon-suggestions {
    margin-top: 16px;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 12px;
    padding: 16px;
}

.cart-coupon-suggest-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.cart-coupon-suggest-header i {
    color: var(--gold);
    font-size: 16px;
}

.cart-coupon-suggest-header strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
}

.cart-coupon-suggest-header small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.cart-coupon-suggest-list {
    display: grid;
    gap: 8px;
}

.cart-coupon-suggest-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
}

.cart-coupon-suggest-info {
    flex: 1;
    min-width: 0;
}

.cart-coupon-suggest-codes {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.cart-coupon-code-text {
    padding: 4px 10px;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    font-weight: 800;
    font-size: 12px;
    color: var(--gold-dark);
    letter-spacing: .5px;
}

.cart-coupon-discount-badge {
    padding: 3px 8px;
    background: var(--gold);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 11px;
}

.cart-coupon-restrict {
    font-size: 11px;
    color: var(--text-muted);
}

.cart-coupon-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-coupon-estimate {
    font-size: 12px;
    color: #047857;
    font-weight: 600;
}

.cart-coupon-exp-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-coupon-exp-date.urgent {
    color: #dc2626;
    font-weight: 600;
}

.cart-coupon-apply-btn {
    padding: 8px 16px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .3s;
    flex-shrink: 0;
}

.cart-coupon-apply-btn:hover {
    background: var(--gold-dark);
}

/* ===== ORDER SUMMARY ===== */
.cart-summary {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px;
    position: sticky;
    top: 90px;
}

.cart-summary-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.cart-summary-title i {
    color: var(--gold);
}

.cart-summary-coupon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
}

.cart-summary-coupon-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #047857;
    flex-shrink: 0;
}

.cart-summary-coupon-text {
    flex: 1;
    font-size: 13px;
    color: #065f46;
}

.cart-summary-coupon-text strong {
    display: block;
    margin-bottom: 2px;
}

.cart-summary-coupon-remove {
    background: none;
    border: none;
    color: #065f46;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    transition: color .3s;
}

.cart-summary-coupon-remove:hover {
    color: #dc2626;
}

.cart-summary-rows {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.cart-summary-val {
    font-weight: 600;
    color: var(--dark);
}

.cart-summary-row--discount {
    color: #16a34a;
}

.cart-summary-row--discount span {
    font-weight: 600;
}

.cart-summary-row--savings {
    border-top: 1px dashed #a7f3d0;
    padding-top: 10px;
    margin-top: 8px;
    color: #047857;
    font-weight: 700;
}

.cart-free-cargo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.cart-summary-total {
    background: var(--cream);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-summary-total-right {
    text-align: right;
}

.cart-summary-total-price {
    font-family: 'Comfortaa', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.cart-summary-total-note {
    font-size: 11px;
    color: #047857;
    font-weight: 600;
    display: block;
}

.cart-summary-total-kdv {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

/* Checkout Button */
.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s;
    margin-bottom: 10px;
    font-family: 'Comfortaa', sans-serif;
}

.cart-checkout-btn:hover {
    background: var(--gold-dark);
    box-shadow: 0 4px 20px rgba(201, 168, 76, .3);
}

.cart-checkout-btn--disabled {
    opacity: .6;
    cursor: not-allowed;
}

.cart-continue-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    color: #555;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all .3s;
    text-align: center;
}

.cart-continue-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Trust Badges */
.cart-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.cart-trust-item {
    text-align: center;
    padding: 10px 6px;
    background: var(--cream);
    border-radius: 10px;
}

.cart-trust-item i {
    display: block;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 6px;
}

.cart-trust-item span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Payment Methods */
.cart-payment-methods {
    margin-top: 16px;
    text-align: center;
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px;
}

.cart-payment-methods p {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-payment-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cart-payment-icons i {
    font-size: 28px;
    color: #bbb;
}

/* ===== MOBILE CART REDESIGN ===== */
@media (max-width:768px) {

    /* Hide breadcrumb on mobile */
    .cart-breadcrumb {
        display: none;
    }

    /* Page container — remove padding */
    .cart-layout {
        gap: 16px;
    }

    /* ---- HEADER ---- */
    .cart-header {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .cart-title {
        font-size: 18px;
        gap: 8px;
    }

    .cart-title i {
        font-size: 16px;
    }

    .cart-count {
        font-size: 11px;
        padding: 4px 12px;
    }

    /* ---- PRODUCT CARD ---- */
    .cart-product {
        flex-direction: row;
        gap: 12px;
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 10px;
        border: 1px solid #f0f0f0;
    }

    .cart-product-img {
        width: 90px;
        height: 120px;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .cart-product-detail {
        flex: 1;
        min-width: 0;
    }

    .cart-product-top {
        margin-bottom: 4px;
        gap: 4px;
    }

    .cart-product-name {
        font-size: 13px;
        font-weight: 600;
        -webkit-line-clamp: 2;
        line-height: 1.3;
    }

    .cart-product-brand {
        font-size: 11px;
        margin-top: 1px;
    }

    .cart-product-remove {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        font-size: 11px;
    }

    /* Variants compact */
    .cart-product-variants {
        margin: 4px 0;
        gap: 4px;
    }

    .cart-variant-item {
        font-size: 11px;
        gap: 3px;
    }

    .cart-variant-img {
        width: 16px;
        height: 16px;
    }

    .cart-variant-extra {
        font-size: 10px;
        padding: 1px 6px;
    }

    /* Tags compact */
    .cart-product-tags {
        margin: 4px 0;
        gap: 4px;
    }

    .cart-tag {
        font-size: 10px;
        padding: 2px 8px;
    }

    /* Parts compact */
    .cart-product-parts {
        padding: 8px 10px;
        margin: 6px 0;
        border-radius: 8px;
    }

    .cart-parts-title {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .cart-part-row {
        font-size: 11px;
    }

    /* ---- BOTTOM: QTY + PRICE ---- */
    .cart-product-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding-top: 8px;
        margin-top: 6px;
    }

    .cart-qty {
        border-radius: 8px;
    }

    .cart-qty-btn {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .cart-qty-input {
        width: 36px;
        height: 30px;
        font-size: 13px;
    }

    .cart-product-price {
        text-align: right;
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
    }

    .cart-price-old {
        font-size: 11px;
    }

    .cart-price-current {
        font-size: 16px;
    }

    .cart-price-save {
        font-size: 10px;
        padding: 2px 6px;
        margin-top: 2px;
    }

    /* Member discount compact */
    .cart-member-discount {
        padding: 8px 10px;
        margin-top: 6px;
        border-radius: 8px;
    }

    .cart-member-title {
        font-size: 11px;
    }

    .cart-member-detail {
        font-size: 11px;
    }

    /* ---- COUPON SECTION ---- */
    .cart-coupon-section {
        padding: 14px;
        border-radius: 10px;
        margin-top: 12px;
    }

    .cart-coupon-header {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .cart-coupon-form {
        flex-direction: column;
        gap: 8px;
    }

    .cart-coupon-input {
        min-width: auto;
        width: 100%;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    .cart-coupon-btn {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        font-size: 13px;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .cart-coupon-remove {
        width: 100%;
        text-align: center;
        padding: 8px;
        font-size: 12px;
        border-radius: 8px;
    }

    .cart-coupon-applied {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    .cart-coupon-login-msg {
        padding: 8px 10px;
        font-size: 11px;
        border-radius: 8px;
    }

    /* Coupon suggestions */
    .cart-coupon-suggestions {
        padding: 12px;
        border-radius: 10px;
    }

    .cart-coupon-suggest-item {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px;
    }

    .cart-coupon-apply-btn {
        width: 100%;
        text-align: center;
        padding: 8px;
        font-size: 12px;
    }

    .cart-coupon-code-text {
        font-size: 11px;
    }

    .cart-coupon-discount-badge {
        font-size: 10px;
    }

    /* ---- ORDER SUMMARY ---- */
    .cart-summary {
        position: static;
        padding: 16px;
        border-radius: 10px;
    }

    .cart-summary-title {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .cart-summary-coupon {
        padding: 10px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .cart-summary-coupon-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .cart-summary-coupon-text {
        font-size: 12px;
    }

    .cart-summary-row {
        font-size: 13px;
        padding: 5px 0;
    }

    .cart-summary-total {
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 14px;
    }

    .cart-summary-total-price {
        font-size: 22px;
    }

    /* Buttons */
    .cart-checkout-btn {
        padding: 14px;
        font-size: 15px;
        border-radius: 10px;
    }

    .cart-continue-btn {
        padding: 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    /* Trust badges */
    .cart-trust-badges {
        gap: 6px;
        margin-top: 14px;
        padding-top: 14px;
    }

    .cart-trust-item {
        padding: 8px 4px;
        border-radius: 8px;
    }

    .cart-trust-item i {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .cart-trust-item span {
        font-size: 10px;
    }

    /* Payment methods */
    .cart-payment-methods {
        padding: 10px;
        margin-top: 12px;
        border-radius: 8px;
    }

    .cart-payment-methods p {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .cart-payment-icons i {
        font-size: 24px;
    }

    /* Empty cart */
    .cart-empty {
        margin: 20px auto;
        padding: 32px 20px;
        border-radius: 12px;
    }

    .cart-empty-icon {
        width: 70px;
        height: 70px;
    }

    .cart-empty-icon i {
        font-size: 28px;
    }

    .cart-empty h2 {
        font-size: 18px;
    }

    .cart-empty p {
        font-size: 13px;
    }

    .cart-empty-btn {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 8px;
    }
}

@media (max-width:768px) {
    .kat-product-price .price-amount {
        font-size: 1.1rem;
        font-weight: 700;
    }

    .kat-product-price .price-dec {
        font-size: .75rem;
        font-weight: 600;
        margin-left: -5px;
        margin-top: 4px;
    }

    .kat-product-price .price-currency {
        font-size: 1rem;
        font-weight: 600;
        margin-left: -3px;
    }

    .kat-product-price .sepette-badge .sepette-price {
        font-size: .72rem;
        font-weight: 700;
    }

    .mob-kat-title {
        font-size: 0.85rem;
    }

    .mob-kat-breadcrumb {
        font-size: 0.68rem;
    }
}

/* ===== MOBILE CHECKOUT PAGE REDESIGN ===== */
@media (max-width: 768px) {

    /* ---- PROGRESS STEPS ---- */
    .checkout-page .py-8.bg-white {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .checkout-page .py-8.bg-white .w-12.h-12 {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px;
    }

    .checkout-page .py-8.bg-white .w-20.h-1 {
        width: 30px !important;
    }

    /* ---- SECTION SPACING ---- */
    .checkout-page .py-8.md\:py-12 {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .checkout-page .container.mx-auto.px-4 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    /* ---- FORM CARDS ---- */
    .checkout-page .bg-white.rounded-3xl {
        border-radius: 14px !important;
        padding: 14px !important;
    }

    .checkout-page .bg-white.rounded-3xl h3 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
        gap: 8px !important;
    }

    .checkout-page .bg-white.rounded-3xl h3 .w-10.h-10 {
        width: 32px !important;
        height: 32px !important;
    }

    .checkout-page .bg-white.rounded-3xl h3 .w-10.h-10 i {
        font-size: 14px !important;
    }

    /* ---- FORM INPUTS ---- */
    .checkout-page input[type="text"],
    .checkout-page input[type="email"],
    .checkout-page input[type="tel"],
    .checkout-page input[type="password"],
    .checkout-page select,
    .checkout-page textarea {
        padding: 10px 12px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
    }

    .checkout-page label .text-sm.font-semibold {
        font-size: 12px !important;
        margin-bottom: 4px !important;
    }

    /* ---- ADDRESS CARDS ---- */
    .checkout-page .border-2.rounded-2xl {
        padding: 12px !important;
        border-radius: 12px !important;
    }

    .checkout-page .border-2.rounded-2xl h4 {
        font-size: 14px !important;
    }

    .checkout-page .border-2.rounded-2xl p {
        font-size: 12px !important;
    }

    /* New address button compact */
    .checkout-page .border-dashed.rounded-2xl {
        min-height: 100px !important;
        padding: 12px !important;
    }

    .checkout-page .border-dashed .w-12.h-12 {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 6px !important;
    }

    .checkout-page .border-dashed .fa-plus {
        font-size: 18px !important;
    }

    /* ---- INVOICE TYPE CARDS ---- */
    .checkout-page [name="invoiceType"]+div {
        padding: 10px !important;
    }

    .checkout-page [name="invoiceType"]+div .w-12.h-12 {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 4px !important;
    }

    .checkout-page [name="invoiceType"]+div .fa-user,
    .checkout-page [name="invoiceType"]+div .fa-building {
        font-size: 18px !important;
    }

    .checkout-page [name="invoiceType"]+div p.font-semibold {
        font-size: 13px !important;
    }

    .checkout-page [name="invoiceType"]+div p.text-xs {
        font-size: 10px !important;
    }

    /* ---- SHIPPING OPTIONS ---- */
    .checkout-page .shipping-option {
        padding: 10px !important;
        border-radius: 12px !important;
        gap: 8px !important;
    }

    .checkout-page .shipping-option .font-semibold.text-sm {
        font-size: 12px !important;
    }

    .checkout-page .shipping-option .text-xs {
        font-size: 10px !important;
    }

    .checkout-page .shipping-option [class*="min-w-"] {
        min-width: 60px !important;
        font-size: 12px !important;
    }

    /* Free cargo banner */
    .checkout-page .bg-emerald-50.border.border-emerald-200 {
        padding: 10px !important;
        border-radius: 12px !important;
    }

    /* ---- PAYMENT TABS ---- */
    .checkout-page #tabBtnCard,
    .checkout-page #tabBtnHavale {
        padding: 10px 12px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
        gap: 6px !important;
    }

    .checkout-page #tabBtnCard i,
    .checkout-page #tabBtnHavale i {
        font-size: 16px !important;
    }

    /* Card form grid (Ay/Yıl/CVV) */
    .checkout-page .grid.grid-cols-3 {
        gap: 8px !important;
    }

    /* Bank display */
    .checkout-page #bankDisplay {
        padding: 10px !important;
        gap: 8px !important;
        border-radius: 10px !important;
    }

    .checkout-page #bankDisplay .w-12.h-12 {
        width: 36px !important;
        height: 36px !important;
    }

    .checkout-page #bankDisplay p.font-semibold {
        font-size: 13px !important;
    }

    .checkout-page #bankDisplay p.text-sm {
        font-size: 11px !important;
    }

    /* Bank accounts (havale) */
    .checkout-page .w-25.h-20 {
        width: 60px !important;
        height: 40px !important;
    }

    /* Installments grid */
    .checkout-page #installmentOptions {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }

    /* ---- ORDER SUMMARY ---- */
    .checkout-page .lg\:col-span-4 .bg-white.rounded-3xl {
        padding: 14px !important;
        border-radius: 14px !important;
    }

    .checkout-page .lg\:col-span-4 h3 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    /* Product items in summary */
    .checkout-page .lg\:col-span-4 .space-y-4.mb-6 {
        max-height: 180px !important;
    }

    .checkout-page .lg\:col-span-4 .w-16.h-16 {
        width: 44px !important;
        height: 44px !important;
    }

    .checkout-page .lg\:col-span-4 .font-semibold.text-sm {
        font-size: 12px !important;
    }

    .checkout-page .lg\:col-span-4 .text-xs.text-gray-500 {
        font-size: 11px !important;
    }

    /* Totals */
    .checkout-page .lg\:col-span-4 .space-y-3.pb-4 {
        padding-bottom: 10px !important;
    }

    .checkout-page .lg\:col-span-4 .space-y-3.pb-4 span {
        font-size: 13px;
    }

    /* Grand total */
    .checkout-page #orderAmountSummary {
        font-size: 24px !important;
    }

    /* Terms */
    .checkout-page .lg\:col-span-4 .space-y-3.mb-6 label {
        gap: 8px !important;
    }

    .checkout-page .lg\:col-span-4 .space-y-3.mb-6 .text-sm {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .checkout-page .lg\:col-span-4 .space-y-3.mb-6 input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
    }

    /* Submit button */
    .checkout-page #submitBtn {
        padding: 14px !important;
        font-size: 15px !important;
        border-radius: 12px !important;
    }

    /* Security badge */
    .checkout-page .bg-green-50.rounded-xl {
        padding: 10px !important;
    }

    .checkout-page .bg-green-50.rounded-xl .text-sm {
        font-size: 12px !important;
    }

    .checkout-page .bg-green-50.rounded-xl i {
        font-size: 16px !important;
    }

    /* Payment icons */
    .checkout-page .fab.text-3xl,
    .checkout-page .fas.fa-credit-card.text-3xl {
        font-size: 24px !important;
    }

    /* Error/Warning panels */
    .checkout-page .bg-red-50,
    .checkout-page .bg-amber-50 {
        padding: 10px !important;
        border-radius: 10px !important;
    }

    .checkout-page .bg-red-50 h4,
    .checkout-page .bg-amber-50 .font-semibold {
        font-size: 14px !important;
    }

    .checkout-page .bg-red-50 p,
    .checkout-page .bg-amber-50 p {
        font-size: 12px !important;
    }

    /* ---- GRID GAP ---- */
    .checkout-page .gap-6.lg\:gap-8 {
        gap: 12px !important;
    }

    .checkout-page .space-y-6>*+* {
        margin-top: 12px !important;
    }

    /* ---- ADDRESS MODAL ---- */
    .checkout-page #adresModalPanel {
        max-width: 100% !important;
    }
}



/* Input error state (toggled by JS) */
.auth-input.input-error {
    border-color: #ef4444 !important;
    background: #fef2f2;
}

/* Validation error message */
.auth-field-error {
    color: #ef4444;
    font-size: 0.72rem;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.auth-field-error i {
    font-size: 0.7rem;
}

/* Modal slide-in animation */
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-modalIn {
    animation: modalIn 0.3s ease;
}

/* Auth Loader */
.auth-loader-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
}

.auth-loader-spinner::before,
.auth-loader-spinner::after,
.auth-loader-spinner {
    content: '';
}

.auth-loader-spinner {
    width: 14px;
    height: 14px;
    background: #e67e22;
    border-radius: 50%;
    animation: authBounce 1.4s ease-in-out infinite both;
    animation-delay: 0.16s;
    position: relative;
}

.auth-loader-spinner::before,
.auth-loader-spinner::after {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #e67e22;
    border-radius: 50%;
    animation: authBounce 1.4s ease-in-out infinite both;
}

.auth-loader-spinner::before {
    left: -22px;
    animation-delay: 0s;
}

.auth-loader-spinner::after {
    left: 22px;
    animation-delay: 0.32s;
}

@keyframes authBounce {

    0%,
    80%,
    100% {
        transform: scale(0.4);
        opacity: 0.4;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes authLoaderFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes authLoaderFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* ============================================
   MODAL – Adres Ekleme/Düzenleme (Slide-in)
   ============================================ */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #faf6ed;
}

.modal-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 4px;
    border-radius: 8px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #333;
}

.modal-body {
    padding: 24px;
}

.modal-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7280;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.modal-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 14px;
}

.modal-check-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.modal-hidden {
    display: none !important;
}

/* ---------- Auth Fields (Modal Form Inputs) ---------- */
.auth-field {
    margin-bottom: 12px;
}

.auth-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.auth-label-req {
    color: #ef4444;
}

.auth-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.auth-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 14px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-input-wrap:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.auth-input-wrap .material-symbols-outlined {
    color: #9ca3af;
    font-size: 20px;
    flex-shrink: 0;
}

.auth-input-wrap input,
.auth-input-wrap select,
.auth-input-wrap textarea {
    width: 100%;
    border: none;
    outline: none;
    padding: 11px 0;
    font-size: 0.88rem;
    color: #1f2937;
    background: transparent;
    font-family: inherit;
}

.auth-input-wrap select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.auth-input-wrap input::placeholder,
.auth-input-wrap textarea::placeholder {
    color: #9ca3af;
}

.auth-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #374151;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background 0.2s;
}

.auth-check:hover {
    background: #f9fafb;
}

.auth-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.auth-field-hint {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 6px;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
    background: linear-gradient(135deg, #d4b85a, var(--gold));
}

.auth-btn:disabled {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 640px) {
    .auth-field-row {
        grid-template-columns: 1fr;
    }
}

.dinamik ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--danger) !important;
    font-weight: 700 !important;
}