/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff4d3a;
    --secondary-color: #ff6b35;
    --whatsapp-green: #25d366;
    --whatsapp-green-dark: #128c7e;
    --cart-orange: #ff7a1a;
    --cart-orange-dark: #e86512;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #fff5f2;
    --white: #ffffff;
    --shadow: 0 6px 18px rgba(255, 77, 58, 0.18);
    --shadow-hover: 0 10px 24px rgba(255, 77, 58, 0.22);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background: radial-gradient(circle at top, #ffe6de, #fff3ef 40%, #fdf7ff);
    line-height: 1.6;
    padding-bottom: 80px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color), #ff8a3d);
    color: var(--white);
    padding: 0.6rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 16px 34px rgba(255, 77, 58, 0.32);
}

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

.logo-section {
    flex: 1;
    min-width: 200px;
}

.logo-section h1 {
    font-size: 1.65rem;
    margin-bottom: 0;
    font-weight: 700;
}

 .logo-section p {
    font-size: 0.9rem;
    opacity: 0.95;
}

.whatsapp-header-btn {
    background-color: var(--whatsapp-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-header-btn:hover,
.whatsapp-header-btn:active {
    background-color: var(--whatsapp-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.portal-back-btn {
    background: rgba(255, 255, 255, 0.24);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.portal-back-btn:hover,
.portal-back-btn:active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Hamburger Menü */
.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover,
.menu-toggle:active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.menu-toggle-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.menu-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
}

.menu-drawer.active {
    display: block;
}

.menu-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.menu-drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: min(320px, 85vw);
    background: var(--white);
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
}

.menu-drawer.active .menu-drawer-panel {
    transform: translateX(0);
}

.menu-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: var(--text-dark);
}

.menu-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.08);
    cursor: pointer;
    font-size: 1.25rem;
}

