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

:root {
    --red: #ff0000;
    --red-dark: #cc0000;
    --red-neon: #ff1a1a;
    --red-glow: rgba(255, 0, 0, 0.4);
    --red-glow-2: rgba(255, 0, 0, 0.15);
    --black: #0a0a0a;
    --black-2: #111;
    --black-3: #1a1a1a;
    --white: #ffffff;
    --white-dim: #f0f0f0;
    --gray: #888;
    --gray-light: #aaa;
}

/* ===== BASE SMOOTHNESS ===== */
::selection { background: rgba(255, 0, 0, 0.3); color: var(--white); }
*, *::before, *::after { transition-duration: 0.2s; transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }

/* ===== HEADER CLOCK ===== */
.header-clock {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    font-family: 'Courier New', monospace;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.header-clock:hover {
    color: var(--white);
    border-color: rgba(255,0,0,0.15);
}

/* ===== RIPPLE EFFECT ===== */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), rgba(255,0,0,0.1));
    transform: scale(0);
    animation: rippleAnim 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    pointer-events: none;
    z-index: 6;
}
@keyframes rippleAnim {
    0% { transform: scale(0); opacity: 1; }
    50% { transform: scale(3); opacity: 0.6; }
    100% { transform: scale(5); opacity: 0; }
}

/* ===== PRODUCT CARD TILT ===== */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

/* ===== HERO TYPING ===== */
.hero-title .highlight {
    display: inline-block;
    min-width: 10px;
}

/* ===== SMOOTH SCROLL REVEAL ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px) scale(0.93) rotateX(5deg);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: blur(2px);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }

/* ===== FOOTER STATS ===== */
.footer-stats {
    margin-bottom: 8px;
}
.footer-stats span {
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}
.footer-stats i {
    color: var(--red);
    margin-right: 6px;
    font-size: 0.75rem;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* ===== LOADING ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}
.loading-content {
    text-align: center;
}
.loading-logo i {
    font-size: 80px;
    color: var(--red);
    text-shadow: 0 0 40px var(--red-glow);
    margin-bottom: 30px;
}
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 0, 0, 0.2);
    border-top-color: var(--red);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}
.loading-text {
    color: var(--gray-light);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.loading-screen.hidden { opacity: 0; visibility: hidden; }
@keyframes loadingPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
.loading-text { animation: loadingPulse 1.5s ease-in-out infinite; }

/* ===== LOGIN PAGE - ULTRA PREMIUM ===== */
.login-page {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}
.login-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,0,0,0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(255,0,0,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0,0,0,1) 0%, rgba(5,5,5,1) 100%);
}
.login-page::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,0,0.04), transparent 70%);
    top: -200px; left: -200px;
    animation: loginBgGlow 8s ease-in-out infinite alternate;
}
@keyframes loginBgGlow {
    0% { transform: translate(0,0) scale(1); opacity: 0.3; }
    50% { transform: translate(100px,80px) scale(1.4); opacity: 0.7; }
    100% { transform: translate(200px,150px) scale(1.8); opacity: 1; }
}
.login-page .bg-glow-2 {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,0,0.03), transparent 70%);
    bottom: -150px; right: -150px;
    animation: loginBgGlow2 10s ease-in-out infinite alternate;
}
@keyframes loginBgGlow2 {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(-150px, -100px) scale(1.5); }
}
.login-page .login-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, transparent 70%);
}
.login-page.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.login-page.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
}
.login-container {
    width: 100%;
    max-width: 420px;
    padding: 12px;
    position: relative;
    z-index: 2;
}
.login-box {
    background: rgba(12,12,12,0.9);
    border-radius: 18px;
    padding: 30px 28px 24px;
    text-align: center;
    box-shadow:
        0 0 40px rgba(255,0,0,0.03),
        0 0 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.login-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,0,0,0.15), transparent);
    opacity: 0.5;
}
.login-box::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,0,0,0.1), transparent);
    opacity: 0.3;
}
.login-logo {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}
.login-logo-img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(255,0,0,0.1);
    border: 1.5px solid rgba(255,0,0,0.1);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.login-logo-img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 50px rgba(255,0,0,0.2);
}
.login-title {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 3px;
    background: linear-gradient(135deg, #fff 30%, #ff3333 70%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.login-subtitle {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.2);
    font-size: 0.62rem;
    margin-bottom: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    min-height: 1.2em;
}
.input-group {
    position: relative;
    margin-bottom: 14px;
    z-index: 2;
}
.input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.1);
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 3;
    pointer-events: none;
}
.input-group:focus-within i {
    color: var(--red);
}
.input-group input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    color: var(--white);
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}
.input-group input:focus {
    border-color: rgba(255,0,0,0.2);
    background: rgba(255,0,0,0.02);
    box-shadow: 0 0 20px rgba(255,0,0,0.03);
}
.input-group input::placeholder {
    color: rgba(255,255,255,0.1);
    font-size: 12px;
    transition: opacity 0.3s ease;
}
.input-group input:focus::placeholder {
    opacity: 0.2;
}
.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.1);
    cursor: pointer;
    padding: 6px;
    z-index: 5;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 1;
}
.password-toggle:hover {
    color: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}
.password-toggle:focus { outline: none; }
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px;
    position: relative;
    z-index: 2;
}
.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}
.remember-me input {
    position: absolute;
    opacity: 0; width: 0; height: 0;
}
.checkmark {
    width: 16px; height: 16px;
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}
.remember-me:hover .checkmark {
    border-color: rgba(255,0,0,0.2);
}
.remember-me input:checked + .checkmark {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 10px rgba(255,0,0,0.2);
}
.remember-me input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    color: var(--white);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.remember-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
    transition: color 0.3s ease;
}
.remember-me:hover .remember-text {
    color: rgba(255,255,255,0.5);
}
.forgot-password {
    text-align: right;
}
.forgot-password a {
    color: rgba(255,255,255,0.15);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.forgot-password a:hover {
    color: var(--red);
}
.login-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #cc0000, #ff0000);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.login-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.login-btn:hover::before { left: 100%; }
.login-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255,0,0,0.3), 0 0 80px rgba(255,0,0,0.12);
}
.login-btn:active {
    transform: translateY(0) scale(0.96);
}
.login-btn i { margin-left: 8px; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.login-btn:hover i { transform: translateX(6px); }
.login-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}
.login-error {
    position: relative;
    z-index: 2;
    color: #ff4444;
    font-size: 0.78rem;
    margin-top: 12px;
    min-height: 20px;
}
.login-register-link {
    text-align: center;
    margin-top: 16px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.15);
    position: relative;
    z-index: 2;
}
.login-register-link a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.login-register-link a:hover {
    text-shadow: 0 0 10px rgba(255,0,0,0.3);
}

