/**
 * Sweet Box Styles
 * CSS para la funcionalidad de Sweet Box en el carrito
 */

/* ========================================
   Sweet Box Controls
   ======================================== */

.sweet-box-controls {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
    border: 2px solid #d8b4e2;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(255, 182, 213, 0.15);
}

.sweet-box-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sweet-box-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.sweet-box-icon {
    font-size: 2rem;
    color: #8b5cf6;
}

.sweet-box-text h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #6a47b9;
    margin: 0 0 0.5rem 0;
}

.sweet-box-text p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.btn-create-sweetbox {
    background: linear-gradient(135deg, #8b5cf6 0%, #d8b4e2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-create-sweetbox:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.available-for-sweetbox {
    margin-top: 1rem;
    text-align: center;
}

.available-for-sweetbox small {
    color: #666;
    font-style: italic;
}

/* ========================================
   Sweet Box Container
   ======================================== */

.sweet-box-container {
    background: linear-gradient(135deg, #fff9fc 0%, #f8f9ff 100%);
    border: 2px solid #d8b4e2;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(255, 182, 213, 0.2);
}

.sweet-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5d3f3;
}

.sweet-box-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #6a47b9;
}

.sweet-box-title i {
    color: #8b5cf6;
    font-size: 1.5rem;
}

.sweet-box-count {
    background: #8b5cf6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.sweet-box-remove {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s ease;
}

.sweet-box-remove:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
}

/* ========================================
   Sweet Box Items
   ======================================== */

.sweet-box-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.sweet-box-item {
    background: white;
    border: 1px solid #e5d3f3;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.sweet-box-item:hover {
    box-shadow: 0 4px 12px rgba(255, 182, 213, 0.15);
    transform: translateY(-1px);
}

.sweet-box-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5d3f3;
}

.sweet-box-item-info {
    flex: 1;
    min-width: 0;
}

.sweet-box-item-name {
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #6a47b9;
    display: block;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.sweet-box-item-price {
    font-size: 0.75rem;
    color: #8b5cf6;
    font-weight: 500;
}

.sweet-box-item-remove {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.sweet-box-item-remove:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
}

/* ========================================
   Sweet Box Add More / Complete
   ======================================== */

.sweet-box-add-more {
    background: #f8f9ff;
    border: 2px dashed #d8b4e2;
    border-radius: 8px;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-add-to-sweetbox {
    background: linear-gradient(135deg, #d8b4e2 0%, #f4c2c2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-add-to-sweetbox:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 213, 0.3);
}

.sweet-box-complete {
    background: linear-gradient(135deg, #d1fae5 0%, #f0fdf4 100%);
    border: 2px solid #34d399;
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    color: #065f46;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.sweet-box-complete i {
    font-size: 2rem;
    color: #10b981;
    display: block;
    margin-bottom: 0.5rem;
}

/* ========================================
   Item Sweet Box Controls
   ======================================== */

.sweet-box-status {
    background: #f0f9ff;
    border: 1px solid #7dd3fc;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #0c4a6e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sweet-box-status i {
    color: #0284c7;
}

.sweet-box-item-controls {
    margin-top: 0.5rem;
}

.sweet-box-add-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.sweet-box-select {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    background: white;
    color: #374151;
}

.btn-add-to-selected-sweetbox,
.btn-create-sweetbox-with-item,
.btn-remove-from-sweetbox {
    background: linear-gradient(135deg, #d8b4e2 0%, #f4c2c2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-add-to-selected-sweetbox:hover,
.btn-create-sweetbox-with-item:hover,
.btn-remove-from-sweetbox:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 182, 213, 0.3);
}

.btn-remove-from-sweetbox {
    background: linear-gradient(135deg, #f87171 0%, #fca5a5 100%);
}

.btn-remove-from-sweetbox:hover {
    box-shadow: 0 4px 12px rgba(248, 113, 113, 0.3);
}

/* ========================================
   Sweet Box Complete Modal
   ======================================== */

.sweet-box-complete-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.sweet-box-complete-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
}

.sweet-box-complete-content .sweet-box-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.sweet-box-complete-content h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #6a47b9;
    margin-bottom: 0.5rem;
}

.sweet-box-complete-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.sweet-box-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.sweet-box-item-mini {
    text-align: center;
}

.sweet-box-item-mini img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #d8b4e2;
    margin-bottom: 0.25rem;
}

.sweet-box-item-mini span {
    font-size: 0.75rem;
    color: #666;
    display: block;
    line-height: 1.2;
}

.sweet-box-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.sweet-box-actions button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sweet-box-actions button:first-child {
    background: #f3f4f6;
    color: #374151;
}

.sweet-box-actions button:last-child {
    background: linear-gradient(135deg, #8b5cf6 0%, #d8b4e2 100%);
    color: white;
}

/* ========================================
   Sweet Box Product Selector Modal
   ======================================== */

.sweet-box-product-selector-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.sweet-box-product-selector-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
}

.sweet-box-product-selector-content h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #6a47b9;
    text-align: center;
    margin-bottom: 1rem;
}

.sweet-box-product-selector-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.sweet-box-product-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sweet-box-product-option {
    background: #f8f9ff;
    border: 2px solid #e5d3f3;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sweet-box-product-option:hover {
    border-color: #d8b4e2;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 182, 213, 0.3);
}

.sweet-box-product-option img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid #e5d3f3;
}

