
/* QR Menu Specific Styles */

/* Base & Layout */
body {
    background-color: #050505;
    background-image: radial-gradient(circle at 50% 0%, #111 0%, #000 70%);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* --- CATEGORY PILLS (Modern Buttons) --- */
.category-pill {
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    background-color: #1a1a1a;
    color: #888;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-pill.active {
    background-color: #D4AF37;
    color: #000;
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    font-weight: 800;
}

/* --- PRODUCT LIST (Text Only, Clean) --- */
.qr-product-row {
    background-color: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.qr-product-row:active {
    background-color: rgba(255,255,255,0.03);
}

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

.qr-prod-info {
    flex: 1;
}

.qr-prod-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.qr-prod-desc {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.qr-prod-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.qr-prod-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #D4AF37;
    white-space: nowrap;
}

.qr-prod-from {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #555;
    font-weight: 600;
    margin-bottom: -2px;
}

/* Recommended Badge */
.row-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-entry {
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0; 
}

/* Modal States */
.modal-open {
    display: block !important;
}

.slide-up {
    transform: translateY(0) !important;
}

/* Heart Animation */
.heart-filled {
    fill: #ef4444;
    color: #ef4444;
    animation: heartPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* --- VARIANT CHIPS (In Modal) --- */
.variant-chip {
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-weight: 500;
}

.variant-chip.selected {
    border-color: #D4AF37;
    background: #D4AF37;
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* --- SUGGESTION CARD --- */
.suggestion-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}
.suggestion-card img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

/* --- POPUP ANIMATION --- */
@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.promo-popup-visible .promo-popup-content {
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Search Focus Highlight */
#menu-search:focus + svg {
    color: var(--color-gold);
}
#menu-search:focus {
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    background-color: #000;
}
