/* ==========================================================================
   PREMIUM DEKOR - ULTRA-LUXURY PLISE PERDE DESIGN SYSTEM
   Modern, Responsive, Glassmorphism, Luxury Navy & Gold Aesthetic
   ========================================================================== */

:root {
    /* Brand Colors (From User Logo & Luxury Palette) */
    --primary-900: #061320;
    --primary-800: #0a1e33;
    --primary-700: #0e2a47;
    --primary-600: #14385d;
    --primary-500: #1b4b7a;
    
    /* Gold & Champagne Luxury Accents */
    --gold-100: #fcf6e8;
    --gold-200: #f5e4ba;
    --gold-300: #edd18c;
    --gold-400: #e3bd5e;
    --gold-500: #c99b27;
    --gold-600: #a97e17;
    --gold-gradient: linear-gradient(135deg, #dfba53 0%, #fae8a4 50%, #b8861d 100%);
    --gold-gradient-hover: linear-gradient(135deg, #edd18c 0%, #fff2be 50%, #c99b27 100%);
    --gold-glow: 0 8px 24px rgba(201, 155, 39, 0.25);
    
    /* Neutrals & Slate */
    --bg-dark: #07111c;
    --bg-surface: #0b1a2b;
    --bg-surface-elevated: #11243b;
    --bg-light: #f8fafc;
    --bg-card-light: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --text-light-muted: #94a3b8;
    --border-dark: rgba(212, 175, 55, 0.18);
    --border-light: #e2e8f0;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Layout & Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 60px rgba(6, 19, 32, 0.25);
    
    /* Transitions */
    --transition-fast: 0.18s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-800);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   TOP NOTIFICATION BAR & HEADER
   ========================================================================== */
.top-bar {
    background-color: var(--primary-900);
    color: var(--gold-200);
    font-size: 0.84rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.badge-gold {
    background: var(--gold-gradient);
    color: var(--primary-900);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    color: var(--gold-200);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.top-bar-link:hover {
    color: #ffffff;
}

/* Main Navigation Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all var(--transition-normal);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 94px;
}

.logo-brand {
    display: flex;
    align-items: center;
}

.logo-brand img {
    height: 74px;
    max-height: 78px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-fast);
}

.logo-brand:hover img {
    transform: scale(1.03);
}

.brand-text-block {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-800);
    letter-spacing: 0.04em;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--gold-600);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-700);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-600);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gold-600);
    font-size: 0.82rem;
}

.language-switcher select {
    min-width: 54px;
    padding: 7px 6px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--primary-900);
    font-size: 0.76rem;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 720px) {
    .language-switcher select {
        min-width: 48px;
        padding: 6px 4px;
    }
}

.btn-icon-cart {
    position: relative;
    background: var(--bg-surface-elevated);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.btn-icon-cart:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold-gradient);
    color: var(--primary-900);
    font-weight: 800;
    font-size: 0.72rem;
    min-width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-900);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    box-shadow: var(--gold-glow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.btn-primary:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 155, 39, 0.35);
}

.btn-secondary {
    background: var(--primary-800);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-500);
    border: 1.5px solid var(--gold-400);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: var(--primary-900);
    border-color: transparent;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    color: var(--primary-800);
    font-size: 1.6rem;
}

/* ==========================================================================
   HERO SECTION - LUXURY ARCHITECTURAL PRESENTATION
   ========================================================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 50%, #061320 100%);
    color: #ffffff;
    padding: 80px 0 110px;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(#d4af37 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    color: var(--gold-300);
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h4 {
    color: var(--gold-300);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.stat-item p {
    color: var(--text-light-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-visual-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    background: var(--bg-surface);
}

.hero-visual-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-visual-card:hover img {
    transform: scale(1.03);
}

.hero-floating-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(10, 30, 51, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.floating-tag-text h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.floating-tag-text p {
    color: var(--gold-300);
    font-size: 0.8rem;
}

/* ==========================================================================
   FEATURES / TRUST BAR
   ========================================================================== */
.trust-features-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-card {
    background: #ffffff;
    padding: 26px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all var(--transition-normal);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-400);
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gold-100);
    color: var(--gold-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.trust-content h4 {
    font-size: 1rem;
    color: var(--primary-800);
    margin-bottom: 4px;
}

.trust-content p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 54px;
}

.section-tag {
    display: inline-block;
    color: var(--gold-600);
    font-weight: 700;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.35rem;
    color: var(--primary-900);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   FABRIC CATALOG & CARD GRID
   ========================================================================== */
.catalog-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-tab-btn {
    background: #ffffff;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.filter-tab-btn:hover {
    border-color: var(--gold-400);
    color: var(--primary-800);
}

.filter-tab-btn.active {
    background: var(--primary-800);
    color: #ffffff;
    border-color: var(--primary-800);
    box-shadow: 0 4px 14px rgba(10, 30, 51, 0.2);
}

.fabrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.fabric-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.fabric-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-300);
}

.fabric-card-header {
    position: relative;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--border-light);
}

.fabric-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold-gradient);
    color: var(--primary-900);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.fabric-card-title {
    font-size: 1.25rem;
    color: var(--primary-800);
    margin-bottom: 6px;
}

