@media (min-width: 769px) {
  html {
    zoom: 0.8;
  }
}
body {
    background: #383226 !important; 
    color: #2c1a0d;
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.logo-container {
    flex: 1;
    text-align: center;
}

.logo-circle {
    width: 100px;                
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    box-shadow: 0 6px 20px rgba(192,57,43,0.25);
    overflow: hidden;
    border: 4px solid white;
}

.logo-img {
    width: 60%;
    height: 60%;
    object-fit: cover;
}

.logo-text {
    font-size: 2.8rem;           
    font-weight: bold;
    color: #c0392b;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.icons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.favorites-wrapper {
    position: relative;
}

.favorites-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: white;
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    padding: 10rem 0 8rem;
    text-align: center;
    background: #fdfaf5; 
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    color: #c0392b;
    margin-bottom: 1.2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif; 
}

.hero-subtitle {
    font-size: 2.2rem;
    color: #444;
    margin-bottom: 6rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.flavor-grid {
    display: flex;
    justify-content: center;
    gap: 12rem; 
    flex-wrap: wrap;
}

.flavor-item {
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.flavor-circle {
    width: 340px;                
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavor-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;            
    object-position: center;      
    display: block;
}

.flavor-item:hover .flavor-circle {
    transform: scale(1.07);
}

.flavor-label {
    display: block;
    margin-top: 2.2rem;
    font-size: 2.8rem;
    font-weight: 700;
    color: #c0392b;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.menu-content {
    padding-top: 4rem;
}

.menu-section {
    padding: 6rem 0;
}

.menu-section h2 {
    font-size: 4.2rem;
    color: #c0392b;
    text-align: center;
    margin: 4rem 0 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-main-title {
    font-size: 6rem;                    
    font-weight: 900;
    color: #c0392b;                  
    text-align: center;
    margin: 6rem 0 5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif; 
    text-shadow: 0 4px 12px rgba(192,57,43,0.2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 3rem;
}

.box {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.box .image {
    height: 38rem;
    position: relative;
}

.box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.clean-img {
    width: 100%;
    height: 100%;
    object-fit: contain;               
    object-position: center;
    background: transparent;
    display: block;
}

.box:hover .image img {
    transform: scale(1.06);
}

.box .image .fa-heart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    width: 7rem;
    height: 7rem;
    line-height: 7rem;
    font-size: 3.2rem;
    color: #444;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
}

.box .image .fa-heart:hover,
.box .image .fa-heart.favorited {
    color: #e74c3c !important;
    transform: translate(-50%, -50%) scale(1.2);
    background: white;
    box-shadow: 0 15px 35px rgba(231,76,60,0.4);
}

.box .info {
    padding: 2rem;
    text-align: center;
}

.box .info .stars {
    font-size: 1.8rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.box .info h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.box .info .price {
    font-size: 2.8rem;
    color: var(--green);
    font-weight: bold;
}

#ickiler .box .image {
    height: 820px;
}

#ickiler .box .image img {
    object-fit: contain;    
    width: 100%;
    height: 100%;
}

#ickiler .box .content {
    padding: 1.5rem;        
    text-align: center;
}

/* ============================================
   MOBİL — yalnız bu hissə dəyişdi
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem 2rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }
    .flavor-grid {
        gap: 2rem;
        padding: 0 1rem;
    }
    .flavor-circle {
        width: 130px;
        height: 130px;
    }
    .flavor-label {
        font-size: 1.2rem;
        margin-top: 0.8rem;
    }
    .menu-main-title {
        font-size: 3rem;
        margin: 2rem 0;
        letter-spacing: 1px;
    }
    .menu-section h2 {
        font-size: 2.2rem;
        margin: 1.5rem 0 2rem;
    }
    .menu-section {
        padding: 2rem 0;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .box .image {
        height: auto;
        min-height: 20rem;
        background: #2a1f14;
    }
    .box .image img {
        object-fit: contain;
        object-position: center;
    }
    #ickiler .box .image {
        height: auto;
    }
    #ickiler .box .image img {
        height: auto;
    }
}
