/* Sacred Crimson - Global Gothic Design System */
:root {
    --bg-dark: #050505;
    --bg-panel: #0a0a0a;
    --accent-red: #8B0000;
    --accent-red-bright: #cc0000;
    --accent-gold: #d4af37;
    --text-bright: #ffffff;
    --text-dim: #b0b0b0;
    --border-red: rgba(139, 0, 0, 0.3);
    --border-gold: rgba(212, 175, 55, 0.4);
    --glow-red: 0 0 20px rgba(139, 0, 0, 0.4);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1300px;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-dim);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, .mystic-font {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-bright);
    letter-spacing: 0.05em;
}

a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Professional Header */
.sacred-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-red);
    transition: var(--transition-smooth);
}

.sacred-header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    padding: 5px 0;
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sacred-header.scrolled .header-inner { height: 75px; }

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-red-bright);
    font-family: 'Cinzel', serif;
}

.header-logo img { height: 45px; width: auto; filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5)); }

.header-nav { display: flex; gap: 35px; }
.header-nav a {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    position: relative;
}

.header-nav a:hover { color: var(--accent-red-bright); }
.header-nav a.active { color: var(--accent-gold); }

.header-tools { display: flex; align-items: center; gap: 25px; }
.tool-icon { font-size: 1.2rem; color: var(--text-bright); position: relative; }
.tool-icon:hover { color: var(--accent-red-bright); transform: scale(1.1); }

.cart-badge {
    position: absolute;
    top: -8px; right: -12px;
    background: var(--accent-red);
    color: #fff;
    font-size: 0.6rem;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(139,0,0,0.5);
}

/* Mobile Menu */
.mobile-toggle { display: none; font-size: 1.5rem; color: var(--text-bright); cursor: pointer; position: relative; z-index: 1001; }

/* Professional Buttons */
.crimson-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #A30000;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    border: 1px solid #cc0000;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: 0 0 15px rgba(163, 0, 0, 0.3);
}

.crimson-btn:hover {
    background: #cc0000;
    color: #fff;
    box-shadow: 0 0 25px rgba(204, 0, 0, 0.5);
    border-color: #ff0000;
    transform: translateY(-2px);
}

.crimson-btn.outline {
    background: transparent;
    color: var(--text-bright);
    border: 1px solid var(--border-gold);
}

.crimson-btn.outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Universal Layout */
.sacred-section { padding: 120px 0; }
.sacred-container { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }

.section-subtitle {
    display: block;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.main-heading {
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Hero Sections */
.sacred-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.sacred-hero.hero-slim { height: 50vh; min-height: 400px; }

.hero-video-wrap { position: absolute; inset: 0; z-index: 1; }
.bg-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.video-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, transparent 50%, rgba(5,5,5,0.9) 100%),
                radial-gradient(circle at center, transparent 0%, rgba(5,5,5,0.4) 100%);
}

.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-text-box { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }
.hero-desc { max-width: 600px; font-size: 1.2rem; margin-bottom: 50px; color: var(--text-dim); }
.hero-actions { display: flex; gap: 20px; }

/* Section Backgrounds */
.relative-section { position: relative; overflow: hidden; }
.section-bg-video { position: absolute; inset: 0; z-index: 1; }
.bg-video-low-op { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
.video-overlay-dark { position: absolute; inset: 0; background: radial-gradient(circle, transparent 0%, var(--bg-dark) 100%); }
.relative-content { position: relative; z-index: 2; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    opacity: 0.8;
}
.scroll-indicator span { display: block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.3em; margin-top: 10px; color: var(--accent-gold); }
.mouse { width: 20px; height: 35px; border: 2px solid var(--accent-gold); border-radius: 20px; margin: 0 auto; position: relative; }
.mouse::before { content: ''; width: 2px; height: 6px; background: var(--accent-red-bright); position: absolute; left: 50%; top: 5px; transform: translateX(-50%); animation: mouseScroll 1.5s infinite; }

@keyframes mouseScroll {
    0% { transform: translate(-50%, 0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Grids & Cards */
.sacred-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-red);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pillar-img { height: 300px; overflow: hidden; position: relative; }
.pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.pillar-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-panel), transparent); }