/* Social Auth */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-12px) rotate(-2deg); }
    20% { transform: translateX(12px) rotate(2deg); }
    30% { transform: translateX(-10px) rotate(-1deg); }
    40% { transform: translateX(10px) rotate(1deg); }
    50% { transform: translateX(-7px); }
    60% { transform: translateX(7px); }
    70% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
}
.login-box.shake {
    animation: shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    border-color: rgba(255,0,0,0.4) !important;
    box-shadow: 0 0 60px rgba(255,0,0,0.2), 0 0 100px rgba(255,0,0,0.1) !important;
}
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--red);
    font-weight: 300;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.login-box-perspective { perspective: 1000px; }
.login-box-tilt { transition: transform 0.15s ease-out; transform-style: preserve-3d; }
.login-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 4px;
}
.login-tab {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.login-tab.active {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px var(--red-glow);
}
.login-tab:hover:not(.active) {
    color: var(--white);
}

/* Tab Slider */
.login-tabs {
    position: relative;
}
.tab-slider {
    position: absolute;
    bottom: 4px;
    height: calc(100% - 8px);
    background: var(--red);
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 0 20px var(--red-glow);
}
.login-tab {
    position: relative;
    z-index: 1;
}
.login-tab.active {
    background: transparent !important;
    box-shadow: none !important;
    color: var(--white);
}

/* Input Focus Glow */
.input-group:focus-within::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255,0,0,0.15), rgba(255,0,0,0.02), rgba(255,0,0,0.1));
    z-index: -1;
    opacity: 0;
    animation: inputGlowIn 0.4s ease forwards;
}
@keyframes inputGlowIn {
    to { opacity: 1; }
}

/* Login Entrance Animation */
@keyframes loginEntrance {
    0% { opacity: 0; transform: scale(0.85) translateY(60px) rotateX(10deg); filter: blur(15px); }
    50% { transform: scale(1.02) translateY(-5px) rotateX(0deg); filter: blur(0); }
    75% { transform: scale(0.98) translateY(3px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
.login-box {
    animation: loginEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Social Auth Buttons */
.social-auth-container {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
}
.separator {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 2px 0;
}
.separator::before,
.separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}
.separator span {
    color: rgba(255,255,255,0.12);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.social-btn {
    width: 100%;
    padding: 11px 20px;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    background: rgba(255,255,255,0.015);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.social-btn img, .social-btn svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.social-btn:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(255,0,0,0.15);
    background: rgba(255,255,255,0.025);
    box-shadow: 0 8px 30px rgba(255,0,0,0.06), 0 0 40px rgba(255,0,0,0.03);
}
.social-btn:hover img,
.social-btn:hover svg {
    transform: scale(1.15) rotate(-5deg);
}
.social-btn:active {
    transform: translateY(0) scale(0.97);
}
.social-btn:disabled {
    opacity: 0.4; pointer-events: none;
}
.social-btn.google-btn:hover {
    border-color: rgba(66,133,244,0.2);
    box-shadow: 0 8px 30px rgba(66,133,244,0.1);
}
.social-btn.apple-btn:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 8px 30px rgba(255,255,255,0.05);
}
.social-btn.loading {
    pointer-events: none; opacity: 0.6;
}
.social-btn.loading::after {
    content: '';
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.1);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: googleSpin 0.6s linear infinite;
    position: absolute;
    right: 18px;
}

/* Login Floating Shapes */
.login-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.login-shape {
    position: absolute;
    border: 1px solid rgba(255,0,0,0.04);
    border-radius: 50%;
    animation: shapeFloat 20s ease-in-out infinite;
}
.login-shape:nth-child(1) {
    width: 300px; height: 300px;
    top: -10%; left: -10%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255,0,0,0.02), transparent);
}
.login-shape:nth-child(2) {
    width: 200px; height: 200px;
    bottom: -5%; right: -5%;
    animation-delay: -7s;
    border-radius: 30% 70% 70% 30%;
    background: radial-gradient(circle, rgba(255,0,0,0.015), transparent);
}
.login-shape:nth-child(3) {
    width: 150px; height: 150px;
    top: 40%; right: -3%;
    animation-delay: -14s;
    border-radius: 60% 40% 30% 70%;
}
@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(30px, -40px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-20px, 20px) rotate(180deg) scale(0.9); }
    75% { transform: translate(40px, 30px) rotate(270deg) scale(1.05); }
}

/* Social Button Hover Icon Animation */
.social-btn:hover img,
.social-btn:hover svg,
.social-btn:hover i {
    animation: socialBounce 0.4s ease;
}
@keyframes socialBounce {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg) scale(1.15); }
    75% { transform: rotate(8deg) scale(1.05); }
}

/* Button Loading Dots */
@keyframes loadingDots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}
.login-btn.loading-dots::after {
    content: '...';
    animation: loadingDots 1.5s steps(1) infinite;
    display: inline-block;
    width: 18px;
    text-align: left;
}

