/* Paykan Font */
@font-face {
    font-family: 'Paykan';
    src: url('font/PAYKAN REGULAR.TTF') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Paykan';
    src: url('font/PAYKAN BOLD.TTF') format('truetype');
    font-weight: 600;
}
@font-face {
    font-family: 'Paykan';
    src: url('font/PAYKAN BLACK.TTF') format('truetype');
    font-weight: 700;
}

:root {
    --primary: #d4735e;
    --primary-dark: #8b4513;
    --bg: #0d0d0d;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass: rgba(255, 255, 255, 0.08);
    --text: #fff;
    --text-muted: rgba(255, 255, 255, 0.5);
    --success: #27ae60;
    --danger: #e74c3c;
    --accent: 255, 140, 60;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Paykan', sans-serif;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 69, 19, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('photo_2026-01-31_19-02-44.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(60px) brightness(0.6) contrast(1.3);
    z-index: -10;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    z-index: -9;
    pointer-events: none;
}

/* ============ LANDING PAGE ============ */
.landing-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.landing-bg {
    position: absolute;
    inset: 0;
    background: url('Screenshot 2026-01-31 171545.png') center/cover no-repeat;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
}

.logo-container {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.logo-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 115, 94, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(30px);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 0 40px rgba(212, 115, 94, 0.4);
    position: relative;
    background: #000;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.9);
}

.landing-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), #f5a386);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.btn-enter {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #e07c4c, #c25d35, #a04525);
    color: white;
    padding: 16px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: 'Paykan', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 
        0 10px 40px rgba(224, 124, 76, 0.5),
        0 0 20px rgba(224, 124, 76, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: btn-pulse 2s ease-in-out infinite;
}

.btn-enter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(224, 124, 76, 0.5), 0 0 20px rgba(224, 124, 76, 0.3); }
    50% { box-shadow: 0 15px 50px rgba(224, 124, 76, 0.7), 0 0 30px rgba(224, 124, 76, 0.5); }
}

@keyframes btn-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-enter:active {
    transform: scale(0.95);
    box-shadow: 0 5px 20px rgba(224, 124, 76, 0.4);
}

.landing-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 115, 94, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 115, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 115, 94, 0.2);
}

.landing-social-link:hover {
    background: rgba(212, 115, 94, 0.3);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 115, 94, 0.4);
}

.landing-social-link:active {
    transform: translateY(-1px) scale(0.95);
}

/* ============ HEADER ============ */
header {
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 214, 133, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px 0 15px;
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.header-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    transform: scale(0.9);
    background: #000;
    border: 2px solid var(--primary);
    box-shadow: 
        0 0 15px rgba(212, 115, 94, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), #f5a386);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.admin-btn {
    position: absolute;
    left: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(212, 115, 94, 0.2), rgba(139, 69, 19, 0.15));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 115, 94, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 
        0 6px 20px rgba(212, 115, 94, 0.4),
        0 0 15px rgba(212, 115, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
}

.admin-btn:hover {
    background: linear-gradient(145deg, rgba(212, 115, 94, 0.3), rgba(139, 69, 19, 0.25));
    border-color: rgba(212, 115, 94, 0.8);
    transform: scale(1.05);
}

.admin-btn:active {
    transform: scale(0.9);
}

/* ============ HAMBURGER MENU ============ */
.menu-toggle {
    position: absolute;
    right: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 214, 133, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ SIDE MENU ============ */
.side-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.side-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(20, 18, 16, 0.98), rgba(10, 8, 6, 0.98));
    backdrop-filter: blur(30px);
    z-index: 201;
    transition: right 0.3s ease-out;
    overflow-y: auto;
    border-left: 1px solid rgba(212, 115, 94, 0.3);
}

.side-menu.open {
    right: 0;
}

.side-menu-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 115, 94, 0.2);
    background: linear-gradient(135deg, rgba(212, 115, 94, 0.1), transparent);
}

.side-menu-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 25px rgba(212, 115, 94, 0.4);
    margin-bottom: 15px;
}

.side-menu-header h2 {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary), #f5a386);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.side-menu-content {
    padding: 20px;
}

.side-menu-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(212, 115, 94, 0.15);
}