.pillar-content { padding: 40px; text-align: center; }
.pillar-content h3 { font-size: 1.5rem; margin-bottom: 15px; }
.pillar-content p { font-size: 0.9rem; margin-bottom: 25px; }
.pillar-link { color: var(--accent-red-bright); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.15em; }

.pillar-card:hover { transform: translateY(-10px); border-color: var(--accent-red-bright); box-shadow: var(--glow-red); }
.pillar-card:hover .pillar-img img { transform: scale(1.1); }

/* Product Display */
.crimson-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.crimson-product-item { transition: var(--transition-smooth); }
.item-img-wrap { 
    display: block; position: relative; aspect-ratio: 4/5; overflow: hidden; 
    border: 1px solid var(--border-red); background: #000;
    margin-bottom: 25px;
}
.item-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); filter: grayscale(0.2); }
.item-glow { position: absolute; inset: 0; box-shadow: inset 0 0 50px rgba(139, 0, 0, 0); transition: var(--transition-smooth); }

.item-badge {
    position: absolute; top: 20px; right: 20px;
    background: rgba(139, 0, 0, 0.8); color: #fff;
    padding: 5px 12px; font-size: 0.6rem; text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em;
}

.item-details { text-align: center; }
.item-name a { font-size: 1.4rem; color: var(--text-bright); display: block; margin-bottom: 10px; }
.item-price { color: var(--accent-red-bright); font-weight: 700; margin-bottom: 20px; font-size: 1.1rem; }
.crimson-link { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700; color: var(--accent-gold); border-bottom: 1px solid var(--accent-gold); padding-bottom: 5px; }

.crimson-product-item:hover { transform: translateY(-5px); }
.crimson-product-item:hover .item-img-wrap img { transform: scale(1.1); }
.crimson-product-item:hover .item-glow { box-shadow: inset 0 0 100px rgba(139, 0, 0, 0.3); }

/* Philosophy Row */
.crimson-phi-row { display: flex; gap: 80px; align-items: center; }
.phi-content { flex: 1; }
.phi-visual { flex: 1; }
.visual-frame { position: relative; padding: 20px; }
.visual-video { width: 100%; border: 1px solid var(--border-red); box-shadow: var(--glow-red); position: relative; z-index: 2; aspect-ratio: 16/9; object-fit: cover; }
.frame-decor { position: absolute; inset: 0; border: 1px solid var(--accent-gold); transform: translate(-15px, -15px); opacity: 0.3; }

/* Footer Styles */
.sacred-footer {
    background: #030303;
    padding: 100px 0 50px;
    border-top: 1px solid var(--border-red);
    color: var(--text-dim);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--accent-red-bright);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-logo img { height: 50px; width: auto; filter: drop-shadow(0 0 5px rgba(139,0,0,0.5)); }

.footer-bio { font-size: 0.95rem; line-height: 1.8; margin-bottom: 30px; }

.footer-socials { display: flex; gap: 15px; }
.footer-socials a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-bright);
    transition: var(--transition-smooth);
    background: rgba(139, 0, 0, 0.05);
}
.footer-socials a:hover { border-color: var(--accent-gold); color: var(--accent-gold); transform: translateY(-5px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2); }

.footer-title {
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.9rem; transition: var(--transition-smooth); }
.footer-links a:hover { color: var(--accent-red-bright); padding-left: 5px; }

.footer-newsletter {
    display: flex;
    margin-top: 20px;
    border-bottom: 1px solid var(--accent-red);
}

.footer-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 0.9rem;
}

.footer-newsletter button {
    background: transparent;
    border: none;
    color: var(--accent-red-bright);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* Product Detail Styles */
.product-sacred-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: start;
}

.sacred-frame {
    position: relative;
    padding: 20px;
    border: 1px solid var(--border-red);
    background: #000;
    box-shadow: var(--glow-red);
}
.main-artifact-img { width: 100%; border: 1px solid rgba(255,255,255,0.05); transition: var(--transition-smooth); }
.frame-glint { position: absolute; inset: 0; border: 1px solid var(--accent-gold); opacity: 0.2; transform: translate(15px, 15px); pointer-events: none; }

