/* ═══════════════════════════════════════════════════════════════
   Pinify — Luxor Style  |  Neon Dark Grid
   assets/css/menu/menu-luxor.css
═══════════════════════════════════════════════════════════════ */

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

:root {
    --lx-bg:     #070b14;
    --lx-card:   #101826;
    --lx-gold:   #ffcc70;
    --lx-orange: #ff7b54;
    --lx-text:   #d6d6d6;
}

/* ══════════════════════════════════════════
   Body
══════════════════════════════════════════ */
body {
    font-family: 'Poppins', 'Inter', 'Noto Naskh Arabic', sans-serif;
    background:
        radial-gradient(circle at top left,    rgba(255,123,84,.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255,204,112,.15), transparent 30%),
        var(--lx-bg);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 40px;
}

/* Grid pattern overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* ══════════════════════════════════════════
   Wrapper
══════════════════════════════════════════ */
.luxor-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════
   Hero
══════════════════════════════════════════ */
.lx-hero {
    position: relative;
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.65)),
        url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
    border-radius: 35px;
    padding: 120px 50px 90px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.lx-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,123,84,.15), transparent);
    pointer-events: none;
}

.lx-hero-content {
    position: relative;
    z-index: 2;
}

.lx-hero-name {
    font-size: clamp(3rem, 8vw, 90px);
    font-family: 'Playfair Display', 'Cormorant Garamond', 'Noto Naskh Arabic', serif;
    color: var(--lx-gold);
    text-shadow: 0 0 30px rgba(255,204,112,.4);
    line-height: 1.1;
    font-weight: 700;
}

.lx-hero-tagline {
    margin-top: 15px;
    font-size: clamp(.85rem, 2.5vw, 1.25rem);
    letter-spacing: 5px;
    color: #f3f3f3;
    text-transform: uppercase;
    font-weight: 300;
}

/* ══════════════════════════════════════════
   Sections grid
══════════════════════════════════════════ */
.lx-sections {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
}

/* ══════════════════════════════════════════
   Card
══════════════════════════════════════════ */
.lx-card {
    position: relative;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    padding: 35px;
    overflow: hidden;
    transition: transform .4s ease, border-color .4s, box-shadow .4s;
    box-shadow:
        0 10px 40px rgba(0,0,0,.3),
        inset 0 1px 1px rgba(255,255,255,.05);
}

.lx-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255,204,112,.3);
    box-shadow:
        0 20px 60px rgba(0,0,0,.5),
        0 0 40px rgba(255,123,84,.15);
}

/* Glow orb in top-right corner */
.lx-card::before {
    content: "";
    position: absolute;
    width: 200px; height: 200px;
    background: rgba(255,123,84,.08);
    border-radius: 50%;
    filter: blur(80px);
    top: -80px; right: -80px;
    pointer-events: none;
}

/* ══════════════════════════════════════════
   Card title
══════════════════════════════════════════ */
.lx-card-title {
    position: relative;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    margin-bottom: 30px;
    padding-bottom: 18px;
    color: var(--lx-gold);
    font-family: 'Playfair Display', 'Cormorant Garamond', 'Noto Naskh Arabic', serif;
    font-weight: 700;
}

.lx-card-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 70px; height: 3px;
    background: linear-gradient(to right, var(--lx-orange), var(--lx-gold));
    border-radius: 30px;
}

/* ══════════════════════════════════════════
   Items
══════════════════════════════════════════ */
.lx-item {
    margin-bottom: 28px;
    cursor: pointer;
}
.lx-item:last-child { margin-bottom: 0; }
.lx-item.unavailable { opacity: .45; cursor: default; }
.lx-item.unavailable .lx-item-name { text-decoration: line-through; }

.lx-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.lx-item-name {
    font-size: clamp(.95rem, 2vw, 1.2rem);
    font-weight: 500;
    color: #f0f0f0;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
    font-family: 'Poppins', 'Inter', 'Noto Naskh Arabic', sans-serif;
}

.lx-item-price {
    background: linear-gradient(135deg, var(--lx-orange), var(--lx-gold));
    padding: 7px 15px;
    border-radius: 50px;
    color: #111;
    font-weight: 700;
    font-size: .82rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255,123,84,.35);
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1;
}

.lx-item-desc {
    color: var(--lx-text);
    line-height: 1.7;
    font-size: .85rem;
    font-family: 'Poppins', 'Inter', 'Noto Naskh Arabic', sans-serif;
}

.lx-sold-badge {
    display: inline-flex; align-items: center;
    font-size: .6rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: #ff6b6b;
    background: rgba(255,107,107,.1);
    border: 1px solid rgba(255,107,107,.25);
    padding: 2px 8px; border-radius: 20px;
    margin-left: 8px; vertical-align: middle; flex-shrink: 0;
}

/* Item with image */
.lx-item-has-img { display: flex; align-items: flex-start; gap: 14px; }
.lx-item-has-img .lx-item-body { flex: 1; min-width: 0; }

.lx-item-img {
    width: 72px; height: 72px;
    border-radius: 12px; object-fit: cover;
    flex-shrink: 0;
    border: 1.5px solid rgba(255,179,71,.25);
    box-shadow: 0 4px 14px rgba(0,0,0,.4);
    cursor: zoom-in;
    transition: transform .18s, box-shadow .18s;
    align-self: flex-start;
}
.lx-item-img:hover { transform: scale(1.06); box-shadow: 0 6px 20px rgba(0,0,0,.55), 0 0 0 2px rgba(255,179,71,.4); }

/* Cart hover */
.lx-item[data-cart-name]:not(.unavailable):hover {
    background: rgba(255,179,71,.06);
    border-radius: 10px;
    padding: 0 10px;
    margin-left: -10px;
    margin-right: -10px;
}

/* ══════════════════════════════════════════
   Footer
══════════════════════════════════════════ */
.lx-footer {
    margin-top: 40px;
    text-align: center;
    padding: 28px 30px 32px;
    color: #888;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    font-size: .82rem;
    font-family: 'Poppins', 'Inter', sans-serif;
}

/* ══════════════════════════════════════════
   Powered-by (shared)
══════════════════════════════════════════ */
.powered-by {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .68rem; color: rgba(235,210,145,.18);
    text-decoration: none; transition: color .2s;
}
.powered-by:hover { color: rgba(235,210,145,.45); }
.powered-by-icon {
    width: 15px; height: 15px;
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ══════════════════════════════════════════
   Responsive
══════════════════════════════════════════ */
@media (max-width: 900px) {
    body { padding: 24px; }
    .lx-hero { padding: 80px 30px 65px; }
    .lx-hero-tagline { letter-spacing: 3px; }
    .lx-sections { gap: 20px; }
    .lx-card { padding: 28px 24px; }
}

@media (max-width: 600px) {
    body { padding: 14px; }
    .lx-hero { padding: 60px 20px 50px; border-radius: 22px; }
    .lx-hero-name { letter-spacing: 0; }
    .lx-hero-tagline { font-size: .78rem; letter-spacing: 2px; }
    .lx-sections { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
    .lx-card { padding: 24px 20px; border-radius: 20px; }
    .lx-card:hover { transform: none; }
    .lx-footer { padding: 22px 20px 28px; }
}
