/* checkout.css - Monochrome (White & Black) version */

/* Reset & Base */
.checkout-main {
    background-color: #ffffff;
    color: #000000;
}

h1, h2, h3, h4, label, span, p, strong {
    color: #000000;
}

/* Form Inputs & Selects */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    border-radius: 0; /* kotak tajam / tanpa radius */
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: none;
}

/* File input styling */
input[type="file"] {
    border: 1px solid #000000;
}

input[type="file"]::file-selector-button {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    padding: 8px 16px;
    margin-right: 12px;
    cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
    background-color: #e0e0e0;
}

/* Sections & Cards */
section {
    border: none;
}

.p-6.border-2.border-blue-600.rounded-xl.bg-blue-50,
.p-6.border-2 {
    border: 2px solid #000000 !important;
    background-color: #ffffff !important;
    border-radius: 0;
}

.bg-white.p-5.rounded-lg.border {
    border: 1px solid #000000;
    border-radius: 0;
    background-color: #ffffff;
}

/* Buttons */
button[type="submit"],
button[onclick^="copyToClipboard"] {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 16px 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

button[type="submit"]:hover,
button[onclick^="copyToClipboard"]:hover {
    background-color: #333333;
}

/* Order Summary */
.order-summary .bg-white.p-8.rounded-xl.border.border-gray-200.shadow-sm {
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 0;
    box-shadow: none;
}

.divide-y.divide-gray-100 {
    --tw-divide-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity));
}

/* Summary lines */
.border-t.border-gray-200 {
    border-color: #000000;
}

/* Messages (success/error) */
.bg-green-100, .bg-red-100 {
    background-color: #f5f5f5 !important;
    color: #000000;
    border: 1px solid #000000;
}

/* Links */
a {
    color: #000000;
    text-decoration: underline;
}

a:hover {
    color: #333333;
}

/* General text adjustments */
.text-gray-700, .text-gray-600, .text-gray-500, .text-gray-900 {
    color: #000000 !important;
}

.text-blue-700, .text-blue-600, .text-blue-900 {
    color: #000000 !important;
}

/* Remove any remaining colored shadows or accents */
.shadow-sm, .shadow {
    box-shadow: none !important;
}

/* Notifikasi saat copy account number - Monochrome style */
.copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000;
    color: #ffffff;
    padding: 16px 32px;
    border: 1px solid #ffffff;
    border-radius: 0; /* kotak tajam sesuai tema monochrome */
    font-size: 1.1rem;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.copy-notification.show {
    opacity: 1;
}

/* Optional: variasi untuk pesan error (jika copy gagal) */
.copy-notification.error {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}