/* ============================================ */
/* Estilos Específicos - Página Cestas Básicas  */
/* ============================================ */

.cesta-page-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.cesta-page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cesta-page-header .logo img {
    max-height: 50px;
}

.btn-voltar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-voltar:hover {
    background: #d9601e;
    transform: translateY(-2px);
}

/* Banner */
.cesta-banner {
    width: 100%;
    overflow: hidden;
}

.cesta-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Seção de Cards */
.cestas-section {
    padding: 60px 0;
}

.cestas-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.cestas-section .section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.cestas-section .section-title p {
    font-size: 1.1rem;
    color: #666;
}

.cestas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

/* Card Individual */
.cesta-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cesta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.cesta-card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff8f0, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cesta-card-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.cesta-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cesta-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cesta-card-header h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
}

.cesta-badge {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.destaque-feira {
    color: #e74c3c;
    font-weight: 900;
    font-size: 1.1rem;
    text-align: left;
    margin-top: -15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: attention-shake 3s ease-in-out infinite;
}

@keyframes attention-shake {
    0%, 100% { transform: translateX(0) scale(1); }
    5%, 15%, 25%, 35%, 45% { transform: translateX(-3px) rotate(-1deg) scale(1.05); }
    10%, 20%, 30%, 40% { transform: translateX(3px) rotate(1deg) scale(1.05); }
    50% { transform: translateX(0) scale(1); }
}

.cesta-items {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.cesta-items li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cesta-items li:last-child {
    border-bottom: none;
}

.cesta-items li i {
    color: #27ae60;
    font-size: 0.8rem;
    min-width: 16px;
}

.cesta-price {
    text-align: center;
    padding: 15px 0;
    border-top: 2px solid #f0f0f0;
    margin-bottom: 15px;
}

.cesta-price .price-label {
    font-size: 0.85rem;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.cesta-price .price-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-orange);
}

.btn-pedir {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background-color: #25d366;
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-pedir:hover {
    background-color: #128c7e;
    transform: scale(1.02);
}

/* Responsivo */
@media (max-width: 992px) {
    .cestas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cestas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cestas-section .section-title h2 {
        font-size: 1.6rem;
    }

    .cesta-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .btn-voltar span {
        display: none;
    }
}
