/* ============================================
   Taxi-Druckerei.de - Modern Light Design 2024
   Clean, Professional, White Theme
   ============================================ */

/* CSS Variables - Clean Light Palette */
:root {
    /* Primary Colors - Taxi Yellow/Gold */
    --primary: #F59E0B;
    --primary-hover: #D97706;
    --primary-light: #FEF3C7;
    --primary-dark: #B45309;
    
    /* Light Theme Colors */
    --white: #FFFFFF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-accent: #F3F4F6;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    
    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    
    /* Accent Colors */
    --accent-blue: #3B82F6;
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --accent-purple: #8B5CF6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --gradient-hero: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    --gradient-subtle: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    
    /* Shadows - Soft & Modern */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 25px rgba(245, 158, 11, 0.25);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a:hover {
    color: var(--primary-hover);
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Buttons - Clean Modern Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.35);
}

.btn-paypal {
    background: #0070ba;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 112, 186, 0.3);
}

.btn-paypal:hover {
    background: #005ea6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 112, 186, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-block {
    width: 100%;
}

/* ============================================
   Header - Clean & Minimal
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
    color: var(--primary);
}

.logo:hover {
    color: var(--text-primary);
}

.logo span {
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 10px 18px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.cart-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.cart-icon:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.cart-icon i {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   Hero Section - Clean & Inviting
   ============================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: #2D3748;
    position: relative;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-badge .counter {
    display: inline;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-number .counter {
    display: inline;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* ============================================
   Info Section - Clean Cards
   ============================================ */
.info-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.info-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.info-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.info-box > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-points {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.info-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.info-point:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateX(5px);
}

.info-point i {
    font-size: 1.4rem;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-point i.fa-info-circle {
    color: var(--accent-blue);
}

.info-point p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-highlight {
    background: #F59E0B;
    padding: 30px;
    border-radius: var(--radius-lg);
    color: #FFFFFF !important;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.7;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* ============================================
   Products Section - Modern Cards
   ============================================ */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Product Card - Clean Modern Style */
.product-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    z-index: 10;
    box-shadow: var(--shadow-primary);
}

.product-badge.sale {
    background: var(--accent-red);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.product-image {
    height: 260px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

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

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

.product-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    position: relative;
    padding-left: 28px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1rem;
}

/* Price Table */
.price-table {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.highlight {
    background: var(--primary);
    margin: 12px -20px -20px;
    padding: 16px 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 700;
    color: var(--white);
}

.price-row .price {
    font-weight: 700;
    color: var(--primary);
}

.price-row.highlight .price {
    color: var(--white);
}

/* Product Price Display */
.product-price {
    margin-bottom: 24px;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
    margin-right: 12px;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.price-info {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Product Order */
.product-order {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
    margin-top: auto;
}

.product-order label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.quantity-select,
.quantity-input {
    padding: 14px 18px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-primary);
    min-width: 120px;
    transition: var(--transition);
    cursor: pointer;
}

.quantity-input {
    width: 90px;
    text-align: center;
}

.quantity-select:focus,
.quantity-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.add-to-cart {
    flex: 1;
    min-width: 180px;
}

/* Product Meta */
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
}

.availability {
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 6px;
}

.delivery {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   Info Badges - Trust Indicators
   ============================================ */
.info-badges {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.badge-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.badge-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.badge-item > i {
    font-size: 3rem;
    color: var(--primary);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.payment-icons i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    transition: var(--transition);
}

.payment-icons i:hover {
    transform: scale(1.15);
    color: var(--primary);
}

/* ============================================
   Cart Sidebar - Modern Clean
   ============================================ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    z-index: 1999;
    transition: var(--transition);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--white);
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.cart-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-header h3 i {
    color: var(--primary);
}

.cart-close {
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.cart-items {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 60px 20px;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--primary);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    font-size: 1rem;
}

.cart-item-remove:hover {
    color: var(--accent-red);
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.cart-subtotal,
.cart-shipping,
.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
}

.cart-total span:last-child {
    color: var(--primary);
}

/* ============================================
   Checkout Page Styles
   ============================================ */
.checkout-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--bg-secondary);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.checkout-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.checkout-form h2 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group label .required {
    color: var(--accent-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* Payment Methods */
.payment-methods {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.payment-methods h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover,
.payment-option.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.payment-icon {
    font-size: 2rem;
    color: var(--accent-blue);
}

.payment-details h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.payment-details p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

#paypal-button-container {
    margin-top: 20px;
    min-height: 50px;
}

.bank-details {
    margin-top: 20px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    display: none;
}

.bank-details.active {
    display: block;
}

.bank-details h4 {
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.bank-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

/* Order Summary Sidebar */
.order-summary {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-md);
}

.order-summary h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.order-items {
    margin-bottom: 24px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

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

.order-totals {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.order-totals .row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-secondary);
}

.order-totals .row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid var(--border);
}

.order-totals .row.total span:last-child {
    color: var(--primary);
}

/* ============================================
   Confirmation Page
   ============================================ */
.confirmation-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--bg-secondary);
}

.confirmation-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon i {
    font-size: 3rem;
    color: var(--accent-green);
}

.confirmation-box h1 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 16px;
}

.confirmation-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.order-number {
    background: var(--primary-light);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}

.order-number span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.order-number strong {
    font-size: 1.5rem;
    color: var(--primary);
}

/* ============================================
   Footer - Clean Modern
   ============================================ */
.footer {
    background: var(--text-primary);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-flex;
    color: var(--white);
}

.footer-brand .logo span {
    color: var(--white);
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

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

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

/* ============================================
   Cookie Banner - Modern
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    z-index: 3000;
    transform: translateY(100%);
    transition: var(--transition-slow);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cookie-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex: 1;
    min-width: 300px;
}

.cookie-links {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.cookie-links a {
    font-size: 0.85rem;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

/* ============================================
   Page Content - Legal Pages
   ============================================ */
.page-content {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: var(--white);
}

.page-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--primary);
}

.page-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.page-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--text-primary);
}

.page-content p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
    color: var(--text-secondary);
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-content a {
    color: var(--primary);
}

.page-content a:hover {
    text-decoration: underline;
}

.contact-info {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 8px;
}

/* ============================================
   Toast Notifications
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 18px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 4000;
    opacity: 0;
    transition: var(--transition);
    font-weight: 500;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), var(--white));
}

.toast.error {
    border-color: var(--accent-red);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), var(--white));
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-stats {
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .info-box {
        padding: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .cart-sidebar {
        max-width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-form,
    .order-summary {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        height: 70px;
    }
    
    .logo span {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .product-order {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity-select,
    .quantity-input {
        width: 100%;
    }
    
    .add-to-cart {
        width: 100%;
    }
    
    .confirmation-box {
        padding: 40px 24px;
    }
}
