:root {
    /* DEFAULT: LIGHT MODE (Premium Champagne Silk) */
    --bg: #fdfaf5;
    --surface: #ffffff;
    --btn-bg: #ffffff;
    --btn-border: #e8e1d5;
    --text: #171614;
    --text-dim: #8b7d6b;
    --primary: #c21a1a;
    --border: #f0ede8;
    --primary-glow: rgba(194, 26, 26, 0.1);
    --gold: #d4af37;
    --accent: var(--gold);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode {
    --bg: #000000;
    --surface: #0a0a0a;
    --primary: #ff1a1a;
    --primary-glow: rgba(255, 26, 26, 0.4);
    --btn-bg: #111111;
    --btn-border: #222222;
    --text: #ffffff;
    --text-dim: #888888;
    --border: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.hidden {
    display: none !important;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
    height: 100vh;
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
}

/* Global Icon Sizing (Prevent layout shift/large icons on load) */
i[data-lucide],
svg.lucide {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.theme-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text);
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.theme-toggle-btn:hover {
    background: rgba(128, 128, 128, 0.15);
    transform: rotate(15deg);
}

/* ============================================================
   ULTIMATE CINEMATIC INTRO (THE STORM'S EYE)
   ============================================================ */
.intro-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    overflow: hidden;
    perspective: 1000px;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.intro-flash {
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
}

.intro-elements {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
}

.intro-logo-outer {
    position: relative;
    width: 350px;
    height: 350px;
    max-width: 85vw;
    max-height: 85vw;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateZ(-200px) scale(0.5);
    filter: blur(20px);
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
    overflow: hidden;
    /* This crops the logo to the circle */
}

/* Golden Halo Effect */
.intro-logo-outer::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulseHalo 4s infinite alternate ease-in-out;
}

.intro-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.8);
    /* Maximum zoom to fill the circle with logo details */
    position: relative;
    z-index: 2;
}

.intro-brand-name {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 950;
    letter-spacing: 30px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(50px) translateZ(-100px);
    margin-top: 10px;
    text-align: center;
}

.intro-loading-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-top: 2rem;
    opacity: 0.6;
}

@keyframes pulseHalo {
    from {
        transform: scale(1);
        opacity: 0.3;
    }

    to {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* App Transition Blur */
#main-app.intro-transitioning {
    filter: blur(20px) brightness(0.5);
    opacity: 0;
}

#intro-screen.warp-speed {
    animation: warpEffect 1s cubic-bezier(1, 0, 0, 1) forwards;
}

@keyframes warpEffect {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }

    100% {
        transform: scale(10);
        opacity: 0;
        filter: blur(50px);
    }
}

/* About Logo Link */
.about-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin: 2.5rem auto 0;
    padding: 1.5rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
}

.about-logo-link:hover {
    transform: scale(1.05);
    opacity: 1;
}

.about-logo-link img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
    object-fit: cover;
    transition: box-shadow 0.3s ease;
}

.about-logo-link:hover img {
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.45);
}

.about-logo-link span {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 600;
}

/* App Layout */
.app-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-bar.hidden {
    display: none !important;
}

body.has-announcement {
    padding-top: 40px;
    /* Space for the fixed bar */
}

