/**
 * Extras Cards Styles
 */

/* Extras Card Container */
.extras-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* Individual Card */
.extras-card {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: calc(50% - 10px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.extras-card:hover {
    border-color: #FCCB11;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Badge for "Más Popular" */
.extras-card-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #79c986;
    color: white;
    padding: 5px 15px;
    border-radius: 0 0 8px 0;
    font-size: 14px;
    font-weight: bold;
    z-index: 2;
}

/* Card Content Layout */
.extras-card-content {
    display: flex;
}

/* Image Container */
.extras-card-image {
    width: 30%;
    padding: 15px;
}

.extras-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* Info Container */
.extras-card-info {
    width: 70%;
    padding: 15px;
}

.extras-card-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

/* Includes Section */
.extras-card-includes {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.extras-card-includes .checkmark {
    color: #79c986;
    font-weight: bold;
    margin-right: 5px;
}

/* Add to Cart Button */
.extras-add-btn {
    background-color: #FCCB11;
    color: #333;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.extras-add-btn:hover {
    background-color: #e9b800;
}

.extras-add-btn.selected {
    background-color: #79c986;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .extras-card {
        width: 100%;
    }
    
    .extras-card-content {
        flex-direction: column;
    }
    
    .extras-card-image, 
    .extras-card-info {
        width: 100%;
    }
}