.sacred-price-tag { font-family: 'Cinzel', serif; font-size: 2.5rem; color: var(--accent-red-bright); font-weight: 700; margin-bottom: 40px; }

.product-sacred-desc {
    margin: 40px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-red);
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1.1rem;
}

.crimson-qty-stepper {
    display: inline-flex;
    border: 1px solid var(--accent-red);
    background: rgba(139, 0, 0, 0.05);
}

.qty-btn {
    width: 50px; height: 50px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.qty-btn:hover { background: var(--accent-red); }

.crimson-qty-stepper input {
    width: 60px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-red);
    border-right: 1px solid var(--border-red);
    background: transparent;
    color: #fff;
    font-weight: 700;
    outline: none;
}

.sacred-trust-badges {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.trust-badge { display: flex; align-items: center; gap: 15px; font-size: 0.85rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }
.trust-badge i { color: var(--accent-red-bright); font-size: 1.2rem; }

.sacred-inline-promo {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-panel);
    border: 1px solid var(--border-gold);
    text-align: center;
}
.sacred-inline-promo h4 { font-size: 1.4rem; margin-bottom: 15px; }
.sacred-inline-promo p { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 25px; }
.gold-link { color: var(--accent-gold); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.15em; display: flex; align-items: center; justify-content: center; gap: 10px; }

/* Boutique Specific Styles */
.sacred-promo-banner {
    background: var(--bg-panel);
    border: 1px solid var(--border-gold);
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.sacred-promo-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--accent-gold);
}

.promo-content h3 { font-size: 1.8rem; color: var(--accent-gold); margin-bottom: 10px; }
.promo-content p { color: var(--text-dim); font-size: 1rem; max-width: 600px; }

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 991px) {
    .main-heading { font-size: 2.8rem; }
    
    .mobile-toggle { display: block; }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-panel);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        border-left: 1px solid var(--border-red);
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav a {
        font-size: 1rem;
    }

    .header-tools { gap: 15px; }
    
    .sacred-hero { height: auto; padding: 150px 0 80px; }
    .hero-text-box { text-align: center; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; flex-direction: column; }
    
    .crimson-phi-row { flex-direction: column; gap: 40px; text-align: center; }
}

@media (max-width: 768px) {
    .sacred-pillars-grid { grid-template-columns: 1fr; }
    .main-heading { font-size: 2.2rem; }
    .product-sacred-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* Contact Page Styles */
.contact-sacred-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: start;
}

.sacred-contact-item {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.s-item-icon {
    width: 70px; height: 70px;
    border: 1px solid var(--border-red);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-red-bright);
    background: rgba(139, 0, 0, 0.05);
    box-shadow: var(--glow-red);
}

.s-item-text label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--accent-gold); margin-bottom: 8px; font-weight: 700; }
.s-item-text span { font-family: 'Cinzel', serif; font-size: 1.4rem; color: #fff; }

.s-socials { display: flex; gap: 25px; margin-top: 15px; }
.s-socials a { font-size: 1.6rem; color: var(--text-bright); transition: var(--transition-smooth); }
.s-socials a:hover { color: var(--accent-red-bright); transform: translateY(-5px); }

.form-sacred-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-red);
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.sacred-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.sacred-input-group { margin-bottom: 40px; }
.sacred-input-group label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-dim); margin-bottom: 15px; font-weight: 700; }

.sacred-input-group input, 
.sacred-input-group select, 
.sacred-input-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-red);
    padding: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: var(--transition-smooth);
}

.sacred-input-group input:focus, 
.sacred-input-group select:focus, 
.sacred-input-group textarea:focus {
    border-color: var(--accent-red-bright);
    background: rgba(139, 0, 0, 0.05);
    box-shadow: var(--glow-red);
}

.sacred-input-group textarea { min-height: 200px; resize: vertical; }

/* Compatibility for Alabaster classes (mapped to Sacred Crimson) */
.alabaster-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.alabaster-section { padding: 120px 0; }
.alabaster-container { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }
.alabaster-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 60px;
}
.alabaster-product-card { transition: var(--transition-smooth); }
.hero-content-side { flex: 1; display: flex; align-items: center; justify-content: center; padding: 60px; }
.hero-image-side { flex: 1; position: relative; overflow: hidden; min-height: 400px; }
.hero-split-img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-overlay { position: absolute; inset: 0; background: rgba(5,5,5,0.4); }
.main-title { font-size: 4rem; color: var(--text-bright); font-family: 'Cinzel', serif; }
.hero-p { font-size: 1.2rem; color: var(--text-dim); margin-top: 20px; max-width: 600px; }
.section-label { color: var(--accent-gold); text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.8rem; font-weight: 700; }

