/* =====================================================
   Nargile Kapında - Modern Mobile-First CSS
   ===================================================== */

:root {
    --dark: #0d0d14;
    --darker: #08080c;
    --primary: #12121c;
    --card: #1a1a28;
    --border: rgba(255,255,255,0.08);
    --accent: #e94560;
    --accent-light: #ff6b8a;
    --gold: #f5a623;
    --gold-light: #ffc964;
    --smoke: #0f1520;
    --text: #ffffff;
    --text-muted: #8b8b9e;
    --success: #22c55e;
    --warning: #f59e0b;
    --info: #3b82f6;
    --danger: #ef4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* =====================================================
   Layout
   ===================================================== */
.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-wide {
    max-width: 1200px;
}

/* =====================================================
   Header
   ===================================================== */
.header {
    background: var(--darker);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.logo-text h1 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text p {
    font-size: 10px;
    color: var(--text-muted);
    display: none;
}

.nav {
    display: flex;
    gap: 8px;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav a:hover, .nav a.active {
    color: var(--text);
    background: var(--card);
}

@media (min-width: 480px) {
    .logo-text h1 { font-size: 18px; }
    .logo-text p { display: block; }
    .nav a { font-size: 14px; }
}

/* =====================================================
   Hero
   ===================================================== */
.hero {
    text-align: center;
    padding: 40px 16px 30px;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.hero-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 16px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: var(--text-muted);
    font-size: 14px;
}

@media (min-width: 480px) {
    .hero { padding: 60px 16px 40px; }
    .hero-emoji { font-size: 80px; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; }
}

/* =====================================================
   Steps Indicator
   ===================================================== */
.steps-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--darker);
    position: sticky;
    top: 64px;
    z-index: 90;
    border-bottom: 1px solid var(--border);
}

.step-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--card);
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.step-dot .num {
    width: 24px;
    height: 24px;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.step-dot.active {
    background: rgba(233, 69, 96, 0.15);
    border-color: var(--accent);
    color: var(--text);
}

.step-dot.active .num {
    background: var(--accent);
    color: white;
}

.step-dot.completed {
    background: rgba(34, 197, 94, 0.15);
    border-color: var(--success);
    color: var(--success);
}

.step-dot.completed .num {
    background: var(--success);
    color: white;
}

.step-dot .label {
    display: none;
}

@media (min-width: 480px) {
    .step-dot { padding: 12px 20px; font-size: 13px; }
    .step-dot .label { display: inline; }
}

/* =====================================================
   Card & Sections
   ===================================================== */
.card {
    background: var(--card);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

@media (min-width: 480px) {
    .card { padding: 24px; border-radius: 24px; }
    .card-title { font-size: 20px; }
}

/* =====================================================
   Step Panels
   ===================================================== */
.step-panel {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
}

.step-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   Takım Selection (Step 1)
   ===================================================== */
.takim-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.takim-card {
    position: relative;
    cursor: pointer;
}

.takim-card input {
    position: absolute;
    opacity: 0;
}

.takim-content {
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 16px;
}

.takim-card input:checked + .takim-content {
    border-color: var(--gold);
    background: rgba(245, 166, 35, 0.1);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.15);
}

.takim-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--card), var(--primary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.takim-card input:checked + .takim-content .takim-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.takim-info {
    flex: 1;
}

.takim-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.takim-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.takim-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.takim-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* =====================================================
   Aroma Selection (Step 2)
   ===================================================== */
.aroma-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.aroma-filters::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 10px 18px;
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: 25px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--text-muted);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.filter-btn.active[data-category="special"] {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-color: #8b5cf6;
}

.filter-btn.active[data-category="dark"] {
    background: linear-gradient(135deg, #374151, #4b5563);
    border-color: #374151;
}

.filter-btn.active[data-category="reserve"] {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-color: #f59e0b;
    color: #000;
}

.aroma-search {
    position: relative;
    margin-bottom: 16px;
}

.aroma-search input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: 14px;
    color: var(--text);
    font-size: 14px;
    transition: border-color 0.2s;
}

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

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

.aroma-search .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.aroma-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.aroma-item {
    position: relative;
}

.aroma-item input {
    position: absolute;
    opacity: 0;
}

.aroma-content {
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 14px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    height: 100%;
}

.aroma-item:hover .aroma-content {
    border-color: rgba(255,255,255,0.2);
}

.aroma-item input:checked + .aroma-content {
    border-color: var(--accent);
    background: rgba(233, 69, 96, 0.15);
    transform: scale(1.02);
}

.aroma-emoji {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.aroma-name {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}

.aroma-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
}

