/**
 * Bar Tema - CSS
 * Koyu arka plan, neon renkler, bar atmosferi
 */

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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #333333;
    --border-gold: #d4af37;
    --accent-gold: #d4af37;
    --accent-neon-pink: #ff006e;
    --accent-neon-blue: #00f5ff;
    --accent-neon-purple: #9d4edd;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
    color: var(--text-primary);
}

input::placeholder {
    color: var(--text-muted);
}

/* Wrapper */
.bar-menu-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Header */
.bar-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    padding: 1rem 1.25rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-gold);
}

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

.bar-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-gold);
}

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

.bar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bar-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-table-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.bar-table-label {
    color: var(--text-secondary);
}

.bar-table-number {
    color: var(--accent-gold);
    font-weight: 700;
}

/* Dil Seçici */
.bar-language-selector {
    position: relative;
}

.bar-language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.bar-language-btn:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.bar-flag {
    font-size: 1rem;
}

.bar-lang-name {
    font-weight: 500;
}

.bar-language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    list-style: none;
    z-index: 101;
}

.bar-language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bar-language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.2s;
}

.bar-language-option:hover {
    background: var(--bg-tertiary);
}

.bar-language-option.active {
    background: var(--bg-tertiary);
    font-weight: 500;
    color: var(--accent-gold);
}

/* Search */
.bar-search-container {
    padding: 1rem 1.25rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.bar-search-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bar-search-input-wrapper {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.bar-search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.2s;
}

.bar-search-input:focus {
    outline: none;
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.bar-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Categories */
.bar-categories {
    flex: 1;
    padding: 1.5rem 1.25rem;
    background: var(--bg-primary);
}

.bar-categories-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bar-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bar-category-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.bar-category-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.bar-category-card.active {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.bar-category-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-tertiary);
    overflow: hidden;
    position: relative;
}

.bar-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bar-category-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    color: var(--text-muted);
}

.bar-category-info {
    padding: 0.875rem;
    background: var(--bg-secondary);
}

.bar-category-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.bar-category-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Products Modal */
.bar-products-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 1000;
    display: none;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s;
}

.bar-products-modal.active {
    opacity: 1;
}

.bar-products-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-gold);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.bar-products-modal-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bar-products-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.bar-products-modal-cart-btn:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

.bar-products-modal-close:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.bar-products-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem;
}

.bar-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bar-product-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.bar-product-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.bar-product-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.bar-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bar-product-info {
    padding: 0.75rem;
}

.bar-product-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.bar-product-price {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.bar-product-add-btn {
    width: 100%;
    padding: 0.625rem;
    margin-top: 0.75rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8962e 100%);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.bar-product-add-btn:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Product Detail Modal */
.bar-product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.bar-product-modal.active {
    display: flex;
}

.bar-product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.bar-product-modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-gold);
}

.bar-product-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s;
}

.bar-product-modal-close:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.bar-product-modal-body {
    padding: 1.5rem;
}

.bar-product-detail-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.bar-product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bar-product-detail-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.bar-product-detail-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.bar-product-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.bar-product-detail-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.bar-product-detail-quantity-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
}

.bar-product-detail-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bar-product-detail-qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.bar-product-detail-qty-btn:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.bar-product-detail-qty-value {
    min-width: 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.bar-product-detail-add-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8962e 100%);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.bar-product-detail-add-btn:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.bar-product-detail-add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Varyasyonlar */
.bar-product-variations {
    margin: 1rem 0;
    display: block;
}

.bar-variation-group {
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid rgba(184, 150, 46, 0.2);
}

.bar-variation-group-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.bar-variation-values {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bar-variation-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-primary);
    border: 2px solid rgba(184, 150, 46, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.bar-variation-option:hover {
    border-color: var(--accent-gold);
    background: rgba(184, 150, 46, 0.05);
}

.bar-variation-option input[type="radio"]:checked + span,
.bar-variation-option input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: var(--accent-gold);
}

.bar-variation-option input[type="radio"]:checked ~ .bar-variation-price,
.bar-variation-option input[type="checkbox"]:checked ~ .bar-variation-price {
    color: var(--accent-gold);
    font-weight: 600;
}

.bar-variation-option input[type="radio"]:checked,
.bar-variation-option input[type="checkbox"]:checked {
    accent-color: var(--accent-gold);
}

.bar-variation-price {
    margin-left: auto;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.875rem;
}

