@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,400;0,600;0,800;1,400&display=swap');

:root {
    --obsidian: #050508;
    --obsidian-light: #121215;
    --text-primary: #f5f5f5;
    --text-secondary: #909099;
    --gold-premium: #d4af37;
    --gold-light: #f3e5ab;
    --violet-deep: #2e0854;
    --violet-glow: #8a2be2;
    --magenta-glow: #ff00ff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: transparent;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* VELTREX 3D ENGINE BACKGROUND */
#gpuCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -999;
    pointer-events: none; /* Let clicks pass through to website buttons */
}

/* Ambient Canvas */
.cinematic-glow {
    position: fixed;
    top: 30%; right: 10%;
    transform: translate(0, -50%);
    width: 60vw; height: 60vh;
    background: radial-gradient(ellipse, rgba(138, 43, 226, 0.15) 0%, transparent 60%);
    filter: blur(150px);
    z-index: -2;
    pointer-events: none;
}

.gold-glow {
    position: fixed;
    bottom: 10%; left: 10%;
    width: 40vw; height: 40vh;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
}

/* Gradients */
.gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-premium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.magenta-text {
    background: linear-gradient(135deg, var(--violet-glow), var(--magenta-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Elegant Navigation */
.nav-luxury {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 30px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(5,5,8,0.95), rgba(5,5,8,0));
    z-index: 100;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 35px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='44' height='76' viewBox='0 0 44 76' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 0l22 12.7v25.4L22 50.8 0 38.1V12.7L22 0z' fill='none' stroke='%23d4af37' stroke-width='2'/%3E%3Cpath d='M22 10l13 7.5v15L22 40l-13-7.5v-15L22 10z' fill='none' stroke='%238a2be2' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-premium);
}

/* Original Veltrex Layout: Split Hero Section */
.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8% 50px 8%;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}

/* Left Side: Cinematic Typography */
.hero-text-content {
    flex: 1;
    max-width: 700px;
    z-index: 10;
}

.hero-subtitle-elegant {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--gold-premium);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero-title-elegant {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    border: 1px solid var(--gold-premium);
    color: var(--gold-premium);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 0 rgba(212, 175, 55, 0);
}

.btn-primary:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.3), 0 0 30px rgba(212, 175, 55, 0.2);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Right Side: The Looping Video Structure */
.hero-visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden; /* CRITICAL: Hides the cropped edges of the video */
}

/* 
  Centering the Human:
  We scale the video up to cut off the left text, and translate it so the human is perfectly centered in the wrapper.
*/
.video-human {
    position: absolute;
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    /* This centers the right side of the video (where the human is) dead in the middle of our box */
    object-position: 85% center;
    transform: scale(1.3); /* Slight zoom to completely eliminate the left side text */
    mix-blend-mode: screen; 
    filter: drop-shadow(0 0 40px rgba(138, 43, 226, 0.4));
    z-index: 10;
    pointer-events: none;
}

/* Holographic Overlay (Positioned to block the watermark) */
.holographic-overlay {
    position: absolute;
    /* Centers the overlay exactly where Shutterstock watermarks usually are */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    /* Deep blur and opaque background to completely hide the text underneath */
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.9), inset 0 0 20px rgba(75, 0, 130, 0.5);
    width: 70%; /* Wide enough to cover the watermark completely */
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The actual logo image */
.overlay-logo-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
}

/* Elite Showcase Grid */
.showcase-elite {
    padding: 100px 8%;
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card-elegant {
    background: var(--obsidian-light);
    padding: 50px 40px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
}

.card-elegant::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: var(--gold-premium);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-elegant:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(20, 20, 24, 0.4) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.glass-card:hover {
    background: rgba(30, 30, 35, 0.5) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15) !important;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.glass-btn:hover {
    background: rgba(212, 175, 55, 0.2) !important;
    border-color: rgba(212, 175, 55, 0.8) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
}

.card-elegant:hover::after {
    width: 100%;
}

.card-img-wrapper {
    height: 220px;
    margin-bottom: 40px;
}

.card-img-wrapper img {
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.6));
    transition: transform 0.8s ease;
}