.sweet-box-product-option .product-info h4 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #6a47b9;
    margin: 0 0 0.5rem 0;
}

.sweet-box-product-option .product-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.sweet-box-product-option .product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b5cf6;
    margin: 0 0 1.5rem 0;
}

.btn-select-sweet-box-product {
    background: linear-gradient(135deg, #8b5cf6 0%, #d8b4e2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-sweet-box-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.sweet-box-product-summary {
    background: linear-gradient(135deg, #f0f9ff 0%, #f8f9ff 100%);
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sweet-box-product-summary h4 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin: 0 0 1rem 0;
    text-align: center;
}

.sweet-box-summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.summary-item {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.summary-total {
    text-align: center;
    font-weight: 600;
    color: #1e40af;
    font-size: 1.1rem;
    margin: 0;
}

/* ========================================
   Sweet Box Selector Modal
   ======================================== */

.sweet-box-selector-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.sweet-box-selector-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
}

.sweet-box-selector-content h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6a47b9;
    text-align: center;
    margin-bottom: 1.5rem;
}

.sweet-box-selector-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.sweet-box-selector-item {
    background: #f8f9ff;
    border: 2px solid #e5d3f3;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s ease;
}

.sweet-box-selector-item:hover {
    border-color: #d8b4e2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 213, 0.2);
}

.sweet-box-selector-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #e5d3f3;
}

.sweet-box-selector-item .item-info h4 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #6a47b9;
    margin: 0 0 0.5rem 0;
}