.bar-variation-select {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-primary);
    border: 2px solid rgba(184, 150, 46, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.bar-variation-select:hover {
    border-color: var(--accent-gold);
}

.bar-variation-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Sticky Cart */
.bar-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-gold);
    padding: 1rem 1.25rem;
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s;
    box-shadow: var(--shadow-gold);
}

.bar-sticky-cart.visible {
    transform: translateY(0);
}

.bar-sticky-cart.hidden {
    transform: translateY(100%);
}

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

.bar-sticky-cart-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.bar-sticky-cart-count {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.bar-sticky-cart-total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.bar-sticky-cart-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8962e 100%);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.bar-sticky-cart-btn:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Cart Modal */
.bar-cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    display: none;
    align-items: flex-end;
}

.bar-cart-modal.active {
    display: flex;
}

.bar-cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.bar-cart-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-gold);
}

.bar-cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-gold);
    background: var(--bg-tertiary);
}

.bar-cart-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.bar-cart-table-info {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.bar-cart-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.bar-cart-modal-close:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.bar-cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

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

.bar-cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-color);
}

.bar-cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.bar-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bar-cart-item-info {
    flex: 1;
    min-width: 0;
}

.bar-cart-item-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bar-cart-item-price {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.bar-cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.bar-cart-item-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.bar-cart-item-decrease,
.bar-cart-item-increase {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.bar-cart-item-decrease:hover,
.bar-cart-item-increase:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.bar-cart-item-quantity {
    min-width: 24px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.bar-cart-item-remove {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.2s;
}

.bar-cart-item-remove:hover {
    color: var(--accent-neon-pink);
}

.bar-cart-modal-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--border-gold);
    background: var(--bg-tertiary);
}

.bar-cart-modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bar-cart-modal-total span {
    font-size: 1rem;
    font-weight: 500;
}

.bar-cart-modal-total span:last-child {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.bar-cart-modal-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8962e 100%);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.bar-cart-modal-submit:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Footer */
.bar-footer {
    padding: 1.5rem 1.25rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-gold);
}

.bar-footer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.bar-footer-icon {
    font-size: 1.125rem;
}

.bar-footer-text {
    color: var(--text-secondary);
}

.bar-footer-link {
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

.bar-footer-link:hover {
    opacity: 0.7;
}

.bar-footer-copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.bar-footer-copyright p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Empty State */
.bar-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 640px) {
    .bar-sticky-cart-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bar-sticky-cart-info {
        justify-content: space-between;
    }
}

/* ============================================
   GARSON ÇAĞIR SİSTEMİ (Zorunlu - Tema Bağımsız)
   ============================================ */

.garson-cagir-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--accent-gold);
    color: #0a0a0a;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.garson-cagir-btn:hover {
    background: #b8941f;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.garson-cagir-btn svg {
    flex-shrink: 0;
}

.garson-cagir-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.garson-cagir-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
}

.garson-cagir-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    z-index: 1;
}

.garson-cagir-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary);
}

.garson-cagir-close:hover {
    background: var(--bg-tertiary);
    transform: rotate(90deg);
}

.garson-cagir-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.garson-cagir-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.garson-cagir-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.garson-cagir-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.garson-cagir-option:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-gold);
    transform: translateX(4px);
}

.garson-cagir-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.garson-cagir-option-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    flex: 1;
}

.garson-cagir-diger {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.garson-cagir-textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 1rem;
}

.garson-cagir-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.garson-cagir-diger-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.garson-cagir-cancel,
.garson-cagir-send {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.garson-cagir-cancel {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.garson-cagir-cancel:hover {
    background: var(--bg-tertiary);
}

.garson-cagir-send {
    background: var(--accent-gold);
    color: #0a0a0a;
}

.garson-cagir-send:hover {
    background: #b8941f;
    transform: translateY(-1px);
}

.garson-cagir-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 1rem 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.9375rem;
    font-weight: 500;
    z-index: 10001;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90%;
    text-align: center;
}

.garson-cagir-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.garson-cagir-notification.success {
    border-left: 4px solid #10b981;
}

.garson-cagir-notification.error {
    border-left: 4px solid #ef4444;
}

@media (max-width: 640px) {
    .garson-cagir-content {
        padding: 1.5rem;
        max-height: 95vh;
    }
    
    .garson-cagir-title {
        font-size: 1.25rem;
    }
    
    .garson-cagir-option {
        padding: 0.875rem;
    }
    
    .garson-cagir-icon {
        font-size: 1.25rem;
    }
}
