/* Estilos para el catálogo de frutas */
.tabs-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #fff;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    background-color: #f0f0f0;
    color: #4CAF50;
}

.tab-btn.active {
    background-color: #fff;
    color: #4CAF50;
    border-bottom: 3px solid #4CAF50;
}

.country-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.tab-content h4 {
    color: #4CAF50;
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.availability-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.availability-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.availability-table th, 
.availability-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.availability-table th {
    background-color: #f8f8f8;
    font-weight: 600;
}

.availability-table td:first-child {
    text-align: left;
    font-weight: 600;
    background-color: #f8f8f8;
}

.available {
    position: relative;
    background-color: rgba(76, 175, 80, 0.2);
}

.available::after {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
}

.no-available {
    background-color: rgba(244, 67, 54, 0.1);
}

.featured-fruits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.featured-fruit {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.featured-fruit:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-fruit h5 {
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.featured-fruit p {
    margin: 5px 0;
    color: #666;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
    
    .featured-fruits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tab-content h3 {
        font-size: 1.3rem;
    }
    
    .tab-content h4 {
        font-size: 1.1rem;
    }
    
    .availability-table th, 
    .availability-table td {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}
