/* ============================================================
   CTC BRAND FOUNDATION
   ============================================================ */

:root {
    --font-heading: 'sweet-sans-pro', sans-serif;
    --font-body: europa, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --delft-blue: #223759;
    --cream: #FDFBF7;
    --light-gray: #e9eef5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    min-height: 100vh;
}

/* Checkout Section */
.checkout-section {
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.checkout-section .container {
    max-width: 100%;
    width: 100%;
}

.checkout-wrapper {
    background-color: var(--light-gray);
    border-radius: 15px;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Spiffy embed responsive */
spiffy-checkout {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .checkout-wrapper {
        padding: 20px;
        border-radius: 10px;
    }

    .checkout-section {
        padding: 20px 15px;
    }
}
