/* ================================
   DELIVERY-SPEED.CSS - v4.0.0
   ZERO !important nos espaçamentos
   Controle 100% via Elementor
   ================================ */

/* Container - SEM espaços e SEM important */
.spz-delivery-speed {
    width: 100%;
}

/* Options Container - SEM gaps e SEM important */
.spz-delivery-options {
    display: flex;
    width: 100%;
}

/* Layout Vertical */
.spz-delivery-options.layout-vertical {
    flex-direction: column;
}

/* Layout Horizontal */
.spz-delivery-options.layout-horizontal {
    flex-direction: row;
    flex-wrap: nowrap;
}

.spz-delivery-options.layout-horizontal .spz-delivery-option {
    flex: 1;
    min-width: 0;
}

/* Option Card - SEM espaços e SEM important */
.spz-delivery-option {
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Label - SEM espaços e SEM important */
.spz-delivery-label {
    font-weight: 600;
    display: block;
}

/* Description - SEM espaços e SEM important */
.spz-delivery-description {
    display: block;
    font-size: 0.9em;
}

/* Mobile - mantém estrutura limpa */
@media (max-width: 768px) {
    .spz-delivery-options.layout-horizontal {
        flex-direction: row;
    }
    
    .spz-delivery-label {
        font-size: 0.85em;
    }
    
    .spz-delivery-description {
        font-size: 0.75em;
    }
}