﻿
/* ==================== CSS VARIABLES ==================== */
:root {
    --primary: #0066CC;
    --primary-dark: #004C99;
    --secondary: #6B4EFF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --text-dark: #0A1E3C;
    --text-light: #4A5C72;
    --background: #D8EAFF;
    --surface: #FFFFFF;
    --border: rgba(0, 102, 204, 0.1);
    --border-light: #dee2e6;
    --shadow-sm: 0 8px 24px rgba(0, 102, 204, 0.18);
    --shadow-md: 0 14px 36px rgba(0, 102, 204, 0.24);
    --shadow-lg: 0 24px 52px rgba(0, 102, 204, 0.30);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== GLOBAL STYLES ==================== */
body {
    background: linear-gradient(180deg, #C8DEFF 0%, #f0f5ff 100%) no-repeat fixed !important;
    background-size: cover !important;
    min-height: 100vh;
}

.panel {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .panel:hover {
        box-shadow: var(--shadow-lg);
    }

.panel-success .panel-heading {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 20px 30px;
    color: white;
    border-bottom: none;
}

.panel-heading h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}

.panel-body {
    padding: 30px;
}

/* ==================== FOLDER TAB SYSTEM ==================== */
.folder-system {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.folder-tabs {
    display: flex;
    gap: 12px;
    padding: 0;
    position: relative;
    z-index: 2;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.folder-tab-btn {
    flex: 0 1 auto;
    height: 52px;
    padding: 0 28px;
    border: none;
    border-radius: 40px;
    background: white;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: var(--text-light);
    transition: var(--transition);
    outline: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: -0.01em;
}

    .folder-tab-btn i,
    .folder-tab-btn .emoji,
    .folder-tab-btn .icon {
        font-size: 18px;
        transition: var(--transition);
    }

    .folder-tab-btn:hover {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

        .folder-tab-btn:hover i,
        .folder-tab-btn:hover .emoji,
        .folder-tab-btn:hover .icon {
            color: white;
            transform: scale(1.1);
        }

    .folder-tab-btn.active {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

        .folder-tab-btn.active i,
        .folder-tab-btn.active .emoji,
        .folder-tab-btn.active .icon {
            color: white;
        }

    /* Tab color variations */
    .folder-tab-btn[data-tab="digital"].active {
        background: linear-gradient(135deg, #0066CC 0%, #4B7FC4 100%);
    }

    .folder-tab-btn[data-tab="specials"].active {
        background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    }

    .folder-tab-btn[data-tab="specials"] {
        background: red;
        color: white;
    }


    .folder-tab-btn[data-tab="packs"].active {
        background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    }

    .folder-tab-btn[data-tab="extras"].active {
        background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    }

/* Folder Panel */
.folder-panel-wrap {
    background: var(--surface);
    border-radius: var(--radius-lg);
    min-height: 200px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

    .folder-panel-wrap:hover {
        box-shadow: var(--shadow-lg);
    }

    .folder-panel-wrap::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        transition: background 0.3s ease;
        border-radius: 4px 0 0 4px;
    }

    .folder-panel-wrap[data-active="digital"]::before {
        background: linear-gradient(180deg, #0066CC 0%, #4B7FC4 100%);
    }

    .folder-panel-wrap[data-active="specials"]::before {
        background: linear-gradient(180deg, #F59E0B 0%, #F97316 100%);
    }

    .folder-panel-wrap[data-active="packs"]::before {
        background: linear-gradient(180deg, #10B981 0%, #059669 100%);
    }

    .folder-panel-wrap[data-active="extras"]::before {
        background: linear-gradient(180deg, #8B5CF6 0%, #6D28D9 100%);
    }

.folder-tab-panel {
    display: none;
    padding: 30px;
    animation: folderFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .folder-tab-panel.active {
        display: block;
    }

@keyframes folderFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== PRODUCT CARDS ==================== */
.products-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 5px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--border);
    align-items: flex-start;
    scroll-behavior: smooth;
}

.no-packs-message {
    width: 100%;
    padding: 30px 20px;
    text-align: center;
    color: #6B7280;
    font-size: 0.95rem;
}

    .products-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .products-wrapper::-webkit-scrollbar-track {
        background: var(--border);
        border-radius: 10px;
    }

    .products-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
        border-radius: 10px;
    }

.product-card {
    min-width: 100%;
    max-width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 0;
    padding: 24px;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
        opacity: 0;
        transition: var(--transition);
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(0, 102, 204, 0.2);
    }

        .product-card:hover::before {
            opacity: 1;
        }

    /* Product Image */
    .product-card .product-image {
        text-align: center;
        margin-bottom: 20px;
        padding: 20px;
        background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
        border-radius: 20px;
        cursor: zoom-in;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

        .product-card .product-image::after {
            content: '🔍';
            position: absolute;
            top: 10px;
            right: 10px;
            background: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: var(--transition);
        }

        .product-card .product-image:hover::after {
            opacity: 1;
        }

        .product-card .product-image:hover {
            transform: scale(1.02);
        }

        .product-card .product-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            transition: var(--transition);
        }

    /* Product Info */
    .product-card .product-info {
        padding: 10px 0;
        flex: 1;
    }

    .product-card .info-row {
        display: flex;
        flex-wrap: wrap;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        gap: 12px;
        font-size: 0.95rem;
    }

        .product-card .info-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

    .product-card .info-label {
        font-weight: 600;
        color: var(--text-light);
        min-width: 90px;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .product-card .info-value {
        color: var(--text-dark);
        flex: 1;
        font-size: 0.95rem;
        line-height: 1.5;
        font-weight: 500;
    }

    /* Price Tag */
    .product-card .price-tag {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
        padding: 8px 18px;
        border-radius: 40px;
        font-size: 1.2rem;
        font-weight: 700;
        margin: 8px 0;
        box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2);
        transition: var(--transition);
    }

.old-price {
    font-size: 18px;
    font-weight: 700;
    /*font-size: 1.5rem;*/
    text-decoration: line-through;
    color: red;
    margin-right: 15px;
}

        .product-card .price-tag:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 24px rgba(0, 102, 204, 0.3);
        }

/* Extras tab — flyout navigation highlight */
.product-card.extras-highlight {
    outline: 3px solid #0066CC;
    outline-offset: 2px;
    transition: outline 0.2s;
    animation: extras-pulse 0.9s ease 2;
}

@keyframes extras-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.45); }
    60%  { box-shadow: 0 0 0 10px rgba(0, 102, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0); }
}

/* Tailor Made Card */
.tailor-card {
    background: linear-gradient(145deg, #FFF9E6 0%, #FFF3CD 100%);
    border: 1px solid #FFE69C;
}

    .tailor-card::before {
        background: linear-gradient(90deg, #FFC107 0%, #FFA000 100%);
    }

    .tailor-card .price-tag {
        background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
        color: #1A1A1A;
    }

/* Digital Offer Row */
.digital-offer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(107, 78, 255, 0.03) 100%);
    border-radius: 40px;
    padding: 10px 16px;
    margin: 16px 0;
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: var(--transition);
    flex-wrap: wrap;
    gap: 8px;
}

    .digital-offer-row:hover {
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.06) 0%, rgba(107, 78, 255, 0.06) 100%);
        border-color: rgba(0, 102, 204, 0.2);
    }

.digital-offer-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

    .digital-offer-label i {
        font-size: 1rem;
    }

.digital-offer-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.digital-offer-price {
    font-weight: 700;
    color: var(--primary);
    background: white;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

.digital-free-badge {
    display: inline-block;
    background: #16a34a;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
    cursor: pointer;
}

    .toggle-switch .dig-offer-chk {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
    }

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E2E8F0;
    border-radius: 34px;
    transition: 0.3s;
}

    .toggle-slider::before {
        content: '';
        position: absolute;
        height: 22px;
        width: 22px;
        left: 3px;
        bottom: 3px;
        background: white;
        border-radius: 50%;
        transition: 0.3s;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

.dig-offer-chk:checked + .toggle-slider {
    background: var(--primary);
}

    .dig-offer-chk:checked + .toggle-slider::before {
        transform: translateX(24px);
    }

/* Action Row */
.action-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed var(--border);
}

.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F8FAFC;
    padding: 4px 12px;
    border-radius: 40px;
    border: 1px solid var(--border);
}

    .qty-wrapper label {
        font-weight: 600;
        color: var(--text-light);
        font-size: 0.9rem;
    }

    .qty-wrapper select {
        padding: 8px 12px;
        font-size: 0.95rem;
        border: none;
        background: transparent;
        font-weight: 600;
        color: var(--text-dark);
        cursor: pointer;
        outline: none;
    }

.btn-add-basket {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .btn-add-basket:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0, 102, 204, 0.25);
    }

/* Price Modal Button */
.price-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.1);
    text-decoration: none;
}

    .price-modal-btn:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2);
    }

    .price-modal-btn i {
        font-size: 0.9rem;
    }

