/* Har WAPF field as step */


.wapf-field-container.product-step {
    border: 1px solid #4ab2c5;
    border-radius: 10px;
    margin-bottom: 14px;
    background: #ffffff;
    overflow: hidden;
}

/* Header */
.product-step__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-step__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-step__index {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid #4ab2c5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    background: #f6f6f6;
}

.product-step__titles {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-step__step-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
}

.product-step__title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Right side icons */
.product-step__right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.product-step__tick {
    display: none;
    font-weight: 700;
    color: #2e7d32;
}

.product-step__chevron {
    font-size: 14px;
    transition: transform 0.2s ease;
}

/* Open state */
.wapf-field-container.product-step.is-open .product-step__header {
    background: #f4f7ff;
    box-shadow: 0 0 0 1px #d9e2ff inset;
}

/* Chevron rotate */
.wapf-field-container.product-step.is-open .product-step__chevron {
    transform: rotate(180deg);
}

/* Complete state */
.wapf-field-container.product-step.is-complete .product-step__tick {
    display: inline-block;
}

.wapf-field-container.product-step.is-complete .product-step__index {
    background: #2e7d32;
    color: #fff;
    border-color: #4ab2c5;
}

/* Body */
.product-step__body {
    padding: 14px 16px 16px;
    border-top: 2px dashed #4ab2c5;
}

/* WAPF inner text tweak */
.product-step__body .wapf-field-description {
    margin-bottom: 10px;
    font-size: 13px;
    color: #666;
}

/* Price summary box under main price */
.product-price-summary {
    margin-top: 6px;
    padding: 8px 11px;
    border-radius: 6px;
    background: #f7f7f7;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-size: 14px;
}

.product-price-summary__label {
    font-weight: 600;
}

.product-price-summary__value {
    font-weight: 700;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .product-step__header {
        padding: 10px 12px;
    }
    .product-step__body {
        padding: 12px;
    }
}