.aroma-category-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.aroma-category-badge.special { background: #8b5cf6; }
.aroma-category-badge.dark { background: #4b5563; }
.aroma-category-badge.reserve { background: #f59e0b; }

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.no-results .emoji {
    font-size: 40px;
    margin-bottom: 12px;
}

@media (min-width: 400px) {
    .aroma-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .aroma-content { padding: 16px 10px; }
    .aroma-emoji { font-size: 36px; }
    .aroma-name { font-size: 13px; }
}

@media (min-width: 520px) {
    .aroma-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =====================================================
   Form Inputs (Step 3)
   ===================================================== */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
}

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

textarea.form-input {
    resize: none;
    min-height: 100px;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238b8b9e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 44px;
}

/* Phone Input */
.phone-input-wrapper {
    display: flex;
    gap: 8px;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.phone-prefix .flag {
    font-size: 18px;
}

.phone-input-wrapper .form-input {
    flex: 1;
}

/* Address Grid */
.address-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 400px) {
    .address-grid {
        grid-template-columns: 1fr 1fr;
    }
    .address-grid .form-group:last-child {
        grid-column: 1 / -1;
    }
}

/* Payment Options */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.payment-item {
    position: relative;
}

.payment-item input {
    position: absolute;
    opacity: 0;
}

.payment-content {
    background: var(--primary);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-item input:checked + .payment-content {
    border-color: var(--success);
    background: rgba(34, 197, 94, 0.1);
}

.payment-emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 6px;
}

.payment-name {
    font-size: 13px;
    font-weight: 500;
}

/* =====================================================
   Order Summary
   ===================================================== */
.order-summary {
    background: var(--primary);
    border-radius: 16px;
    padding: 16px;
    margin-top: 20px;
    border: 1px solid var(--border);
}

.order-summary h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.summary-row .label {
    color: var(--text-muted);
}

.summary-row .value {
    font-weight: 500;
}

.summary-row.total {
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 16px;
}

.summary-row.total .value {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 18px 32px;
    font-size: 16px;
    border-radius: 16px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--text-muted);
    box-shadow: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.btn-gold:hover {
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #34d399);
}

.navigation-btns {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.navigation-btns .btn {
    flex: 1;
}

/* =====================================================
   Success Page
   ===================================================== */
.success-container {
    padding: 40px 16px 60px;
}

.success-card {
    background: var(--card);
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    border: 1px solid var(--border);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-card h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

.success-card > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.tracking-code-box {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.tracking-code-box p {
    font-size: 12px;
    color: rgba(0,0,0,0.6);
    margin-bottom: 4px;
}

.tracking-code-box .code {
    font-size: 28px;
    font-weight: 700;
    color: var(--darker);
    letter-spacing: 2px;
}

/* =====================================================
   Tracking Page
   ===================================================== */
.tracking-search {
    display: flex;
    gap: 10px;
}

.tracking-search .form-input {
    flex: 1;
}

.status-display {
    text-align: center;
    padding: 32px 20px;
    border-radius: 20px;
    margin: 20px 0;
}

.status-display.yellow { background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.3); }
.status-display.orange { background: rgba(249, 115, 22, 0.15); border: 1px solid rgba(249, 115, 22, 0.3); }
.status-display.blue { background: rgba(59, 130, 246, 0.15); border: 1px solid rgba(59, 130, 246, 0.3); }
.status-display.green { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3); }
.status-display.red { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); }

.status-display .emoji {
    font-size: 56px;
    display: block;
    margin-bottom: 12px;
}

.status-display h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.status-display p {
    color: var(--text-muted);
    font-size: 14px;
}

.status-steps {
    margin: 24px 0;
}

.status-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    opacity: 0.4;
}

.status-step.completed, .status-step.active {
    opacity: 1;
}

.status-step .icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.status-step.completed .icon {
    background: rgba(34, 197, 94, 0.2);
}

.status-step.active .icon {
    box-shadow: 0 0 0 3px var(--gold);
}

.status-step .text {
    flex: 1;
    font-size: 14px;
}

.status-step.active .text {
    font-weight: 600;
}

.status-step .badge {
    font-size: 11px;
    color: var(--gold);
    font-weight: 500;
}

.status-step .check {
    color: var(--success);
}

.details-box {
    background: var(--primary);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid var(--border);
}

.details-box h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.details-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.details-row:last-child {
    border-bottom: none;
}

.details-row .label {
    color: var(--text-muted);
}

.not-found {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
}

.not-found .emoji {
    font-size: 48px;
    margin-bottom: 12px;
}

.not-found h3 {
    margin-bottom: 8px;
}

.not-found p {
    color: var(--text-muted);
    font-size: 14px;
}

/* =====================================================
   Alert
   ===================================================== */
.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    text-align: center;
    padding: 32px 16px;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.footer p {
    color: var(--text-muted);
    font-size: 12px;
}

/* =====================================================
   Utilities
   ===================================================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.hidden { display: none !important; }

/* =====================================================
   Admin Styles
   ===================================================== */
body.admin-body {
    background: #0f0f17;
}

.admin-header {
    background: #15151f;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.admin-title {
    font-size: 18px;
    font-weight: 600;
}

.admin-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-left: 16px;
}

.admin-nav a:hover, .admin-nav a.active {
    color: var(--text);
}

.page-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.filters {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn-admin {
    padding: 10px 18px;
    background: var(--card);
    border: none;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
}

.filter-btn-admin:hover {
    background: #2a2a3a;
}

.filter-btn-admin.active {
    background: var(--accent);
}

.filter-btn-admin.active.yellow { background: #f59e0b; color: #000; }
.filter-btn-admin.active.orange { background: #f97316; }
.filter-btn-admin.active.blue { background: #3b82f6; }

.order-card {
    background: var(--card);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.order-id {
    font-size: 18px;
    font-weight: 700;
}

.order-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.order-badge.yellow { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.order-badge.orange { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.order-badge.blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.order-badge.green { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.order-badge.red { background: rgba(239, 68, 68, 0.2); color: #f87171; }

.order-time {
    color: var(--text-muted);
    font-size: 12px;
    margin-left: 8px;
}

.order-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--success);
}

.order-payment {
    font-size: 11px;
    color: var(--text-muted);
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

@media (min-width: 600px) {
    .order-grid { grid-template-columns: repeat(4, 1fr); }
}

.order-field .label {
    color: var(--text-muted);
    font-size: 11px;
    display: block;
    margin-bottom: 2px;
}

.order-field .value {
    font-size: 14px;
}

.order-field .value a {
    color: var(--info);
    text-decoration: none;
}

.order-address, .order-note {
    margin-top: 8px;
    font-size: 13px;
}

.order-address .label, .order-note .label {
    color: var(--text-muted);
    font-size: 11px;
}

.order-note {
    background: rgba(245, 158, 11, 0.1);
    padding: 10px 12px;
    border-radius: 8px;
}

.order-note .value {
    color: var(--gold);
}

.order-actions {
    display: flex;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.order-actions span {
    color: var(--text-muted);
    font-size: 13px;
}

.action-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    color: #fff;
}

.action-btn.orange { background: #f97316; }
.action-btn.blue { background: #3b82f6; }
.action-btn.green { background: #22c55e; }
.action-btn.red { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.action-btn.red:hover { background: rgba(239, 68, 68, 0.4); }

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

.product-section h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

.add-form {
    background: var(--card);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.add-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.add-form input, .add-form select {
    padding: 12px 14px;
    background: var(--primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
}

.add-form input:focus, .add-form select:focus {
    outline: none;
    border-color: var(--accent);
}

.add-form input[name="isim"] { flex: 1; min-width: 140px; }
.add-form input[name="emoji"] { width: 60px; text-align: center; }
.add-form input[name="fiyat"] { width: 100px; }
.add-form select[name="kategori"] { width: 120px; }
.add-form input[name="aciklama"] { flex: 1; min-width: 100%; }

.add-form button {
    padding: 12px 20px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-item {
    background: var(--card);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-info .emoji { font-size: 24px; }
.product-info .name { font-weight: 500; }
.product-info .price { color: var(--success); margin-left: 8px; }
.product-info .category-badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
}
.product-info .category-badge.klasik { background: rgba(233, 69, 96, 0.2); color: var(--accent); }
.product-info .category-badge.special { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }
.product-info .category-badge.dark { background: rgba(75, 85, 99, 0.3); color: #9ca3af; }
.product-info .category-badge.reserve { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.product-info .desc { font-size: 12px; color: var(--text-muted); }

.product-actions {
    display: flex;
    gap: 8px;
}

.toggle-btn {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
}

.toggle-btn.active { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.toggle-btn.inactive { background: var(--primary); color: var(--text-muted); }

.delete-btn {
    padding: 8px 14px;
    background: rgba(239, 68, 68, 0.2);
    border: none;
    border-radius: 8px;
    color: #f87171;
    font-size: 12px;
    cursor: pointer;
}

.delete-btn:hover { background: rgba(239, 68, 68, 0.3); }

.empty-state {
    background: var(--card);
    border-radius: 16px;
    padding: 48px 20px;
    text-align: center;
    border: 1px solid var(--border);
}

.empty-state .emoji {
    font-size: 48px;
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--text-muted);
}
