/**
 * Pre-Orders Page Styles
 * S1: Hero  S2: About Pre-Orders  S3: What to Expect
 * S4: Contact Form (reuses contact.css)
 */

/* ==========================================
   SECTION 1 — HERO
   ========================================== */

.po-hero {
    padding: 96px 150px 48px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.po-hero-title {
    font-family: Georgia, 'Canela Text', serif;
    font-size: 64px;
    font-weight: 400;
    color: #2D1F1F;
    margin: 0;
    line-height: 73px;
    text-transform: capitalize;
}

.po-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 150%;
}

/* ==========================================
   SECTION 2 — ABOUT PRE-ORDERS
   ========================================== */

.po-about {
    padding: 128px 150px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.po-about-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(45, 31, 31, 0.6);
    line-height: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0DCD3;
    text-transform: capitalize;
}

.po-about-text {
    font-family: Georgia, 'Canela Text', serif;
    font-size: 48px;
    font-weight: 400;
    color: #2D1F1F;
    margin: 0;
    max-width: 1406px;
    line-height: 136%;
    text-transform: capitalize;
}

/* ==========================================
   SECTION 3 — WHAT TO EXPECT
   ========================================== */

.po-expect {
    padding: 96px 150px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.po-expect-top {
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: center;
}

.po-expect-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
    flex: 1 1 0%;
    min-width: 0;
}

.po-expect-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #2D1F1F;
    margin: 0;
    line-height: 28px;
    text-transform: capitalize;
}

.po-expect-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 150%;
}

.po-expect-bullet-card {
    background: #E0DCD3;
    /* border: 1px solid #E0DCD3; */
    border-radius: 24px;
    padding: 1px;
    flex: 1 1 0%;
    min-width: 0;
}

.po-expect-bullet-inner {
    background: #fff;
    border-radius: 23px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.po-expect-bullet-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 150%;
    padding-left: 20px;
    position: relative;
}

.po-expect-bullet-item::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #000;
}

/* Bottom cards */
.po-expect-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    border: 1px solid #E0DCD3;
    border-radius: 24px;
    padding: 1px;
    gap: 1px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.po-expect-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.po-expect-card--delivery {
    background: #fff;
    flex: 1 1 79px;
}

.po-expect-card--note {
    background: linear-gradient(0deg, rgba(45, 31, 31, 0.1), rgba(45, 31, 31, 0.1)), #FFFFFF;
    border-radius: 24px 0 0 24px;
    flex: 1 1 0%;
}

.po-expect-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2D1F1F;
    margin: 0;
    line-height: 29px;
    letter-spacing: -0.02em;
}

.po-expect-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 150%;
}

.po-expect-card-text strong {
    font-weight: 700;
}

/* ==========================================
   RESPONSIVE — MOBILE (max-width: 767px)
   ========================================== */

@media (max-width: 767px) {

    /* S1 — Hero */
    .po-hero {
        padding: 48px 24px 24px;
        gap: 12px;
    }

    .po-hero-title {
        font-size: 32px;
        line-height: 36px;
    }

    .po-hero-subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    /* S2 — About */
    .po-about {
        padding: 96px 20px;
        gap: 24px;
    }

    .po-about-label {
        font-size: 14px;
        line-height: 17px;
        padding-bottom: 16px;
    }

    .po-about-text {
        font-size: 28px;
        line-height: 128%;
    }

    /* S3 — What to Expect */
    .po-expect {
        padding: 64px 20px;
        gap: 64px;
    }

    .po-expect-top {
        flex-direction: column;
        gap: 32px;
    }

    .po-expect-left {
        padding: 0;
        flex: none;
        width: auto;
    }

    .po-expect-title {
        font-size: 24px;
        line-height: 28px;
    }

    .po-expect-subtitle {
        font-size: 14px;
        line-height: 24px;
    }

    .po-expect-bullet-card {
        border-radius: 16px;
    }

    .po-expect-bullet-inner {
        border-radius: 15px;
        padding: 20px;
    }

    .po-expect-bullet-item {
        font-size: 14px;
    }

    .po-expect-cards {
        flex-direction: column-reverse;
        border-radius: 16px;
    }

    .po-expect-card {
        padding: 20px;
    }

    .po-expect-card--delivery {
        border-radius: 0;
        flex-basis: 0;
    }

    .po-expect-card--note {
        border-radius: 0;
    }

    .po-expect-card-title {
        font-size: 20px;
        line-height: 24px;
    }

    .po-expect-card-text {
        font-size: 14px;
    }
}

/* ==========================================
   RESPONSIVE — TABLET (768px - 1023px)
   ========================================== */

@media (min-width: 768px) and (max-width: 1023px) {

    /* S1 — Hero */
    .po-hero {
        padding: 80px 40px 48px;
    }

    .po-hero-title {
        font-size: 48px;
        line-height: 1.1;
    }

    /* S2 — About */
    .po-about {
        padding: 80px 40px;
    }

    .po-about-text {
        font-size: 36px;
    }

    /* S3 — What to Expect */
    .po-expect {
        padding: 80px 40px;
    }

    .po-expect-top {
        flex-direction: column;
        gap: 32px;
    }

    .po-expect-left {
        padding: 0;
        flex: none;
        width: auto;
    }

    .po-expect-card {
        padding: 24px;
    }

    .po-expect-card-title {
        font-size: 20px;
    }

    .po-expect-card--note {
        border-radius: 0;
    }
}
