/* order/assets/css/public.css */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Multi-step form styles */
.step-indicator {
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}
.step-content {
    display: none !important;
    animation: fadeIn 0.3s ease-in-out;
}
.step-content.active {
    display: block !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* File upload drop zone */
.drop-zone {
    border: 2px dashed rgba(201, 169, 97, 0.3);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.drop-zone:hover, .drop-zone.border-primary-500 {
    border-color: #C9A961;
}

/* Payment option card */
.payment-option {
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.payment-option:hover {
    border-color: rgba(201, 169, 97, 0.6);
}
.payment-option:has(input:checked) {
    border-color: #C9A961;
    background-color: rgba(201, 169, 97, 0.1);
}

/* Print styles */
@media print {
    body {
        background-color: white !important;
        color: black !important;
    }
    header, footer, .no-print {
        display: none !important;
    }
    main {
        margin: 0 !important;
        padding: 0 !important;
    }
    .print-container {
        max-width: 100% !important;
        box-shadow: none !important;
        border: none !important;
    }
}

/* Date input & visible gold calendar icon styling */
input[type="date"] {
    color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C9A961' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    cursor: pointer;
    width: 22px;
    height: 22px;
    opacity: 0.95;
    filter: none;
    padding: 2px;
    border-radius: 4px;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Custom Country Dropdown Scrollbar */
#country-list-options::-webkit-scrollbar {
    width: 6px;
}
#country-list-options::-webkit-scrollbar-track {
    background: #161616;
}
#country-list-options::-webkit-scrollbar-thumb {
    background: #C9A961;
    border-radius: 4px;
}
#country-list-options::-webkit-scrollbar-thumb:hover {
    background: #d4b670;
}


