/**
 * Recept Oldal Stílusok
 */

.recept-hero-cim {
    text-align: center;
        font-family: "proxima-nova", Sans-serif;
    padding: 40px 20px;
}

.recept-kategoria {
    display: flex;
}


span.recept-kategoria-nev {
    font-size: 20px;
    background-color: #ce2424;
    font-family: "proxima-nova", Sans-serif;
    color: white;
    font-weight: 800;
    padding: 0px 15px;
}

span.recept-szo {
    background-color: white;
    color: #1D2327;
    padding: 0px 5px;
}

/* Elkészítési lépések */
.recept-elkeszites {
           font-family: "proxima-nova", Sans-serif;
}

.recept-elkeszites-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.recept-lepes-szam {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background-color: #ce2424;
    color: white;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
        margin-top: 10px;
}

.recept-lepes-szoveg {
    margin: 0;
    padding-top: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.recept-cim {
    font-size: 42px;
    font-weight: 700;
    display: flex;
    width: 500px;
    flex-direction: row;
    flex-wrap: wrap;
}



.recept-hozzavalo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.recept-hozzavalok-cim {
    background-color: #ce2424;
    color: white;
    border-radius: 10px 10px 0px 0px;
    padding: 15px 20px;
}

.recept-hozzavalok {
    font-family: "proxima-nova", Sans-serif;
    border: 1px solid #00000052;
    border-radius: 10px;
    width: 300px;
}

.recept-hozzavalok-cim h2 {
    margin: 0px;
    font-size: 22px;
    font-weight: 700;
}

.recept-hozzavalok-lista {
        padding: 20px;
}

.recept-hozzavalo-item:last-child {
    border-bottom: none;
}

.recept-mertekegyseg {
    margin: 0;
    font-size: 16px;
    min-width: 80px;
}

.recept-hozzavalo {
    margin: 0;
        font-weight: 600;
    font-size: 16px;
}

/* Recept Termékek Grid */
.recept-termekek-container {
    max-width: 1650px;
    margin: 0 auto;
    font-family: "proxima-nova", Sans-serif;
}

.recept-termekek-cim h2 {
    margin: 0 0 20px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1D2327;
}

.recept-termekek-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 20px 0;
}

.recept-termek-item {
    background: #fbfbfb;
    border-radius: 15px;
    border: 1px solid #dbd8d5;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recept-termek-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.recept-termek-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border-radius: 15px;
}

.recept-termek-kedvezmeny {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #ce2424;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 15px 0px 0px 0px;
    z-index: 2;
}

.recept-termek-cimkek {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
    align-items: flex-start;
}

.recept-termek-cimke {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.recept-termek-cimke.recept-cimke-kiemelt {
    background: #333;
    color: #fff;
}

.recept-termek-cimke.recept-cimke-kiemelt-ajanlat {
    background: #d63638;
    color: #fff;
}

.recept-termek-cimke.recept-cimke-bio {
    background: #4caf50;
    color: #fff;
}

.recept-termek-cimke.recept-cimke-magyar-termek {
    background: #640102;
    color: #fff;
}

.recept-termek-cimke.recept-cimke-nagyszeru-ajanlat {
    background: #ff9800;
    color: #fff;
}

.recept-termek-cimke.recept-cimke-premium-minoseg {
    background: #f3f3f3;
    color: #000000;
}

.recept-termek-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.recept-termek-item:hover .recept-termek-image img {
    transform: scale(1.05);
}

.recept-termek-no-image {
    color: #999;
    font-size: 14px;
}

.recept-termek-info {
    padding: 20px 20px 0px 20px;
}

.recept-termek-title {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 700;
    color: #1D2327;
    line-height: 21px;
}

.recept-termek-mennyiseg {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.recept-termek-arak {
    padding: 20px;
    display: flex;
}

.recept-termek-arak-inner.has-akcio {
    background: #ce2424;
    padding: 12px;
    border-radius: 6px;
}

.recept-termek-arak-inner.no-akcio {
    padding: 0px;
}

.recept-termek-arak-inner.has-akcio .recept-termek-ar,
.recept-termek-arak-inner.has-akcio .recept-termek-akcios-ar,
.recept-termek-arak-inner.has-akcio .recept-termek-egysegar {
    color: #fff;
}

.recept-termek-ar {
    margin: 0 0 0px 0;
    color: #1D2327;
    font-size: 22px;
    font-weight: 800;
}

.recept-termek-ar.has-akcio {
    text-decoration: line-through;
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 0px 0;
}

.recept-termek-arak-inner.has-akcio .recept-termek-ar.has-akcio {
    color: rgba(255, 255, 255, 0.7);
}

.recept-termek-akcios-ar {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 0px;
    line-height: 25px;
}

.recept-termek-egysegar {
    margin: 0;
    font-size: 12px;
    color: #888;
}

/* Reszponzív */
@media (max-width: 1200px) {
    .recept-termekek-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .recept-termekek-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .recept-termek-title {
        font-size: 14px;
    }
    
    .recept-termek-ar {
        font-size: 16px;
    }
    
    .recept-termek-akcios-ar {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .recept-termekek-grid {
        grid-template-columns: 1fr;
    }
}

/* Recept Címkék */
.recept-cimkek-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-family: "proxima-nova", Sans-serif;
}

.recept-cimke-item {
    display: inline-block;
    background: #ce2424;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.2s ease;
}

.recept-cimke-item:hover {
    background: #e0e0e0;
}

/* Recept Megosztás */
.recept-megosztas-wrapper {
    font-family: "proxima-nova", Sans-serif;
}

.recept-megosztas-title {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1D2327;
}

.recept-megosztas-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.recept-megosztas-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.recept-megosztas-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.recept-megosztas-btn svg {
    width: 24px;
    height: 24px;
}

/* Email */
.recept-megosztas-email {
    background: #666;
    color: #fff;
}

/* Link másolás */
.recept-megosztas-link {
    background: #333;
    color: #fff;
}

.recept-megosztas-link.copied {
    background: #4caf50;
}

/* Pinterest */
.recept-megosztas-pinterest {
    background: #E60023;
    color: #fff;
}

/* Messenger */
.recept-megosztas-messenger {
    background: linear-gradient(45deg, #0078FF, #00C6FF);
    color: #fff;
}

/* Facebook */
.recept-megosztas-facebook {
    background: #1877F2;
    color: #fff;
}

@media (max-width: 480px) {
    .recept-megosztas-btn {
        width: 42px;
        height: 42px;
    }
    
    .recept-megosztas-btn svg {
        width: 20px;
        height: 20px;
    }
}