@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --white: #f5f0f0;
    --off-white: #e9e9e9;
    --onyx: #101010;
    --rich-mahogany: #260101;
    --dark-garnet: #591202;
    --rust-brown: #A62F03;
    --autumn-leaf: #F26716;
}

body {
    background-color: var(--white);
    color: var(--onyx);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.header-color {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 110px;
    background-color: var(--onyx);
    margin-top: -100px;
}

/* Checkout-specific styles */
.checkout-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 16px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
}

.form-section {
    margin-bottom: 18px;
    background: var(--white);
    padding: 12px;
    border-radius: 8px;
}

.form-section h3 {
    margin-bottom: 8px;
    color: var(--rich-mahogany);
}

.form-section label {
    display: block;
    margin-bottom: 8px;
    color: var(--onyx);
}

.form-section input[type="text"],
.form-section input[type="email"] {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.payment-methods label {
    display: block;
    margin-bottom: 6px;
}

.payment-instructions {
    margin-top: 10px;
    padding: 8px;
    background: var(--off-white);
    border-radius: 6px;
}

.order-instructions {
    margin-top: 18px;
    padding: 12px;
    background: var(--off-white);
    border-radius: 8px;
}

.notice {
    text-align: center;
    color: var(--rich-mahogany);
    margin-bottom: 12px;
}

#checkout-form, .cart-summary{
    border: 1px solid var(--dark-garnet);
    padding: 25px;
    border-radius: 15px;
}

@media (max-width:900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}