/* ==========================================================================
   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: 84px;
}

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

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

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

.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;
}

.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);
}

.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);
}

.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);
}