/* Wishlist Heart */
.wishlist-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
    font-size: 14px;
    backdrop-filter: blur(8px);
}
.wishlist-heart:hover {
    color: #ff4757;
    border-color: rgba(255,71,87,0.3);
    transform: scale(1.1);
}
.wishlist-heart.wishlisted {
    color: #ff4757;
    border-color: rgba(255,71,87,0.3);
    background: rgba(255,71,87,0.1);
    box-shadow: 0 0 15px rgba(255,71,87,0.2);
}
@keyframes heartPop {
    0% { transform: scale(1); }
    30% { transform: scale(1.4); }
    60% { transform: scale(0.9); }
    100% { transform: scale(1); }
}
.wishlist-heart.wishlisted i {
    animation: heartPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Quick-View Overlay */
.product-quick-view {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
    cursor: pointer;
    z-index: 4;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.product-card:hover .product-quick-view {
    opacity: 1;
    transform: translateY(0);
}
.product-quick-view:hover {
    color: var(--white);
}
.product-quick-view i {
    font-size: 11px;
    margin-right: 5px;
}

/* Quick-View Modal */
.quick-view-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 50000;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.quick-view-box {
    background: rgba(15,15,15,0.97);
    border: 1px solid rgba(255,0,0,0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    position: relative;
    animation: quickViewIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
@keyframes quickViewIn {
    0% { opacity: 0; transform: scale(0.85) translateY(40px) rotateX(10deg); }
    60% { transform: scale(1.02) translateY(-5px) rotateX(0deg); }
    100% { opacity: 1; transform: scale(1) translateY(0) rotateX(0deg); }
}
.quick-view-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.2);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
}
.quick-view-close:hover { color: var(--white); }
.quick-view-body { text-align: center; }
.quick-view-icon i {
    font-size: 56px;
    color: var(--red);
    margin-bottom: 12px;
}
.quick-view-category {
    font-size: 11px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.quick-view-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.quick-view-tagline {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 14px;
}
.quick-view-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
}
.quick-view-features span {
    padding: 4px 12px;
    background: rgba(255,0,0,0.06);
    border: 1px solid rgba(255,0,0,0.1);
    border-radius: 20px;
    font-size: 11px;
    color: var(--gray-light);
}
.quick-view-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 18px;
}
.quick-view-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.quick-view-actions .btn {
    padding: 10px 20px;
    font-size: 12px;
}

/* New Product Badge Animation */
@keyframes newPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,0,0.4); transform: scale(1); }
    50% { box-shadow: 0 0 0 12px rgba(255,0,0,0); transform: scale(1.05); }
}
.new-product .product-badge:not(.badge-free) {
    background: var(--red) !important;
    animation: newPulse 1.8s ease-in-out infinite;
}
.new-product .product-badge::before {
    content: '✨ ';
}

/* Price Tag */
.product-price-tag {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin: 10px 0 6px;
    animation: pricePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.15s;
}
@keyframes pricePop {
    0% { opacity: 0; transform: scale(0.3) translateY(15px); }
    50% { transform: scale(1.15) translateY(-3px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Recently Viewed */
.recently-viewed {
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255,0,0,0.04);
}
.recently-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.recently-header i {
    color: var(--red);
    font-size: 14px;
}
.recently-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.recently-grid::-webkit-scrollbar { height: 3px; }
.recently-grid::-webkit-scrollbar-thumb { background: rgba(255,0,0,0.2); border-radius: 2px; }
.recently-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,0,0,0.06);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.recently-item:hover {
    border-color: rgba(255,0,0,0.15);
    background: rgba(255,0,0,0.03);
    transform: translateY(-2px);
}
.recently-item i {
    font-size: 16px;
    color: var(--red);
}
.recently-item span {
    font-size: 13px;
    font-weight: 600;
}

/* Social Login */
.login-social-tab {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.login-social-desc {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 5px;
}
.btn-google {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}
.btn-google::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(66,133,244,0.08), rgba(234,67,53,0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
}
.btn-google:hover::before { opacity: 1; }
.btn-google:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(66,133,244,0.12), 0 4px 12px rgba(0,0,0,0.2);
}
.btn-google:active {
    transform: translateY(0) scale(0.98);
}
.btn-google-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}
.btn-google:hover .btn-google-icon {
    transform: scale(1.08);
}
.btn-google.loading {
    pointer-events: none;
    opacity: 0.7;
}
.btn-google.loading::after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: googleSpin 0.6s linear infinite;
    position: absolute;
    right: 20px;
}
@keyframes googleSpin {
    to { transform: rotate(360deg); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.15);
    padding: 12px 0;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    font-size: 28px;
    color: var(--red);
    text-shadow: 0 0 20px var(--red-glow);
}
.logo-img, .login-logo-img, .footer-logo-img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255,0,0,0.4));
    transition: filter 0.3s ease;
}
.logo-img:hover, .footer-logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(255,0,0,0.7));
}
.login-logo-img {
    height: 64px;
    margin-bottom: 4px;
}
.footer-logo-img {
    height: 32px;
}
.logo-text {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--white);
}
.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}
.nav-link {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--red-glow);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--red); }
.nav-link.active::after { width: 100%; }
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--red-glow);
}
.btn-logout {
    padding: 8px 16px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    color: var(--red);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-logout:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px var(--red-glow);
}
.btn-cart {
    padding: 8px 14px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    color: var(--red);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-cart:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 20px var(--red-glow);
}
.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--red-glow);
    transition: transform 0.3s ease;
}
.cart-count.bump {
    animation: cartBump 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cartBump {
    0% { transform: scale(1); }
    30% { transform: scale(1.5); }
    60% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}
.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.cart-sidebar {
    position: fixed;
    top: 0; right: -420px;
    width: 400px;
    height: 100vh;
    max-width: 100vw;
    background: linear-gradient(180deg, var(--black-2), var(--black-3));
    border-left: 1px solid rgba(255,0,0,0.15);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}
.cart-sidebar.active { right: 0; }
.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.3);
}
.cart-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-title i { color: var(--red); }
.cart-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.2);
    color: var(--red);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.cart-close:hover {
    background: var(--red);
    color: var(--white);
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}
.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}
.cart-empty i {
    font-size: 48px;
    color: rgba(255,0,0,0.2);
    margin-bottom: 16px;
}
.cart-empty p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}
.cart-empty span {
    font-size: 0.85rem;
    color: var(--gray);
}
.cart-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,0,0,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    animation: cartItemSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cartItemSlide {
    0% { opacity: 0; transform: translateX(50px) scale(0.9); }
    60% { transform: translateX(-5px) scale(1.01); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}
.cart-item:hover {
    border-color: rgba(255,0,0,0.2);
    background: rgba(255,255,255,0.04);
}
.cart-item-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,0,0,0.08);
    border: 1px solid rgba(255,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cart-item-icon i { font-size: 18px; color: var(--red); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-period {
    font-size: 0.78rem;
    color: var(--gray);
}
.cart-item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--red);
    white-space: nowrap;
}
.cart-item-remove {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,0,0,0.08);
    border: none;
    color: var(--red);
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.cart-item-remove:hover {
    background: var(--red);
    color: var(--white);
}
.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,0,0,0.1);
    background: rgba(0,0,0,0.3);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}
.cart-total-amount {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--red);
}
.btn-checkout {
    padding: 14px !important;
    font-size: 1rem !important;
    margin-bottom: 8px;
}
.btn-clear-cart {
    padding: 10px !important;
    font-size: 0.85rem !important;
    background: transparent !important;
    border: 1px solid rgba(255,0,0,0.2) !important;
    color: var(--gray) !important;
}
.btn-clear-cart:hover {
    border-color: var(--red) !important;
    color: var(--red) !important;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,0,0.12), transparent 70%);
    top: -200px;
    right: -200px;
    animation: heroOrbA 6s ease-in-out infinite alternate;
}
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,0,0.08), transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: heroOrbB 7s ease-in-out infinite alternate;
}
@keyframes heroOrbA {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: translate(-60px, 80px) scale(1.4) rotate(180deg); opacity: 1; }
    100% { transform: translate(-120px, 40px) scale(1.1) rotate(360deg); opacity: 0.7; }
}
@keyframes heroOrbB {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: translate(80px, -60px) scale(1.3) rotate(-180deg); opacity: 0.9; }
    100% { transform: translate(120px, -120px) scale(1.2) rotate(-360deg); opacity: 0.6; }
}