/* ==================== CAROUSEL ==================== */
.carousel-container {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 0 50px;
}

    .carousel-container .products-wrapper {
        width: 100% !important;
        overflow-x: auto !important;
        max-width: none !important;
        margin: 0 !important;
        scroll-behavior: smooth;
        align-items: flex-start !important;
    }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: var(--primary);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.5), 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    z-index: 100;
}

    .carousel-btn.carousel-prev {
        left: 0;
    }

    .carousel-btn.carousel-next {
        right: 0;
    }

    .carousel-btn:hover:not(:disabled) {
        background: var(--primary-dark);
        color: white;
        transform: translateY(-50%) scale(1.12);
        box-shadow: 0 6px 22px rgba(0, 102, 204, 0.65), 0 3px 8px rgba(0, 0, 0, 0.25);
    }

    .carousel-btn:disabled {
        opacity: 0.25;
        cursor: not-allowed;
    }

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    width: 100%;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #E2E8F0;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .carousel-dot.active {
        background: var(--primary);
        transform: scale(1.3);
        width: 12px;
        height: 12px;
    }

/* ==================== GALLERY PREVIEW SECTION ==================== */
.gallery-preview-section {
    background: linear-gradient(135deg, #0A1E3C 0%, #1A2F4A 100%);
    border-radius: 40px;
    margin-bottom: 60px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: block;
    animation: fadeScale 0.8s var(--ease-out);
}

.gallery-preview-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .gallery-preview-backdrop img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
        filter: blur(8px);
        transform: scale(1.1);
    }

