/* 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 40%, #ffe6b3 100%);
    color: #f5f5f5;
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
    pointer-events: none;
}

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;
}

.site-logo {
    height: 100px;
    width: auto;
    margin-right: 18px;
    border-radius: 0;
    box-shadow: none;
    background: none;
    object-fit: contain;
}

.category-slider {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 1.2rem 1rem 0.8rem 1rem;
    margin: 0 auto 2rem auto;
    max-width: 900px;
    scrollbar-width: thin;
    scrollbar-color: #ffe6b3 #232526;
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(255, 230, 179, 0.13);
    box-shadow: 0 4px 24px rgba(192,160,128,0.08);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.cart-icon {
    position: fixed;
    left: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 10px;
    background: linear-gradient(135deg, #c0a080 80%, #ffe6b3 100%);
    color: #232526;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3000;
    box-shadow: 0 3px 12px rgba(192,160,128,0.18);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
@media (max-width: 700px) {
    .cart-icon {
        position: fixed;
        left: 16px;
        bottom: 16px;
        top: auto;
        margin: 0;
        width: 44px;
        height: 44px;
        padding: 8px;
        box-shadow: 0 3px 12px rgba(192,160,128,0.2);
    }
    .cart-icon i {
        font-size: 1.1rem;
    }
    .cart-count {
        font-size: 0.85rem;
        min-width: 18px;
        min-height: 18px;
    }
}
.header-content, header, .category-slider {
    z-index: 1090 !important;
}


.cart-icon.shake {
    animation: shake-cart 0.5s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shake-cart {
    10%, 90% { transform: translateX(-2px); }
    20%, 80% { transform: translateX(4px); }
    30%, 50%, 70% { transform: translateX(-8px); }
    40%, 60% { transform: translateX(8px); }
}
.cart-popup {
    position: fixed;
    left: 50%;
    top: 16%;
    transform: translate(-50%, -100%);
    background: #c0a080;
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(192,160,128,0.18);
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    z-index: 2000;
    transition: opacity 0.3s, transform 0.3s;
}
.cart-popup.active {
    opacity: 1;
    transform: translate(-50%, 0);
}
@media (max-width: 700px) {
    .header-content {
        flex-direction: column;
        padding: 0.5rem 1rem;
        gap: 0.8rem;
    }
    .site-logo {
        height: 70px;
        margin-right: 0;
    }
    h1 {
        font-size: 1.4rem;
        text-align: center;
        line-height: 1.3;
        letter-spacing: 1px;
    }
    header {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    .category-slider {
        top: 0;
        border-radius: 0;
        margin-bottom: 1.2rem;
    }
}
.category-slide {
    flex: 0 0 auto;
    padding: 0.45rem 1.1rem;
    font-size: 0.98rem;
    border-radius: 14px;
    background: #ffe6b3cc;
    color: #232526;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    opacity: 0.7;
    border: 2px solid transparent;
}
.category-slide.active {
    background: #c0a080;
    color: #fff;
    opacity: 1;
    border: 2px solid #ffe6b3;
    transform: scale(1.08);
    box-shadow: 0 4px 18px rgba(192,160,128,0.18);
    font-size: 1.07rem;
    padding: 0.55rem 1.4rem;
}
.category-slide.active {
    background: #c0a080;
    color: #fff;
    opacity: 1;
    border: 2px solid #ffe6b3;
    transform: scale(1.08);
    box-shadow: 0 4px 18px rgba(192,160,128,0.18);
}

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;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 230, 179, 0.15);
    box-shadow: 0 4px 24px rgba(192,160,128,0.10);
    border-radius: 0 0 24px 24px;
}

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 - REMOVED */

.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), opacity 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    opacity: 0;
}
.cart-panel.active {
    right: 0;
    opacity: 1;
    animation: slideInCart 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes slideInCart {
    from { right: -420px; opacity: 0; }
    to { right: 0; opacity: 1; }
}

.modal {
    display: none;
    position: fixed;
    z-index: 6000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(34,34,34,0.75);
    backdrop-filter: blur(2px);
    padding-top: 60px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
    animation: fadeInModal 0.35s cubic-bezier(.4,0,.2,1) forwards;
}
.modal[style*="display: block"] {
    display: block;
    opacity: 1;
    animation: fadeInModal 0.35s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.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: rgba(42,42,42,0.72);
    border-radius: 22px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.13);
    padding: 1.7rem 1.3rem 1.3rem 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
    position: relative;
    border: 1.5px solid rgba(255,255,255,0.13);
}
.menu-item:hover {
    box-shadow: 0 12px 36px 0 rgba(192,160,128,0.22);
    transform: translateY(-8px) scale(1.05);
    border: 1.7px solid #ffe6b3bb;
}
.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: 6000;
    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);
}

/* Sipariş Özeti */
.order-summary {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border: 1px solid #c0a08033;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #c0a08022;
    color: #ffe6b3;
}

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

.summary-item span:first-child {
    font-weight: 500;
    flex: 1;
}

.summary-item span:nth-child(2) {
    color: #c0a080;
    margin: 0 1rem;
    font-size: 0.95rem;
}

.summary-item span:last-child {
    font-weight: bold;
    color: #ffe6b3;
}

/* 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);
    }
}

/* Footer Styles */
footer {
    background: rgba(34, 34, 34, 0.95);
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid #c0a08033;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    color: #c0a080;
    font-size: 0.95rem;
    margin: 0;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.powered-by span {
    color: #ffe6b3;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-logo {
    height: 32px;
    width: auto;
    transition: transform 0.2s ease;
    border-radius: 4px;
}

.footer-logo:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .powered-by {
        justify-content: center;
    }
    
    .footer-content p {
        font-size: 0.85rem;
    }
} 