@media (max-width: 991px) {
    .alabaster-hero { flex-direction: column; }
    .hero-content-side { padding: 40px 20px; text-align: center; }
    .contact-sacred-grid { grid-template-columns: 1fr; gap: 60px; }
    .sacred-form-row { grid-template-columns: 1fr; gap: 0; }
    .form-sacred-card { padding: 40px; }
}


@media (max-width: 576px) {
    .header-logo span { display: none; }
    .main-heading { font-size: 2.2rem; }
    .crimson-btn { padding: 14px 25px; font-size: 0.75rem; width: 100%; }
    .hero-text-box { padding: 0 20px; }
    .sacred-section { padding: 80px 0; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo, .footer-socials, .footer-newsletter { justify-content: center; }
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* Cart Page Styles */
.cart-sacred-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

.sacred-table-wrap {
    background: var(--bg-panel);
    border: 1px solid var(--border-red);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.sacred-cart-table { width: 100%; border-collapse: collapse; }
.sacred-cart-table th { 
    text-align: left; 
    padding-bottom: 25px; 
    text-transform: uppercase; 
    font-size: 0.7rem; 
    letter-spacing: 0.25em; 
    color: var(--accent-gold);
    border-bottom: 1px solid var(--border-red);
}

.cart-sacred-row { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.cart-sacred-row:last-child { border-bottom: none; }

.cart-artifact-info { display: flex; gap: 25px; align-items: center; padding: 30px 0; }
.artifact-img-frame { width: 90px; height: 90px; border: 1px solid var(--border-red); padding: 5px; background: #000; }
.artifact-img-frame img { width: 100%; height: 100%; object-fit: cover; }

.artifact-meta h3 { font-size: 1.3rem; color: #fff; margin-bottom: 5px; }
.artifact-type { font-size: 0.7rem; text-transform: uppercase; color: var(--text-dim); letter-spacing: 0.1em; }

.sacred-qty-display {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--border-red);
    color: #fff;
    font-weight: 700;
    background: rgba(139, 0, 0, 0.1);
}

.sacred-price { font-family: 'Cinzel', serif; font-weight: 700; color: var(--accent-red-bright); font-size: 1.2rem; }

.cart-sacred-actions { display: flex; gap: 40px; margin-top: 40px; justify-content: center; }
.crimson-link-btn { 
    color: var(--text-bright); 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    font-weight: 700; 
    letter-spacing: 0.15em; 
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--accent-red);
    padding-bottom: 5px;
}
.crimson-link-btn:hover { color: var(--accent-red-bright); border-color: var(--accent-red-bright); }
.crimson-link-btn.danger:hover { color: #cc4444; border-color: #cc4444; }

.sacred-summary-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-gold);
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    position: sticky;
    top: 150px;
}

.summary-line { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 1rem; color: var(--text-dim); }
.summary-total-line { 
    margin-top: 30px; 
    padding-top: 30px; 
    border-top: 2px solid var(--border-red); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.total-label { font-family: 'Cinzel', serif; font-size: 1.4rem; color: #fff; }
.total-value { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--accent-red-bright); font-weight: 700; text-shadow: var(--glow-red); }

.checkout-portal { margin-top: 40px; }
.secure-checkout-tag { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 25px; font-size: 0.75rem; color: var(--text-dim); }
.secure-checkout-tag i { color: var(--accent-gold); }

.empty-cauldron-view { text-align: center; padding: 120px 0; }
.empty-cauldron-icon { 
    width: 140px; height: 140px; 
    border: 1px solid var(--border-red); 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 40px;
    font-size: 4rem;
    color: var(--accent-red-bright);
    background: rgba(139, 0, 0, 0.05);
    box-shadow: var(--glow-red);
}
.empty-cauldron-view p { color: var(--text-dim); margin: 20px 0 45px; }

@media (max-width: 1024px) {
    .cart-sacred-layout { grid-template-columns: 1fr; }
}
/* Admin Login Styles */
.admin-login-body {
    background: #050505;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.admin-login-body::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, #1a0000 0%, transparent 70%);
    animation: adminPulse 10s infinite alternate;
    z-index: -1;
}

@keyframes adminPulse {
    0% { transform: scale(1) translate(-10%, -10%); }
    100% { transform: scale(1.1) translate(0%, 0%); }
}

.login-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.logo-icon-admin {
    font-size: 3rem;
    color: var(--accent-red-bright);
    filter: drop-shadow(0 0 15px rgba(255, 45, 45, 0.4));
    margin-bottom: 1rem;
}

.login-title-admin {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.login-subtitle-admin {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.admin-form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.admin-form-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.admin-input-wrap {
    position: relative;
}

.admin-input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 1rem;
}

.admin-form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.2rem 1.2rem 3.2rem;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.admin-form-input:focus {
    background: rgba(255, 45, 45, 0.05);
    border-color: var(--accent-red-bright);
    box-shadow: 0 0 20px rgba(255, 45, 45, 0.1);
}

.admin-login-btn {
    width: 100%;
    background: var(--accent-red-bright);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 20px -5px rgba(255, 45, 45, 0.4);
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(255, 45, 45, 0.4);
    filter: brightness(1.1);
}
/* User Dashboard Table Styles */
.sacred-dashboard-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-panel);
    border: 1px solid var(--border-red);
    margin: 30px 0;
}

.sacred-dashboard-table th {
    background: rgba(139, 0, 0, 0.2);
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 20px;
    border-bottom: 1px solid var(--border-red);
}

.sacred-dashboard-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-bright);
    vertical-align: middle;
}

.sacred-dashboard-table tr:hover {
    background: rgba(139, 0, 0, 0.05);
}

.proof-of-payment-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.proof-of-payment-wrap img {
    border: 1px solid var(--border-red);
    padding: 5px;
    background: #000;
}

.update-btn {
    background: var(--accent-red-bright);
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.update-btn:hover {
    background: #ff1a1a;
    box-shadow: var(--glow-red);
}
/* Admin Specific Styles */
#the-final-countdown, #the-final-countstop {
    font-family: 'Lato', sans-serif;
    text-align: left;
    color: #06c;
    text-shadow: 1px 1px 5px black;
    font-size: 1.2rem;
}

.nk-sidebar-body {
    max-height: 100vh;
    overflow-y: auto !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nk-sidebar-body::-webkit-scrollbar {
    display: none;
}
:root {
    --bg-color: #0c0c0c;
    --card-bg: #161616;
    --primary-color: #ff3333;
    --primary-hover: #ff5555;
    --accent-red: #cc0000;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --red-glow: 0 0 20px rgba(255, 51, 51, 0.3);
    --transition: all 0.3s ease;
}

/* Global Dark Mode Overrides for DashLite */
body.nk-body {
    background-color: var(--bg-color) !important;
    color: var(--text-main) !important;
    font-family: 'Inter', sans-serif !important;
}

.nk-app-root,
.nk-main,
.nk-wrap,
.nk-content {
    background-color: var(--bg-color) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nk-block-title,
.title {
    font-family: 'Cormorant Garamond', serif !important;
    color: var(--text-main) !important;
    font-weight: 600 !important;
}

/* Sidebar Styling */
.nk-sidebar {
    background-color: #0a0a0a !important;
    border-right: 1px solid var(--border-color) !important;
}

.nk-sidebar-head {
    border-bottom: 1px solid var(--border-color) !important;
}

.nk-sidebar-brand h5 {
    color: var(--primary-color) !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nk-menu-link {
    color: var(--text-muted) !important;
    transition: var(--transition) !important;
}

.nk-menu-link:hover,
.nk-menu-item.active>.nk-menu-link {
    color: var(--primary-color) !important;
    background: rgba(230, 25, 25, 0.08) !important;
}

.nk-menu-icon {
    color: inherit !important;
}

.nk-menu-heading .overline-title {
    color: var(--text-muted) !important;
    opacity: 0.5;
}

/* Header Styling */
.nk-header {
    background-color: rgba(12, 12, 12, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color) !important;
}

.nk-quick-nav-icon {
    color: var(--text-main) !important;
}

/* Card Styling (Glassmorphism) */
.card,
.card-bordered {
    background-color: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: var(--transition) !important;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color) !important;
}

.nk-wgw-icon {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--primary-color) !important;
}

.nk-wgw-title.title {
    color: var(--text-main) !important;
}

.nk-wgw-balance .amount {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
}


/* Specific DashLite Overrides */
.nk-block-title {
    font-size: 2.25rem !important;
    letter-spacing: -0.01em !important;
}

.nk-block-head-sub span {
    color: var(--primary-color) !important;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.nk-wgw-name .nk-wgw-title {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
}

.card-bordered.bg-primary,
.card-bordered.bg-success,
.card-bordered.bg-warning {
    border: 1px solid var(--border-color) !important;
    background: linear-gradient(135deg, #180a0a 0%, #080404 100%) !important;
}

.nk-sidebar-brand h5 {
    color: var(--primary-color) !important;
    font-family: 'Cormorant Garamond', serif !important;
}

.nk-header.is-dark {
    background: rgba(12, 12, 12, 0.95) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.user-name span {
    font-weight: 600 !important;
}

/* Fix for the white text in dashboard summary cards */
.amount {
    color: #ffffff !important;
}


.currency {
    color: var(--text-muted) !important;
    font-size: 0.8em;
    margin-left: 0.5rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;

    letter-spacing: 0.05em !important;
    border-radius: 4px !important;
    transition: var(--transition) !important;
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-glow) !important;
}

.btn-trigger,
.nk-nav-toggle {
    color: var(--primary-color) !important;
}

/* User Card / Profile */
.user-card .user-name {
    color: var(--text-main) !important;
}

.user-avatar {
    background: var(--primary-color) !important;
    color: #fff !important;
}


/* Tables and Lists */
.table {
    color: var(--text-main) !important;
}

.table thead th {
    background-color: rgba(255, 255, 255, 0.03) !important;
    color: var(--text-muted) !important;
    border-bottom: 1px solid var(--border-color) !important;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.table td {
    border-top: 1px solid var(--border-color) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--card-bg);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-color);
}

/* Dropdown styling */
.dropdown-menu {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5) !important;
}

.link-list-opt a,
.link-list a {
    color: var(--text-main) !important;
}

.link-list-opt a:hover,
.link-list a:hover {
    background: rgba(230, 25, 25, 0.15) !important;
    color: var(--primary-color) !important;
}
/* Sacred Crimson Auth Styles */
.auth-container {
    max-width: 500px;
    margin: 100px auto;
    background: var(--bg-panel);
    border: 1px solid var(--border-red);
    padding: 60px;
    box-shadow: var(--glow-red), 0 30px 60px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-red-bright), transparent);
}