.gallery-preview-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 30, 60, 0.9) 90%);
    z-index: 1;
}

.gallery-preview-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gallery-preview-frame {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 4800 / 3000;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg) scale(0.95);
    transition: transform 0.6s var(--ease-out);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: #0A1E3C;
}

    .gallery-preview-frame:hover {
        transform: rotate(0deg) scale(1);
        border-color: rgba(255, 255, 255, 0.4);
    }

.gallery-frame-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-frame-portrait-wrapper {
    position: absolute;
    width: 30.02%;
    height: 61.47%;
    left: 35.08%;
    top: 19.4%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
    background: #0A1E3C;
}

.gallery-frame-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.gallery-preview-frame:hover .gallery-frame-portrait {
    transform: scale(1.05);
}

.gallery-frame-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.gallery-frame-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    z-index: 4;
    opacity: 0;
    transition: opacity 0.6s var(--ease);
    pointer-events: none;
}

.gallery-preview-frame:hover .gallery-frame-glow {
    opacity: 1;
}

.gallery-preview-info {
    color: white;
    padding: 20px;
    animation: fadeUp 0.8s var(--ease-out);
}

.gallery-preview-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    margin-bottom: 24px;
}

.gallery-preview-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-preview-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 500px;
}

    .gallery-preview-description ul {
        list-style: none;
        padding: 0;
    }

    .gallery-preview-description li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .gallery-preview-description li i {
            color: var(--primary-light);
            font-size: 1rem;
            width: 20px;
        }

.gallery-preview-actions {
    display: flex;
    gap: 20px;
}