@media (max-width: 600px) {
    body.has-announcement {
        padding-top: 50px;
    }
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.close-announcement {
    background: rgba(255, 255, 255, 0.2) !important;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.close-announcement:hover {
    background: rgba(255, 255, 255, 0.2);
}

.announcement-bar.hidden {
    display: none !important;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid var(--gold);
}

.logo-name {
    font-family: 'Orbitron';
    font-weight: 950;
    color: var(--gold);
    font-size: 1.4rem;
    display: block;
}

.logo-tag {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-dim);
}

.cart-btn {
    background: var(--btn-bg);
    border: 1px solid var(--border);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    padding: 3px 7px;
    border-radius: 50%;
    font-weight: 900;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Explorer Main */
.explorer-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 3rem;
    padding: 0 10px;
    min-height: 40px;
}

.step {
    padding: 8px 16px;
    border: 1px solid var(--btn-border);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: var(--transition);
    white-space: nowrap;
    background: var(--btn-bg);
}

.step.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.step.completed {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
}

.step.completed {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.step-line {
    width: 30px;
    height: 2px;
    background: var(--btn-border);
    transition: var(--transition);
}

.step-line.active {
    background: var(--primary);
}

.stage-container {
    width: 100%;
    text-align: center;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stage-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stage-header p {
    color: var(--text-dim);
    margin-bottom: 3rem;
}

/* Selection Buttons - PREMIUM CHIPS */
.options-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0 4rem;
}

.opt-btn {
    padding: 18px 45px;
    background: var(--btn-bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opt-btn:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.opt-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 25px var(--primary-glow);
}

.stage-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 3rem;
}

.footer-nav-btns {
    display: flex;
    gap: 15px;
}

.admin-link-btn {
    color: #333;
    text-decoration: none;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    opacity: 0.5;
}

.admin-link-btn:hover {
    color: var(--accent);
    opacity: 1;
}

.back-btn,
.reset-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #333;
    color: var(--text-dim);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.reset-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-dim);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 100vh;
    background: var(--surface);
    backdrop-filter: blur(20px);
    z-index: 2000;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.hidden {
    transform: translateX(-100%);
    display: flex !important;
    /* Keep it flex to animate */
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-weight: 900;
    color: var(--accent);
}

.close-cart {
    background: rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #000000 !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.close-cart:hover {
    background: rgba(0, 0, 0, 0.15) !important;
    transform: rotate(90deg);
}

body.dark-mode .close-cart {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

body.dark-mode .close-cart:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    background: var(--btn-bg);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .cart-drawer {
        width: 100%;
    }
}

/* Modals & Overlays */
.admin-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    padding: 1rem;
    overflow-y: auto;
}

.hidden {
    display: none !important;
}