.card-elegant:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-spec {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.btn-elegant {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--text-secondary);
    color: #fff;
    background: transparent;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-elegant:hover {
    border-color: var(--gold-premium);
    color: var(--gold-premium);
    background: rgba(212, 175, 55, 0.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-right {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { to { opacity: 1; transform: translateX(0); } }

/* Legal Footer */
.footer-elegant {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 8%;
    text-align: center;
    background: #08080a;
}

.footer-disclaimer {
    font-size: 0.65rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .hero-split { flex-direction: column; text-align: center; padding-top: 150px; }
    .hero-text-content { align-items: center; display: flex; flex-direction: column; margin-bottom: 50px; }
    .hero-title-elegant { font-size: 4rem; }
    .hero-visual-content { height: 60vh; }
}

/* Modal Glassmorphism Styling */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
    padding: 0;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--gold-premium);
}

.modal-body {
    display: flex;
    width: 100%;
}

.modal-image-col {
    flex: 1;
    background: rgba(10, 10, 15, 0.6);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.modal-image-col img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8));
}

.modal-text-col {
    flex: 1.5;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#modalDesc {
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }
    .modal-image-col {
        padding: 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .modal-image-col img {
        max-height: 250px;
    }
    .modal-text-col {
        padding: 30px 20px;
    }
}

/* Sold Out Stamp */
.sold-out-stamp {
    position: absolute;
    top: 25px;
    right: -35px;
    background: rgba(220, 20, 60, 0.9);
    color: white;
    padding: 6px 45px;
    transform: rotate(45deg);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.5);
    z-index: 5;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Golden Sparkle Glow */
@keyframes goldenGlow {
    0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.1); border-color: rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.8), inset 0 0 25px rgba(212, 175, 55, 0.4); border-color: rgba(212, 175, 55, 0.9); }
    100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.1); border-color: rgba(212, 175, 55, 0.3); }
}

.top-seller-glow {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards, goldenGlow 3.5s 1.2s infinite alternate ease-in-out;
}
.top-seller-glow:hover {
    border-color: var(--gold-premium);
    color: var(--gold-premium);
    background: rgba(212, 175, 55, 0.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-right {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { to { opacity: 1; transform: translateX(0); } }

/* Legal Footer */
.footer-elegant {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 8%;
    text-align: center;
    background: #08080a;
}

.footer-disclaimer {
    font-size: 0.65rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .hero-split { flex-direction: column; text-align: center; padding-top: 150px; }
    .hero-text-content { align-items: center; display: flex; flex-direction: column; margin-bottom: 50px; }
    .hero-title-elegant { font-size: 4rem; }
    .hero-visual-content { height: 60vh; }
}

/* Modal Glassmorphism Styling */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    position: relative;
    padding: 0;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--gold-premium);
}

.modal-body {
    display: flex;
    width: 100%;
}

.modal-image-col {
    flex: 1;
    background: rgba(10, 10, 15, 0.6);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.modal-image-col img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8));
}

.modal-text-col {
    flex: 1.5;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#modalDesc {
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }
    .modal-image-col {
        padding: 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .modal-image-col img {
        max-height: 250px;
    }
    .modal-text-col {
        padding: 30px 20px;
    }
}

/* Sold Out Stamp */
.sold-out-stamp {
    position: absolute;
    top: 25px;
    right: -35px;
    background: rgba(220, 20, 60, 0.9);
    color: white;
    padding: 6px 45px;
    transform: rotate(45deg);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.5);
    z-index: 5;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Golden Sparkle Glow */
@keyframes goldenGlow {
    0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.1); border-color: rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.8), inset 0 0 25px rgba(212, 175, 55, 0.4); border-color: rgba(212, 175, 55, 0.9); }
    100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2), inset 0 0 10px rgba(212, 175, 55, 0.1); border-color: rgba(212, 175, 55, 0.3); }
}

.top-seller-glow {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards, goldenGlow 3.5s 1.2s infinite alternate ease-in-out;
}
.top-seller-glow:hover {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 0 45px rgba(212, 175, 55, 1), inset 0 0 35px rgba(212, 175, 55, 0.6) !important;
    border-color: var(--gold-premium) !important;
}

@keyframes pulseGoldText {
    0% {
        color: var(--gold-premium);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }
    50% {
        color: #fff1c4;
        text-shadow: 0 0 30px rgba(255, 241, 196, 0.9), 0 0 15px rgba(212, 175, 55, 0.7);
    }
    100% {
        color: var(--gold-premium);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }
}