.gallery-preview-btn {
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    font-size: 0.95rem;
}

    .gallery-preview-btn.primary {
        background: white;
        color: var(--text-dark);
    }

        .gallery-preview-btn.primary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(0, 102, 204, 0.3);
        }

    .gallery-preview-btn.secondary {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

        .gallery-preview-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

/* ==================== ACCESS SECTION ==================== */
.access-section {
    background: white;
    border-radius: 40px;
    padding: 0;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.barcode-content {
    padding: 40px;
    background: white;
}

.barcode-form {
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 24px;
}

.input-label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.input-field {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid var(--border-light);
    border-radius: 30px;
    font-size: 1.1rem;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

    .input-field:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0, 102, 204, 0.4);
    }

/* ==================== PROOFCARD LOGIN ==================== */
.sibling-tray {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 60px;
    padding: 6px 8px;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    width: auto;
    flex-wrap: wrap;
}

.sibling-avatar {
    width: 38px;
    height: 38px;
    border-radius: 30px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #495057;
    transition: all 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}

    .sibling-avatar.active {
        background: #212529;
        color: white;
        border-color: #adb5bd;
    }

    .sibling-avatar img {
        width: 100%;
        height: 100%;
        border-radius: 30px;
        object-fit: cover;
    }

.sibling-item {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.sibling-name {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0 6px;
    color: #212529;
}

.add-sibling {
    background: #f1f3f5;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #212529;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: 2px dashed #adb5bd;
    transition: background 0.2s;
    margin-left: 4px;
}

    .add-sibling:hover {
        background: #e9ecef;
        border-color: #212529;
    }

.divider-vertical {
    width: 1px;
    height: 24px;
    background: #dee2e6;
    margin: 0 4px;
}

.proofcard-panel {
    margin: 0 auto 30px auto;
}

/* ==================== ART CANVAS ADVERT ==================== */
.canvas-advert-panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 0;
    width: 100%;
    align-self: stretch;
}

.canvas-advert-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.canvas-advert-header::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.canvas-advert-tag {
    display: inline-block;
    background: var(--warning);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.canvas-advert-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.canvas-advert-body {
    padding: 20px 24px;
    background: var(--surface);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.canvas-advert-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-bottom: 16px;
}

.canvas-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-dark);
    font-weight: 500;
    background: var(--background);
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.canvas-feature-item:hover {
    border-color: rgba(0, 102, 204, 0.25);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.canvas-feature-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.canvas-advert-img-wrap {
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 14px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.canvas-advert-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.canvas-advert-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

.canvas-advert-btn {
    display: block;
    width: 100%;
    padding: 11px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-sm);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.3);
}

.canvas-advert-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #5a3de8 100%);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.45);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ==================== IMAGE SELECTION STATE (dual proofcard) ==================== */
.img-choice-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 22px;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Selected: green ring + checkmark badge + "Selected" label */
.img-choice-wrap:has(input.selected) {
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2), 0 8px 24px rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.05);
}

.img-choice-wrap:has(input.selected)::before {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: #10B981;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.5);
    z-index: 2;
}

.img-choice-wrap:has(input.selected)::after {
    content: '\2713  Selected';
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #059669;
    background: rgba(16, 185, 129, 0.12);
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

/* Highlight: blue dashed ring + "Tap to select" prompt */
.img-choice-wrap:has(input.highlight) {
    border-color: rgba(0, 102, 204, 0.35);
    border-style: dashed;
    cursor: pointer;
}

.img-choice-wrap:has(input.highlight):hover {
    border-style: solid;
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15), 0 6px 16px rgba(0, 102, 204, 0.12);
    background: rgba(0, 102, 204, 0.03);
    transform: translateY(-2px);
}

.img-choice-wrap:has(input.highlight)::after {
    content: 'Tap to select';
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0066CC;
    background: rgba(0, 102, 204, 0.07);
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

/* ==================== IMAGE & LOADING STYLES ==================== */
.img-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    overflow-x: hidden;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

    .img-wrapper img,
    .img-wrapper input[type="image"] {
        max-width: 260px;
        height: auto !important;
        max-width: 100% !important;
        display: block;
        text-align: center;
        border-radius: 20px;
        opacity: 1;
    }

    .img-wrapper input[type="image"]:disabled {
        opacity: 1;
        cursor: default;
    }

.responsive-image {
    max-width: 300px;
}

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .loading-overlay.show {
        display: flex;
    }

.spinner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #5cb85c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-text {
    color: white;
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
    padding: 0 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ==================== MODAL STYLES ==================== */
#priceOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

    #priceOverlay.show {
        display: flex !important;
    }

.price-modal-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    width: 90%;
    margin: 20px;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-modal-header {
    background: linear-gradient(135deg, #1C5E55 0%, #15524A 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .price-modal-header h4 {
        margin: 0;
        font-weight: 600;
        font-size: 18px;
    }

.price-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    line-height: 1;
}

    .price-modal-close:hover {
        opacity: 1;
    }

.price-modal-body {
    padding: 20px;
}

.price-modal-footer {
    background: #f5f5f5;
    border-radius: 0 0 16px 16px;
    padding: 15px 20px;
    text-align: right;
}