.side-menu-section h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-menu-section p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.side-menu-btn {
    width: 100%;
    background: linear-gradient(145deg, rgba(212, 115, 94, 0.15), rgba(139, 69, 19, 0.1));
    border: 2px solid rgba(212, 115, 94, 0.3);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text);
    font-family: 'Paykan', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.side-menu-btn:hover {
    background: linear-gradient(145deg, rgba(212, 115, 94, 0.25), rgba(139, 69, 19, 0.15));
    border-color: rgba(212, 115, 94, 0.5);
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(212, 115, 94, 0.3);
}

.side-menu-btn:active {
    transform: translateX(-3px) scale(0.98);
}

.side-menu-btn-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(212, 115, 94, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.side-menu-btn span:nth-child(2) {
    flex: 1;
    text-align: right;
}

.side-menu-btn svg {
    color: var(--primary);
    flex-shrink: 0;
}

.side-menu-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #e74c3c;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.side-menu-close:hover {
    background: rgba(231, 76, 60, 0.3);
}

/* ============ SEARCH BOX ============ */
.search-wrapper {
    padding: 12px 15px;
    max-width: 500px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(212, 115, 94, 0.25);
    border-radius: 15px;
    padding: 12px 18px;
    transition: all 0.3s;
}

.search-box:focus-within {
    border-color: var(--primary);
    background: rgba(212, 115, 94, 0.1);
    box-shadow: 0 0 20px rgba(212, 115, 94, 0.2);
}

.search-box svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: 'Paykan', sans-serif;
    font-size: 0.95rem;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-clear {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.2);
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-clear:hover {
    background: rgba(231, 76, 60, 0.3);
}

/* ============ CATEGORIES ============ */
.categories-wrapper {
    background: linear-gradient(135deg, rgba(20, 16, 14, 0.85), rgba(10, 8, 7, 0.9));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 14px 0;
    position: sticky;
    top: 95px;
    z-index: 90;
    border-bottom: 1px solid rgba(255, 214, 133, 0.1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 214, 133, 0.08);
}

.categories {
    display: flex;
    gap: 10px;
    padding: 0 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 500px;
    margin: 0 auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.categories::-webkit-scrollbar {
    display: none;
}

.cat-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Paykan', sans-serif;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: 70px;
}

