/* =============================================
   BP DELIVERY PAGE — Baker's Paradise
   Version: 1.0.0

   Palette:
     Brand green:     #34A14F / accent #5a8a3a
     Dark green:      #1e3a1e
     Warm brown:      #7a5c3a
     Amber:           #c8860a
     Teal:            #2e7d6e
     Cream bg:        #faf8f4
     Body text:       #2d2a24
     Muted text:      #5a5650
     Light text:      #7a7570
     Border:          #e8e2d8

   Typography: inherits from WoodMart — no imports.
   ============================================= */


/* ── BASE CONTAINER ── */

.bp-dp {
    font-family: inherit;
    color: #2d2a24;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 20px 80px;
    position: relative;
    z-index: 1;
}

.bp-dp *, .bp-dp *::before, .bp-dp *::after {
    box-sizing: border-box;
}

.bp-dp h1, .bp-dp h2, .bp-dp h3, .bp-dp h4 {
    font-family: inherit;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}

.bp-dp a {
    color: #34A14F;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.bp-dp a:hover {
    border-bottom-color: #34A14F;
}


/* ── HERO ── */

.bp-dp__hero {
    text-align: center;
    padding: 56px 20px 40px;
}

.bp-dp__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #34A14F;
    background: #edf7f0;
    border: 1px solid #b8e0c4;
    border-radius: 30px;
    padding: 6px 20px;
    margin-bottom: 22px;
}

.bp-dp__title {
    font-size: clamp(26px, 5vw, 44px);
    color: #1e3a1e;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.bp-dp__intro {
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.8;
    color: #4a4740;
    max-width: 660px;
    margin: 0 auto;
}


/* ── APPROVAL SECTION ── */

.bp-dp__approval {
    background: #faf8f4;
    border-top: 1px solid #e8e2d8;
    border-bottom: 1px solid #e8e2d8;
    margin: 0 -20px 0;
    padding: 44px 32px 40px;
}

.bp-dp__approval-inner {
    max-width: 660px;
    margin: 0 auto;
}

.bp-dp__section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #7a7570;
    margin-bottom: 14px;
}

.bp-dp__approval h2 {
    font-size: clamp(22px, 4vw, 30px);
    color: #1e3a1e;
    margin-bottom: 20px;
}

.bp-dp__approval p {
    font-size: clamp(14px, 2vw, 16px);
    color: #4a4740;
    line-height: 1.8;
    margin: 0 0 14px;
}

.bp-dp__approval-bypass {
    margin-top: 18px !important;
    padding-top: 16px;
    border-top: 1px solid #e8e2d8;
    font-size: 14px !important;
    color: #5a8a3a !important;
}


/* ── NOTICES ── */

.bp-dp__notices {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 760px;
    margin: 36px auto 44px;
    padding: 0 4px;
}

.bp-dp__notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 12px;
    padding: 18px 20px;
}

.bp-dp__notice-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.bp-dp__notice strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

.bp-dp__notice p {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.65;
}

.bp-dp__notice p:last-child {
    margin-bottom: 0;
}

