/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    color: #f5f5f5;
    line-height: 1.7;
    min-height: 100vh;
}

header {
    background: rgba(34, 34, 34, 0.95);
    padding: 1.2rem 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    margin-bottom: 2.5rem;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 2.2rem;
    color: #ffe6b3;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

nav {
    margin: 2rem auto 1.5rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: #232526;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    padding: 0.7rem 1.5rem;
    border-radius: 24px;
    background: #ffe6b3;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: block;
}

nav a:hover, nav a.active {
    background: #c0a080;
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(192,160,128,0.18);
}

/* Sepet İkonu */
.cart-icon {
    position: fixed;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #c0a080 60%, #ffe6b3 100%);
    color: #232526;
    padding: 18px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(192,160,128,0.18);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.cart-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(192,160,128,0.28);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: #fff;
    font-size: 13px;
    padding: 4px 9px;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(231,76,60,0.18);
}

/* Sepet Paneli */
.cart-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: #232526;
    box-shadow: -4px 0 24px rgba(0,0,0,0.18);
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
    border-bottom: 1px solid #c0a08033;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    margin: 0;
    color: #ffe6b3;
    font-size: 1.3rem;
}

.close-cart {
    font-size: 2rem;
    cursor: pointer;
    color: #c0a080;
    transition: color 0.2s;
}
.close-cart:hover {
    color: #e74c3c;
}

.cart-items {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    max-height: 100%;
    box-sizing: border-box;
    padding: 1.2rem 1.5rem;
}

.cart-item {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: box-shadow 0.2s;
}
.cart-item:hover {
    box-shadow: 0 4px 16px rgba(192,160,128,0.12);
}

.cart-item-details h4 {
    margin: 0 0 0.3rem 0;
    color: #ffe6b3;
    font-size: 1.1rem;
}

.cart-item-details p {
    margin: 0.15rem 0;
    color: #c0a080;
    font-size: 1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.3rem;
}

.cart-item-controls button {
    background: #ffe6b3;
    border: none;
    color: #232526;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cart-item-controls .remove-btn {
    background: #e74c3c;
    color: #fff;
    margin-left: auto;
    font-size: 1.3rem;
}

.cart-footer {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    background: #232526;
    border-top: 1px solid #c0a08033;
    position: relative;
    z-index: 2;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #ffe6b3;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem 0;
    background: linear-gradient(90deg, #c0a080 60%, #ffe6b3 100%);
    color: #232526;
    border: none;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(192,160,128,0.10);
}
.checkout-btn:hover {
    background: linear-gradient(90deg, #ffe6b3 60%, #c0a080 100%);
    color: #232526;
    transform: scale(1.03);
}

/* Menü Bölümü */
.menu-section {
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}
.menu-section h2 {
    color: #ffe6b3;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.menu-item {
    background: #2a2a2a;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.menu-item:hover {
    box-shadow: 0 8px 32px rgba(192,160,128,0.18);
    transform: translateY(-4px) scale(1.03);
}
.menu-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: 3px solid #ffe6b3;
}
.menu-item h3 {
    color: #ffe6b3;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    text-align: center;
}
.price {
    color: #c0a080;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
}
.add-to-cart-btn {
    background: linear-gradient(90deg, #c0a080 60%, #ffe6b3 100%);
    color: #232526;
    border: none;
    border-radius: 16px;
    padding: 0.7rem 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(192,160,128,0.10);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.add-to-cart-btn:hover {
    background: linear-gradient(90deg, #ffe6b3 60%, #c0a080 100%);
    color: #232526;
    transform: scale(1.05);
}

/* Modal (Sipariş Onay) */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(34,34,34,0.75);
    backdrop-filter: blur(2px);
    padding-top: 60px;
}
.modal-content {
    background: #232526;
    margin: auto;
    padding: 2rem 2.5rem;
    border: 1px solid #c0a08033;
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(192,160,128,0.18);
    color: #fff;
    position: relative;
}
.close {
    color: #c0a080;
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}
.close:hover {
    color: #e74c3c;
}

/* Formlar */
.form-group label {
    color: #ffe6b3;
    font-weight: 500;
    margin-bottom: 0.3rem;
    display: block;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    border: 1px solid #c0a08033;
    background: #2a2a2a;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: border 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    border: 1.5px solid #c0a080;
    outline: none;
}
.submit-btn {
    width: 100%;
    padding: 1rem 0;
    background: linear-gradient(90deg, #c0a080 60%, #ffe6b3 100%);
    color: #232526;
    border: none;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(192,160,128,0.10);
}
.submit-btn:hover {
    background: linear-gradient(90deg, #ffe6b3 60%, #c0a080 100%);
    color: #232526;
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
    .cart-panel {
        width: 100vw;
        right: -100vw;
        border-radius: 0;
        height: 100dvh;
        max-height: 100dvh;
        min-height: 0;
    }
    .cart-footer {
        width: 100vw;
        box-sizing: border-box;
    }
    .cart-items {
        max-height: calc(100dvh - 120px);
        min-height: 0;
    }
}
@media (max-width: 600px) {
    .cart-panel {
        width: 100vw;
        right: -100vw;
        border-radius: 0;
        height: 100dvh;
        max-height: 100dvh;
        min-height: 0;
    }
    .cart-footer {
        padding: 0.7rem 0.3rem;
        width: 100vw;
        box-sizing: border-box;
    }
    .cart-items {
        max-height: calc(100dvh - 110px);
        min-height: 0;
    }
}
@media (max-width: 480px) {
    .cart-panel {
        height: 100dvh;
        max-height: 100dvh;
        min-height: 0;
    }
    .cart-footer {
        padding: 0.5rem 0.1rem;
        width: 100vw;
        box-sizing: border-box;
    }
    .cart-items {
        max-height: calc(100dvh - 100px);
        min-height: 0;
    }
}

.toast-notification {
    position: fixed;
    top: 32px;
    right: 32px;
    background: linear-gradient(90deg, #ffe6b3 60%, #c0a080 100%);
    color: #232526;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(192,160,128,0.18);
    opacity: 0;
    pointer-events: none;
    z-index: 3000;
    transition: opacity 0.4s, transform 0.4s;
    transform: translateY(-30px);
}
.toast-notification.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
@media (max-width: 600px) {
    .toast-notification {
        top: 16px;
        right: 8px;
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
    nav ul {
        gap: 0.5rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    nav li {
        flex: 1 1 0;
        display: flex;
    }
    nav a {
        font-size: 1.08rem;
        padding: 1rem 0.5rem;
        border-radius: 18px;
        background: linear-gradient(90deg, #ffe6b3 60%, #c0a080 100%);
        color: #232526;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(192,160,128,0.13);
        margin-bottom: 0.3rem;
        width: 100%;
        text-align: center;
        border: 2px solid #ffe6b3;
        transition: background 0.2s, color 0.2s, transform 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    nav a.active, nav a:hover {
        background: linear-gradient(90deg, #c0a080 60%, #ffe6b3 100%);
        color: #fff;
        border: 2px solid #c0a080;
        transform: scale(1.06);
        box-shadow: 0 4px 16px rgba(192,160,128,0.18);
    }
} 