.pulse-gold-text {
    animation: pulseGoldText 2.5s infinite alternate ease-in-out;
}
.engraved-frame-container {
    border: 4px ridge #4a4a4a;
    border-radius: 12px;
    padding: 30px 40px 50px;
    margin: 60px auto 40px;
    max-width: 1300px;
    box-shadow: 
        inset 0 0 0 4px #08080a,
        inset 0 0 0 6px var(--gold-premium),
        0 25px 50px rgba(0,0,0,0.8);
    position: relative;
}
.frame-title-legend {
    padding: 0 40px;
    margin: 0 auto;
    font-size: 2.5rem;
    background: #08080a;
    border-radius: 20px;
}


.modal-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
}
.modal-tab-btn {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s;
    letter-spacing: 1px;
}
.modal-tab-btn:hover {
    color: #fff;
}
.modal-tab-btn.active {
    color: var(--gold-premium);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    border-bottom: 2px solid var(--gold-premium);
}
.modal-tab-content {
    display: none;
}
.modal-tab-content.active {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}


/* Protocols & Education Hub Styling */
.protocols-header {
    text-align: center;
    padding: 120px 20px 40px;
    background: linear-gradient(180deg, rgba(5,5,8,0) 0%, rgba(5,5,8,1) 100%);
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 40px;
}

.protocol-box {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.protocol-box:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.05);
}

.protocol-box h4 {
    color: var(--gold-premium);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.protocol-box p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.protocol-box ul {
    list-style: none;
    padding-left: 0;
}

.protocol-box ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    color: #ccc;
}

.protocol-box ul li::before {
    content: "";
    color: var(--gold-premium);
    position: absolute;
    left: 0;
    font-weight: bold;
}




/* Requisition Cart */
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}
.cart-panel.open { right: 0; }
.cart-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); padding-bottom: 15px; margin-bottom: 20px;
}
.cart-header h3 { color: var(--gold-premium); margin: 0; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 2px; }
.cart-close { color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.cart-close:hover { color: var(--gold-premium); }
.cart-items { flex-grow: 1; overflow-y: auto; margin-bottom: 20px; }
.cart-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cart-item-info { flex-grow: 1; }
.cart-item-title { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 5px; }
.cart-item-price { color: var(--gold-premium); font-size: 0.9rem; margin-bottom: 5px; }

/* Quantity Controls */
.qty-controls {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px; width: fit-content; padding: 2px 5px;
}
.qty-btn {
    background: transparent; border: none; color: #fff; cursor: pointer; font-size: 1rem; font-weight: bold; width: 20px; height: 20px; display: flex; justify-content: center; align-items: center;
}
.qty-btn:hover { color: var(--gold-premium); }
.qty-val { color: #fff; font-size: 0.9rem; min-width: 15px; text-align: center; }

.cart-item-remove { color: #ff4444; cursor: pointer; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.cart-footer { border-top: 1px solid rgba(212, 175, 55, 0.2); padding-top: 15px; }
.cart-total { font-size: 1.4rem; color: #fff; display: flex; justify-content: space-between; font-weight: 700; }
.cart-toggle-btn {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: rgba(10, 10, 12, 0.8); border: 1px solid var(--gold-premium); border-radius: 50%;
    display: flex; justify-content: center; align-items: center; color: var(--gold-premium);
    cursor: pointer; z-index: 9999; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px); transition: all 0.3s ease;
}
.cart-toggle-btn:hover { background: rgba(212, 175, 55, 0.2); box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); transform: scale(1.05); }
.cart-badge {
    position: absolute; top: -5px; right: -5px; background: var(--gold-premium); color: #000;
    width: 24px; height: 24px; border-radius: 50%; display: flex; justify-content: center;
    align-items: center; font-size: 0.8rem; font-weight: bold;
}
.form-input {
    width: 100%; padding: 12px 15px; margin-bottom: 15px; background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; border-radius: 4px; font-family: inherit;
    box-sizing: border-box; outline: none; transition: border-color 0.3s ease;
}
.form-input:focus { border-color: var(--gold-premium); }
.form-input option { background: #111; color: #fff; }


/* Credit Card UI */
.cc-input-group {
    margin-bottom: 15px;
}
.cc-input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cc-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-family: monospace;
    font-size: 1rem;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s ease;
}
.cc-input:focus {
    border-color: var(--gold-premium);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}
.cc-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.spinner {
  animation: rotate 2s linear infinite;
  stroke: var(--gold-premium);
}
.spinner .path {
  stroke: var(--gold-premium);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes dash {
  0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}


/* Compliance Checkboxes */
.compliance-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.compliance-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.4;
}
.compliance-label input {
    margin-top: 3px;
    accent-color: var(--gold-premium);
    width: 16px;
    height: 16px;
}
#btnComplianceProceed:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}
