/* assets/css/style.css */
/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
    --primary: #c4a484;
    --primary-dark: #a58e7c;
    --secondary: #2c3e50;
    --accent: #8e6b4f;
    --dark: #1a1a1a;
    --light: #f8f8f8;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --border-radius: 4px;
    --transition: all 0.3s ease;
}

/* =========================================================
   GLOBAL RESET
========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

/* =========================================================
   HEADER (legacy + professional combined)
========================================================= */

header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    margin: 0 1rem;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}



/* Overlay - 90% weiß transparent */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); /* 90% weiß transparent */
    backdrop-filter: blur(5px); /* Optional: leichter Blur-Effekt */
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    border-top: 3px solid var(--primary);
    position: relative;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cookie-text {
    flex: 2;
}

.cookie-text h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.cookie-text p {
    line-height: 1.6;
    color: var(--text);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-buttons .btn {
    min-width: 150px;
    padding: 0.8rem 1.5rem;
}

/* Verhindern von Klicks auf den Hintergrund */
.cookie-overlay.active {
    display: flex;
}

/* Verhindern von Scrollen im Hintergrund */
body.cookie-active {
    overflow: hidden;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1.5rem;
        width: 95%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}

        /* Toast Message Styles (optional - kann auch in style.css) */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
        }

        .toast {
            min-width: 300px;
            padding: 1rem 1.5rem;
            margin-bottom: 0.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-hover);
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: slideIn 0.3s ease;
            position: relative;
            border-left: 4px solid;
        }

