/**
 * International Collection Page Styles
 * S1: Hero  S2: About International Collection  S3: What to Expect
 * S4: Details (Delivery, Payment, Returns)  S5: Contact Form (reuses contact.css)
 */

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

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

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

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

/* ==========================================
   SECTION 2 — ABOUT INTERNATIONAL COLLECTION
   ========================================== */

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

.ic-about-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: rgba(45, 31, 31, 0.6);
    line-height: 28px;
    text-transform: capitalize;
}

.ic-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
   ========================================== */

.ic-expect {
    padding: 96px 150px;
    background: #fff;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center;
}

.ic-expect-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 0 0 auto;
    max-width: 429px;
}

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

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

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

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

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

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

/* ==========================================
   SECTION 4 — DETAILS (DELIVERY, PAYMENT, RETURNS)
   ========================================== */

.ic-details {
    padding: 96px 150px;
    background: #fff;
    display: flex;
    flex-direction: row;
    gap: 48px;
}

.ic-details-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.ic-details-col-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 150%;
}

/* Bordered card wrapper */
.ic-details-card-wrapper {
    background: #E0DCD3;
    /* border: 1px solid #E0DCD3; */
    border-radius: 24px;
    padding: 1px;
}

.ic-details-card {
    background: #fff;
    border-radius: 23px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.ic-details-bullet::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #000;
}

.ic-details-bullet strong {
    font-weight: 700;
}

/* Payment card modifier */
.ic-details-card--payment {
    padding: 0;
    gap: 0;
}

.ic-payment-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.ic-payment-row:last-child {
    border-bottom: none;
}

.ic-payment-row-icons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.ic-payment-row-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.ic-payment-row-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 150%;
}

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

@media (max-width: 767px) {

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

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

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

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

    .ic-about-label {
        font-size: 14px;
        line-height: 17px;
    }

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

    /* S3 — What to Expect */
    .ic-expect {
        padding: 48px 20px;
        flex-direction: column;
        gap: 64px;
    }

    .ic-expect-left {
        max-width: none;
    }

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

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

    .ic-expect-card-wrapper {
        border-radius: 16px;
    }

    .ic-expect-card {
        border-radius: 15px;
        padding: 20px;
    }

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

    /* S4 — Details */
    .ic-details {
        padding: 48px 24px;
        flex-direction: column;
        gap: 32px;
    }

    .ic-details-col-title {
        font-size: 24px;
    }

    .ic-details-col-desc {
        font-size: 14px;
    }

    .ic-details-card-wrapper {
        border-radius: 16px;
    }

    .ic-details-card {
        border-radius: 15px;
        padding: 20px;
    }

    .ic-details-bullet {
        font-size: 14px;
    }

    .ic-payment-row {
        padding: 16px;
    }

    .ic-payment-row-text {
        font-size: 14px;
    }
}

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

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

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

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

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

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

    /* S3 — What to Expect */
    .ic-expect {
        padding: 80px 40px;
        flex-direction: column;
        gap: 32px;
    }

    .ic-expect-left {
        max-width: none;
    }

    /* S4 — Details */
    .ic-details {
        padding: 80px 40px;
        flex-direction: column;
        gap: 32px;
    }
}