.fabric-opacity-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    color: var(--primary-600);
    font-weight: 600;
}

.fabric-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fabric-description {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.55;
}

.fabric-spec-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.spec-tag {
    background: #f1f5f9;
    color: var(--primary-700);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fabric-color-palette {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.palette-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.color-dots-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color-dot-item {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform var(--transition-fast);
    position: relative;
}

.color-dot-item:hover {
    transform: scale(1.2);
    z-index: 5;
}

.fabric-card-footer {
    padding: 18px 24px;
    background: #fafafa;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fabric-price-wrap .price-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.fabric-price-wrap .price-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-800);
}

.btn-select-fabric {
    background: var(--primary-800);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.btn-select-fabric:hover {
    background: var(--gold-gradient);
    color: var(--primary-900);
}

/* ==========================================================================
   MEASUREMENT & INSTALLATION GUIDE SECTION
   ========================================================================== */
.guide-section {
    background: #f8fafc;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.guide-step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-step-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 22px 24px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.guide-step-card:hover {
    border-color: var(--gold-400);
    transform: translateX(6px);
}

.step-num {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--primary-800);
    color: var(--gold-300);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.05rem;
    color: var(--primary-800);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.guide-visual-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.guide-visual-box img {
    border-radius: var(--radius-md);
    width: 100%;
    margin-bottom: 20px;
}

.alert-tip {
    background: var(--gold-100);
    border-left: 4px solid var(--gold-500);
    padding: 16px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.86rem;
    color: var(--primary-900);
}

/* ==========================================================================
   ORDER TRACKING PORTAL (MÜŞTERİ SİPARİŞ SORGULAMA)
   ========================================================================== */
.tracking-section {
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.tracking-card-container {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(11, 26, 43, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.tracking-search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.tracking-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.tracking-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.tracking-input:focus {
    border-color: var(--gold-400);
    background: rgba(255, 255, 255, 0.12);
}

.tracking-result-box {
    display: none;
    background: rgba(6, 19, 32, 0.6);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.4s ease;
}

.tracking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 36px 0 24px;
}

.tracking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.tracking-step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: #11243b;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.tracking-step-item.completed .step-circle {
    background: var(--gold-gradient);
    color: var(--primary-900);
    border-color: var(--gold-300);
    box-shadow: 0 0 16px rgba(201, 155, 39, 0.5);
}

.tracking-step-item.active .step-circle {
    background: #ffffff;
    color: var(--primary-900);
    border-color: var(--gold-400);
    animation: pulseGlow 1.5s infinite;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light-muted);
}

.tracking-step-item.completed .step-label,
.tracking-step-item.active .step-label {
    color: #ffffff;
}

/* ==========================================================================
   CART DRAWER & CHECKOUT MODAL (IBAN ONLY)
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 19, 32, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 100%;
    max-width: 460px;
    height: 100%;
    background: #ffffff;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transition: right var(--transition-normal);
}

.cart-drawer-overlay.open .cart-drawer {
    right: 0;
}

.cart-drawer-header {
    padding: 22px 24px;
    background: var(--primary-800);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    color: #ffffff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-close-drawer {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.btn-close-drawer:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item-card {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border-light);
    position: relative;
}

.cart-item-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-800);
}

.btn-remove-item {
    color: var(--danger);
    background: none;
    font-size: 0.85rem;
    padding: 4px;
}

.cart-item-details {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary-800);
    border-top: 1px dashed var(--border-light);
    padding-top: 10px;
}

.cart-drawer-footer {
    padding: 22px 24px;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.shipping-progress-box {
    margin: 0 0 14px;
    padding: 11px 13px;
    border: 1px solid #fde68a;
    border-radius: var(--radius-sm);
    background: #fffbeb;
}

.shipping-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--primary-800);
    font-size: 0.78rem;
    font-weight: 700;
}

.shipping-progress-head strong {
    color: var(--gold-600);
}

.shipping-progress-track {
    height: 7px;
    margin: 8px 0 6px;
    overflow: hidden;
    border-radius: var(--radius-full);
    background: #fef3c7;
}

.shipping-progress-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--gold-gradient);
    transition: width 0.35s ease;
}

.shipping-progress-box small {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.4;
}

.delivery-estimate-box,
.checkout-delivery-estimate {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: #eff6ff;
    color: #1e40af;
    font-size: 0.78rem;
    line-height: 1.45;
}

.delivery-estimate-box {
    margin-bottom: 10px;
}

.cart-saved-info {
    display: block;
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 0.72rem;
}

.cart-saved-info i {
    margin-right: 4px;
    color: var(--gold-600);
}

.delivery-estimate-box i,
.checkout-delivery-estimate i {
    margin-top: 2px;
    color: #2563eb;
}

.checkout-delivery-estimate {
    margin-bottom: 18px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-summary-row.total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-800);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

/* Modal Dialogs */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 19, 32, 0.75);
    backdrop-filter: blur(10px);
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all var(--transition-normal);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalPop 0.3s ease;
}

.modal-header {
    padding: 22px 28px;
    background: var(--primary-800);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #ffffff;
    font-size: 1.25rem;
}

.modal-body {
    padding: 28px;
}

/* Bank IBAN Cards */
.bank-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 20px 0;
}