.hero-content {
    max-width: 850px;
    z-index: 2;
    position: relative;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1.15;
    animation: heroTextGlow 2.5s ease-in-out infinite alternate;
}
@keyframes heroTextGlow {
    0% { text-shadow: 0 0 20px rgba(255,0,0,0.08), 0 0 40px rgba(255,0,0,0.04); }
    50% { text-shadow: 0 0 40px rgba(255,0,0,0.2), 0 0 80px rgba(255,0,0,0.1), 0 0 120px rgba(255,0,0,0.05); }
    100% { text-shadow: 0 0 60px rgba(255,0,0,0.3), 0 0 100px rgba(255,0,0,0.15); }
}
.hero-title .highlight {
    color: var(--red);
    text-shadow: 0 0 40px var(--red-glow);
    position: relative;
    display: inline-block;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--red-glow);
    animation: underlinePulse 2s ease-in-out infinite;
}
@keyframes underlinePulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.05); }
}
.hero-description {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-buttons .btn-primary {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--red), #ff3333, var(--red-dark));
    background-size: 300% 300%;
    animation: btnGrad 2.5s ease infinite;
}
@keyframes btnGrad {
    0% { background-position: 0% 50%; transform: scale(1); }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; transform: scale(1.02); }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; transform: scale(1); }
}
.hero-buttons .btn-secondary {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 50px;
}
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 0.85rem;
    color: var(--gray-light);
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    margin-top: 10px;
}
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 15px var(--red-glow);
    animation: pulse 1.5s ease-in-out infinite;
}
.status-dot::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    animation: ping 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
@keyframes ping {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(3); opacity: 0; }
}

/* ===== SECTION ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--white), var(--red), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: sectionTitleShine 3s ease-in-out infinite alternate;
}
@keyframes sectionTitleShine {
    0% { background-position: 0% 50%; filter: brightness(1); }
    50% { background-position: 50% 50%; filter: brightness(1.2); }
    100% { background-position: 100% 50%; filter: brightness(1); }
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--red);
    margin: 15px auto 0;
    box-shadow: 0 0 20px var(--red-glow);
    border-radius: 3px;
}
.section-description {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}
.main-content {
    padding: 80px 0;
    min-height: 100vh;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.product-card {
    background: linear-gradient(160deg, rgba(17,17,17,0.9), rgba(10,10,10,0.95));
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transform-style: preserve-3d;
}
.product-card:hover {
    transform: perspective(1000px) rotateX(3deg) rotateY(3deg) translateY(-16px) scale(1.03);
    box-shadow: 0 40px 80px rgba(255, 0, 0, 0.3), 0 0 150px rgba(255,0,0,0.1);
    border-color: var(--red);
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1;
}
.product-card:hover::before { opacity: 1; }
.product-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
}
.product-card:hover::after { opacity: 1; left: 5%; right: 5%; }

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--black-3), #0d0d0d);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,0,0,0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.product-card:hover .product-image::before { opacity: 1; }
.product-image .placeholder-img {
    font-size: 64px;
    color: rgba(255, 0, 0, 0.15);
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 0px rgba(255,0,0,0));
}
.product-card:hover .placeholder-img {
    color: rgba(255, 0, 0, 0.5);
    transform: scale(1.15);
    filter: drop-shadow(0 0 30px rgba(255,0,0,0.2));
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px var(--red-glow);
    z-index: 5;
}

.product-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}
.product-category {
    font-size: 11px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
}
.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.product-card:hover .product-name { color: var(--red); }
.product-tagline {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-style: italic;
}
.product-features-short {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}
.product-features-short span {
    background: rgba(255, 0, 0, 0.06);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 11px;
    color: var(--gray-light);
    transition: all 0.3s ease;
}
.product-card:hover .product-features-short span {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
}
.product-buttons {
    display: flex;
    gap: 10px;
}
.product-buttons.single {
    justify-content: stretch;
}
.btn-details {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 14px;
    border-radius: 12px !important;
}
.btn-download {
    background: linear-gradient(135deg, #00c853, #00e676) !important;
    color: #000 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3) !important;
}
.btn-download:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.5) !important;
}

/* Free product card */
.product-card-free {
    border-color: rgba(0, 200, 83, 0.2) !important;
    background: linear-gradient(160deg, #0a1a0a, rgba(10,10,10,0.95)) !important;
}
.product-card-free:hover {
    border-color: #00c853 !important;
    box-shadow: 0 30px 70px rgba(0, 200, 83, 0.15) !important;
}
.product-card-free .product-image::before {
    background: radial-gradient(circle at 50% 50%, rgba(0,200,83,0.06), transparent 70%) !important;
}
.badge-free {
    background: linear-gradient(135deg, #00c853, #00e676) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4) !important;
}
.free-ribbon {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #000;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    z-index: 5;
}

/* Download box in modal */
.pp-download-box {
    background: linear-gradient(145deg, #0a1a0a, #0d0d0d);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin: 14px 0 22px;
}
.pp-download-icon {
    font-size: 48px;
    color: #00c853;
    margin-bottom: 15px;
}
.pp-download-text {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.pp-download-btn {
    background: linear-gradient(45deg, #00c853, #00e676) !important;
    color: #000 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3) !important;
}
.pp-download-btn:hover {
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.5) !important;
}
.pp-download-note {
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 12px;
    opacity: 0.7;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(45deg, var(--red), #ff3333, var(--red-dark));
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: 0 4px 15px var(--red-glow);
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px var(--red-glow), 0 0 60px rgba(255,0,0,0.1);
}
.btn-secondary {
    background: rgba(255, 0, 0, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 0, 0, 0.2);
}
.btn-secondary:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: var(--red);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255,0,0,0.1);
}
.btn-large {
    padding: 14px 32px;
    font-size: 15px;
}

/* ===== STORE FEATURES ===== */
.features-section {
    padding: 80px 0;
    background: rgba(17, 17, 17, 0.3);
    position: relative;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 40px;
}
.feature-card {
    background: linear-gradient(160deg, rgba(17,17,17,0.8), rgba(10,10,10,0.9));
    border: 1px solid rgba(255, 0, 0, 0.06);
    border-radius: 18px;
    padding: 32px 26px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
}
.feature-card:hover::before { opacity: 1; left: 5%; right: 5%; }
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255,0,0,0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.feature-card:hover::after { opacity: 1; }
.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 0, 0, 0.12), 0 0 80px rgba(255,0,0,0.04);
    border-color: rgba(255, 0, 0, 0.2);
}
.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 0, 0, 0.06);
    border: 1px solid rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.feature-card:hover .feature-icon {
    background: rgba(255, 0, 0, 0.12);
    border-color: var(--red);
    box-shadow: 0 0 30px var(--red-glow);
    transform: scale(1.08);
}
.feature-icon i {
    font-size: 26px;
    color: var(--red);
    transition: transform 0.4s ease;
}
.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}
.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}
.feature-card:hover h3 { color: var(--red); }
.feature-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ===== PAYMENT & DELIVERY ===== */
.payment-section {
    padding: 80px 0;
    background: rgba(10, 10, 10, 0.8);
}
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.payment-card {
    background: linear-gradient(145deg, var(--black-2), var(--black-3));
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.payment-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--red);
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.15), 0 0 100px rgba(255,0,0,0.05);
}
.payment-step {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 0 15px var(--red-glow);
}
.payment-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 18px;
    transition: all 0.3s ease;
}
.payment-card:hover .payment-card-icon {
    background: rgba(255, 0, 0, 0.15);
    border-color: var(--red);
    box-shadow: 0 0 20px var(--red-glow);
}
.payment-card-icon i { font-size: 26px; color: var(--red); }
.payment-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.payment-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}
.payment-accepted {
    text-align: center;
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}
.payment-accepted p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.payment-methods span {
    background: rgba(255, 0, 0, 0.06);
    border: 1px solid rgba(255, 0, 0, 0.12);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.payment-methods span:hover {
    background: rgba(255, 0, 0, 0.12);
    border-color: var(--red);
    transform: translateY(-2px);
}
.payment-methods span i { color: var(--red); font-size: 18px; }

/* ===== TEAM ===== */
.team {
    padding: 100px 0;
    background: rgba(17, 17, 17, 0.5);
    position: relative;
    overflow: hidden;
}
.team::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.04), transparent 70%);
    pointer-events: none;
    animation: teamBgPulse 6s ease-in-out infinite alternate;
}
@keyframes teamBgPulse {
    0% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    100% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}