.cat-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, rgba(42, 38, 35, 0.7), rgba(24, 21, 19, 0.8));
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1.5px solid rgba(255, 214, 133, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 10px rgba(255, 214, 133, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cat-icon-box .cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.cat-emoji {
    font-size: 1.8rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cat-icon-box.cat-discount {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.cat-name {
    font-size: 0.75rem;
    font-weight: 500;
}

.cat-btn.active .cat-icon-box {
    background: linear-gradient(135deg, rgba(255, 214, 133, 0.15), rgba(212, 165, 90, 0.1));
    border-color: rgba(255, 214, 133, 0.8);
    box-shadow: 
        0 0 20px rgba(255, 214, 133, 0.5),
        0 5px 25px rgba(var(--accent), 0.3);
}

.cat-btn.active {
    color: rgb(255, 214, 133);
}

.cat-btn:active {
    transform: scale(0.95);
}

/* ============ MENU CONTAINER ============ */
.menu-container {
    padding: 15px;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 30px;
    position: relative;
    min-height: 300px;
}

.no-results {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============ MENU ITEM CARD ============ */
.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: 
        repeating-linear-gradient(
            135deg,
            rgba(25, 22, 20, 0.98) 0px,
            rgba(25, 22, 20, 0.98) 2px,
            rgba(18, 16, 14, 0.98) 2px,
            rgba(18, 16, 14, 0.98) 4px
        ),
        linear-gradient(145deg, rgba(32, 28, 26, 0.95), rgba(18, 16, 14, 0.98));
    border: 2.5px solid transparent;
    border-radius: 20px;
    padding: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    background-clip: padding-box;
}

.menu-item::before {
    content: "";
    position: absolute;
    inset: -2.5px;
    border-radius: 20px;
    background: conic-gradient(
        from 0deg,
        rgba(0,0,0,0) 0deg,
        rgba(0,0,0,0) 40deg,
        rgba(255, 214, 133, .12) 60deg,
        rgba(255, 214, 133, .45) 88deg,
        rgba(255, 240, 200, .60) 112deg,
        rgba(212, 165, 90, .50) 136deg,
        rgba(255, 214, 133, .15) 165deg,
        rgba(0,0,0,0) 195deg,
        rgba(0,0,0,0) 360deg
    );
    animation: goldSpin 6s linear infinite;
    filter: blur(5px);
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
}

@keyframes goldSpin {
    to { transform: rotate(360deg); }
}

.menu-item:active {
    transform: scale(0.98);
}

/* Product Image */
.item-image {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 3px solid rgba(255, 214, 133, 0.65);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 214, 133, 0.3),
        0 0 25px rgba(var(--accent), 0.2),
        0 2px 8px rgba(255, 214, 133, 0.4),
        inset 0 -3px 15px rgba(0, 0, 0, 0.5),
        inset 0 3px 10px rgba(255, 214, 133, 0.08);
    position: relative;
    z-index: 10;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.item-info {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 10;
}

.item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.item-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price Badge */
.item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    position: relative;
    z-index: 10;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
}

.price-current {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(240, 240, 240, 0.05)),
        linear-gradient(135deg, rgba(235, 235, 235, 0.98), rgba(225, 225, 225, 0.98));
    color: #1a1a1a;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(255, 214, 133, 0.25),
        0 0 20px rgba(var(--accent), 0.15),
        0 2px 6px rgba(255, 214, 133, 0.3),
        0 0 0 2px rgba(255, 214, 133, 0.5) inset,
        inset 0 1px 3px rgba(255, 255, 255, 0.5),
        inset 0 -1px 3px rgba(0, 0, 0, 0.1);
    min-width: 75px;
    text-align: center;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.price-discount {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 0.6rem;
    color: #e74c3c;
    font-weight: 700;
}

.price-currency {
    font-size: 0.4rem;
    font-weight: 500;
    color: #666;
    vertical-align: super;
    margin-right: 1px;
    position: relative;
    top: -2px;
}

.price-old {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    text-decoration-color: var(--danger);
    text-decoration-thickness: 1.5px;
}

/* Coffee Item Clickable */
.coffee-item-clickable {
    position: relative;
}

.coffee-item-clickable::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid transparent;
    transition: all 0.3s;
    pointer-events: none;
}

.coffee-item-clickable:hover::after {
    border-color: rgba(212, 115, 94, 0.5);
    box-shadow: 0 0 20px rgba(212, 115, 94, 0.3);
}

/* ============ FOOTER ============ */
.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('Screenshot 2026-01-31 172236.png') center/cover no-repeat;
    filter: grayscale(100%) brightness(0.25) contrast(1.1);
}

.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.7) 50%, rgba(13, 13, 13, 0.95) 100%);
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.site-footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 115, 94, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 115, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 115, 94, 0.2);
}

.footer-social-link svg {
    width: 22px;
    height: 22px;
}

.footer-social-link:hover {
    background: rgba(212, 115, 94, 0.3);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 115, 94, 0.4);
}

.footer-social-link:active {
    transform: translateY(-1px) scale(0.95);
}

/* ============ MODALS ============ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
    from { 
        opacity: 0; 
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(20px) saturate(180%);
    }
}

.modal-content {
    background: 
        linear-gradient(165deg, rgba(35, 31, 28, 0.95) 0%, rgba(20, 18, 16, 0.98) 100%),
        radial-gradient(circle at top right, rgba(212, 115, 94, 0.1), transparent 60%);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 32px;
    max-width: 400px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.6),
        0 10px 40px rgba(212, 115, 94, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        inset 0 -1px 1px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: linear-gradient(145deg, 
        rgba(255, 214, 133, 0.8) 0%,
        rgba(212, 115, 94, 0.6) 20%,
        rgba(255, 165, 0, 0.5) 40%,
        rgba(212, 115, 94, 0.4) 60%,
        rgba(139, 69, 19, 0.5) 80%,
        rgba(255, 214, 133, 0.7) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.9;
    animation: borderRotate 8s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes modalSlideUp {
    from { 
        opacity: 0; 
        transform: translateY(40px) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

.modal-coffee {
    max-width: 380px;
}

/* Info Modal Specific */
.info-modal {
    max-width: 450px;
    padding: 50px 35px 40px;
    text-align: center;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(212, 115, 94, 0.2);
    border-color: rgba(212, 115, 94, 0.5);
    color: var(--primary);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(212, 115, 94, 0.3);
}

