.mdcf-sale-box__inner {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    color: var(--ast-global-color-3, #111827);
}

.mdcf-sale-box__infos {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 24px;
}

.mdcf-sale-box__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 14px;
}

.mdcf-sale-box__row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.mdcf-sale-box__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    color: var(--ast-global-color-2, #1f2937);
}

.mdcf-sale-box__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    flex: 0 0 18px;
    color: var(--ast-global-color-0, #2563eb);
}

.mdcf-sale-box__icon svg {
    width: 18px;
    height: 18px;
}

.mdcf-sale-box__label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ast-global-color-2, #1f2937);
}

.mdcf-sale-box__value {
    flex: 1;
    text-align: right;
    font-size: 16px;
    line-height: 1.4;
    color: var(--ast-global-color-3, #111827);
}

.mdcf-sale-box__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mdcf-sale-box__button {
    width: 100%;
    min-height: 54px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mdcf-sale-box__button:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.mdcf-sale-box__button--secondary {
    background: var(--ast-global-color-5, #f5f5f5);
    color: var(--ast-global-color-0, #2563eb);
    border-color: var(--ast-border-color, #e5e7eb);
}

.mdcf-sale-box__button--secondary:hover {
    background: var(--ast-global-color-4, #eef2ff);
    color: var(--ast-global-color-1, #1d4ed8);
}

.mdcf-sale-box__button--primary {
    background: var(--ast-global-color-0, #2563eb);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mdcf-sale-box__button--primary:hover {
    background: var(--ast-global-color-1, #1d4ed8);
    color: #fff;
}

.mdcf-sale-box__button-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    flex: 0 0 18px;
}

.mdcf-sale-box__button-icon svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 767px) {
    .mdcf-sale-box__inner {
        padding: 20px;
    }

    .mdcf-sale-box__row {
        flex-direction: column;
        gap: 6px;
    }

    .mdcf-sale-box__meta {
        min-width: 0;
    }

    .mdcf-sale-box__value {
        text-align: left;
        padding-left: 28px;
    }
}
