/* Friture Premium Page Styling */
.fritures-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/strike/menu_friture.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.fritures-hero h2 {
    font-family: 'Lilita One', cursive;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.friture-section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.friture-section-title h2 {
    color: #e3000e;
    font-family: 'Lilita One', cursive;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.friture-section-title p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

/* Premium Card Design */
.friture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.friture-grid.frites-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.friture-grid.tenders-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {

    .friture-grid,
    .friture-grid.tenders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .friture-grid,
    .friture-grid.frites-grid,
    .friture-grid.tenders-grid {
        grid-template-columns: 1fr;
    }
}

.friture-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.friture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.friture-img-wrapper {
    position: relative;
    height: 240px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.friture-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.friture-card:hover .friture-img-wrapper img {
    transform: translateY(-10px) scale(1.05);
}

@keyframes floatFriture {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.friture-card:hover .friture-img-wrapper img {
    animation: floatFriture 2s ease-in-out infinite;
}

.friture-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.friture-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.friture-desc,
.burger-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
    flex-grow: 1;
}

.friture-price-box {
    background: #3e2723;
    color: #fff;
    width: fit-content;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: auto;
}

/* Peanut oil banner */
.peanut-oil-banner {
    text-align: center;
    margin: 40px auto 60px;
}

.peanut-oil-banner img {
    height: 100px;
    width: auto;
    margin-bottom: 15px;
}

.peanut-oil-banner h5 {
    font-family: 'Lilita One', cursive;
    color: #333;
    text-transform: uppercase;
}