.team-card {
    background: linear-gradient(160deg, rgba(17,17,17,0.9), rgba(10,10,10,0.95));
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 24px;
    padding: 50px 30px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--order) * 0.12s);
    opacity: 0;
    transform: perspective(1000px);
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: perspective(1000px) translateY(50px) rotateX(8deg) scale(0.95); filter: blur(4px); }
    60% { transform: perspective(1000px) translateY(-5px) rotateX(0deg) scale(1.01); filter: blur(0); }
    100% { opacity: 1; transform: perspective(1000px) translateY(0) rotateX(0deg) scale(1); filter: blur(0); }
}
.team-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.team-card:hover .team-card-glow { opacity: 1; }
.team-card:hover {
    transform: perspective(1000px) translateY(-12px) scale(1.02) rotateX(2deg);
    box-shadow: 0 30px 70px rgba(255, 0, 0, 0.2), 0 0 100px rgba(255,0,0,0.05);
    border-color: var(--red);
}
.team-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
}
.team-card:hover::after { opacity: 1; left: 3%; right: 3%; }

.team-avatar {
    margin-bottom: 22px;
    position: relative;
    display: inline-block;
}
.team-avatar::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--red), transparent, var(--red)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: avatarRing 4s linear infinite;
}
@keyframes avatarRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.team-avatar-border {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #ff2222, var(--red-dark));
    background-size: 200% 200%;
    animation: avatarBg 4s ease-in-out infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 40px var(--red-glow);
    position: relative;
    transition: all 0.3s ease;
}
@keyframes avatarBg {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
.team-card:hover .team-avatar-border {
    transform: scale(1.08);
    box-shadow: 0 0 60px var(--red-glow);
}
.team-avatar-border i {
    font-size: 40px;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.team-info {
    position: relative;
    z-index: 2;
}
.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.team-card:hover .team-name { color: var(--red); }
.team-role-wrapper {
    margin-bottom: 20px;
}
.team-role-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.team-card:hover .team-role-badge {
    background: rgba(255, 0, 0, 0.15);
    border-color: var(--red);
    box-shadow: 0 0 20px var(--red-glow-2);
}
.team-role-owner {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    box-shadow: 0 0 15px var(--red-glow);
    animation: ownerPulse 2s ease-in-out infinite;
}
@keyframes ownerPulse {
    0%, 100% { box-shadow: 0 0 10px var(--red-glow); }
    50% { box-shadow: 0 0 25px var(--red-glow), 0 0 40px rgba(255,0,0,0.3); }
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.06);
    border: 1px solid rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}
.team-social a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px var(--red-glow);
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(255, 0, 0, 0.15);
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.footer-logo i {
    font-size: 30px;
    color: var(--red);
}
.footer-logo span {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
}
.footer-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-center {
    display: flex;
    gap: 40px;
}
.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--red); }
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-status {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-light);
}
.status-item .status-dot.online { background: #00ff88; box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
.status-item .status-dot.secure { background: var(--red); box-shadow: 0 0 10px var(--red-glow); }
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
    color: var(--gray);
    font-size: 0.8rem;
}

/* ===== FLOATING BTN ===== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 4px 20px var(--red-glow);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
}
.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--red-glow);
}

/* ===== PRODUCT DETAILS PAGE (MODAL) ===== */
.product-page {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.product-page.visible { display: block; }

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
}

.product-page-content {
    position: relative;
    width: 95%;
    max-width: 1100px;
    height: 92vh;
    margin: 2.5vh auto;
    background: linear-gradient(145deg, var(--black-2), #0d0d0d);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(255, 0, 0, 0.08);
    animation: productSlideIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes productSlideIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.95) rotateX(5deg); filter: blur(4px); }
    60% { transform: translateY(-5px) scale(1.01) rotateX(0deg); filter: blur(0); }
    100% { opacity: 1; transform: translateY(0) scale(1) rotateX(0deg); filter: blur(0); }
}

