/* ═══════════════════════════════════════════════════════════════════════════
   PP Block: Bulk Enquiry
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. HERO ─────────────────────────────────────────────────────────────── */
.pp-bulk-hero {
    background: var(--bgcreame, #fef8f0);
    padding: 60px 0 50px;
    overflow: hidden;
}

.pp-bulk-hero__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* Left content */
.pp-bulk-hero__content {
    flex: 1;
    min-width: 0;
}

.pp-bulk-hero__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange, #ff5733);
    border-bottom: 2.5px solid var(--orange, #ff5733);
    padding-bottom: 2px;
    margin-bottom: 14px;
    font-family: var(--global-font-family, 'Poppins', sans-serif);
}

.pp-bulk-hero__heading {
    font-family: var(--global-heading-font, 'Poppins', sans-serif);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.13;
    color: var(--blue, #1a2340);
    margin: 0 0 16px;
    padding: 0;
}

/* Last line of heading in orange */
.pp-bulk-hero__heading br + br + span,
.pp-bulk-hero__heading :last-child {
    color: var(--orange, #ff5733);
}

.pp-bulk-hero__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 28px;
    font-family: var(--global-body-font-family, 'Inter', sans-serif);
    max-width: 480px;
}

/* Feature icons row */
.pp-bulk-hero__feats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.pp-bulk-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 0 0 calc(25% - 18px);
    min-width: 80px;
}

.pp-bulk-feat__icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 87, 51, 0.08);
    border: 1.5px solid rgba(255, 87, 51, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange, #ff5733);
}

.pp-bulk-feat__icon svg {
    width: 22px;
    height: 22px;
}

.pp-bulk-feat__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.pp-bulk-feat__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue, #1a2340);
    font-family: var(--global-font-family, 'Poppins', sans-serif);
    line-height: 1.3;
}

.pp-bulk-feat__sub {
    font-size: 10.5px;
    color: #777;
    line-height: 1.4;
    font-family: var(--global-body-font-family, 'Inter', sans-serif);
}

/* Right visual */
.pp-bulk-hero__visual {
    flex: 0 0 46%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.pp-bulk-hero__img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,0.12));
}

/* Trust bubble */
.pp-bulk-hero__trust {
    position: absolute;
    bottom: 24px;
    right: 0;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    max-width: 200px;
}

.pp-bulk-hero__trust-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.pp-bulk-hero__trust-icon--default {
    width: 36px;
    height: 36px;
    background: rgba(255,87,51,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange, #ff5733);
    flex-shrink: 0;
}

.pp-bulk-hero__trust-icon--default svg {
    width: 20px;
    height: 20px;
}

.pp-bulk-hero__trust p {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--blue, #1a2340);
    margin: 0;
    line-height: 1.4;
    font-family: var(--global-font-family, 'Poppins', sans-serif);
}

/* ── 2. CUSTOMERS ────────────────────────────────────────────────────────── */
.pp-bulk-customers {
    background: #fff;
    padding: 50px 0;
    border-top: 1.5px solid var(--border-cream, #f0e6d9);
}

/* Section divider label */
.pp-bulk-section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange, #ff5733);
    font-family: var(--global-font-family, 'Poppins', sans-serif);
    margin-bottom: 36px;
}

.pp-bulk-section-label__line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--orange, #ff5733));
    max-width: 120px;
}