.toast.info {
    background: #d1ecf1;
    color: #0c5460;
    border-left-color: #17a2b8;
}

        .toast.success {
            background: #d4edda;
            color: #155724;
            border-left-color: #28a745;
        }

        .toast.error {
            background: #f8d7da;
            color: #721c24;
            border-left-color: #dc3545;
        }

        .toast i {
            font-size: 1.2rem;
        }

        .toast-message {
            flex: 1;
            font-size: 0.95rem;
        }

        .toast-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: inherit;
            opacity: 0.5;
            transition: opacity 0.3s;
            padding: 0 0.5rem;
        }

        .toast-close:hover {
            opacity: 1;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }

        .toast.fade-out {
            animation: slideOut 0.3s ease forwards;
        }

        /* Professional Header Styles */
        .site-header {
            background: var(--white);
            border-bottom: 1px solid var(--gray-light);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--dark);
            text-transform: uppercase;
        }

        .main-nav {
            display: flex;
            gap: 2.5rem;
        }

        .main-nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        .main-nav a:hover {
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .header-actions a {
            text-decoration: none;
            color: var(--text);
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .header-actions a:hover {
            color: var(--primary);
        }

        .cart-icon {
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--primary);
            color: white;
            font-size: 0.7rem;
            font-weight: 600;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Mobile Menu Styles */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
            padding: 0.5rem;
        }

        .mobile-menu-toggle:hover {
            color: var(--primary);
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            padding: 1rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            z-index: 99;
            border-top: 1px solid var(--gray-light);
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav a {
            display: block;
            padding: 1rem;
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            border-bottom: 1px solid var(--gray-light);
            transition: background 0.3s;
        }

        .mobile-nav a:hover {
            background: var(--light);
            color: var(--primary);
        }

        .mobile-nav a:last-child {
            border-bottom: none;
        }


.hide-mobile {
    display: block;
}

.hide-desktop {
    display: none;
}


        /* Responsive */
        @media (max-width: 768px) {
            .hide-mobile {
                display: none !important;
            }

            .hide-desktop {
                display: block !important;
            }


            .main-nav {
                display: none;
            }

            .nav-links {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            
            .header-container {
                position: relative;
            }
            
            .logo {
                flex: 1;
            }
        }
        
   
/* Main Content */
.container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}



.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



/* Cart Page */
.cart-items {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cart-items th,
.cart-items td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cart-items th {
    background-color: var(--light-color);
}

.quantity-input {
    width: 60px;
    padding: 0.3rem;
}

.cart-total {
    text-align: right;
    font-size: 1.3rem;
    margin-top: 1rem;
}

/* Checkout Form */
.checkout-form {
    max-width: 600px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

/* Payment Methods */
.payment-methods {
    margin: 2rem 0;
}

.payment-option {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option input[type="radio"] {
    margin-right: 1rem;
}

/* Admin Panel */
.admin-header {
    background-color: var(--dark-color);
    color: white;
    padding: 1rem;
}

.admin-nav {
    background-color: #34495e;
    padding: 1rem;
}

.admin-nav a {
    color: white;
    margin-right: 1rem;
    text-decoration: none;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.admin-table th,
.admin-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.admin-table th {
    background-color: var(--light-color);
}

.status-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending { background-color: var(--warning-color); color: white; }
.status-processing { background-color: #3498db; color: white; }
.status-completed { background-color: var(--primary-color); color: white; }
.status-cancelled { background-color: var(--danger-color); color: white; }

/* =========================================================
   Footer Style
========================================================= */
footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {

    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .cart-items {
        font-size: 0.9rem;
    }
    
    .cart-items th,
    .cart-items td {
        padding: 0.5rem;
    }
}



        .site-footer {
            background: var(--light);
            border-top: 1px solid var(--gray-light);
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
        }

        .footer-section h4 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid var(--gray-light);
            color: var(--text-light);
            font-size: 0.85rem;
        }

        .footer-bottom a {
            color: var(--text-light);
            text-decoration: none;
            margin: 0 0.5rem;
        }

        .footer-bottom a:hover {
            color: var(--primary);
        }



/* =========================================================
   Index.php Style
========================================================= */
    /* Hero Section (nur auf der Startseite) */
    .hero {
        position: relative;
        height: 500px;
        background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                    url('https://mimikindermode.com/assets/images/cover.png');
        background-size: cover;
        background-position: center 20%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        margin-bottom: 4rem;
    }

    .hero-content {
        max-width: 800px;
        padding: 2rem;
    }

    .hero h1 {
        color: white;
        font-size: 3.5rem;
        font-weight: 300;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

    .hero p {
        font-size: 1.2rem;
        font-weight: 300;
        opacity: 0.9;
    }

    /* Search Section (nur auf der Startseite) */
    .search-section {
        max-width: 900px;
        margin: -2.5rem auto 3rem;
        position: relative;
        z-index: 10;
        padding: 0 2rem;
    }

    .search-form {
        display: flex;
        gap: 0.5rem;
        background: white;
        padding: 0.5rem;
        box-shadow: var(--shadow);
    }

    .search-input {
        flex: 1;
        border: 1px solid var(--gray-light);
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        outline: none;
        transition: border-color 0.3s;
        font-family: 'Inter', sans-serif;
    }

    .search-input:focus {
        border-color: var(--primary);
    }

    .category-select {
        border: 1px solid var(--gray-light);
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        background: white;
        cursor: pointer;
        outline: none;
        font-family: 'Inter', sans-serif;
        min-width: 180px;
    }

    .search-btn {
        background: var(--dark);
        color: white;
        border: none;
        padding: 1rem 2rem;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.3s;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        letter-spacing: 0.5px;
    }

    .search-btn:hover {
        background: var(--secondary);
    }

    /* Products Grid (spezifisch f端r die Startseite) */
    .products-grid {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem 4rem;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }


    .product-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: var(--primary);
        color: white;
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 10;
        border-radius: 20px;
    }

    .product-gallery {
        position: relative;
        height: 350px;
        overflow: hidden;
    }

    .gallery-container {
        display: flex;
        transition: transform 0.5s ease;
        height: 100%;
    }

    .gallery-slide {
        min-width: 100%;
        height: 100%;
    }

    .gallery-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-nav {
        position: absolute;
        bottom: 1rem;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        z-index: 2;
    }

    .gallery-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: var(--transition);
    }

    .gallery-dot.active {
        background: white;
        transform: scale(1.2);
    }

    .gallery-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 36px;
        height: 36px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        opacity: 0;
        transition: var(--transition);
        z-index: 3;
        color: var(--dark);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .product-card:hover .gallery-arrow {
        opacity: 1;
    }

    .gallery-arrow.left {
        left: 1rem;
    }

    .gallery-arrow.right {
        right: 1rem;
    }

    .gallery-arrow:hover {
        background: var(--primary);
        color: white;
    }

    .image-count-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        z-index: 2;
        border-radius: 20px;
        backdrop-filter: blur(5px);
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--dark);
    }

    .product-category {
        font-size: 0.8rem;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
    }

    .product-price {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--accent);
        margin-bottom: 0.5rem;
    }

    .product-stock {
        color: var(--text-light);
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .variant-info {
        font-size: 0.8rem;
        color: var(--text-light);
        margin-bottom: 1rem;
        padding: 0.5rem;
        background: var(--light);
        border-radius: var(--border-radius);
    }

    .btn-details {
        width: 100%;
        padding: 0.9rem;
        background: var(--primary);
        border: 1px solid var(--primary);
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: 'Inter', sans-serif;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }
    
    .btn-details:hover {
        background: transparent;
        color: var(--primary);
    }
    
    .btn-details:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Quick View Modal (nur auf der Startseite) */
    .quick-view-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        overflow-y: auto;
    }

    .quick-view-content {
        background-color: white;
        margin: 50px auto;
        padding: 2rem;
        max-width: 1000px;
        width: 90%;
        position: relative;
        border-radius: var(--border-radius);
    }

    .quick-view-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .quick-view-gallery {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .quick-view-main-image {
        width: 100%;
        aspect-ratio: 1;
        border: 1px solid var(--gray-light);
        overflow: hidden;
    }

    .quick-view-main-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .quick-view-thumbnails {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 0.5rem;
    }

    .quick-view-thumbnail {
        aspect-ratio: 1;
        border: 1px solid var(--gray-light);
        cursor: pointer;
        overflow: hidden;
    }

    .quick-view-thumbnail.active {
        border-color: var(--primary);
    }

    .quick-view-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .variant-selector {
        margin: 1.5rem 0;
    }

    .variant-options {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }

    .size-option {
        padding: 0.5rem 1rem;
        border: 1px solid var(--gray-light);
        cursor: pointer;
        transition: var(--transition);
    }

    .size-option:hover {
        border-color: var(--primary);
    }

    .size-option.selected {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    .color-option {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid transparent;
        transition: var(--transition);
    }

    .color-option:hover {
        transform: scale(1.1);
    }

    .color-option.selected {
        border-color: var(--dark);
    }

    .close-modal {
        position: absolute;
        right: 1.5rem;
        top: 1rem;
        font-size: 2rem;
        cursor: pointer;
        color: var(--gray);
        transition: color 0.3s;
        z-index: 10;
    }

    .close-modal:hover {
        color: var(--dark);
    }

    /* Track Order Button (nur auf der Startseite) */
    .track-order-container {
        max-width: 1400px;
        margin: 0 auto 4rem;
        padding: 0 2rem;
        text-align: center;
    }

    .btn-track {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: transparent;
        border: 1px solid var(--dark);
        padding: 1rem 3rem;
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: var(--transition);
    }

    .btn-track:hover {
        background: var(--dark);
        color: white;
    }

    /* Responsive Anpassungen (nur f端r startseiten-spezifische Elemente) */
    @media (max-width: 1024px) {
        .hero h1 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .hero {
            height: 400px;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 1rem;
        }

        .search-section {
            margin-top: -2rem;
        }

        .search-form {
            flex-direction: column;
        }

        .search-input, .category-select, .search-btn {
            width: 100%;
        }

        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            padding: 0 1rem;
        }

        .quick-view-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .hero {
            height: 350px;
        }

        .hero h1 {
            font-size: 1.5rem;
        }

        .products-grid {
            grid-template-columns: 1fr;
        }
    }
    

/* =========================================================
   Cart Style
========================================================= */ 


    h1 {
        font-size: 2rem;
        font-weight: 300;
        letter-spacing: 1px;
        margin-bottom: 2rem;
        color: var(--dark);
        text-transform: uppercase;
    }

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart-table th {
    text-align: left;
    padding: 1rem;
    background: var(--light);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    border-bottom: 1px solid var(--gray-light);
}

.cart-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-light);
    vertical-align: middle;
}

    .product-info-index {
        display: flex;
        align-items: center; 
        flex-direction: column;  
        padding: 1rem;
    }

    .product-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border: 1px solid var(--gray-light);
    }

    .product-name {
        font-weight: 500;
        color: var(--dark);
    }

    .product-price {
        font-weight: 500;
        color: var(--accent);
    }

    /* Varianten Info */
    .variant-info {
        font-size: 0.8rem;
        color: var(--text-light);
        margin-top: 0.3rem;
    }

    .variant-info span {
        display: inline-block;
        margin-right: 0.5rem;
    }

    .variant-info i {
        margin-right: 0.2rem;
    }

    /* Quantity Update */
    .quantity-update {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .quantity-btn {
        width: 36px;
        height: 36px;
        border: 1px solid var(--gray-light);
        background: white;
        cursor: pointer;
        transition: var(--transition);
        font-size: 1rem;
        color: var(--text);
    }

    .quantity-btn:hover:not(:disabled) {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

    .quantity-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .quantity-input {
        width: 60px;
        height: 36px;
        text-align: center;
        border: 1px solid var(--gray-light);
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
    }

    .quantity-input:focus {
        outline: none;
        border-color: var(--primary);
    }

    .btn-remove {
        color: var(--text-light);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-remove:hover {
        color: var(--accent);
    }

    .cart-summary {
        background: var(--light);
        padding: 2rem;
        margin-top: 2rem;
        text-align: right;
    }

    .summary-row {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 2rem;
        margin-bottom: 1rem;
    }

    .summary-label {
        font-weight: 500;
        color: var(--text);
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .summary-value {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--accent);
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        text-decoration: none;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: var(--transition);
        border: 1px solid transparent;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
    }

    .btn-primary {
        background: var(--dark) !important;
        color: white !important;
        border-color: var(--dark) !important;
    }

    .btn-primary:hover {
        background: transparent !important;
        color: var(--dark) !important;
    }

    .btn-secondary {
        background: transparent !important;
        color: var(--text) !important;
        border-color: var(--gray-light) !important;
    }

    .btn-secondary:hover {
        border-color: var(--dark) !important;
        background: var(--dark) !important;
        color: white !important;
    }

    .button-group {
        display: flex;
        gap: 1rem;
        justify-content: flex-end;
        margin-top: 2rem;
    }

    .empty-cart {
        text-align: center;
        padding: 4rem 2rem;
        background: var(--light);
    }

    .btn-primary i {
        padding: auto !important;
        margin-top: auto !important;
        font-size: 2rem !important;
    }
    
    .empty-cart i {
        font-size: 4rem;
        color: var(--gray-light);
        margin-bottom: 1rem;
    }

    .empty-cart h2 {
        font-weight: 300;
        margin-bottom: 1rem;
        color: var(--text);
    }

    .empty-cart p {
        color: var(--text-light);
        margin-bottom: 2rem;
    }

    .updating {
        opacity: 0.5;
        pointer-events: none;
    }

    /* Cart-spezifische responsive Anpassungen */
    @media (max-width: 768px) {
    .cart-table,
    .cart-table thead,
    .cart-table tbody,
    .cart-table th,
    .cart-table td,
    .cart-table tr {
        display: block;
    }
    
    /* Header ausblenden */
    .cart-table thead {
        display: none;
    }
    
    /* Jede Zeile wird zur Karte */
    .cart-table tbody tr {
        background: white;
        border: 1px solid var(--gray-light);
        border-radius: var(--border-radius);
        margin-bottom: 1.5rem;
        padding: 1rem;
        position: relative;
        box-shadow: var(--shadow);
    }
    
    /* Jede Zelle als Flex-Row */
    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 0;
        border-bottom: 1px dashed var(--gray-light);
    }
    
    .cart-table td:last-child {
        border-bottom: none;
    }
    

    /* Produkt-Info speziell behandeln */
    .cart-table td:first-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .cart-table td:first-child::before {
        content: "Produkt";
        margin-bottom: 0.3rem;
    }
    
    .product-info {
        width: 100%;
    }
    
    /* Bild etwas kleiner auf Mobile */
    .product-image {
        width: 60px;
        height: 60px;
    }
    
    /* Entfernen-Button rechts positionieren */
    .btn-remove {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
        .button-group {
            flex-direction: column;
        }

        .btn {
            width: 100%;
            justify-content: center;
        }

        .summary-row {
            flex-direction: column;
            gap: 0.5rem;
            align-items: flex-end;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 1rem;
        }

        h1 {
            font-size: 1.5rem;
        }

        .product-info-index {
            flex-direction: column;
            align-items: center; 
            align-items: flex-start;
            padding: 1rem;
        }
    }
    

/* =========================================================
   PRODUKTSEITEN-SPEZIFISCHE STYLES (product.php)
========================================================= */

        /* Main Container */
        .pdp-container {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        /* Product Detail Layout */
        .pdp-product-detail {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        /* Gallery */
        .pdp-product-gallery {
            position: relative;
        }

        .pdp-main-image {
            width: 100%;
            aspect-ratio: 1;
            border: 1px solid var(--gray-light);
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .pdp-main-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .pdp-thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 0.5rem;
        }

        .pdp-thumbnail {
            aspect-ratio: 1;
            border: 1px solid var(--gray-light);
            cursor: pointer;
            overflow: hidden;
            transition: var(--transition);
        }

        .pdp-thumbnail:hover {
            border-color: var(--primary);
        }

        .pdp-thumbnail.active {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px var(--primary);
        }

        .pdp-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Product Info */
        .pdp-product-info {
            padding: 1rem;
        }

        .pdp-product-category {
            font-size: 0.9rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }

        .pdp-product-title {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .pdp-product-price {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .pdp-product-description {
            margin-bottom: 2rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        /* Variant Selection */
        .pdp-variant-section {
            margin-bottom: 2rem;
        }

        .pdp-variant-label {
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .pdp-size-select {
            width: 100%;
            max-width: 300px;
            padding: 0.8rem;
            border: 1px solid var(--gray-light);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            margin-bottom: 1.5rem;
        }

        .pdp-size-select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .pdp-color-options {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .pdp-color-option {
            position: relative;
            cursor: pointer;
        }

        .pdp-color-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

        .pdp-color-box {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border: 1px solid var(--gray-light);
            transition: var(--transition);
        }

        .pdp-color-option input[type="radio"]:checked + .pdp-color-box {
            border-color: var(--primary);
            background: var(--light);
        }

        .pdp-color-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            border: 1px solid var(--gray-light);
        }

        .pdp-color-name {
            font-size: 0.9rem;
        }

        /* Quantity Selector */
        .pdp-quantity-selector {
            margin-bottom: 2rem;
        }

        .pdp-quantity-selector label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .pdp-quantity-input {
            width: 100px;
            padding: 0.8rem;
            border: 1px solid var(--gray-light);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
        }

        /* Stock Info */
        .pdp-stock-info {
            margin-bottom: 2rem;
            padding: 1rem;
            background: var(--light);
            border-left: 4px solid var(--primary);
        }

        .pdp-stock-info p {
            margin: 0.3rem 0;
            color: var(--text);
        }

        .pdp-stock-info i {
            color: var(--primary);
            margin-right: 0.5rem;
        }

        /* Add to Cart */
        .pdp-add-to-cart {
            width: 100%;
            padding: 1rem;
            background: var(--dark);
            color: white;
            border: 1px solid var(--dark);
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
        }

        .pdp-add-to-cart:hover:not(:disabled) {
            background: transparent;
            color: var(--dark);
        }

        .pdp-add-to-cart:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Back Link */
        .pdp-back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .pdp-back-link:hover {
            color: var(--primary);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .pdp-product-detail {
                grid-template-columns: 1fr;
            }

        }



/* =========================================================
   CHECKOUT-SPEZIFISCHE STYLES (checkout.php)
========================================================= */


        /* Checkout Layout */
        .co-checkout-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        /* Form Styles */
        .co-form-group {
            margin-bottom: 1.5rem;
        }

        .co-form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .co-form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid var(--gray-light);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s;
        }

        .co-form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        select.co-form-control {
            cursor: pointer;
            background: white;
        }

        .co-address-row {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1rem;
        }

        .co-address-row-small {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 1rem;
        }

        /* Order Summary */
        .co-order-summary {
            background: var(--light);
            padding: 2rem;
            border-radius: var(--border-radius);
        }

        .co-order-summary h3 {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .co-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--gray-light);
        }

        .co-summary-item:last-child {
            border-bottom: none;
        }

        .co-product-name-small {
            font-size: 0.9rem;
            color: var(--text);
        }

        .co-variant-details {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-top: 0.2rem;
        }

        .co-variant-details i {
            margin-right: 0.2rem;
            font-size: 0.7rem;
        }

        .co-summary-total {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 2px solid var(--primary);
            font-weight: 600;
            font-size: 1.2rem;
            display: flex;
            justify-content: space-between;
            color: var(--primary);
        }

        /* Payment Note */
        .co-payment-note {
            background: #e8f5e9;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border-left: 4px solid var(--primary);
        }

        .co-payment-note ul {
            margin-top: 0.5rem;
            margin-left: 1.5rem;
        }

        .co-payment-note li {
            margin-bottom: 0.3rem;
        }

        /* Buttons */
        .co-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: var(--transition);
            border: 1px solid transparent;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            width: 100%;
        }

        .co-btn-primary {
            background: var(--dark);
            color: white;
            border-color: var(--dark);
        }

        .co-btn-primary:hover {
            background: transparent;
            color: var(--dark);
        }

        .co-btn-secondary {
            background: transparent;
            color: var(--text);
            border-color: var(--gray-light);
        }

        .co-btn-secondary:hover {
            border-color: var(--dark);
            background: var(--dark);
            color: white;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .co-address-row,
            .co-address-row-small {
                grid-template-columns: 1fr;
            }
            
    .co-checkout-container {
        grid-template-columns: 1fr; /* Nur eine Spalte */
        gap: 1.5rem; /* Etwas kleinerer Abstand auf Mobile */
    }
    
    /* Optional: Reihenfolge auf Mobile umkehren */
    .co-checkout-container > :first-child {
        order: 2; /* Formular nach unten */
    }
    
    .co-checkout-container > :last-child {
        order: 1; /* Bestellübersicht nach oben */
    }
    
        }


/* =========================================================
   ORDER TRACKING-SPEZIFISCHE STYLES (track-order.php)
========================================================= */


.trc-track-container {
    margin: 0 auto;
    background: white;
    border: 1px solid var(--gray-light);
    padding: 3rem;
}


/* Form Styles */
.trc-track-form {
    margin-bottom: 2rem;
}

.trc-form-group {
    margin-bottom: 1.5rem;
}

.trc-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trc-form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.trc-form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.trc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.trc-btn-primary {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
    width: 100%;
    justify-content: center;
}

.trc-btn-primary:hover {
    background: transparent;
    color: var(--dark);
}

.trc-btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--gray-light);
}

.trc-btn-secondary:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: white;
}

/* Order Details */
.trc-order-details {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light);
    border: 1px solid var(--gray-light);
}

.trc-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.trc-order-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.trc-status-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trc-status-pending {
    background: #fff3cd;
    color: #856404;
}

.trc-status-processing {
    background: #cce5ff;
    color: #004085;
}

.trc-status-shipped {
    background: #d4edda;
    color: #155724;
}

.trc-status-delivered {
    background: var(--primary);
    color: white;
}

.trc-status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.trc-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trc-info-item {
    margin-bottom: 0.5rem;
}

.trc-info-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.trc-info-value {
    font-weight: 500;
    color: var(--dark);
}

/* Status Timeline */
.trc-status-timeline {
    margin: 2rem 0;
    position: relative;
    padding-left: 2rem;
}

.trc-status-item {
    position: relative;
    padding-bottom: 2rem;
}

.trc-status-item:last-child {
    padding-bottom: 0;
}

.trc-status-item::before {
    content: '✓';
    position: absolute;
    left: -1.8rem;
    top: -0.2rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gray-light);
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.trc-status-item.completed::before {
    content: '✓';
    background: var(--primary);
    color: white;
}

.trc-status-item.completed::after {
    background: var(--primary);
}


.trc-status-item::after {
    content: '';
    position: absolute;
    left: -1.05rem;
    top: 1rem;
    width: 2px;
    height: calc(100% - 1rem);
    background: var(--gray-light);
    z-index: 1;
}

.trc-status-item:last-child::after {
    display: none;
}

.trc-status-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.trc-status-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.trc-status-description {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Order Items */
.trc-order-items {
    margin: 2rem 0;
}

.trc-order-items h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trc-items-table {
    width: 100%;
    border-collapse: collapse;
}

.trc-items-table th {
    text-align: left;
    padding: 0.8rem;
    background: var(--white);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    border-bottom: 1px solid var(--gray-light);
}

.trc-items-table td {
    padding: 0.8rem;
    border-bottom: 1px solid var(--gray-light);
}

/* Error Message */
.trc-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border: 1px solid #f5c6cb;
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .trc-track-container {
        padding: 2rem 1rem;
    }

    .trc-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trc-order-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .trc-track-container {
        padding: 1.5rem 1rem;
    }
}

/* =========================================================
   ORDER CONFIRMATION-SPEZIFISCHE STYLES (order-confirmation.php)
========================================================= */

.paypal-qrcode {
    margin: 1.5rem 0;
    text-align: center;
}

.paypal-qrcode img {
    width: 150px;
    height: 150px;
    border: 1px solid var(--gray-light);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}


.paypal-qrcode p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.ordconf-confirmation-container {
    margin: 0 auto;
    background: white;
    border: 1px solid var(--gray-light);
    padding: 3rem;
}

h1 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: var(--dark);
    text-transform: uppercase;
    text-align: center;
}

.ordconf-success-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary);
}