.bank-iban-card {
    background: #f8fafc;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.bank-iban-card:hover {
    border-color: var(--gold-400);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

/* Mesafeli satış sözleşmesi ve zorunlu müşteri onayı */
.sales-contract-section {
    margin-top: 22px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: #fffbeb;
    overflow: hidden;
}

.sales-contract-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: #fef3c7;
}

.sales-contract-heading h4 {
    margin: 0;
    color: var(--primary-900);
    font-size: 1rem;
}

.sales-contract-heading h4 i {
    color: var(--gold-600);
    margin-right: 6px;
}

.btn-contract-toggle {
    border: 1px solid var(--gold-500);
    background: #ffffff;
    color: var(--primary-900);
    border-radius: var(--radius-sm);
    padding: 7px 11px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.sales-contract-text {
    max-height: 270px;
    overflow-y: auto;
    padding: 16px;
    background: #ffffff;
    color: var(--primary-900);
    font-size: 0.78rem;
    line-height: 1.55;
}

.sales-contract-text h5 {
    margin: 14px 0 5px;
    color: var(--primary-800);
    font-size: 0.84rem;
}

.sales-contract-text p {
    margin: 0 0 8px;
}

.contract-draft-note {
    padding: 10px 12px;
    border-left: 3px solid var(--gold-500);
    background: #fffbeb;
    color: #92400e;
}

.contract-consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    color: var(--primary-900);
    font-size: 0.82rem;
    line-height: 1.45;
    cursor: pointer;
}

.contract-consent-row input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--gold-600);
}

.contract-consent-row:has(input:checked) {
    background: #ecfdf5;
}

.cod-confirmation-box {
    margin: -4px 0 18px;
    padding: 12px 14px;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-sm);
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 0.78rem;
    line-height: 1.45;
}

.cod-confirmation-box[hidden] {
    display: none;
}

.cod-confirmation-box label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
}

.cod-confirmation-box input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: #2563eb;
}

.cod-confirmation-box small {
    display: block;
    margin: 8px 0 0 27px;
    color: #1d4ed8;
}

.iban-qr-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-sm);
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 0.78rem;
    line-height: 1.4;
}

.iban-qr-box[hidden] {
    display: none;
}

.iban-qr-box img {
    width: 112px;
    height: 112px;
    flex: 0 0 auto;
    border-radius: 6px;
    background: #ffffff;
}

.iban-qr-box strong,
.iban-qr-box small {
    display: block;
}

.iban-qr-box small {
    margin-top: 5px;
    color: #1e40af;
}

@media (max-width: 560px) {
    .sales-contract-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .btn-contract-toggle {
        width: 100%;
    }
}

.bank-info h5 {
    font-size: 0.98rem;
    color: var(--primary-800);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-holder {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 2px 0 6px;
}

.iban-code-text {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-900);
    letter-spacing: 0.05em;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    display: inline-block;
}

.btn-copy-iban {
    background: var(--gold-100);
    color: var(--gold-600);
    border: 1px solid var(--gold-300);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.btn-copy-iban:hover {
    background: var(--gold-gradient);
    color: var(--primary-900);
}

.order-success-code-box {
    background: var(--gold-100);
    border: 2px dashed var(--gold-400);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
    margin-bottom: 24px;
}

.order-code-highlight {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-900);
    letter-spacing: 0.08em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: var(--primary-900);
    color: var(--text-light-muted);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-light-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-300);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.88rem;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--gold-400);
    font-size: 1.1rem;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.84rem;
}