.modal-close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

.modal-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 115, 94, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.modal-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(212, 115, 94, 0.15), rgba(139, 69, 19, 0.1));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 115, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.modal-icon svg {
    color: var(--primary);
    filter: drop-shadow(0 2px 8px rgba(212, 115, 94, 0.3));
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff9d6e, #e07c4c, #c25d35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.modal-text-content {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(135deg, rgba(212, 115, 94, 0.05), transparent);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(212, 115, 94, 0.25);
    border-radius: 20px;
    padding: 30px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.05),
        0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-text-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 214, 133, 0.6) 50%, 
        transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.modal-text-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Working Hours List */
.working-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.working-hours-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(212, 115, 94, 0.2);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.working-hours-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 214, 133, 0.1), transparent);
    transition: left 0.5s;
}

.working-hours-item:hover::before {
    left: 100%;
}

.working-hours-item.today {
    background: linear-gradient(145deg, rgba(212, 115, 94, 0.15), rgba(212, 115, 94, 0.08));
    border-color: rgba(212, 115, 94, 0.5);
    box-shadow: 0 0 20px rgba(212, 115, 94, 0.3);
}

.working-hours-day {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.working-hours-item.today .working-hours-day {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(212, 115, 94, 0.5);
}

.working-hours-time {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.working-hours-item.today .working-hours-time {
    color: rgba(255, 214, 133, 0.9);
}

/* Info Modal Specific */
.info-modal {
    max-width: 450px;
    padding: 50px 35px 40px;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-body {
    padding: 20px;
}

/* Coffee Type Selection */
.coffee-type-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coffee-type-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(212, 115, 94, 0.3);
    border-radius: 16px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.coffee-type-card:hover {
    border-color: rgba(212, 115, 94, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 115, 94, 0.3);
}

.coffee-type-card:active {
    transform: translateY(0) scale(0.98);
}

.coffee-type-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.coffee-type-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.coffee-type-price {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e07c4c, #f5a386);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coffee-type-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============ VARIANTS MODAL ============ */
.variant-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 2px solid rgba(212, 115, 94, 0.25);
    border-radius: 14px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.variant-card:hover {
    border-color: rgba(212, 115, 94, 0.5);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    box-shadow: 0 6px 20px rgba(212, 115, 94, 0.2);
}

.variant-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.variant-price {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e07c4c, #f5a386);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Back to Menu Button */
.btn-back-to-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    margin-top: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    font-family: 'Paykan', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.btn-back-to-menu:hover {
    background: linear-gradient(135deg, rgba(212, 115, 94, 0.3), rgba(212, 115, 94, 0.1));
    border-color: rgba(212, 115, 94, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 115, 94, 0.25);
}

.btn-back-to-menu svg {
    transition: transform 0.3s ease;
}

.btn-back-to-menu:hover svg {
    transform: translateX(5px);
}

/* ============ ADMIN STYLES (for admin.html) ============ */
.admin-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
}

.tab-btn {
    flex: 1;
    padding: 12px 10px;
    background: transparent;
    border: none;
    border-radius: 14px;
    color: var(--text-muted);
    font-family: 'Paykan', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.tab-btn.active {
    background: linear-gradient(135deg, #e07c4c, #c25d35);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(212, 115, 94, 0.35);
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 50vh;
    overflow-y: auto;
    padding: 2px;
}

.admin-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 12px 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 115, 94, 0.2);
    transform: translateX(-2px);
}

.admin-item.disabled-item {
    opacity: 0.3;
    filter: grayscale(0.8);
}

.admin-item-info {
    flex: 1;
    min-width: 0;
}

.admin-item-info h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.admin-item-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.admin-item-actions {
    display: flex;
    gap: 6px;
}

.admin-item-actions button {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.admin-item-actions button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.admin-item-actions button:active {
    transform: translateY(0) scale(0.95);
}

.btn-toggle {
    background: rgba(155, 89, 182, 0.15);
    color: #9b59b6;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.btn-toggle:hover {
    background: rgba(155, 89, 182, 0.3);
}

.btn-toggle.active {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.2);
}

.btn-toggle.active:hover {
    background: rgba(46, 204, 113, 0.3);
}

.btn-edit {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.btn-edit:hover {
    background: rgba(52, 152, 219, 0.3);
}

.btn-delete {
    background: rgba(231, 76, 60, 0.12);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.btn-delete:hover {
    background: rgba(231, 76, 60, 0.25);
}

/* Forms */
.admin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.settings-input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    color: var(--text);
    font-family: 'Paykan', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-form input::placeholder,
.admin-form select::placeholder,
.admin-form textarea::placeholder,
.settings-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.admin-form input:hover,
.admin-form select:hover,
.admin-form textarea:hover,
.settings-input:hover {
    border-color: rgba(212, 115, 94, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.settings-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(212, 115, 94, 0.06);
    box-shadow: 0 0 0 4px rgba(212, 115, 94, 0.08);
}

.admin-form textarea {
    min-height: 80px;
    resize: vertical;
}

.upload-box {
    position: relative;
}

.upload-box input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.img-preview {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    overflow: hidden;
    transition: all 0.3s;
}

.img-preview:hover {
    border-color: rgba(212, 115, 94, 0.3);
    background: rgba(212, 115, 94, 0.04);
}

.img-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    background: linear-gradient(135deg, #e07c4c, #c25d35);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 14px;
    font-family: 'Paykan', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(212, 115, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(212, 115, 94, 0.45);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 12px rgba(212, 115, 94, 0.3);
}

/* Settings */
.settings-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.settings-header {
    text-align: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}

.settings-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 115, 94, 0.3), transparent);
}

.settings-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.settings-header p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.settings-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.label-icon {
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.settings-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    margin: 18px 0;
}

.btn-save-settings {
    margin-top: 4px;
}

/* Coffee Prices Section */
.coffee-prices-section {
    background: rgba(139, 69, 19, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px;
    margin-top: 10px;
}

.coffee-prices-title {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
}

.coffee-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.coffee-price-row label {
    flex: 0 0 130px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.coffee-price-row input {
    flex: 1;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Paykan', sans-serif;
    font-size: 0.85rem;
}

/* Categories Management */
.add-category-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 20px;
}

.add-category-form h4 {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
}

.category-input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    color: var(--text);
    font-family: 'Paykan', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.category-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(212, 115, 94, 0.06);
    box-shadow: 0 0 0 4px rgba(212, 115, 94, 0.08);
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 12px 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 115, 94, 0.2);
}

.category-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-details h4 {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.category-details p {
    font-size: 0.73rem;
    color: var(--text-muted);
}

.category-actions {
    display: flex;
    gap: 6px;
}

.btn-delete-category {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: none;
    background: rgba(231, 76, 60, 0.12);
    color: #e74c3c;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
}

.btn-delete-category:hover {
    background: rgba(231, 76, 60, 0.25);
    transform: scale(1.08);
}

/* Select Dropdown */
select option {
    background: #1a1a1a;
    color: #fff;
    padding: 12px;
}

/* ============ VARIANTS SECTION (Admin Panel) ============ */
.variants-section {
    margin-top: 15px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.variants-header {
    margin-bottom: 12px;
}

.variants-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.93rem;
    color: var(--text);
}

.variants-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.variants-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.variant-row {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.variant-row:hover {
    border-color: rgba(212, 115, 94, 0.15);
}

.variant-row input {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Paykan', sans-serif;
    font-size: 0.9rem;
}

.variant-row input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(212, 115, 94, 0.05);
}

.variant-row input::placeholder {
    color: var(--text-muted);
}

.btn-remove-variant {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 10px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.btn-remove-variant:hover {
    background: rgba(231, 76, 60, 0.25);
    transform: scale(1.08);
}

.btn-add-variant {
    width: 100%;
    padding: 12px;
    background: rgba(46, 204, 113, 0.06);
    border: 1px dashed rgba(46, 204, 113, 0.3);
    border-radius: 12px;
    color: #2ecc71;
    font-family: 'Paykan', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-variant:hover {
    background: rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.5);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 115, 94, 0.5);
    border-radius: 10px;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-item {
    animation: fadeIn 0.4s ease-out;
}