.menu-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.menu-category-button {
    text-align: left;
    border: 1px solid #e0e0e0;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.6rem 0.85rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.menu-category-button:hover,
.menu-category-button:active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.menu-category-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Arama ve Filtre Bar */
.filter-bar {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    box-shadow: 0 14px 28px rgba(255, 77, 58, 0.12);
    position: sticky;
    top: 64px;
    z-index: 99;
    backdrop-filter: blur(6px);
}

.filter-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #ffd2c8;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: inset 0 1px 2px rgba(231, 76, 60, 0.06);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-selects {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    flex: 1;
    min-width: 150px;
    padding: 0.875rem 1rem;
    border: 2px solid #ffd2c8;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Kategori Chip'leri */
.category-chips {
    max-width: 1200px;
    margin: 0.5rem auto 0;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.25rem 0.25rem 0.5rem;
    scrollbar-width: none;
}

.category-chips::-webkit-scrollbar {
    display: none;
}

.category-chip {
    border: 1px solid #e0e0e0;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.category-chip:hover,
.category-chip:active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-chip.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Ana İçerik */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.category-section {
    margin-bottom: 2rem;
}

.category-header {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.category-header:hover {
    box-shadow: var(--shadow-hover);
}

.category-header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.category-toggle {
    font-size: 1.5rem;
    transition: var(--transition);
}

.category-toggle.active {
    transform: rotate(180deg);
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

.subcategory-section {
    margin-bottom: 2rem;
}

.subcategory-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(255, 77, 58, 0.14);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 77, 58, 0.12);
}

.product-card:hover,
.product-card:active {
    transform: translateY(-7px);
    box-shadow: 0 24px 40px rgba(255, 77, 58, 0.2);
}

.product-image-container {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-desc {
    font-size: 0.9rem;
    color: #4a5b6b;
    margin-bottom: 0.75rem;
    flex: 1;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Ürün Kartı Boyut Seçimi */
.product-size-selector {
    margin-bottom: 0.75rem;
}

.product-size-options {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.product-size-option {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    min-height: 60px;
    justify-content: center;
}

.product-size-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-size-option.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.product-size-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.product-size-price {
    font-weight: 700;
    font-size: 0.95rem;
}

.product-size-option.active .product-size-price {
    color: var(--white);
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.btn {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(255, 77, 58, 0.2);
}

.btn span {
    display: inline;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #16c772);
    color: var(--white);
}

.btn-whatsapp:hover,
.btn-whatsapp:active {
    background-color: var(--whatsapp-green-dark);
}

.btn-call {
    background-color: var(--text-dark);
    color: var(--white);
}

.btn-call:hover,
.btn-call:active {
    background-color: #1a252f;
}

.btn-map {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: var(--white);
}

.btn-map:hover,
.btn-map:active {
    background: #2f6cb7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 1rem;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover,
.modal-close:active {
    background: rgba(0,0,0,0.7);
}

.modal-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-info {
    padding: 1.5rem;
}

.modal-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.modal-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Pizza Boyut Seçimi */
.modal-size-selector {
    margin-bottom: 1.5rem;
}

.modal-size-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.modal-size-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.size-option {
    flex: 1;
    min-width: 100px;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.size-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.size-option.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.size-name {
    font-weight: 600;
    font-size: 1rem;
}

.size-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.size-option.active .size-price {
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-actions {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Sepet Butonu - Masaüstü */
.cart-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: var(--cart-orange);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-button:hover,
.cart-button:active {
    background: var(--cart-orange-dark);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.cart-button.empty .cart-badge {
    display: none;
}

/* Mobil Sepet Bar */
.mobile-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cart-orange);
    color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: none;
    padding: 1rem;
}

.mobile-cart-bar.active {
    display: block;
}

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

.mobile-cart-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-cart-icon {
    font-size: 2rem;
    position: relative;
}

.mobile-cart-text {
    flex: 1;
}

.mobile-cart-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.mobile-cart-count {
    font-size: 0.85rem;
    opacity: 0.9;
}

.mobile-cart-total {
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
}

.mobile-cart-button {
    background: var(--white);
    color: var(--cart-orange);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.mobile-cart-button:hover,
.mobile-cart-button:active {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.mobile-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.mobile-cart-bar.empty .mobile-cart-badge {
    display: none;
}

/* Sepet Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 1rem;
}

.cart-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-modal-header {
    padding: 1rem;
    border-bottom: 2px solid var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.cart-modal-header h2 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.cart-modal-body {
    padding: 1rem;
    flex: 1;
    overflow-y: auto;
    max-height: none;
    min-height: 150px;
    flex-shrink: 1;
}

.cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--bg-light);
    align-items: center;
}

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

.cart-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 0.25rem;
}

.quantity-btn {
    background: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-dark);
}

.quantity-btn:hover,
.quantity-btn:active {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-item-remove {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-item-remove:hover,
.cart-item-remove:active {
    background: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.cart-modal-footer {
    padding: 1rem;
    border-top: 2px solid var(--bg-light);
    background: var(--bg-light);
    flex-shrink: 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-total-label {
    color: var(--text-dark);
}

.cart-total-price {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.cart-discount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-discount-value {
    color: var(--whatsapp-green-dark);
    font-weight: 700;
}

.cart-total-final .cart-total-price {
    font-size: 1.4rem;
}

.cart-promo-hint {
    background: #fff5f2;
    border: 1px dashed rgba(231, 76, 60, 0.4);
    color: var(--secondary-color);
    padding: 0.6rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.cart-customer-info {
    margin-bottom: 1rem;
    padding: 0;
    background: transparent;
    border-radius: var(--border-radius);
}

.cart-customer-info h3 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.cart-customer-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 0;
    border: none;
    width: 100%;
}

.cart-customer-title * {
    color: var(--white) !important;
}

.cart-customer-title:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.cart-customer-title:active {
    transform: translateY(0);
    box-shadow: none;
}

.cart-customer-toggle {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    display: inline-block;
    color: var(--white);
    margin-left: 0.5rem;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

/* Animasyonlu ok işareti */
.cart-customer-toggle.animate {
    animation: bounceArrow 1.5s ease-in-out infinite;
}

.cart-customer-title:hover .cart-customer-toggle {
    transform: translateY(2px);
}

.cart-customer-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: var(--border-radius);
    margin-top: 0.5rem;
}

.cart-customer-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-customer-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-customer-field input {
    padding: 0.5rem 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: inherit;
}

.cart-customer-field input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.cart-customer-field textarea {
    padding: 0.5rem 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: inherit;
    resize: vertical;
    min-height: 60px;
    max-height: 100px;
}

.cart-customer-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.cart-customer-field select {
    padding: 0.5rem 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--white);
}

.cart-customer-field select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.cart-choice-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cart-choice-option {
    position: relative;
    flex: 1;
    min-width: 120px;
}

.cart-choice-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cart-choice-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    background: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    text-align: center;
}

.cart-choice-option input:checked + .cart-choice-label {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.cart-choice-label:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cart-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-cart-order {
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-cart-order:hover,
.btn-cart-order:active {
    background: var(--whatsapp-green-dark);
}

.btn-cart-order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sepete Ekle Butonu */
.btn-add-to-cart {
    background: linear-gradient(135deg, #ff6b35, #ff9f43);
    color: var(--white);
}

.btn-add-to-cart:hover,
.btn-add-to-cart:active {
    background: var(--cart-orange-dark);
}

/* Boş Durum */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (min-width: 768px) {
    .filter-content {
        flex-direction: row;
    }

    .search-input {
        flex: 2;
    }

    .filter-selects {
        flex: 1;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .product-actions {
        flex-direction: row;
    }

    .modal-actions {
        flex-direction: row;
    }

    .footer-actions {
        justify-content: center;
    }

    /* Masaüstünde mobil sepet bar'ı gizle */
    .mobile-cart-bar {
        display: none !important;
    }

    /* Masaüstünde sepet butonu göster */
    .cart-button {
        display: flex;
    }
}

@media (max-width: 767px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-header-btn {
        width: 100%;
        justify-content: center;
    }

    .filter-selects {
        flex-direction: column;
    }

    .filter-select {
        width: 100%;
    }

    .category-chips {
        display: none;
    }

    /* Mobilde sepet butonunu gizle */
    .cart-button {
        display: none;
    }

    /* Mobilde sepet bar'ı göster */
    .mobile-cart-bar {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .cart-modal-body {
        max-height: none;
        min-height: 200px;
        padding: 0.75rem;
    }

    .cart-modal-content {
        max-height: 95vh;
    }

    .cart-modal-header {
        padding: 0.75rem;
    }

    .cart-modal-header h2 {
        font-size: 1.1rem;
    }

    .cart-modal-footer {
        padding: 0.75rem;
    }

    .cart-customer-info {
        padding: 0;
        margin-bottom: 0.5rem;
    }

    .cart-customer-title {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
        color: var(--white) !important;
    }

    .cart-customer-fields[style*="display: none"] {
        display: none !important;
    }

    .cart-customer-fields {
        gap: 0.5rem;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    .cart-customer-field {
        gap: 0.2rem;
    }

    .cart-customer-field label {
        font-size: 0.8rem;
    }

    .cart-customer-field input {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .cart-customer-field textarea {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
        min-height: 50px;
        max-height: 80px;
    }

    .cart-choice-label {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }

    .cart-total {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .cart-total-price {
        font-size: 1.2rem;
    }

    .cart-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .btn-cart-order {
        padding: 0.75rem;
        font-size: 1rem;
    }
}