/* Notice colour variants */
.bp-dp__notice--hours {
    background: #fff8ec;
    border: 1.5px solid #e8b84b;
    border-left: 5px solid #e8b84b;
}
.bp-dp__notice--hours strong { color: #8a6a00; }
.bp-dp__notice--hours p { color: #6b5200; }

.bp-dp__notice--policy {
    background: #edf7f0;
    border: 1.5px solid #34A14F;
    border-left: 5px solid #34A14F;
}
.bp-dp__notice--policy strong { color: #1e6b30; }
.bp-dp__notice--policy p { color: #2d5a3a; }

.bp-dp__notice--cancel {
    background: #fef7f0;
    border: 1.5px solid #d4a574;
    border-left: 5px solid #d4a574;
}
.bp-dp__notice--cancel strong { color: #7a5c3a; }
.bp-dp__notice--cancel p { color: #6b5240; }
.bp-dp__notice--cancel a { color: #7a5c3a; font-weight: 600; }


/* ── SECTION HEADER ── */

.bp-dp__section-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 8px;
}

.bp-dp__section-header h2 {
    font-size: clamp(20px, 3.5vw, 26px);
    color: #1e3a1e;
    margin-bottom: 8px;
}

.bp-dp__section-header p {
    font-size: 14px;
    color: #7a7570;
    margin: 0;
}


/* ── METHOD CARDS ── */

.bp-dp__card {
    background: #fff;
    border: 1.5px solid #e0e8d4;
    border-radius: 16px;
    padding: 30px 26px 34px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease;
}

.bp-dp__card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Top accent bar */
.bp-dp__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}

.bp-dp__card--green::before  { background: linear-gradient(90deg, #34A14F, #5abf6e); }
.bp-dp__card--amber::before  { background: linear-gradient(90deg, #c8860a, #e8b84b); }
.bp-dp__card--teal::before   { background: linear-gradient(90deg, #2e7d6e, #5ab8a8); }
.bp-dp__card--brown::before  { background: linear-gradient(90deg, #7a5c3a, #b8906a); }


/* Card header */
.bp-dp__card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0ebe4;
    flex-wrap: wrap;
}

.bp-dp__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.bp-dp__card--green .bp-dp__card-icon  { background: #edf7f0; }
.bp-dp__card--amber .bp-dp__card-icon  { background: #fff8ec; }
.bp-dp__card--teal  .bp-dp__card-icon  { background: #eaf6f4; }
.bp-dp__card--brown .bp-dp__card-icon  { background: #f8f3ee; }

.bp-dp__card-title {
    flex: 1;
    min-width: 0;
}

.bp-dp__card-title h3 {
    font-size: clamp(17px, 3vw, 21px);
    color: #1e3a1e;
    margin-bottom: 8px;
}


/* Pills */
.bp-dp__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bp-dp-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    padding: 3px 12px;
    line-height: 1.4;
}

.bp-dp-pill--green   { color: #1e6b30; background: #edf7f0; }
.bp-dp-pill--amber   { color: #8a6a00; background: #fff8ec; }
.bp-dp-pill--teal    { color: #2e7d6e; background: #eaf6f4; }
.bp-dp-pill--brown   { color: #7a5c3a; background: #f8f3ee; }

.bp-dp-pill--outline {
    background: transparent;
    border: 1px solid currentColor;
    opacity: 0.8;
}


/* Card intro text */
.bp-dp__card-intro {
    font-size: 14px;
    color: #4a4740;
    line-height: 1.7;
    margin: 0 0 22px;
}


/* ── STEPS ── */

.bp-dp__steps {
    display: flex;
    flex-direction: column;
}

.bp-dp__step {
    display: flex;
    gap: 14px;
    padding-bottom: 22px;
}

.bp-dp__step:last-child {
    padding-bottom: 0;
}

.bp-dp__step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 32px;
}

.bp-dp__step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}

.bp-dp__card--green .bp-dp__step-num  { background: #34A14F; }
.bp-dp__card--amber .bp-dp__step-num  { background: #c8860a; }
.bp-dp__card--teal  .bp-dp__step-num  { background: #2e7d6e; }
.bp-dp__card--brown .bp-dp__step-num  { background: #7a5c3a; }

.bp-dp__step-line {
    flex: 1;
    width: 2px;
    margin-top: 4px;
    min-height: 16px;
}

.bp-dp__card--green .bp-dp__step-line  { background: #c5e0ca; }
.bp-dp__card--amber .bp-dp__step-line  { background: #f0d898; }
.bp-dp__card--teal  .bp-dp__step-line  { background: #b8e0da; }
.bp-dp__card--brown .bp-dp__step-line  { background: #d8c4ae; }

.bp-dp__step:last-child .bp-dp__step-line {
    display: none;
}

.bp-dp__step-body {
    padding-top: 4px;
    flex: 1;
    min-width: 0;
}

.bp-dp__step-body strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e3a1e;
    margin-bottom: 5px;
    line-height: 1.35;
}

.bp-dp__step-body p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #5a5650;
}

.bp-dp__step-body p a {
    font-size: inherit;
}


/* ── CALLOUT BOXES ── */

.bp-dp__callout {
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 22px;
}

.bp-dp__callout > strong {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.bp-dp__callout p {
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 1.7;
    color: #5a5650;
}

.bp-dp__callout p:last-child { margin-bottom: 0; }

.bp-dp__callout--green {
    background: #f2f9f4;
    border: 1px solid #c5e0ca;
}
.bp-dp__callout--green > strong { color: #34A14F; }

.bp-dp__callout--amber {
    background: #fffbf3;
    border: 1px solid #f0d898;
}
.bp-dp__callout--amber > strong { color: #c8860a; }
.bp-dp__callout--amber.bp-dp__callout--warning { border-color: #e0a840; }

.bp-dp__callout--teal {
    background: #f2faf8;
    border: 1px solid #b8e0da;
}
.bp-dp__callout--teal > strong { color: #2e7d6e; }

.bp-dp__callout--brown {
    background: #faf6f2;
    border: 1px solid #d8c4ae;
}
.bp-dp__callout--brown > strong { color: #7a5c3a; }


/* ── TRACKING SECTION ── */

.bp-dp__tracking {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f0fdf4;
    border: 1px solid #b8e0ca;
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 22px;
}

.bp-dp__tracking-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.bp-dp__tracking strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e3a1e;
    margin-bottom: 5px;
}

.bp-dp__tracking p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #4a4740;
}


/* ── PRICING GRID (Courier to Door) ── */

.bp-dp__pricing {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid #e0ece4;
}

.bp-dp__pricing h4 {
    font-size: 16px;
    color: #1e3a1e;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bp-dp__price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.bp-dp__price-zone {
    background: #f8faf5;
    border: 1px solid #dde8cc;
    border-radius: 10px;
    padding: 16px;
}

.bp-dp__zone-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2e7d6e;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.bp-dp__zone-note {
    font-size: 11px;
    color: #7a9e5f;
    margin: 0 0 10px;
    line-height: 1.4;
}

.bp-dp__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 5px 0;
    border-bottom: 1px solid #eef3e8;
    color: #4a4740;
    gap: 8px;
}

.bp-dp__price-row:last-child { border-bottom: none; }

.bp-dp__price-row span:last-child {
    font-weight: 600;
    color: #1e3a1e;
    white-space: nowrap;
}

.bp-dp__price-disclaimer {
    font-size: 12px;
    color: #7a9e5f;
    margin: 16px 0 0;
    text-align: center;
}


/* ── CLOSING ── */

.bp-dp__closing {
    text-align: center;
    padding: 48px 16px 10px;
}

.bp-dp__closing p {
    font-size: 15px;
    color: #6b6860;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.bp-dp__closing a {
    color: #34A14F;
    font-weight: 600;
    border-bottom: 1px solid #34A14F;
}


/* ============================================
   TABLET — 768px and below
   ============================================ */

@media (max-width: 768px) {

    .bp-dp__card {
        padding: 24px 20px 28px;
        border-radius: 12px;
    }

    .bp-dp__price-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bp-dp__approval {
        padding: 36px 24px 32px;
    }
}


/* ============================================
   PHONE — 540px and below
   ============================================ */

@media (max-width: 540px) {

    .bp-dp {
        padding: 0 14px 60px;
    }

    .bp-dp__hero {
        padding: 36px 8px 28px;
    }

    .bp-dp__title {
        font-size: 26px;
    }

    .bp-dp__approval {
        margin: 0 -14px;
        padding: 28px 18px 24px;
    }

    .bp-dp__notices {
        margin: 28px auto 36px;
    }

    .bp-dp__notice {
        flex-direction: column;
        gap: 8px;
        padding: 14px 16px;
    }

    .bp-dp__card {
        padding: 20px 16px 24px;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .bp-dp__card-header {
        gap: 12px;
        margin-bottom: 18px;
        padding-bottom: 14px;
    }

    .bp-dp__card-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
        border-radius: 10px;
    }

    .bp-dp__card-title h3 {
        font-size: 17px;
    }

    .bp-dp__step {
        gap: 12px;
        padding-bottom: 18px;
    }

    .bp-dp__step-marker {
        width: 28px;
    }

    .bp-dp__step-num {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .bp-dp__price-grid {
        grid-template-columns: 1fr;
    }

    .bp-dp__price-zone {
        padding: 14px;
    }

    .bp-dp__tracking {
        flex-direction: column;
        gap: 8px;
    }

    .bp-dp__section-header {
        padding: 0 4px;
        margin-bottom: 22px;
    }

    .bp-dp__closing {
        padding: 32px 8px 10px;
    }

    .bp-dp__closing p {
        font-size: 14px;
    }
}


/* ============================================
   VERY SMALL — 375px and below
   ============================================ */

@media (max-width: 375px) {

    .bp-dp {
        padding: 0 10px 50px;
    }

    .bp-dp__card {
        padding: 16px 12px 20px;
    }

    .bp-dp__title {
        font-size: 23px;
    }

    .bp-dp__intro {
        font-size: 13px;
    }

    .bp-dp__card-title h3 {
        font-size: 16px;
    }

    .bp-dp__price-row {
        font-size: 12px;
    }
}
