/* Tarjetas Sube tu diseño / Diseñamos por ti (ficha producto + presupuesto). */

.design-options {
    display: flex;
    gap: 16px;
}

.design-option {
    flex: 1;
    min-width: 240px;
    border: 2px solid #E1E4E7;
    border-radius: 24px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #F5F5F5;
}

.design-option:hover {
    border-color: #E5007E;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(229, 0, 126, 0.1);
}

.design-option button {
    cursor: pointer;
}

.design-option .text-dark {
    color: #000000 !important;
    font-family: 'Work Sans', sans-serif !important;
}

.design-option .fw-bold.text-dark {
    font-weight: bold !important;
    font-size: 16px !important;
    line-height: 19px !important;
    letter-spacing: 0px !important;
    text-align: left !important;
}

.design-option p.text-dark.small {
    font-weight: normal !important;
    font-size: 14px !important;
    line-height: 22px !important;
    letter-spacing: 0px !important;
    text-align: left !important;
    color: #000000 !important;
}

.design-dropzone {
    border-radius: 16px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.design-dropzone.is-dragover {
    background-color: rgba(229, 0, 126, 0.06);
    outline: 2px dashed #E5007E;
    outline-offset: 4px;
}

.design-option.has-file {
    border-color: #E5007E;
}

.design-file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.design-file-item {
    position: relative;
    width: 96px;
    text-align: center;
}

.design-file-item-link {
    display: block;
    color: #000;
    text-decoration: none;
}

.design-file-item-link:hover {
    color: #E5007E;
    text-decoration: none;
}

.design-file-item-icon {
    font-size: 36px;
    color: #E5007E;
    line-height: 1.2;
    margin-bottom: 4px;
}

.design-file-item-name {
    font-size: 11px;
    line-height: 1.25;
    word-break: break-word;
    margin: 0;
}

.design-file-item-size {
    font-size: 10px;
    color: #6c757d;
    margin: 0;
}

.design-file-item-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #dc3545;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    line-height: 1;
    cursor: pointer;
}

.design-file-item-remove:hover {
    background: #dc3545;
    color: #fff;
}

.custom-radio-circle {
    width: 28px;
    height: 28px;
    border: 2px solid #D6DAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.custom-radio-circle.active {
    border-color: #E5007E;
}

.inner-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
}

.custom-radio-circle.active .inner-circle {
    background: #E5007E;
}

.btn-pink-custom {
    background-color: #E5007E !important;
    color: white !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.btn-pink-custom:hover {
    background-color: #c4006b !important;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .design-options {
        flex-direction: column;
    }
}