/* Image Modal */
#imageModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

    #imageModal.show {
        display: flex !important;
    }

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: imageZoomIn 0.3s ease;
}

@keyframes imageZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

    .image-modal-close:hover {
        opacity: 1;
    }

.image-modal-caption {
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
}

/* Digital Pricing Modal */
#digitalPricingOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

    #digitalPricingOverlay.show {
        display: flex !important;
    }

.dig-pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

    .dig-pricing-table thead th {
        background: #f0f7f6;
        color: #1C5E55;
        font-weight: 700;
        padding: 10px 14px;
        text-align: left;
        border-bottom: 2px solid #1C5E55;
    }

    .dig-pricing-table tbody tr {
        border-bottom: 1px solid #e8e8e8;
        transition: background 0.15s;
    }

        .dig-pricing-table tbody tr:last-child {
            border-bottom: none;
            background: #f8fffe;
        }

        .dig-pricing-table tbody tr:hover {
            background: #f0f7f6;
        }

    .dig-pricing-table td {
        padding: 11px 14px;
        vertical-align: middle;
    }

        .dig-pricing-table td:last-child {
            text-align: right;
        }

.dig-price-badge {
    display: inline-block;
    background: #e8f5f3;
    color: #1C5E55;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
}

.dig-price-badge--highlight {
    background: #1C5E55;
    color: #fff;
}


/* Add Child Modal */
#accessModal {
    display: none;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* ==================== BASKET FLYOUT ==================== */
.header-static {
    background: white;
    border-bottom: 2px solid var(--border-light);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2);
    transition: var(--transition);
}

.header-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.header-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .header-subtitle i {
        color: var(--primary);
    }

.chevron-placeholder {
    width: 48px;
    height: 48px;
}

