/* PAGE-SPECIFIC HEADER STYLING */
#shopify-section-header,
.shopify-section-header-sticky,
sticky-header {
    background: transparent !important;
    z-index: 101 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header-wrapper {
    background: transparent !important;
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 100px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mega-menu__content {
    z-index: 100 !important;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.6); }
}

@keyframes spin-slow {
    to { transform: rotate(360deg); }
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-gradient {
    background: #000000;
    height: 300px;
    contain: layout size style;
    display: block;
    padding-top: 40px;
    box-sizing: border-box;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shimmer-text {
    background: linear-gradient(90deg, #000 0%, #333 25%, #000 50%, #444 75%, #000 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 10s linear infinite;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.visualizer-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 300px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    contain: layout;
}

.condensed {
    font-family: 'Roboto Condensed', sans-serif;
    font-display: swap;
}

input[type=range] {
    -webkit-appearance: none;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #000000;
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

#visualizer {
    width: 100%;
    height: 100%;
}

.trim-slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: transparent !important;
}

.trim-slider::-webkit-slider-thumb {
    pointer-events: auto;
    position: relative;
    z-index: 20;
    width: 16px;
    height: 24px;
    border-radius: 4px;
    background: #ce2c2c;
    margin-top: -10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    border: 2px solid white;
}

.trim-slider::-webkit-slider-runnable-track {
    background: transparent !important;
}

.scrubber-slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: transparent !important;
}

.scrubber-slider::-webkit-slider-thumb {
    pointer-events: auto;
    position: relative;
    z-index: 30;
    width: 12px;
    height: 24px;
    border-radius: 12px;
    background: white;
    margin-top: -10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.scrubber-slider::-webkit-slider-runnable-track {
    background: transparent !important;
}

.animate-spin-slow {
    animation: spin-slow 8s linear infinite;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(99, 102, 241, 0.2);
}

.feature-icon {
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.contact-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
}

.contact-cta:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.contact-btn {
    animation: bounce-subtle 2s ease-in-out infinite;
}

.contact-btn:hover {
    animation: none;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    cursor: pointer;
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 800px;
    visibility: visible;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.rt-toggle { position:relative; display:inline-block; width:44px; height:24px; flex-shrink:0; }
.rt-toggle input { opacity:0; width:0; height:0; position:absolute; }
.rt-toggle .rt-track { position:absolute; inset:0; background:rgba(0,0,0,.2); border-radius:12px; transition:background .2s; cursor:pointer; }
.rt-toggle input:checked + .rt-track { background:#ce2c2c; }
.rt-toggle .rt-knob { position:absolute; top:2px; left:2px; width:20px; height:20px; background:#fff; border-radius:50%; box-shadow:0 1px 3px rgba(0,0,0,.3); transition:transform .2s; pointer-events:none; }
.rt-toggle input:checked ~ .rt-knob { transform:translateX(20px); }