.btn-admin-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-admin-link:hover {
    color: var(--gold-300);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--primary-900);
    color: #ffffff;
    border-left: 4px solid var(--gold-400);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.3s ease;
}

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

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes modalPop {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 36px;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .trust-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .guide-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .trust-features-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .tracking-steps {
        flex-direction: column;
        gap: 20px;
    }
    .tracking-steps::before {
        display: none;
    }
}

/* Fabric Modal Color Cards */
.fabric-modal-color-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.fabric-modal-color-card:hover {
    border-color: var(--gold-400);
    transform: translateY(-2px);
    background: #ffffff;
}

.fabric-modal-color-card.selected {
    border-color: var(--gold-500);
    background: var(--gold-100);
    box-shadow: 0 0 0 2px var(--gold-400);
}



/* ==========================================================================\n   MOBILE UX OPTIMIZATION PASS\n   Prevent horizontal shifts, improve touch targets and compact dense flows.\n   ========================================================================== */
html {
    overflow-x: clip;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .top-bar {
        padding: 7px 0;
        font-size: 0.72rem;
    }

    .top-bar-inner,
    .top-bar-left,
    .top-bar-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 7px 10px;
        text-align: center;
    }

    .top-bar-left > span,
    .top-bar-link {
        line-height: 1.35;
        white-space: normal;
    }

    .badge-gold {
        font-size: 0.62rem;
        padding: 3px 8px;
    }

    .main-header .header-inner {
        height: 68px;
        gap: 8px;
    }

    .logo-brand {
        min-width: 0;
        flex: 1 1 auto;
    }

    .logo-brand img {
        width: auto;
        max-width: 118px;
        height: 52px;
    }

    .header-actions {
        flex: 0 0 auto;
        gap: 6px;
    }

    .language-switcher {
        gap: 0;
        font-size: 0;
    }

    .language-switcher i {
        display: none;
    }

    .language-switcher select {
        min-width: 50px;
        min-height: 40px;
        padding: 6px 4px;
        font-size: 0.72rem;
    }

    .btn-icon-cart,
    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }

    .btn-icon-cart {
        flex: 0 0 42px;
    }

    .header-actions > .btn-primary {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-full);
        background: rgba(10, 30, 51, 0.06);
    }

    .main-header nav {
        position: static;
    }

    .main-header .nav-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        z-index: 1001;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 10px 16px 14px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 14px 26px rgba(6, 19, 32, 0.12);
    }

    .main-header .nav-menu.open {
        display: flex;
    }

    .main-header .nav-menu li,
    .main-header .nav-link {
        width: 100%;
    }

    .main-header .nav-link {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 10px 12px;
        border-radius: var(--radius-sm);
        font-size: 0.88rem;
    }

    .main-header .nav-link:hover,
    .main-header .nav-link.active {
        background: var(--gold-100);
    }

    .main-header .nav-link::after {
        display: none;
    }

    .hero-section {
        padding: 52px 0 72px;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8.5vw, 2.4rem);
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .hero-title br {
        display: none;
    }

    .hero-badge-pill {
        max-width: 100%;
        padding: 6px 10px;
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 26px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-outline-gold {
        width: 100% !important;
        min-height: 48px;
        justify-content: center;
        padding: 13px 14px !important;
        font-size: 0.92rem !important;
        line-height: 1.3;
        text-align: center;
        white-space: normal;
    }

    .hero-stats {
        gap: 8px;
        padding-top: 22px;
    }

    .stat-item h4 {
        font-size: 1.35rem;
    }

    .stat-item p {
        font-size: 0.7rem;
        line-height: 1.25;
    }

    .hero-visual-card img {
        height: 280px;
    }

    .hero-floating-tag {
        left: 10px;
        right: 10px;
        bottom: 10px;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 12px;
    }

    .floating-tag-text {
        min-width: 0;
    }

    .floating-tag-text h5 {
        font-size: 0.82rem;
    }

    .floating-tag-text p {
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .hero-floating-tag .badge-gold {
        flex: 0 0 auto;
        font-size: 0.58rem;
        white-space: nowrap;
    }

    .trust-features-section {
        margin-top: -24px;
    }

    .trust-card {
        gap: 12px;
        padding: 16px;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .trust-content h4 {
        font-size: 0.9rem;
    }

    .trust-content p {
        font-size: 0.78rem;
    }

    .section {
        padding: 58px 0;
    }

    .section-header {
        margin-bottom: 30px;
        padding: 0 4px;
    }

    .section-title {
        font-size: clamp(1.55rem, 7vw, 2rem);
        line-height: 1.18;
    }

    .section-desc {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .catalog-filter-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 4px 8px;
        margin: 0 -4px 24px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .catalog-filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tab-btn {
        flex: 0 0 auto;
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .fabrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fabric-card-header,
    .fabric-card-body {
        padding: 16px;
    }

    .fabric-badge {
        top: 14px;
        right: 14px;
    }

    .fabric-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px 16px;
    }

    .fabric-card-footer .btn-primary,
    .fabric-card-footer .btn-outline-gold {
        width: 100% !important;
        min-height: 44px;
        justify-content: center;
    }

    .guide-grid {
        gap: 20px;
    }

    .tracking-card-container {
        padding: 20px 16px;
    }

    .tracking-search-bar {
        flex-direction: column;
        gap: 10px;
    }

    .tracking-input,
    .tracking-search-bar .btn-primary {
        width: 100%;
    }

    .tracking-search-bar .btn-primary {
        justify-content: center;
    }

    .tracking-input {
        padding: 12px 16px;
    }

    .tracking-result-box {
        padding: 18px 14px;
    }

    .step-label {
        font-size: 0.74rem;
    }

    .cart-drawer {
        width: 100%;
        max-width: none;
        right: -100%;
    }

    .cart-drawer-header {
        padding: 14px 16px;
    }

    .cart-drawer-header h3 {
        min-width: 0;
        font-size: 1rem;
    }

    .cart-items-list {
        padding: 14px 16px;
        gap: 12px;
    }

    .cart-item-card {
        padding: 14px;
    }

    .cart-drawer-footer {
        max-height: 42dvh;
        overflow-y: auto;
        padding: 14px 16px;
    }

    .cart-summary-row {
        gap: 12px;
        font-size: 0.82rem;
    }

    .cart-summary-row span:last-child {
        text-align: right;
        overflow-wrap: anywhere;
    }

    .cart-summary-row.total {
        font-size: 1.08rem;
    }

    .cart-drawer-footer .btn-primary,
    .cart-drawer-footer .btn-secondary {
        width: 100%;
        min-height: 46px;
        justify-content: center;
    }

    .modal-overlay {
        align-items: flex-start;
        padding: 8px;
    }

    .modal-box {
        width: 100%;
        max-width: none;
        max-height: calc(100dvh - 16px);
        border-radius: 14px;
    }

    .modal-header {
        min-height: 58px;
        padding: 14px 16px;
    }

    .modal-header h3 {
        max-width: calc(100% - 44px);
        font-size: 1rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .modal-body {
        padding: 16px;
    }

    #checkoutPaymentNotice,
    #checkoutDeliveryEstimate {
        font-size: 0.76rem !important;
        line-height: 1.45;
    }

    #checkoutPaymentMethodOptions {
        grid-template-columns: 1fr !important;
    }

    .bank-iban-card {
        min-width: 0;
        padding: 12px !important;
    }

    .bank-iban-card span,
    .bank-iban-card strong,
    .bank-iban-card small {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .sales-contract-heading {
        padding: 12px;
    }

    .sales-contract-heading h4 {
        font-size: 0.9rem;
    }

    .sales-contract-text {
        max-height: 35vh;
        padding: 12px;
        font-size: 0.74rem;
    }

    .contract-consent-row {
        padding: 12px;
        font-size: 0.75rem;
    }

    .cod-confirmation-box {
        font-size: 0.74rem;
    }

    .iban-qr-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .iban-qr-box img {
        width: 128px;
        height: 128px;
    }

    .modal-body form button[type="submit"] {
        min-height: 48px;
        font-size: 0.92rem !important;
    }

    .toast-container {
        left: 12px;
        right: 12px;
        bottom: 14px;
    }

    .toast {
        width: 100%;
        max-width: none;
    }

    #fabricModalContent > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    #fabricModalContent [style*="height:280px"] {
        height: 220px !important;
    }
}

@media (max-width: 400px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo-brand img {
        max-width: 104px;
        height: 48px;
    }

    .language-switcher select {
        min-width: 46px;
    }

    .btn-icon-cart,
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .hero-stats {
        gap: 5px;
    }

    .stat-item h4 {
        font-size: 1.18rem;
    }

    .stat-item p {
        font-size: 0.64rem;
    }
}


@media (max-width: 768px) {
    body.mobile-menu-open {
        overflow: hidden;
    }
}


@media (max-width: 768px) {
    body.drawer-open,
    body.modal-open {
        overflow: hidden;
    }
}