.product-page-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.product-page-close:hover {
    background: var(--red);
    transform: rotate(90deg);
    box-shadow: 0 0 20px var(--red-glow);
}

.product-page-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    overflow: hidden;
}

/* Left side */
.product-page-left {
    padding: 35px 30px;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.product-page-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--red), var(--red-dark));
    color: var(--white);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    width: fit-content;
    box-shadow: 0 4px 15px var(--red-glow);
}

.product-page-left .gallery-main {
    position: relative;
    width: 100%;
    height: 320px;
    background: var(--black);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-page-left .gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-page-left .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 15px;
}
.product-page-left .gallery-nav:hover {
    background: var(--red);
    border-color: var(--red);
}
.product-page-left .gallery-prev { left: 12px; }
.product-page-left .gallery-next { right: 12px; }

.product-page-left .gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.product-page-left .gallery-thumbs .thumb {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 12px;
    background: var(--black-3);
    border: 2px solid rgba(255, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--gray);
    font-size: 24px;
}
.product-page-left .gallery-thumbs .thumb:hover {
    border-color: var(--red);
    background: rgba(255, 0, 0, 0.08);
}
.product-page-left .gallery-thumbs .thumb.active {
    border-color: var(--red);
    box-shadow: 0 0 15px var(--red-glow);
}

.product-page-meta {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.pp-meta-item {
    background: rgba(255, 0, 0, 0.06);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 7px;
}
.pp-meta-item i { color: var(--red); font-size: 13px; }

/* Right side */
.product-page-right {
    padding: 35px 35px 35px 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.product-page-category {
    font-size: 11px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}
.product-page-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 18px;
}
.product-page-divider {
    width: 60px;
    height: 3px;
    background: var(--red);
    border-radius: 3px;
    box-shadow: 0 0 15px var(--red-glow);
    margin-bottom: 22px;
}

.product-page-desc {
    margin-bottom: 22px;
}
.product-page-desc p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.pp-section-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}
.pp-section-title i { color: var(--red); font-size: 14px; }

.pp-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}
.pp-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: rgba(255, 0, 0, 0.04);
    border: 1px solid rgba(255, 0, 0, 0.06);
    border-radius: 8px;
    transition: all 0.2s ease;
}
.pp-feat-item:hover {
    background: rgba(255, 0, 0, 0.08);
    border-color: rgba(255, 0, 0, 0.15);
    transform: translateX(4px);
}
.pp-feat-item i {
    color: var(--red);
    font-size: 12px;
    min-width: 16px;
}
.pp-feat-item span {
    color: var(--white-dim);
    font-size: 0.88rem;
}

.product-page-features { margin-bottom: 8px; }

.pp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin: 14px 0 22px;
}
.pp-price-item {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), rgba(255, 0, 0, 0.02));
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}
.pp-price-item:hover {
    background: rgba(255, 0, 0, 0.12);
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.15);
}
.pp-price-period {
    display: block;
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pp-price-amount {
    display: block;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.btn-cart-add {
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.25);
    color: var(--white);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}
.btn-cart-add:hover {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 20px var(--red-glow);
    transform: translateY(-2px);
}
.btn-cart-add:active {
    transform: translateY(0) scale(0.97);
}

.product-page-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 0, 0, 0.08);
}
.btn-block { width: 100%; justify-content: center; }

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}
.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--red);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== FLOATING DISCORD ===== */
.floating-discord {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(88,101,242,0.4);
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    cursor: pointer;
}
.floating-discord:hover {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 12px 45px rgba(88,101,242,0.7);
    color: var(--white);
}
.floating-discord-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #5865F2;
    animation: discordPulse 2s ease-out infinite;
}
@keyframes discordPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}
.floating-discord-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0,0,0,0.9);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.floating-discord-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid rgba(0,0,0,0.9);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.floating-discord:hover .floating-discord-tooltip {
    opacity: 1;
    right: 80px;
}

/* ===== MUSIC TOGGLE ===== */
.music-toggle {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9998;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.08);
    background: rgba(10,10,10,0.85);
    color: rgba(255,255,255,0.4);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.music-toggle:hover {
    color: var(--white);
    border-color: rgba(255,0,0,0.3);
    transform: scale(1.13) rotate(10deg);
    box-shadow: 0 0 40px rgba(255,0,0,0.15);
}
.music-toggle.playing {
    color: var(--red);
    border-color: rgba(255,0,0,0.25);
    box-shadow: 0 0 20px rgba(255,0,0,0.1), 0 0 40px rgba(255,0,0,0.05);
    animation: musicPulse 2s ease-in-out infinite;
}
.music-toggle.playing i {
    animation: musicSpin 3s linear infinite;
}
@keyframes musicPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255,0,0,0.1), 0 0 40px rgba(255,0,0,0.05); }
    50% { box-shadow: 0 0 30px rgba(255,0,0,0.2), 0 0 60px rgba(255,0,0,0.1); }
}
@keyframes musicSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== SALE BANNER ===== */
.sale-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255,0,0,0.05), rgba(255,0,0,0.01));
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,0,0,0.08);
    border-bottom: 1px solid rgba(255,0,0,0.08);
}
.sale-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,0,0.08), transparent 70%);
    top: -100px;
    left: -100px;
    animation: saleOrb 5s ease-in-out infinite alternate;
}
@keyframes saleOrb {
    0% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(80px, 60px) rotate(180deg); }
    100% { transform: translate(120px, 100px) rotate(360deg); }
}
.sale-banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
.sale-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
    animation: saleBadgePulse 1.5s ease-in-out infinite;
}
@keyframes saleBadgePulse {
    0%, 100% { box-shadow: 0 0 10px var(--red-glow); transform: scale(1); }
    50% { box-shadow: 0 0 30px var(--red-glow), 0 0 50px rgba(255,0,0,0.2); transform: scale(1.06); }
    50% { box-shadow: 0 0 25px var(--red-glow), 0 0 50px rgba(255,0,0,0.2); }
}
.sale-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}
.sale-title .highlight {
    color: var(--red);
}
.sale-title i {
    color: #FFD700;
    margin-right: 8px;
}
.sale-desc {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 24px;
}
.sale-code {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    border: 1px dashed var(--red);
    padding: 4px 16px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 2px;
}
.sale-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,0,0,0.12);
    border-radius: 10px;
    padding: 10px 18px;
    min-width: 65px;
}
.countdown-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    font-family: monospace;
    line-height: 1;
}
.countdown-label {
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.countdown-sep {
    font-size: 1.5rem;
    color: var(--red);
    font-weight: 900;
    margin-top: -15px;
}
.sale-cta {
    padding: 14px 40px !important;
    font-size: 1rem !important;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 70px 0;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,0,0,0.05);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,0,0,0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-item:hover {
    border-color: rgba(255,0,0,0.2);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255,0,0,0.1), 0 0 80px rgba(255,0,0,0.04);
}
.stat-icon {
    font-size: 28px;
    color: var(--red);
    margin-bottom: 12px;
    display: block;
}
.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    font-family: monospace;
    line-height: 1.2;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--gray);
    display: block;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 0;
    background: rgba(17,17,17,0.3);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.testimonial-card {
    background: linear-gradient(160deg, rgba(17,17,17,0.8), rgba(10,10,10,0.9));
    border: 1px solid rgba(255,0,0,0.06);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.4s ease;
    position: relative;
}
.testimonial-card:hover {
    border-color: rgba(255,0,0,0.15);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255,0,0,0.05);
}
.testimonial-stars {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    gap: 2px;
}
.testimonial-text {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-text::before {
    content: '"';
    color: var(--red);
    font-size: 1.5rem;
    line-height: 0;
    vertical-align: -4px;
    margin-right: 2px;
}
.testimonial-text::after {
    content: '"';
    color: var(--red);
    font-size: 1.5rem;
    line-height: 0;
    vertical-align: -4px;
    margin-left: 2px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-avatar i {
    font-size: 16px;
    color: var(--red);
}
.testimonial-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}
/* Auto-rotate testimonials */
.testimonials-grid {
    position: relative;
    overflow: hidden;
}
.testimonial-card {
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.testimonial-card.fade-out {
    opacity: 0;
    transform: translateX(-30px);
}
.testimonial-product {
    display: block;
    font-size: 0.75rem;
    color: var(--red);
    opacity: 0.7;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 60px 0;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,0,0,0.04);
    border-bottom: 1px solid rgba(255,0,0,0.04);
}
.newsletter-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-icon {
    font-size: 40px;
    color: var(--red);
    margin-bottom: 12px;
    display: block;
    animation: newsletterFloat 2.5s ease-in-out infinite;
}
@keyframes newsletterFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(-5deg); }
    50% { transform: translateY(-4px) rotate(3deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}
.newsletter-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.newsletter-desc {
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,0,0,0.08);
    border-radius: 10px;
    color: var(--white);
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
}
.newsletter-form input:focus {
    border-color: rgba(255,0,0,0.2);
}
.newsletter-form .btn {
    padding: 12px 22px;
    font-size: 13px;
}
.newsletter-note {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.15);
    margin-top: 10px;
}