.auth-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.form-group { margin-bottom: 30px; }

.form-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: 700;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-red);
    color: #fff;
    padding: 18px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--accent-red-bright);
    background: rgba(139, 0, 0, 0.05);
    box-shadow: var(--glow-red);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.form-check input[type="checkbox"] {
    accent-color: var(--accent-red-bright);
    width: 20px;
    height: 20px;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.btn-primary {
    width: 100%;
    padding: 18px;
    background: #A30000; /* More vibrant dark red for visibility */
    color: #ffffff;
    border: 1px solid #cc0000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(163, 0, 0, 0.4);
}

.btn-primary:hover {
    background: #cc0000;
    border-color: #ff0000;
    color: #fff;
    box-shadow: 0 0 25px rgba(204, 0, 0, 0.6);
    transform: translateY(-2px);
}

.auth-link {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.auth-link:hover {
    color: var(--accent-red-bright);
    border-color: var(--accent-red-bright);
}

.auth-footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.auth-footer a {
    color: var(--accent-gold);
    font-weight: 700;
}

.mystic-error {
    color: var(--accent-red-bright);
    font-size: 0.75rem;
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 576px) {
    .auth-container { padding: 40px 25px; margin: 20px; }
    .auth-title { font-size: 1.8rem; }
}

.no-scroll {
    overflow: hidden;
}
