@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
    --bg-dark: #040814;
    --bg-card: rgba(10, 18, 36, 0.6);
    --border-color: rgba(14, 165, 233, 0.15);
    --border-color-glow: rgba(14, 165, 233, 0.3);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-gold: #f59e0b;
    --accent-gold-hover: #d97706;
    --accent-cyan: #0ea5e9;
    --accent-cyan-hover: #0284c7;
    --accent-glow: 0 0 15px rgba(14, 165, 233, 0.25);
    --gold-glow: 0 0 15px rgba(245, 158, 11, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.8) 0%, #030712 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.glass:hover {
    border-color: var(--border-color-glow);
    box-shadow: var(--accent-glow);
}

/* Typography */
h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Layout constraints */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: rgba(4, 8, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo i {
    color: var(--accent-gold);
    -webkit-text-fill-color: initial;
    filter: drop-shadow(0 0 5px rgba(245,158,11,0.4));
}
.logo-img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    border-radius: 6px;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
    -webkit-text-fill-color: initial;
    display: inline-block;
}
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-muted); }
.nav-links a:hover { color: var(--text-main); text-shadow: 0 0 10px rgba(255,255,255,0.3); }
.header-actions { display: flex; gap: 1rem; align-items: center; }

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #fcd34d);
    color: #030712;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
    filter: brightness(1.05);
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-outline {
    background: rgba(255,255,255,0.02);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline:hover {
    border-color: var(--accent-cyan);
    background: rgba(14, 165, 233, 0.05);
    box-shadow: var(--accent-glow);
    color: var(--accent-cyan);
}

/* Header Cart Button */
.cart-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s;
}
.cart-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: var(--gold-glow);
    background: rgba(245,158,11,0.05);
}
.snipcart-items-count {
    position: absolute;
    top: -5px; right: -5px;
    background: var(--accent-cyan);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(14,165,233,0.5);
    border: 2px solid var(--bg-dark);
}
.snipcart-items-count.pulse {
    animation: badgePulse 0.4s ease-out;
}

/* Owner/Admin Toggle Button */
.admin-toggle-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s;
}
.admin-toggle-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--accent-glow);
    background: rgba(14, 165, 233, 0.05);
}
.admin-toggle-btn .tooltip-text {
    visibility: hidden;
    width: 90px;
    background-color: #0b1329;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 100;
    bottom: -45px;
    left: 50%;
    margin-left: -45px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.75rem;
    border: 1px solid var(--border-color);
}
.admin-toggle-btn:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}
.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}
.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    max-width: 540px;
}
.hero-buttons { display: flex; gap: 1.2rem; }
.hero-image { position: relative; }
.hero-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0a1128, #1e293b);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    box-shadow: 0 25px 60px -15px rgba(0,0,0,0.6);
    gap: 1.5rem;
}