/* ===== ACHIEVEMENTS BAR ===== */
.achievements-section {
    padding: 30px 0;
    background: rgba(12,12,12,0.3);
    border-top: 1px solid rgba(255,0,0,0.03);
    border-bottom: 1px solid rgba(255,0,0,0.03);
}
.achievements-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.achievement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.achievement-item:hover {
    transform: scale(1.08) translateY(-3px);
}
.achievement-item i {
    font-size: 1.6rem;
    color: var(--red);
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.achievement-item:hover i {
    opacity: 1;
    transform: scale(1.2) rotate(-10deg);
}
.achievement-info {
    display: flex;
    flex-direction: column;
}
.achievement-num {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}
.achievement-label {
    font-size: 0.65rem;
    color: var(--gray);
    opacity: 0.6;
}
.achievement-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.04);
    margin: 0 8px;
}

/* ===== CATEGORY SHOWCASE ===== */
.cat-showcase-section {
    padding: 60px 0;
}
.cat-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-top: 30px;
}
.cat-showcase-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,0,0,0.04);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    overflow: hidden;
}
.cat-showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,0,0,0.04), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cat-showcase-card:hover {
    transform: translateY(-10px) scale(1.04);
    border-color: rgba(255,0,0,0.15);
    box-shadow: 0 25px 50px rgba(255,0,0,0.1), 0 0 80px rgba(255,0,0,0.04);
}
.cat-showcase-card:hover::before { opacity: 1; }
.cat-showcase-card::after {
    content: '';
    position: absolute;
    top: -1px; left: 30%; right: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0;
    transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
}
.cat-showcase-card:hover::after { opacity: 0.6; left: 10%; right: 10%; }
.cat-showcase-card i {
    font-size: 2rem;
    color: var(--red);
    opacity: 0.3;
    margin-bottom: 12px;
    transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cat-showcase-card:hover i {
    opacity: 1;
    transform: scale(1.25) rotate(-5deg);
}
.cat-showcase-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}
.cat-showcase-card p {
    font-size: 0.7rem;
    color: var(--gray);
    opacity: 0.5;
}

/* ===== MAGNETIC BUTTON ===== */
.magnetic-btn {
    transition: transform 0.15s ease-out;
}

