:root {
    --primary-color: #b71c1c;
    /* Koyu Kırmızı */
    --secondary-color: #f5f5f5;
    /* Açık Gri Arkaplan */
    --text-color: #333333;
    --card-bg: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-bottom: 80px;
    /* Footer için boşluk */
}

/* Header */
.main-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem 1rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 4px 10px rgba(183, 28, 28, 0.3);
    margin-bottom: 2rem;
}

.main-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Container */
.menu-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Categories */
.category {
    margin-bottom: 2.5rem;
}

.category-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.category-title i {
    margin-right: 10px;
}

/* Product Cards */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
    border-left: 5px solid transparent;
}

.product-card:hover {
    transform: translateY(-2px);
    border-left: 5px solid var(--primary-color);
}

.special-card {
    border: 1px solid gold;
    background: linear-gradient(to right, #fff, #fffbf0);
}

.special-card .product-icon {
    color: gold !important;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    /* Allows text to take available space */
}

.product-visual {
    flex-shrink: 0;
}

.product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.product-icon {
    width: 80px;
    /* Matched to img size for visual consistency */
    height: 80px;
    background-color: #ffebee;
    color: var(--primary-color);
    border-radius: 8px;
    /* Matched to img border radius */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    /* Larger icon for better visibility */
    flex-shrink: 0;
}

/* For Drinks (since they don't have wrappers in my new logic, or if they fall back) */
.product-list.two-column .product-icon {
    width: 50px;
    /* Smaller icons for drinks/grid layout */
    height: 50px;
    font-size: 1.4rem;
    border-radius: 50%;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #424242;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 10px;
}

/* Footer */
.main-footer {
    background-color: #263238;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.phone-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 0.5rem;
    transition: background 0.3s;
}

.phone-button:hover {
    background-color: #d32f2f;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-icon {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s, color 0.2s;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #ffebee;
}

/* Responsive Grid for Tablets/Desktops */
@media (min-width: 768px) {
    .menu-container {
        max-width: 1000px;
    }

    .product-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

@media (min-width: 1024px) {
    .product-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .two-column {
        grid-template-columns: repeat(3, 1fr);
    }
}