/* Trust Bar */
.trust-bar {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(6, 12, 30, 0.4);
    text-align: center;
}
.trust-bar p { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; }
.trust-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.45;
    transition: opacity 0.3s;
}
.trust-logos:hover { opacity: 0.8; }
.trust-logos span { font-weight: bold; font-family: 'Outfit'; font-size: 1.25rem; color: #fff; letter-spacing: 0.5px; }

/* Sections */
.section { padding: 7rem 0; }
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-header h2 { font-size: 2.7rem; margin-bottom: 1rem; font-weight: 800; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.15rem; }

/* Curated Paths */
.paths-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.path-card {
    padding: 3.5rem 2.2rem; text-align: center; cursor: pointer; display: block;
}
.path-card:hover { transform: translateY(-8px); border-color: var(--accent-cyan); background: rgba(14, 165, 233, 0.08); }
.path-icon {
    width: 65px; height: 65px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.8rem; font-size: 1.6rem;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.1);
}
.path-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; font-weight: 700; }
.path-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Products Grid */
.products-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.2rem;
}
.product-card { 
    padding: 1.4rem; 
    display: flex; 
    flex-direction: column; 
    position: relative; 
    height: 100%;
}
.product-badge { 
    position: absolute; 
    top: 1.25rem; 
    right: 1.25rem; 
    background: rgba(14, 165, 233, 0.9); 
    color: #fff; 
    font-size: 0.7rem; 
    padding: 4px 10px; 
    border-radius: 12px; 
    font-weight: 800; 
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10;
}
.product-img { 
    width: 100%; 
    aspect-ratio: 2/3; 
    background: #0b1224; 
    border-radius: 8px; 
    margin-bottom: 1.25rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #334155;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
.product-img img {
    transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
    transform: scale(1.06);
}
.product-title { 
    font-size: 1.15rem; 
    margin-bottom: 0.35rem; 
    font-family: 'Outfit', sans-serif; 
    font-weight: 700; 
    line-height: 1.3; 
    color: var(--text-main);
}
.product-title:hover {
    color: var(--accent-cyan);
}
.product-author { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.product-price { 
    font-family: 'Outfit'; 
    font-size: 1.35rem; 
    font-weight: 800; 
    color: var(--accent-gold); 
    margin-bottom: 1.5rem; 
    margin-top: auto;
}
.product-card .btn-primary { width: 100%; justify-content: center; }

/* Reserve Slot Placeholders in Grid */
.reserve-slot {
    border: 1.5px dashed rgba(245,158,11,0.25);
    background: rgba(245,158,11,0.02);
}
.reserve-slot:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--gold-glow);
}
.reserve-badge {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    background: rgba(245,158,11,0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(245,158,11,0.3);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 700;
}
.reserve-img-placeholder {
    background: repeating-linear-gradient(45deg, rgba(245,158,11,0.01), rgba(245,158,11,0.01) 10px, rgba(245,158,11,0.03) 10px, rgba(245,158,11,0.03) 20px);
    border: 1px dashed rgba(245,158,11,0.15);
}
.reserve-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}
.admin-trigger-card {
    width: 100%;
    justify-content: center;
    border-style: dashed;
    background: rgba(245,158,11,0.05);
    color: var(--accent-gold);
    border-color: rgba(245,158,11,0.3);
}
.admin-trigger-card:hover {
    color: #000;
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.5rem; text-align: center; }
.benefit-item .icon { font-size: 2.8rem; color: var(--accent-gold); margin-bottom: 1.2rem; filter: drop-shadow(0 0 8px rgba(245,158,11,0.3)); }
.benefit-item h3 { font-size: 1.3rem; margin-bottom: 0.6rem; font-weight: 700; }
.benefit-item p { color: var(--text-muted); font-size: 0.95rem; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.testimonial-card { padding: 3rem; position: relative; }
.quote-icon { position: absolute; top: 1.5rem; left: 1.5rem; font-size: 4rem; color: rgba(255,255,255,0.02); }
.testimonial-text { font-size: 1.15rem; font-style: italic; margin-bottom: 2rem; position: relative; z-index: 1; color: #e2e8f0; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { 
    width: 50px; height: 50px; 
    border-radius: 50%; 
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.2rem;
}
.author-info h4 { font-size: 1.05rem; margin: 0; font-weight: 600; }
.author-info p { color: var(--accent-cyan); font-size: 0.85rem; margin: 0; }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #09122c, #162447);
    padding: 5.5rem 5%; text-align: center; border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    position: relative; overflow: hidden;
}
.cta-banner h2 { font-size: 2.7rem; margin-bottom: 1rem; font-weight: 800; }
.cta-banner p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.2rem; max-width: 650px; margin-left: auto; margin-right: auto; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); padding: 1.6rem 0; }
.faq-q { font-weight: 600; font-size: 1.15rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q i { transition: 0.3s; color: var(--text-muted); }
.faq-a { color: var(--text-muted); margin-top: 1rem; display: none; line-height: 1.65; font-size: 0.98rem; }
.faq-item.active .faq-a { display: block; }
.faq-item.active .faq-q { color: var(--accent-gold); }
.faq-item.active .faq-q i { transform: rotate(180deg); color: var(--accent-gold); }

/* Footer */
footer { background: #02040a; padding: 6rem 0 2rem; border-top: 1px solid var(--border-color); margin-top: 6rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-about .logo { margin-bottom: 1.5rem; }
.footer-about p { color: var(--text-muted); font-size: 0.95rem; }
.footer-links h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 700; color: #fff; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent-cyan); padding-left: 3px; }
.newsletter-form { display: flex; margin-top: 1rem; }
.newsletter-form input { padding: 0.75rem 1rem; border-radius: 8px 0 0 8px; border: 1px solid var(--border-color); background: rgba(255,255,255,0.03); color: #fff; width: 100%; outline: none; }
.newsletter-form input:focus { border-color: var(--accent-cyan); }
.newsletter-form button { padding: 0.75rem 1.25rem; border-radius: 0 8px 8px 0; background: var(--accent-gold); border: none; font-weight: bold; cursor: pointer; color: #000; transition: 0.3s; }
.newsletter-form button:hover { background: #fbbf24; }
.footer-bottom { text-align: center; color: var(--text-muted); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; font-size: 0.9rem; }

/* Page Header Utilities */
.page-header { padding: 10rem 0 5rem; text-align: center; border-bottom: 1px solid var(--border-color); background: rgba(6, 12, 28, 0.4); }
.page-header h1 { font-size: 3.2rem; margin-bottom: 1rem; font-weight: 800; }
.page-header p { color: var(--text-muted); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* Product Details */
.product-details { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; padding: 5rem 0; }
.product-gallery { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 2.5rem; text-align: center; height: fit-content; }
.product-gallery img { max-width: 85%; max-height: 480px; object-fit: contain; margin: 0 auto; border-radius: 8px; }
.product-info h1 { font-size: 2.7rem; margin-bottom: 0.5rem; line-height: 1.2; font-weight: 800; }
.product-info .author { color: var(--accent-cyan); font-size: 1.15rem; margin-bottom: 1.5rem; font-weight: 600; }
.product-meta { display: flex; gap: 1rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-color); flex-wrap: wrap; }
.product-meta span { background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); padding: 5px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 500; display: inline-flex; align-items: center; gap: 0.4rem; }
.product-info .price { font-family: 'Outfit'; font-size: 2.6rem; font-weight: 800; color: var(--accent-gold); margin-bottom: 1.8rem; }
.product-description { color: var(--text-muted); margin-bottom: 2.2rem; line-height: 1.7; }
.product-actions { display: flex; gap: 1.2rem; margin-bottom: 3rem; }
.product-actions .btn-primary { flex: 1.5; padding: 1rem; }
.product-actions .btn-outline { flex: 1; padding: 1rem; }

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
}
.specs-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
    color: var(--text-muted);
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td strong { color: var(--text-main); }
.specs-table td i { color: var(--accent-cyan); margin-right: 0.6rem; font-size: 0.95rem; }

/* Form Styles */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; color: #fff; }
.form-control { width: 100%; padding: 0.8rem 1.1rem; border-radius: 8px; border: 1px solid var(--border-color); background: rgba(4,8,20,0.8); color: #fff; font-family: inherit; font-size: 0.95rem; transition: border-color 0.3s; }
.form-control:focus { border-color: var(--accent-cyan); outline: none; box-shadow: var(--accent-glow); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* CUSTOM CART DRAWER SYSTEM CSS */
.cart-drawer-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 4, 10, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}
.cart-drawer {
    position: fixed;
    top: 0; right: 0; width: 420px; height: 100%;
    background: rgba(10, 18, 36, 0.92);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer-overlay.active .cart-drawer {
    transform: translateX(0);
}
.cart-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-drawer-header h3 { font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.cart-drawer-close {
    background: transparent; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.4rem; transition: color 0.2s;
}
.cart-drawer-close:hover { color: #fff; }

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}
.empty-cart-message {
    text-align: center;
    padding: 3rem 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 1rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: center;
}
.cart-item-img {
    width: 60px; height: 85px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { display: flex; flex-direction: column; gap: 0.25rem; }
.cart-item-title { font-size: 0.95rem; font-weight: 600; color: #fff; line-height: 1.3; font-family: 'Inter', sans-serif; }
.cart-item-format { font-size: 0.75rem; color: var(--accent-cyan); font-weight: 500; display: flex; align-items: center; gap: 0.25rem; }
.cart-item-price-row { display: flex; align-items: center; gap: 1rem; margin-top: 0.25rem; }
.cart-item-price { font-size: 0.9rem; color: var(--accent-gold); font-weight: 700; }
.cart-qty-ctrl {
    display: flex; align-items: center; border: 1px solid var(--border-color); border-radius: 4px; overflow: hidden; background: rgba(0,0,0,0.2);
}
.cart-qty-ctrl button {
    background: transparent; border: none; color: var(--text-muted); width: 24px; height: 24px; cursor: pointer; font-size: 0.8rem; font-weight: bold;
}
.cart-qty-ctrl button:hover { color: #fff; background: rgba(255,255,255,0.05); }
.cart-qty-ctrl span { font-size: 0.85rem; padding: 0 0.5rem; color: #fff; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove {
    background: transparent; border: none; color: #ef4444; opacity: 0.6; cursor: pointer; transition: opacity 0.2s; font-size: 1rem;
}
.cart-item-remove:hover { opacity: 1; }

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: rgba(6, 12, 26, 0.8);
}

/* CUSTOM CHECKOUT MODAL SYSTEM CSS */
.checkout-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 4, 10, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.checkout-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.checkout-modal {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 600px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.checkout-modal-close {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    background: transparent; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.5rem;
    z-index: 10;
}
.checkout-modal-close:hover { color: #fff; }

/* Payment Tabs styling */
.payment-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}
.payment-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.2s;
}
.payment-tab-btn.active {
    color: var(--accent-cyan);
    background: rgba(14, 165, 233, 0.1);
}

/* Dynamic Interactive Visa/Mastercard visual card styling */
.card-container {
    perspective: 1000px;
    margin: 1.5rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.credit-card {
    width: 320px;
    height: 190px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.credit-card.flipped {
    transform: rotateY(180deg);
}
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #0f1c3f 0%, #1e293b 100%);
    overflow: hidden;
}
.card-front::before, .card-back::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.card-back {
    transform: rotateY(180deg);
    padding: 1.5rem 0;
}
.card-chip {
    width: 45px; height: 35px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border-radius: 6px;
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.4);
    position: relative;
}
.card-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-align: right;
    font-style: italic;
    font-family: 'Outfit';
}
.card-number-display {
    font-family: monospace;
    font-size: 1.35rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    margin: 1rem 0;
}
.card-meta-display {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
}
.card-holder-label, .card-expiry-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.card-holder-val, .card-expiry-val {
    color: #fff;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}
.card-magnetic-strip {
    height: 35px;
    background: #000;
    width: 100%;
    margin-top: 0.5rem;
}
.card-signature-area {
    margin: 1rem 1.5rem;
    background: repeating-linear-gradient(45deg, #e2e8f0, #e2e8f0 5px, #cbd5e1 5px, #cbd5e1 10px);
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}
.card-cvv-display {
    color: #000;
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;
    background: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 1px;
}

/* Secure checkout review block */
.checkout-review-panel {
    border: 1px solid var(--border-color);
    background: rgba(14, 165, 233, 0.04);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.4s ease;
}
.review-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.92rem;
}
.review-row:last-child {
    border-bottom: none;
}
.review-label {
    color: var(--text-muted);
}
.review-val {
    font-weight: 600;
    color: #fff;
}

/* Payment Processing Loading UI */
.payment-processing-container {
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeIn 0.3s ease;
}
.lock-icon-pulse {
    width: 80px; height: 80px;
    background: rgba(14, 165, 233, 0.1);
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 2rem;
    animation: pulsePadlock 1.5s infinite ease-in-out;
}
.processing-status-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}
.processing-sub-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Download card on Success page */
.download-card {
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.download-buttons {
    display: flex; gap: 0.5rem;
}

/* CUSTOM EMAIL CLIENT NOTIFICATION & MODAL */
.email-toast-notify {
    position: fixed;
    top: 5rem;
    right: 2rem;
    width: 340px;
    background: #0f172a;
    border-left: 4px solid var(--accent-gold);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), var(--gold-glow);
    z-index: 2500;
    border-radius: 4px;
    cursor: pointer;
    transform: translateX(380px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.email-toast-notify.active {
    transform: translateX(0);
}
.email-toast-header {
    display: flex;
    justify-content: space-between;
    background: rgba(255,255,255,0.02);
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.email-toast-body {
    padding: 0.85rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.email-toast-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.email-toast-snippet {
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

/* Mock Email Inbox Window Modal */
.email-inbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 4, 10, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.email-inbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.email-inbox-modal {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 750px;
    height: 80vh;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0,0,0,0.9);
}
.email-inbox-header {
    background: #111827;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.email-inbox-close {
    background: transparent; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.4rem;
}
.email-inbox-close:hover { color: #fff; }

.email-inbox-body {
    flex: 1;
    display: grid;
    grid-template-columns: 240px 1fr;
    background: #0b0f19;
    overflow: hidden;
}
.email-sidebar {
    background: #0f1423;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
}
.email-folder-item {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}
.email-folder-item.active {
    color: var(--accent-cyan);
    background: rgba(14, 165, 233, 0.08);
    border-left: 3px solid var(--accent-cyan);
}
.email-folder-item:hover:not(.active) {
    background: rgba(255,255,255,0.02);
    color: #fff;
}
.email-badge {
    background: var(--accent-cyan);
    color: #fff;
    font-size: 0.7rem;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: bold;
}
.email-list-title {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: bold;
    margin-top: 1rem;
}
.email-item-brief {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    cursor: pointer;
    background: rgba(14, 165, 233, 0.04);
}
.email-item-brief-sender {
    font-weight: bold;
    font-size: 0.8rem;
    color: #fff;
}
.email-item-brief-subject {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    margin: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.email-item-brief-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: right;
}

.email-content-view {
    padding: 2rem;
    overflow-y: auto;
    background: #0f1524;
    display: flex;
    flex-direction: column;
}
.email-subject-line {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.75rem;
}
.email-sender-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.email-html-body {
    background: #ffffff;
    color: #1e293b;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* CUSTOM ADMIN PANEL DRAWER SYSTEM */
.admin-panel-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 4, 10, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.admin-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}
.admin-panel-drawer {
    position: fixed;
    top: 0; left: 0; width: 450px; height: 100%;
    background: rgba(10, 18, 36, 0.94);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 10px 0 50px rgba(0,0,0,0.5);
}
.admin-panel-overlay.active .admin-panel-drawer {
    transform: translateX(0);
}
.admin-panel-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-panel-header h3 { font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.admin-close-btn {
    background: transparent; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.4rem;
}
.admin-close-btn:hover { color: #fff; }

.admin-price-section {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
}
.admin-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    gap: 1rem;
}

.admin-panel-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: rgba(6, 12, 26, 0.8);
}

/* TOAST NOTIFICATIONS ALERTS */
.toast-alert {
    position: fixed;
    bottom: 2rem; right: 2rem;
    background: rgba(10, 25, 47, 0.9);
    border: 1.5px solid var(--accent-cyan);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--accent-glow), 0 10px 30px rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}
.toast-alert i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
}
.toast-alert.fade-out {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
}

/* ANIMATIONS DEFINITIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleUp {
    from { opacity: 0; transform: translate(-50%, -45%) scale(0.95); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes popIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
@keyframes pulsePadlock {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(14, 165, 233, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}
.animate-scale-up {
    animation: scaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.animate-pop-in {
    animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .paths-grid { grid-template-columns: repeat(2, 1fr); }
    .product-details { gap: 3rem; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 4rem;
    }
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-buttons { justify-content: center; }
    .hero-image { max-width: 480px; margin: 0 auto; }
    .paths-grid, .products-grid, .benefits-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .product-details { grid-template-columns: 1fr; }
    .cart-drawer { width: 100%; }
    .checkout-modal { padding: 1.5rem; width: 95%; }
    .admin-panel-drawer { width: 100%; }
    .email-inbox-body { grid-template-columns: 1fr; }
    .email-sidebar { display: none; }
    .email-toast-notify { width: 90%; right: 5%; }
}