.header {
    animation: pageSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.3s;
}
@keyframes pageSlideIn {
    0% { opacity: 0; transform: translateY(-40px) scale(0.96); filter: blur(4px); }
    60% { transform: translateY(4px) scale(1.01); filter: blur(0); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.hero {
    animation: pageFadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.4s;
}
@keyframes pageFadeUp {
    0% { opacity: 0; transform: translateY(50px) scale(0.92); filter: blur(6px); }
    50% { transform: translateY(-5px) scale(1.01); filter: blur(0); }
     100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: rgba(10,10,10,0.5);
}
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,0,0,0.06);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(255,0,0,0.15);
}
.faq-item.active {
    border-color: rgba(255,0,0,0.25);
    background: rgba(255,0,0,0.03);
}
.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}
.faq-question span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s ease;
}
.faq-item.active .faq-question span {
    color: var(--red);
}
.faq-arrow {
    font-size: 14px;
    color: var(--gray);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--red);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer p {
    padding: 0 22px 18px;
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== RAINBOW GLOW BUTTONS ===== */
.hero-buttons .btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.hero-buttons .btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    z-index: -1;
    background: linear-gradient(45deg, #ff0000, #ff7700, #ffff00, #00ff00, #0077ff, #8b00ff, #ff0000);
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rainbowGlow 2.5s linear infinite;
}
.hero-buttons .btn:hover::before {
    opacity: 1;
}
.hero-buttons .btn::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    z-index: -1;
    background: inherit;
}
@keyframes rainbowGlow {
    0% { background-position: 0% 50%; filter: hue-rotate(0deg); }
    33% { background-position: 100% 50%; filter: hue-rotate(120deg); }
    66% { background-position: 0% 100%; filter: hue-rotate(240deg); }
    100% { background-position: 0% 50%; filter: hue-rotate(360deg); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

::selection { background: rgba(255, 0, 0, 0.3); color: var(--white); }

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 12px;
    background: rgba(17, 17, 17, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transform: translateX(120%) scale(0.8);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: auto;
    min-width: 280px;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 0, 0, 0.05);
    backdrop-filter: blur(20px);
}
.toast.toast-visible {
    transform: translateX(0) scale(1);
    opacity: 1;
}
.toast.toast-hiding {
    transform: translateX(80%) scale(0.9);
    opacity: 0;
}
.toast i { font-size: 20px; flex-shrink: 0; }
.toast-success i { color: #22c55e; }
.toast-error i { color: #ef4444; }
.toast-info i { color: #3b82f6; }
.toast-warning i { color: #f59e0b; }
.toast-success { border-color: rgba(34, 197, 94, 0.3); }
.toast-error { border-color: rgba(239, 68, 68, 0.3); }
.toast-info { border-color: rgba(59, 130, 246, 0.3); }
.toast-warning { border-color: rgba(245, 158, 11, 0.3); }

/* ===== SEARCH & FILTER TOOLBAR ===== */
.product-toolbar {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.toolbar-search {
    flex: 1;
    min-width: 200px;
    position: relative;
}
.toolbar-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 15px;
    pointer-events: none;
}
.toolbar-search input {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.toolbar-search input:focus {
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}
.toolbar-search input::placeholder { color: var(--gray); }
.toolbar-filters {
    display: flex;
    gap: 10px;
}
.toolbar-filters select {
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-size: 13px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 140px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23888'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.toolbar-filters select:focus {
    border-color: var(--red);
}
.toolbar-filters select option {
    background: #1a1a1a;
    color: var(--white);
}

/* ===== CATEGORY TABS ===== */
.category-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
}
.cat-tab {
    padding: 9px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.cat-tab:hover {
    color: var(--white);
    border-color: rgba(255, 0, 0, 0.2);
    background: rgba(255, 0, 0, 0.05);
}
.cat-tab.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 0 20px var(--red-glow);
}

/* ===== NO PRODUCTS EMPTY STATE ===== */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--gray);
}
.no-products i { font-size: 50px; margin-bottom: 20px; opacity: 0.3; }
.no-products p { font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.no-products span { font-size: 0.9rem; }

/* ===== USER BADGE ===== */
.user-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    cursor: default;
    transition: border-color 0.3s ease;
}
.user-badge:hover { border-color: rgba(255, 0, 0, 0.2); }
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--red);
    overflow: hidden;
    flex-shrink: 0;
}
.user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== FORGOT PASSWORD ===== */
.forgot-password {
    text-align: right;
    margin: -10px 0 18px;
    position: relative;
    z-index: 2;
}
.forgot-password a {
    color: var(--gray);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.forgot-password a:hover {
    color: var(--red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-center { flex-direction: column; gap: 25px; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .cart-sidebar { width: 100vw; right: -100vw; }
    .cart-sidebar.active { right: 0; }
    .product-toolbar { flex-direction: column; align-items: stretch; }
    .toolbar-filters { flex-direction: column; }
    .toolbar-filters select { width: 100%; }
    .category-tabs { flex-wrap: nowrap; padding-bottom: 10px; }
    .cat-tab { flex-shrink: 0; }
    .toast { min-width: auto; max-width: calc(100vw - 40px); }
    .user-badge { display: none !important; }
    .nav {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: rgba(10, 10, 10, 0.99);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 0, 0, 0.2);
    }
    .nav.active { left: 0; }
    .nav-link {
        width: 100%;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 0, 0, 0.08);
    }
    .header-right .social-link:not(:first-child) { display: none; }
    .header-clock { display: none; }
    .hero-title { font-size: 2.8rem; }
    .hero-title .highlight::after { display: none; }
    .section-title { font-size: 2rem; }
    .products-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .sale-title { font-size: 1.3rem; }
    .floating-discord { width: 50px; height: 50px; font-size: 22px; bottom: 20px; right: 20px; }
    .music-toggle { width: 42px; height: 42px; font-size: 17px; bottom: 80px; right: 20px; }
    .product-page-inner { grid-template-columns: 1fr; }
    .product-page-left { border-right: none; border-bottom: 1px solid rgba(255, 0, 0, 0.08); padding: 20px; }
    .product-page-right { padding: 20px; }
    .product-page-left .gallery-main { height: 220px; }
    .product-page-content { height: 96vh; margin: 2vh auto; border-radius: 16px; }
    .product-page-title { font-size: 1.4rem; }
    .pp-pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .login-box { padding: 35px 25px; }
    .product-pricing { flex-direction: column; }
    .product-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}

/* ===== CLOUDFLARE TURNSTILE OVERLAY ===== */
.cf-overlay {
    position: fixed; inset: 0; z-index: 99999;
    display: none; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    animation: cfFadeIn 0.4s ease;
}
@keyframes cfFadeIn { from { opacity: 0; } to { opacity: 1; } }
.cf-modal {
    width: 380px; max-width: 92vw;
    background: #0f0f1a;
    border: 1px solid rgba(243,128,32,0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(243,128,32,0.05);
    animation: cfSlideUp 0.4s ease;
}
@keyframes cfSlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cf-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cf-logo { display: flex; align-items: center; gap: 8px; }
.cf-logo-text { font-size: 15px; font-weight: 700; color: #f38020; letter-spacing: 0.3px; }
.cf-badge {
    font-size: 10px; font-weight: 600; color: #f38020;
    padding: 3px 10px; border-radius: 20px;
    background: rgba(243,128,32,0.1);
    border: 1px solid rgba(243,128,32,0.15);
    text-transform: uppercase; letter-spacing: 1px;
}
.cf-body { padding: 28px 24px 24px; text-align: center; }
.cf-shield { margin-bottom: 14px; }
.cf-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 17px; font-weight: 600; color: #e0e0e0;
    margin-bottom: 6px;
}
.cf-desc { font-size: 13px; color: #888; line-height: 1.5; margin-bottom: 24px; }
.cf-turnstile-wrap {
    display: flex; justify-content: center; min-height: 70px;
    margin: 10px 0;
}
.cf-turnstile-wrap iframe { border-radius: 6px !important; }
.cf-footer-text {
    margin-top: 18px; font-size: 11px; color: #555;
    min-height: 16px;
}
.cf-overlay.fade-out { opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