.ordconf-order-number {
    font-size: 1.3rem;
    background: var(--light);
    padding: 1rem;
    margin: 1rem auto;
    max-width: 400px;
    font-family: monospace;
    letter-spacing: 1px;
}

.ordconf-reference-number {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 0.8rem;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Payment Options */
.ordconf-payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.ordconf-payment-card {
    background: var(--light);
    padding: 2rem;
    border: 1px solid var(--gray-light);
}

.ordconf-payment-card.ordconf-paypal {
    border-top: 4px solid #0070ba;
}

.ordconf-payment-card.ordconf-bank {
    border-top: 4px solid var(--primary);
}

.ordconf-payment-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.ordconf-bank-details {
    background: #e8f5e9;
    padding: 1.2rem;
    margin: 1rem 0;
    font-family: monospace;
}

.ordconf-paypal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0070ba;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s;
}

.ordconf-paypal-link:hover {
    background: #005ea6;
}

/* Customer Info */
.ordconf-customer-info {
    background: var(--light);
    padding: 2rem;
    margin: 2rem 0;
}

.ordconf-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.ordconf-info-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.ordconf-info-value {
    font-weight: 500;
}

/* Order Table */
.ordconf-order-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.ordconf-order-table th {
    text-align: left;
    padding: 1rem;
    background: var(--primary);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ordconf-order-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.ordconf-totals {
    text-align: right;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary);
}

.ordconf-grand-total {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.ordconf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.ordconf-btn-primary {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.ordconf-btn-primary:hover {
    background: transparent;
    color: var(--dark);
}

.ordconf-btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--gray-light);
}

.ordconf-btn-secondary:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: white;
}

.ordconf-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.ordconf-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border: 1px solid #f5c6cb;
    text-align: center;
    margin: 2rem 0;
}

.ordconf-info-box {
    background: #e7f3ff;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.ordconf-new-order-badge {
    background: var(--primary);
    color: white;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

@media print {
    .ordconf-no-print {
        display: none;
    }
    .ordconf-confirmation-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ordconf-payment-options {
        grid-template-columns: 1fr;
    }

    .ordconf-buttons {
        flex-direction: column;
    }

    .ordconf-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ordconf-confirmation-container {
        padding: 1.5rem;
    }

    .ordconf-order-number {
        font-size: 1rem;
    }
}