/* ==================== EMPTY STATE ==================== */
.tab-empty-msg {
    text-align: center;
    color: var(--text-light);
    padding: 60px 20px;
    font-size: 1rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 20px;
    border: 2px dashed var(--border);
}

    .tab-empty-msg i {
        font-size: 3rem;
        color: var(--primary);
        opacity: 0.3;
        margin-bottom: 16px;
        display: block;
    }

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .sibling-tray {
        display: flex;
        width: 100%;
        border-radius: 20px;
        padding: 10px 12px;
        gap: 10px;
        justify-content: flex-start;
    }

    .sibling-avatar {
        width: 42px;
        height: 42px;
    }

    .add-sibling {
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
        min-width: 0;
    }

    .divider-vertical {
        display: none;
    }

    .panel-body {
        padding: 20px;
    }

    .folder-tabs {
        gap: 8px;
        justify-content: center;
    }

    .folder-tab-btn {
        height: 44px;
        padding: 0 20px;
        font-size: 13px;
    }

    .folder-tab-panel {
        padding: 8px 0;
    }

    .carousel-container {
        padding: 0;
    }

    .carousel-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 20px;
        background: var(--primary);
        backdrop-filter: blur(4px);
        z-index: 10;
    }

    .carousel-btn.carousel-prev {
        left: 4px;
    }

    .carousel-btn.carousel-next {
        right: 4px;
    }

    .products-wrapper {
        padding: 4px 2px 4px;
        scrollbar-width: none;
    }

    .products-wrapper::-webkit-scrollbar {
        display: none;
    }

    .carousel-dots {
        margin-top: 8px;
        gap: 6px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 10px;
        height: 10px;
    }

    .img-wrapper {
        flex-direction: column;
        overflow-x: hidden;
        justify-content: center;
        align-items: center;
        gap: 16px;
        padding: 0 4px;
    }

    .img-choice-wrap {
        width: 100%;
        max-width: 100%;
        min-width: unset;
        flex-shrink: 1;
        scroll-snap-align: none;
    }

    .img-wrapper input[type="image"] {
        min-width: unset !important;
        max-width: 100% !important;
        width: 100%;
        opacity: 1 !important;
    }

    .folder-panel-wrap {
        margin-left: -20px;
        margin-right: -20px;
        border-left: none;
        border-right: none;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .folder-panel-wrap::before {
        width: 100%;
        height: 4px;
        bottom: auto;
        top: 0;
        border-radius: 0;
    }

    .folder-tab-panel .product-card {
        min-width: calc((100vw - 36px) / 1.15);
        max-width: calc((100vw - 36px) / 1.15);
        width: calc((100vw - 36px) / 1.15);
    }

    .products-wrapper table {
        border-collapse: collapse;
        border-spacing: 0;
    }

    .products-wrapper td {
        padding: 0;
        vertical-align: top;
    }

    .product-card {
        padding: 16px;
    }

    .product-card .product-image {
        padding: 12px;
        margin-bottom: 14px;
    }

    .product-card .product-image img {
        max-height: 220px;
        object-fit: contain;
    }

    .action-row {
        flex-direction: column;
        gap: 12px;
    }

    .qty-wrapper {
        width: 100%;
        justify-content: space-between;
    }

    .btn-add-basket {
        width: 100%;
    }

    .digital-offer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .digital-offer-controls {
        width: 100%;
        justify-content: space-between;
    }

    .gallery-preview-section {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .gallery-preview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-preview-title {
        font-size: 2rem;
    }

    .gallery-preview-description {
        font-size: 1rem;
    }

    .gallery-preview-actions {
        flex-direction: column;
    }

    .gallery-preview-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .responsive-image {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .sibling-tray {
        border-radius: 14px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }

    .sibling-item {
        flex-shrink: 0;
    }

    .sibling-name {
        font-size: 0.78rem;
        padding: 0 4px;
    }

    .folder-tabs {
        gap: 6px;
    }

    .folder-tab-btn {
        height: 40px;
        padding: 0 16px;
        font-size: 12px;
        flex: 1;
    }

        .folder-tab-btn i,
        .folder-tab-btn .emoji {
            font-size: 16px;
        }

    .folder-panel-wrap::before {
        left: 0;
        right: 0;
        bottom: auto;
        width: auto;
        height: 4px;
    }

    .folder-panel-wrap {
        border-left: none;
        border-right: none;
        border-radius: 0 0 var(--tab-radius) var(--tab-radius);
    }

    .folder-tab-panel {
        padding: 6px 0;
    }

    .carousel-container {
        padding: 0;
    }

    .carousel-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 17px;
    }

    .carousel-btn.carousel-prev {
        left: 3px;
    }

    .carousel-btn.carousel-next {
        right: 3px;
    }

    .products-wrapper {
        padding: 2px 1px 2px;
    }

    .carousel-dots {
        margin-top: 6px;
    }

    .folder-tab-panel .product-card {
        min-width: calc((100vw - 34px) / 1.15);
        max-width: calc((100vw - 34px) / 1.15);
        width: calc((100vw - 34px) / 1.15);
    }

    .product-card {
        padding: 12px;
    }

    .product-card .product-image {
        padding: 8px;
        margin-bottom: 10px;
    }

    .product-card .product-image img {
        max-height: 180px;
        object-fit: contain;
    }

    .product-card .info-row {
        flex-direction: column;
        gap: 4px;
        padding: 8px 0;
    }

    .product-card .info-label {
        min-width: auto;
    }

    .product-card .price-tag {
        font-size: 1.05rem;
        padding: 6px 14px;
    }

    .price-modal-btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-preview-frame {
        transform: rotate(-1deg) scale(0.98);
    }

    .gallery-preview-eyebrow {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .gallery-preview-title {
        font-size: 1.8rem;
    }

    .spinner {
        width: 50px;
        height: 50px;
        border-width: 5px;
    }

    .loading-text {
        font-size: 14px;
    }
}

/* Desktop: Animated Underline Effect */
@media (min-width: 769px) {
    .folder-tab-btn {
        position: relative;
        overflow: hidden;
    }

        .folder-tab-btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: white;
            border-radius: 3px 3px 0 0;
            transition: width 0.3s ease;
        }

        .folder-tab-btn.active::after {
            width: 30px;
        }

        .folder-tab-btn:hover::after {
            width: 20px;
        }

    .folder-tab-panel .product-card {
        min-width: calc(820px - 72px);
        width: calc(820px - 72px);
    }
}

/* ==================== IMAGE SECTION WRAPPER ==================== */
.img-section-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==================== UTILITY CLASSES ==================== */
.product-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

    .product-card.loading::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: loading 1.5s infinite;
    }

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.text-center {
    text-align: center;
}

.text-danger {
    color: var(--danger);
}

.text-muted {
    color: var(--text-light);
}

.order-info-container {
    margin: 15px 0;
    text-align: center;
}