/* Product Detail View */
.product-view-card {
    background: var(--surface);
    width: 95%;
    max-width: 1000px;
    max-height: 95vh;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.close-detail {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.close-detail:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .close-detail {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
}

body.dark-mode .close-detail:hover {
    background: rgba(40, 40, 40, 0.95);
    border-color: rgba(255, 255, 255, 0.6);
}

.product-view-split {
    display: flex;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.product-image-side {
    flex: 1;
    background: #111;
}

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

.product-info-side {
    flex: 1;
    padding: 3rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-info-side h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.price-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dim);
}

.chip-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.detail-chip {
    padding: 10px 25px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.detail-chip:hover {
    border-color: var(--primary);
}

.detail-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px var(--primary-glow);
}

@media (max-width: 850px) {
    .product-view-split {
        flex-direction: column-reverse;
    }

    .product-image-side {
        height: 300px;
    }

    .product-info-side {
        padding: 2rem;
    }

    .product-info-side h2 {
        font-size: 2rem;
    }

    .price-box {
        font-size: 1.8rem;
        padding: 1.5rem;
    }
}

/* Mobile Responsive */
/* Mobile Revolution: Perfect Center & Premium Flow */
@media (max-width: 768px) {
    .app-container {
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 25px;
        width: 100%;
        margin-bottom: 2.5rem;
    }

    .logo-box {
        flex-direction: column;
        align-items: center;
    }

    .logo-name {
        text-align: center;
        margin-top: 10px;
    }

    .step-indicator {
        width: 100%;
        justify-content: center;
        gap: 10px;
        margin-bottom: 2rem;
    }

    .step {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .stage-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    /* ===== MOBILE PRODUCTS GRID ===== */
    .options-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        width: 100% !important;
        gap: 8px !important;
        padding: 4px !important;
        box-sizing: border-box;
        overflow: hidden;
        margin: 0 !important;
    }

    /* Prevent horizontal scroll on main container */
    #main-app,
    .stage-content {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    /* Product cards: exactly half width */
    .product-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        grid-column: span 1 !important;
        box-sizing: border-box;
        overflow: hidden;
        border-radius: 16px;
    }

    .product-card-img {
        height: 155px !important;
        overflow: hidden;
    }

    .product-card-info {
        padding: 8px 10px 10px !important;
        overflow: hidden;
        min-width: 0;
    }

    .product-card-name {
        font-size: 0.78rem !important;
        font-weight: 800;
        margin-bottom: 3px;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
    }

    .product-card-price {
        font-size: 0.88rem !important;
        font-weight: 900;
    }

    .product-color-badge {
        font-size: 0.58rem !important;
        padding: 2px 5px !important;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
    }

    /* Category buttons = full width */
    .opt-btn {
        width: 100%;
        min-width: unset;
        font-size: 1rem;
        padding: 14px;
        grid-column: span 2;
    }

    /* Order Form Fix for Mobile */
    #order-form-modal>div {
        width: 95% !important;
        padding: 1.5rem !important;
        border-radius: 15px !important;
        max-height: 95vh !important;
    }

    .product-view-card {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .product-view-split {
        flex-direction: column;
        overflow-y: auto;
        flex: 1;
    }

    .product-image-side {
        height: 45vh;
        width: 100%;
        flex: none;
    }

    .product-info-side {
        padding: 2rem 1.5rem;
        text-align: center;
        flex: 1;
    }

    .product-info-side h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .price-box {
        font-size: 2rem;
        padding: 1.2rem;
        margin-bottom: 2rem;
    }

    .chip-group {
        justify-content: center;
    }

    .detail-chip {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .cart-drawer {
        width: 100%;
    }
}

/* Modal Centering Fix */
.admin-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.product-view-card {
    transform-origin: center;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Professional Product Card System */
.options-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin-top: 2rem;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-align: right;
    animation: fadeIn 0.5s ease-out;
    width: 300px;
    flex-grow: 0;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px var(--primary-glow);
}

.product-card-img {
    width: 100%;
    height: 300px;
    background: #0a0a0a;
    overflow: hidden;
    position: relative;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-img img {
    transform: scale(1.1);
}

.product-card-info {
    padding: 20px;
    border-top: 1px solid var(--border);
    overflow: hidden;
    min-width: 0;
}

.product-card-name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.5;
    color: var(--text-dim);
    font-weight: 600;
}

.final-price {
    color: #4caf50;
    /* Modern Green for Special Prices */
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.offer-badge-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
    pointer-events: none;
    animation: badgePop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePop {
    from {
        transform: scale(0) rotate(-10deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* Ensure modal is perfectly centered */
.admin-modal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-view-card {
    box-shadow: 0 0 100px rgba(0, 0, 0, 1);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ===== Product Color Badge ===== */
.product-color-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8942e);
    color: #000;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 20px;
    margin: 4px 0 6px;
    letter-spacing: 0.5px;
}

/* ===== Intro Animation - Fast & Dynamic ===== */
.intro-overlay {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.intro-main {
    will-change: transform, opacity;
}

/* Particles effect on intro */
.intro-box::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 1.5s ease-out forwards;
    pointer-events: none;
}

.intro-box {
    position: relative;
}

@keyframes pulseGlow {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

/* Intro letter animation */
.intro-main {
    background: linear-gradient(90deg, #fff 0%, #d4af37 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 1.5s ease-out forwards;
}

@keyframes shimmerText {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: 0% center;
    }
}

/* Order form modal animation */
#order-form-modal>div {
    animation: modalPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Input focus glow for order form */
#order-form-modal input:focus,
#order-form-modal select:focus {
    outline: none;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Cart button pulse when item added */
@keyframes cartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.badge.pulse {
    animation: cartPulse 0.4s ease;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 9998;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    animation: waPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

@keyframes waPop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.wa-float:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

/* Pulse ring */
.wa-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: waRing 2s infinite;
}

@keyframes waRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============================================
   WISHLIST BUTTON (Header)
   ============================================ */
.wishlist-header-btn {
    background: var(--btn-bg);
    border: 1px solid var(--border);
    color: var(--text);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.wishlist-header-btn:hover {
    border-color: #e91e63;
    color: #e91e63;
    transform: scale(1.05);
}

/* Wishlist toggle button inside product modal */
.wishlist-toggle-btn {
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.3);
    color: #e91e63;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    flex-shrink: 0;
}

.wishlist-toggle-btn.active,
.wishlist-toggle-btn:hover {
    background: #e91e63 !important;
    color: white !important;
    border-color: #e91e63 !important;
    transform: scale(1.1);
}

/* Filled heart when active */
.wishlist-toggle-btn.active i {
    fill: currentColor;
}

/* Wishlist Modal */
.wishlist-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.wishlist-modal.hidden {
    display: none !important;
}

.wishlist-modal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wishlist-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist-modal-header h3 {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--accent);
}

.wishlist-items {
    overflow-y: auto;
    padding: 1rem;
    flex: 1;
}

.wishlist-item {
    background: var(--btn-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s;
}

.wishlist-item:hover {
    border-color: #e91e63;
}

.wishlist-item img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.wishlist-item-info {
    flex: 1;
}

.wishlist-item-name {
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.wishlist-item-price {
    color: #d4af37;
    font-weight: 700;
}

.wishlist-remove-btn {
    background: rgba(255, 68, 68, 0.1);
    border: none;
    color: #ff4444;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-remove-btn:hover {
    background: #ff4444;
    color: white;
}

.wishlist-add-to-cart-btn {
    background: #d4af37;
    border: none;
    color: #000;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
}

.wishlist-add-to-cart-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   SIBLING NAVIGATION
   ============================================ */
.sibling-nav-container {
    width: 100%;
    margin-bottom: 2rem;
    padding: 0 10px;
    animation: fadeIn 0.4s ease;
}

.sibling-nav-title {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 10px;
    font-weight: 700;
}

.sibling-nav-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    /* Firefox */
}

.sibling-nav-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.sibling-chip {
    padding: 10px 20px;
    background: var(--btn-bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}

.sibling-chip:hover {
    border-color: var(--primary);
}

.sibling-chip.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.search-bar-inner {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0 16px;
    gap: 10px;
    transition: 0.3s;
}

body.dark-mode .search-bar-inner {
    background: #0f0f0f;
    border: 1px solid #333;
}

.search-icon {
    color: #666;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.search-bar-inner input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    padding: 14px 0;
    outline: none;
    direction: rtl;
}

.search-bar-inner input::placeholder {
    color: #555;
}

.clear-search-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.clear-search-btn:hover {
    color: var(--accent);
}


/* ============================================
   COUPON SECTION IN CART
   ============================================ */
.coupon-section {
    padding: 0 1.5rem 1rem;
}

.coupon-row {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex: 1;
    background: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    outline: none;
    direction: ltr;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.coupon-input:focus {
    border-color: #d4af37;
}

.coupon-apply-btn {
    background: #d4af37;
    border: none;
    color: #000;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem;
    transition: 0.2s;
    white-space: nowrap;
}

.coupon-apply-btn:hover {
    transform: scale(1.05);
}

.coupon-msg {
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    min-height: 18px;
}

.coupon-msg.success {
    color: #4caf50;
}

.coupon-msg.error {
    color: #ff4444;
}

@media (max-width: 768px) {
    .wa-float {
        bottom: 20px;
        left: 16px;
        width: 52px;
        height: 52px;
    }
}

/* Updated */

/* ===== MOBILE ORDERS TABLE & TREE FIXES ===== */
@media (max-width: 768px) {

    /* 1. Transform Orders Table to Cards */
    .orders-table thead {
        display: none;
    }

    .orders-table,
    .orders-table tbody,
    .orders-table tr,
    .orders-table td {
        display: block;
        width: 100%;
    }

    .orders-table tr {
        margin-bottom: 15px;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: var(--card);
        padding: 10px;
    }

    .orders-table td {
        text-align: right;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .orders-table td:last-child {
        border-bottom: none;
        justify-content: center;
        padding-top: 15px;
    }

    /* Pseudo-element for labels */
    .orders-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-dim);
        font-size: 0.85rem;
        margin-left: 10px;
    }

    /* 2. Tree Layout Fixes */
    .tree-item {
        flex-direction: column;
        align-items: stretch !important;
        gap: 8px;
        padding: 12px;
    }

    .tree-item>div:first-child {
        width: 100%;
    }

    .item-actions {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    /* Ensure indentation doesn't break layout */
    #tree-container {
        padding-left: 5px;
        overflow-x: hidden;
    }
}

/* ============================================================
   PAYMENT SELECTOR
   ============================================================ */
.payment-selector {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.payment-opt {
    flex: 1;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #666;
}

.payment-opt:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.02);
}

.payment-opt.active {
    border-color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.1) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.payment-opt i {
    width: 24px;
    height: 24px;
}

@media (max-width: 480px) {
    .payment-selector {
        flex-direction: column;
    }
}

/* Coupon Section in Cart */
.coupon-section {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--surface);
    flex-shrink: 0;
}

.coupon-row {
    display: flex;
    gap: 8px;
}

.coupon-input {
    flex: 1;
    background: var(--btn-bg);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
}

.coupon-apply-btn {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.coupon-msg {
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Loader Animation */
.loader-spin {
    display: inline-block;
    animation: rotateLoader 1s linear infinite;
    font-size: 1.5rem;
}

@keyframes rotateLoader {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* Fix Cart Drawer for Mobile Height and Button Visibility */
/* PWA Install Button Styles */
.install-pwa-container {
    width: 100%;
    max-width: 400px;
    margin: 20px auto 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.install-btn {
    width: 100% !important;
    min-width: unset !important;
    background: linear-gradient(135deg, var(--gold), #b8860b) !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px !important;
    font-size: 1.1rem !important;
}

.install-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5) !important;
}

.ios-guide {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--gold);
    border-radius: 12px;
    padding: 15px;
    font-size: 0.9rem;
    color: var(--text);
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.ios-guide i {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .cart-drawer {
        height: 100vh !important;
        height: 100dvh !important;
        height: -webkit-fill-available !important;
        z-index: 3000 !important;
    }

    .cart-footer {
        padding: 1.25rem 1.25rem calc(2.5rem + env(safe-area-inset-bottom)) !important;
        background: var(--surface) !important;
        flex-shrink: 0 !important;
        box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.2) !important;
    }

    .cart-items {
        flex-grow: 1 !important;
        overflow-y: auto !important;
    }

    .wa-float {
        z-index: 1000 !important;
    }
}

/* ============================================
   CHATBOT UI
   ============================================ */
.floating-buttons-container {
    position: fixed;
    bottom: 28px;
    left: 28px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9998;
}

.wa-float {
    position: relative;
    bottom: auto;
    left: auto;
}

.chatbot-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    color: #000;
    border: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    animation: waPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

.chatbot-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.chatbot-window {
    position: fixed;
    bottom: 100px;
    left: 28px;
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 480px;
    max-height: calc(100vh - 120px);
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow: hidden;
    transition: opacity 0.3s, transform 0.3s;
    transform-origin: bottom left;
}

.chatbot-window.hidden {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.chatbot-header {
    background: #1a1a1a;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.close-chatbot {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.close-chatbot:hover {
    color: #fff;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    word-wrap: break-word;
}

.chat-msg.bot {
    align-self: flex-start;
    background: #1a1a1a;
    border: 1px solid #333;
    border-bottom-right-radius: 4px;
    color: #eee;
}

.chat-msg.user {
    align-self: flex-end;
    background: var(--accent);
    color: #000;
    border-bottom-left-radius: 4px;
    font-weight: 600;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chat-option-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    transition: 0.2s;
}

.chat-option-btn:hover {
    background: var(--accent);
    color: #000;
}

.chat-social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.chat-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
}

.chat-social-btn.fb {
    background: #1877F2;
}

.chat-social-btn.tk {
    background: #000;
    border: 1px solid #333;
}

.chatbot-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #1a1a1a;
    border-top: 1px solid #333;
    gap: 8px;
}

.chatbot-footer input {
    flex: 1;
    background: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 15px;
    border-radius: 24px;
    outline: none;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
}

.chatbot-footer input:focus {
    border-color: var(--accent);
}

.chatbot-send-btn {
    background: var(--accent);
    border: none;
    color: #000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
}

.chatbot-send-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .floating-buttons-container {
        bottom: 20px;
        left: 16px;
    }

    .wa-float,
    .chatbot-float {
        width: 52px;
        height: 52px;
    }

    .chatbot-window {
        bottom: 90px;
        left: 16px;
        width: calc(100vw - 32px);
    }
}

/* ============================================================
   MAINTENANCE MODE OVERLAY
   ============================================================ */
.maintenance-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 200000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    direction: rtl;
}

.maintenance-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 4rem 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.maintenance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.maintenance-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.maintenance-icon i {
    width: 40px;
    height: 40px;
}

#mnt-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text);
}

#mnt-reason-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
}

.mnt-timer-box {
    background: var(--bg);
    padding: 1rem 2rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-weight: 700;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .maintenance-card {
        padding: 3rem 1.5rem;
    }

    #mnt-title {
        font-size: 1.8rem;
    }
}

/* SEO/CSP Compatibility Styles */
.social-ico-link {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.social-ico-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.tiktok-bg {
    background: #000;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.fb-bg {
    background: #1877F2;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.powered-by-link {
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.powered-by-link:hover {
    opacity: 0.7;
}