.sweet-box-selector-item .item-info p {
    font-size: 0.875rem;
    color: #8b5cf6;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.btn-select-for-sweetbox {
    background: linear-gradient(135deg, #d8b4e2 0%, #f4c2c2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-select-for-sweetbox:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 182, 213, 0.3);
}

.btn-cancel {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    margin: 0 auto;
}

.btn-cancel:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   Mobile Responsive
   ======================================== */

@media (max-width: 768px) {
    .sweet-box-intro {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .sweet-box-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .sweet-box-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .sweet-box-item img {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .sweet-box-item-info {
        text-align: center;
    }

    .sweet-box-item-name {
        font-size: 0.875rem;
        line-height: 1.2;
    }

    .sweet-box-item-quantity {
        font-size: 0.75rem;
    }

    .sweet-box-item-price {
        font-size: 0.875rem;
    }

    .sweet-box-add-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .sweet-box-selector-items {
        grid-template-columns: 1fr;
    }

    /* Asegurar que sweet-box-add-more tenga el mismo ancho que los items */
    .sweet-box-add-more {
        grid-column: 1 / -1; /* Ocupar todo el ancho del grid */
        margin-top: 0.5rem;
        padding: 1rem 0.5rem;
    }

    .sweet-box-add-more .btn-add-to-sweetbox {
        width: 100%;
        justify-content: center;
        font-size: 0.875rem;
        padding: 0.75rem 0.5rem;
        text-align: center;
    }

    .sweet-box-item-mini img {
        width: 40px;
        height: 40px;
    }

    .sweet-box-item-mini span {
        font-size: 0.625rem;
    }
}

@media (max-width: 480px) {
    .sweet-box-controls {
        padding: 1rem;
    }

    .sweet-box-container {
        padding: 1rem;
    }

    .sweet-box-text h3 {
        font-size: 1.25rem;
    }

    .sweet-box-text p {
        font-size: 0.875rem;
    }

    /* Grid de 2 columnas para pantallas muy pequeñas */
    .sweet-box-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .sweet-box-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .sweet-box-item img {
        width: 40px;
        height: 40px;
    }

    .sweet-box-item-name {
        font-size: 0.75rem;
        line-height: 1.1;
    }

    .sweet-box-item-quantity {
        font-size: 0.7rem;
    }

    .sweet-box-item-price {
        font-size: 0.75rem;
    }

    /* Botón agregar más ocupa todo el ancho en móviles pequeños también */
    .sweet-box-add-more {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
        padding: 0.75rem 0.25rem;
    }

    .sweet-box-add-more .btn-add-to-sweetbox {
        width: 100%;
        font-size: 0.8rem;
        padding: 0.6rem 0.25rem;
        line-height: 1.2;
    }

    .sweet-box-selector-content {
        padding: 1.5rem;
    }

    .sweet-box-complete-content {
        padding: 1.5rem;
    }
}

/* Estilos para controles de cantidad deshabilitados en productos Sweet Box */
.qty-btn[disabled] {
    background-color: #e5e5e5 !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.qty-btn[disabled]:hover {
    background-color: #e5e5e5 !important;
    color: #9ca3af !important;
}

/* Estilo específico para cantidad de productos en Sweet Box */
.quantity-in-sweetbox {
    color: #9ca3af !important;
    font-style: italic;
}

/* ========================================
   Sweet Box Dedication Functionality
   ======================================== */

/* Actualizar header del Sweet Box para incluir acciones */
.sweet-box-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sweet-box-dedication {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.sweet-box-dedication:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.4);
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.sweet-box-dedication i {
    font-size: 0.9rem;
}

/* Vista previa de la dedicatoria */
.sweet-box-dedication-preview {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
}

.dedication-card {
    background: linear-gradient(135deg, #fef7ff 0%, #fdf2f8 100%);
    border: 2px solid #f8d7da;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(248, 215, 218, 0.2);
}

.dedication-icon {
    color: #ec4899;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.dedication-content {
    flex: 1;
}

.dedication-label {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #db2777;
    margin-bottom: 0.3rem;
}

.dedication-message {
    font-style: italic;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.4;
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #ec4899;
}

.dedication-edit {
    background: transparent;
    border: 1px solid #ec4899;
    color: #ec4899;
    border-radius: 4px;
    padding: 0.3rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.dedication-edit:hover {
    background: #ec4899;
    color: white;
}

/* Modal de dedicatoria - Simplificado sin vista previa */

/* Responsive para móvil */
@media (max-width: 768px) {
    .sweet-box-dedication .dedication-text {
        display: none;
    }
    
    .sweet-box-dedication {
        padding: 0.4rem;
        min-width: auto;
    }
    
    .sweet-box-dedication i {
        margin: 0;
    }
    
    .dedication-card {
        flex-direction: column;
        text-align: center;
    }
    
    .dedication-icon {
        margin-bottom: 0.5rem;
    }
    
    .sweet-box-dedication-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .dedication-card-preview {
        padding: 1.5rem 1rem;
    }
    
    .card-message {
        font-size: 1rem;
    }
}