.pp-bulk-section-label__line:last-child {
    background: linear-gradient(90deg, var(--orange, #ff5733), transparent);
}

.pp-bulk-customers__inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Customer type cards */
.pp-bulk-cust-types {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pp-bulk-cust-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--bgcreame, #fef8f0);
    border: 1.5px solid var(--border-cream, #f0e6d9);
    border-radius: 14px;
    padding: 20px 28px;
    flex: 1 1 140px;
    max-width: 180px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pp-bulk-cust-type:hover {
    border-color: var(--orange, #ff5733);
    box-shadow: 0 4px 18px rgba(255,87,51,0.1);
}

.pp-bulk-cust-type__icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange, #ff5733);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pp-bulk-cust-type__icon svg { width: 24px; height: 24px; }
.pp-bulk-cust-type__icon img { width: 28px; height: 28px; object-fit: contain; }

.pp-bulk-cust-type span {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue, #1a2340);
    font-family: var(--global-font-family, 'Poppins', sans-serif);
    text-align: center;
}

/* Benefits */
.pp-bulk-benefits {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pp-bulk-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex: 1 1 120px;
    max-width: 180px;
}

.pp-bulk-benefit__icon {
    width: 52px;
    height: 52px;
    background: rgba(255,87,51,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange, #ff5733);
}

.pp-bulk-benefit__icon svg { width: 26px; height: 26px; }
.pp-bulk-benefit__icon img { width: 28px; height: 28px; object-fit: contain; }

.pp-bulk-benefit strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue, #1a2340);
    font-family: var(--global-font-family, 'Poppins', sans-serif);
    line-height: 1.3;
}

.pp-bulk-benefit span {
    font-size: 12px;
    color: #777;
    font-family: var(--global-body-font-family, 'Inter', sans-serif);
    line-height: 1.4;
}

/* ── 3. MAIN: Products + Form ────────────────────────────────────────────── */
.pp-bulk-main {
    background: var(--bgcreame, #fef8f0);
    padding: 60px 0;
    border-top: 1.5px solid var(--border-cream, #f0e6d9);
}

.pp-bulk-main__inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* ── Products column ──────────────────────────────────────────────────────── */
.pp-bulk-products {
    flex: 0 0 42%;
    min-width: 0;
}

/* Underline heading style */
.pp-bulk-underline {
    position: relative;
    display: inline-block;
}

.pp-bulk-underline::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--orange, #ff5733);
    border-radius: 2px;
    margin-top: 8px;
}

.pp-bulk-products__heading {
    font-family: var(--global-heading-font, 'Poppins', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--blue, #1a2340);
    margin: 0 0 24px;
    padding: 0;
}

/* Product cards grid */
.pp-bulk-prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.pp-bulk-prod-card {
    background: #fff;
    border: 1.5px solid var(--border-cream, #f0e6d9);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}

.pp-bulk-prod-card:hover {
    border-color: var(--orange, #ff5733);
    box-shadow: 0 8px 28px rgba(255,87,51,0.12);
    transform: translateY(-3px);
}

.pp-bulk-prod-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bgcreame, #fef8f0);
}

.pp-bulk-prod-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.pp-bulk-prod-card:hover .pp-bulk-prod-card__img img {
    transform: scale(1.05);
}

.pp-bulk-prod-card__body {
    padding: 12px;
    text-align: center;
}

.pp-bulk-prod-card__body h3 {
    font-family: var(--global-font-family, 'Poppins', sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--blue, #1a2340);
    margin: 0 0 4px;
    line-height: 1.3;
}

.pp-bulk-prod-card__body p {
    font-size: 11.5px;
    color: #888;
    margin: 0;
    line-height: 1.4;
    font-family: var(--global-body-font-family, 'Inter', sans-serif);
}

.pp-bulk-products__note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--orange, #ff5733);
    font-weight: 600;
    font-family: var(--global-font-family, 'Poppins', sans-serif);
    margin: 0 0 40px;
}

.pp-bulk-products__note svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Process steps */
.pp-bulk-process {
    margin-top: 8px;
}

.pp-bulk-process__heading {
    font-family: var(--global-heading-font, 'Poppins', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--blue, #1a2340);
    margin: 0 0 20px;
    padding: 0;
}

.pp-bulk-process__steps {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.pp-bulk-process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1 1 80px;
}

.pp-bulk-process__step-icon {
    width: 52px;
    height: 52px;
    background: #fff;
    border: 1.5px solid var(--border-cream, #f0e6d9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange, #ff5733);
    transition: background 0.2s, border-color 0.2s;
}

.pp-bulk-process__step-icon svg { width: 24px; height: 24px; }
.pp-bulk-process__step-icon img { width: 26px; height: 26px; object-fit: contain; }

.pp-bulk-process__step:hover .pp-bulk-process__step-icon {
    background: rgba(255,87,51,0.08);
    border-color: var(--orange, #ff5733);
}

.pp-bulk-process__step span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--blue, #1a2340);
    font-family: var(--global-font-family, 'Poppins', sans-serif);
    line-height: 1.35;
}

/* ── Enquiry form column ──────────────────────────────────────────────────── */
.pp-bulk-form-wrap {
    flex: 1;
    min-width: 0;
    position: sticky;
    top: 90px;
}

.pp-bulk-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.09);
    border: 1.5px solid var(--border-cream, #f0e6d9);
}

.pp-bulk-form-card__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange, #ff5733);
    margin: 0 0 6px;
    font-family: var(--global-font-family, 'Poppins', sans-serif);
}

.pp-bulk-form-card__heading {
    font-family: var(--global-heading-font, 'Poppins', sans-serif);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--blue, #1a2340);
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pp-bulk-form-card__subtext {
    font-size: 13.5px;
    color: #777;
    line-height: 1.6;
    margin: 0 0 24px;
    font-family: var(--global-body-font-family, 'Inter', sans-serif);
}

/* Form fields */
.pp-bulk-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.pp-bulk-form__group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pp-bulk-form__group--full {
    margin-bottom: 14px;
}

.pp-bulk-form__group label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--blue, #1a2340);
    font-family: var(--global-font-family, 'Poppins', sans-serif);
}

.pp-req {
    color: var(--orange, #ff5733);
    margin-left: 1px;
}

.pp-bulk-form__group input,
.pp-bulk-form__group textarea {
    border: 1.5px solid var(--border-cream, #e0d6cc);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13.5px;
    font-family: var(--global-body-font-family, 'Inter', sans-serif);
    color: var(--blue, #1a2340);
    background: var(--bgcreame, #fef8f0);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.pp-bulk-form__group input::placeholder,
.pp-bulk-form__group textarea::placeholder {
    color: #b0a898;
}

.pp-bulk-form__group input:focus,
.pp-bulk-form__group textarea:focus {
    border-color: var(--orange, #ff5733);
    box-shadow: 0 0 0 3px rgba(255,87,51,0.1);
    background: #fff;
}

.pp-bulk-form__group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Select */
.pp-bulk-select-wrap {
    position: relative;
}

.pp-bulk-select-wrap select {
    width: 100%;
    border: 1.5px solid var(--border-cream, #e0d6cc);
    border-radius: 10px;
    padding: 11px 38px 11px 14px;
    font-size: 13.5px;
    font-family: var(--global-body-font-family, 'Inter', sans-serif);
    color: var(--blue, #1a2340);
    background: var(--bgcreame, #fef8f0);
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
    outline: none;
    box-sizing: border-box;
}

.pp-bulk-select-wrap select:focus {
    border-color: var(--orange, #ff5733);
    box-shadow: 0 0 0 3px rgba(255,87,51,0.1);
    background: #fff;
}

.pp-select-caret {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #888;
}

/* Checkboxes */
.pp-bulk-form__checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.pp-bulk-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #374151;
    font-family: var(--global-body-font-family, 'Inter', sans-serif);
    padding: 8px 12px;
    border: 1.5px solid var(--border-cream, #e0d6cc);
    border-radius: 8px;
    background: var(--bgcreame, #fef8f0);
    transition: border-color 0.2s, background 0.2s;
}

.pp-bulk-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--orange, #ff5733);
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    padding: 0;
    background: none;
    outline: none;
    box-shadow: none;
}

.pp-bulk-check:has(input:checked) {
    border-color: var(--orange, #ff5733);
    background: rgba(255,87,51,0.05);
}

/* Submit button */
.pp-bulk-form__submit {
    width: 100%;
    background: var(--orange, #ff5733);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-family: var(--global-font-family, 'Poppins', sans-serif);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    margin-top: 8px;
    box-shadow: 0 4px 18px rgba(255,87,51,0.35);
}

.pp-bulk-form__submit:hover {
    background: #e03e20;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,87,51,0.4);
}

/* WhatsApp CTA */
.pp-bulk-form__wa {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pp-bulk-form__wa > span {
    font-size: 12.5px;
    color: #aaa;
    font-family: var(--global-body-font-family, 'Inter', sans-serif);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.pp-bulk-form__wa > span::before,
.pp-bulk-form__wa > span::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-cream, #e0d6cc);
    max-width: 60px;
}

.pp-bulk-form__wa-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    background: #f0fff4;
    border: 1.5px solid #c6f0d1;
    border-radius: 10px;
    padding: 10px 16px;
    width: 100%;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    font-family: var(--global-font-family, 'Poppins', sans-serif);
}

.pp-bulk-form__wa-link:hover {
    border-color: #25D366;
    background: #e5f9ed;
    text-decoration: none;
    color: #1a7c3b;
}

.pp-bulk-form__wa-num {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #25D366;
    font-weight: 700;
    font-size: 13.5px;
}

/* ── 4. TRUST BADGES ─────────────────────────────────────────────────────── */
.pp-bulk-trust {
    background: #fff;
    padding: 32px 0;
    border-top: 1.5px solid var(--border-cream, #f0e6d9);
}

.pp-bulk-trust__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.pp-bulk-trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    flex: 1 1 200px;
    justify-content: center;
}

.pp-bulk-trust__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(255,87,51,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange, #ff5733);
}

.pp-bulk-trust__icon svg { width: 22px; height: 22px; }
.pp-bulk-trust__icon img { width: 24px; height: 24px; object-fit: contain; }

.pp-bulk-trust__item strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--blue, #1a2340);
    font-family: var(--global-font-family, 'Poppins', sans-serif);
    line-height: 1.3;
}

.pp-bulk-trust__item span {
    display: block;
    font-size: 12px;
    color: #888;
    font-family: var(--global-body-font-family, 'Inter', sans-serif);
    line-height: 1.4;
}

.pp-bulk-trust__sep {
    width: 1px;
    height: 50px;
    background: var(--border-cream, #e0d6cc);
    flex-shrink: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .pp-bulk-hero__inner {
        gap: 32px;
    }
    .pp-bulk-hero__visual {
        flex: 0 0 42%;
    }
    .pp-bulk-main__inner {
        gap: 28px;
    }
    .pp-bulk-products {
        flex: 0 0 44%;
    }
}

@media (max-width: 900px) {
    .pp-bulk-hero__inner {
        flex-direction: column;
        gap: 24px;
    }
    .pp-bulk-hero__visual {
        flex: none;
        width: 100%;
        justify-content: center;
    }
    .pp-bulk-hero__trust {
        position: static;
        margin-top: 12px;
        max-width: 240px;
        align-self: center;
    }
    .pp-bulk-main__inner {
        flex-direction: column;
    }
    .pp-bulk-products,
    .pp-bulk-form-wrap {
        flex: none;
        width: 100%;
        position: static;
    }
    .pp-bulk-prod-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .pp-bulk-hero {
        padding: 40px 0 36px;
    }
    .pp-bulk-hero__feats {
        gap: 14px;
    }
    .pp-bulk-feat {
        flex: 0 0 calc(50% - 7px);
    }
    .pp-bulk-prod-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pp-bulk-form__row {
        grid-template-columns: 1fr;
    }
    .pp-bulk-form-card {
        padding: 24px 18px;
    }
    .pp-bulk-trust__inner {
        flex-direction: column;
    }
    .pp-bulk-trust__sep {
        width: 80%;
        height: 1px;
    }
    .pp-bulk-form__checkboxes {
        grid-template-columns: 1fr;
    }
    .pp-bulk-cust-types,
    .pp-bulk-benefits {
        gap: 12px;
    }
    .pp-bulk-cust-type {
        flex: 1 1 100px;
    }
}
