/* PDP "Delivery & Collection" section (replaces the old promo-tile info cards).
   Own file, linked from view-product's PageCSS — deliberately outside the VS-bundled css. */

.pdp-delivery {
    background: #fff;
    border: 1px solid #eadfd0;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(61, 44, 30, 0.05);
    padding: 26px 28px;
    margin: 10px 0 24px;
}

.pdp-delivery__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.pdp-delivery__header-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fdeef6;
    color: #d93d87;
    font-size: 18px;
}

.pdp-delivery__title {
    margin: 0;
    color: #3d2c1e;
    font-size: 24px;
    line-height: 1.2;
}

.pdp-delivery__subtitle {
    margin: 3px 0 0;
    color: #6a5f53;
    font-size: 14.5px;
    line-height: 1.4;
}

.pdp-delivery__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 18px;
    align-items: start;
}

.pdp-delivery__card {
    background: #fff;
    border: 1px solid #efe5d9;
    border-radius: 10px;
    padding: 18px 20px;
}

.pdp-delivery__card-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 6px;
    color: #3d2c1e;
    font-size: 16.5px;
    font-weight: 700;
}

.pdp-delivery__card-title i {
    color: #c63f86;
    font-size: 14px;
}

.pdp-delivery__stack {
    display: grid;
    gap: 14px;
}

/* UK delivery rows: icon | method + description | price */
.pdp-delivery__row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    column-gap: 12px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #f2ece2;
}

.pdp-delivery__row:last-child {
    border-bottom: none;
    padding-bottom: 2px;
}

.pdp-delivery__row-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #faf6f0;
    color: #a08f7c;
    font-size: 13px;
}

.pdp-delivery__row-name {
    color: #3d2c1e;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.3;
}

.pdp-delivery__row-desc {
    color: #6a5f53;
    font-size: 12.5px;
    line-height: 1.35;
}

.pdp-delivery__row-price {
    color: #c63f86;
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

/* Collect Near You: the one card allowed to look different (pale teal) */
.pdp-delivery__card--collect {
    background: #f0faf9;
    border-color: #bfe5e2;
}

.pdp-delivery__card--collect .pdp-delivery__card-title i {
    color: #1ea199;
}

.pdp-delivery__new {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 999px;
    background: #1ea199;
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pdp-delivery__copy {
    margin: 0;
    color: #6a5f53;
    font-size: 13.5px;
    line-height: 1.45;
}

.pdp-delivery__copy + .pdp-delivery__copy {
    margin-top: 3px;
}

.pdp-delivery__copy--strong {
    color: #3d2c1e;
    font-weight: 600;
}

/* Single-service card (Rest of the World): name/desc left, price right */
.pdp-delivery__single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pdp-delivery__link {
    display: inline-block;
    margin-top: 7px;
    color: #c63f86;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
}

.pdp-delivery__link:hover {
    color: #c63f86;
    text-decoration: underline;
}

@media only screen and (max-width: 991px) {
    .pdp-delivery {
        padding: 20px 16px;
    }

    /* Stack: UK Delivery, then Collect / Rest of World / Returns */
    .pdp-delivery__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pdp-delivery__title {
        font-size: 21px;
    }

    .pdp-delivery__row-price {
        font-size: 15px;
    }
}
