@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #E30613;
    --secondary: #7B1431;
    --dark: #0F172A;
    --gray: #64748B;
    --light: #F8FAFC;
    --yellow: #FACC15;
    --green: #22C55E;
    --border: #E2E8F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
header {
    background: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.status-box {
    background: var(--secondary);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    min-width: 90px;
}

.status-label {
    display: block;
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

.status-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* Hero */
.hero {
    text-align: center;
    padding: 32px 0;
}

.badge-yellow {
    background: var(--yellow);
    color: var(--dark);
    display: inline-block;
    padding: 4px 16px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
}

.fifa-logo {
    width: 70px;
    margin: 0 auto 8px;
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--gray);
    font-weight: 500;
}

.hero-location {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.hero-info {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
}

.hero-urgency {
    font-weight: 700;
    font-size: 14px;
}

.hero-img-wrap {
    margin-top: 24px;
}

.hero-img {
    width: 100%;
    border-radius: 12px;
}

/* Cards */
.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 2px solid transparent;
}

.card.featured {
    border-color: var(--primary);
}

.card-top-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-weight: 600;
    color: var(--gray);
    font-size: 14px;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-top: 8px;
}

.card-subtitle {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}

.card-img {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-detail-text {
    font-weight: 600;
    font-size: 14px;
}

.card-shipping {
    background: #DCFCE7;
    color: #166534;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.card-pricing {
    border-top: 1px solid #F1F5F9;
    padding-top: 16px;
}

.price-old {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 13px;
}

.price-current {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.price-payment {
    font-size: 13px;
    color: var(--gray);
}

.price-savings {
    color: #166534;
    font-weight: 700;
    font-size: 13px;
    margin-top: 4px;
}

/* CTA */
.cta-wrap {
    margin-top: 32px;
}

.main-btn {
    background: var(--green);
    color: white;
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
    transition: transform 0.1s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.main-btn:active {
    transform: scale(0.98);
}

.btn-sub {
    display: block;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

/* FAQ */
.faq-section {
    padding: 48px 0;
    background: #F1F5F9;
    margin-top: 40px;
}

.faq-title {
    text-align: center;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 18px;
    color: var(--gray);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-content {
    padding: 0 16px 16px;
    font-size: 14px;
    color: var(--gray);
}

/* CHECKOUT SPECIFIC */
.bg-checkout {
    background-color: #F9FAFB;
}

.header-checkout {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.container-checkout {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-back {
    text-decoration: none;
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-center {
    height: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.summary-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.summary-product {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.summary-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #F8FAFC;
    border-radius: 12px;
    padding: 8px;
}

.summary-info {
    flex: 1;
}

.summary-title {
    font-size: 16px;
    font-weight: 700;
}

.summary-desc {
    font-size: 13px;
    color: var(--gray);
}

.summary-price-top {
    font-weight: 700;
    font-size: 16px;
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.text-green {
    color: var(--green);
    font-weight: 600;
}

.total-row {
    margin-top: 12px;
    align-items: flex-start;
}

.total-label {
    font-weight: 700;
    font-size: 16px;
}

.total-amount-wrap {
    text-align: right;
}

.total-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.payment-method {
    font-size: 11px;
    color: var(--gray);
    text-transform: lowercase;
}

.checkout-main-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-top: 32px;
}

.checkout-main-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 32px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.form-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.required {
    color: var(--primary);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--gray);
}

.form-row {
    display: flex;
    gap: 16px;
}

.btn-submit {
    background: var(--dark);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-submit:hover {
    opacity: 0.9;
}

footer {
    padding: 24px 0;
    text-align: center;
    font-size: 11px;
    color: var(--gray);
}

@media (min-width: 481px) {
    .container {
        max-width: 600px;
    }
}
@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
