input{
	outline: none !important;
}
textarea{
	resize: none;
}
option{
	background: #000;
}
/* css/style.css */

:root {
    --primary: #ff006e;
    --secondary: #8338ec;
    --accent: #3a86ff;
    --dark: #0a0a0f;
    --darker: #050508;
    --light: #ffffff;
    --gray: #8b8b9a;
    --gradient-1: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    --gradient-2: linear-gradient(135deg, #3a86ff 0%, #8338ec 100%);
    --neon-glow: 0 0 20px rgba(255, 0, 110, 0.5), 0 0 40px rgba(255, 0, 110, 0.3);
    --neon-blue: 0 0 20px rgba(58, 134, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;

}

h1, h2, .brand-text, .section-title, .hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}
.container{
	max-width: 1230px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.anime-eye {
    width: 100px;
    height: 60px;
    margin: 0 auto 30px;
    position: relative;
}

.eye-outer {
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 50%;
    position: relative;
    animation: eyeBlink 3s infinite;
}

.eye-inner {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: eyeMove 2s infinite;
}

.eye-shine {
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 20%;
    right: 25%;
    animation: eyeMove 2s infinite;
}

.preloader-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: textGlow 2s ease-in-out infinite;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-1);
    width: 0%;
    animation: loading 2s ease forwards;
}

@keyframes eyeBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes eyeMove {
    0%, 100% { transform: translate(-50%, -50%) translateX(0); }
    25% { transform: translate(-50%, -50%) translateX(-10px); }
    75% { transform: translate(-50%, -50%) translateX(10px); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px var(--primary); }
    50% { text-shadow: 0 0 20px var(--primary), 0 0 30px var(--secondary); }
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.1s ease, background 0.2s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(255, 0, 110, 0.2);
}

.cursor-trail {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.brand-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--light);
    letter-spacing: 2px;
    line-height: 1;
}

.brand-accent {
    color: var(--primary);
}

.brand-jp {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 3px;
    margin-top: 2px;
}

.nav-link {
    color: var(--light) !important;
    font-size: 14px;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-1);
    padding: 10px 25px !important;
    border-radius: 30px;
    margin-left: 15px;
}

.nav-cta::after {
    display: none;
}

/* Hamburger Menu */
.hamburger-lines {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: block;
}

.line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--light);
    position: absolute;
    transition: all 0.3s ease;
}

.line-1 { top: 0; }
.line-2 { top: 50%; transform: translateY(-50%); }
.line-3 { bottom: 0; }

.navbar-toggler[aria-expanded="true"] .line-1 {
    transform: rotate(45deg);
    top: 50%;
}

.navbar-toggler[aria-expanded="true"] .line-2 {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .line-3 {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.98);
    z-index: 9990;
    display: flex;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    padding-left: 0;
}

.mobile-nav-link {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: var(--light);
    text-decoration: none;
    padding: 15px 0;
    position: relative;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav-link:nth-child(7) { transition-delay: 0.4s; }

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-menu-decoration {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.neon-circle {
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: var(--neon-glow);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(131, 56, 236, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.9) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-text {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 700;
}

.badge-line {
    width: 50px;
    height: 1px;
    background: var(--gradient-1);
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.title-line {
    display: block;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-accent {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--neon-glow);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--neon-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--light);
    color: var(--light);
}

.btn-outline:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: var(--neon-glow);
    animation: floatItem 3s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1s;
    background: var(--gradient-2);
}

.float-3 {
    top: 50%;
    right: -5%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #ff006e 0%, #3a86ff 100%);
}

@keyframes floatItem {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--gray);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.scroll-indicator p {
    font-size: 10px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Marquee Section */
.marquee-section {
    background: var(--darker);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--light);
    padding: 0 30px;
}

.marquee-dot {
    color: var(--primary);
    font-size: 10px;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary);
}

.decoration-line {
    width: 50px;
    height: 1px;
    background: var(--gradient-1);
}

/* Featured Section */
.featured-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 110, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.product-badge.hot {
    background: #ff4d00;
}

.product-badge.sale {
    background: var(--secondary);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: var(--light);
    color: var(--dark);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    background: var(--primary);
    color: white;
}

.btn-wishlist {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--gradient-1);
    border-color: transparent;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: var(--gray);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 20px;
    border-radius: 5px;
}

/* Collections Section */
.collections-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    box-shadow: var(--neon-glow);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.collection-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;

}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;

}

.collection-card:hover img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(10, 10, 15, 0.95));
    transition: all 0.3s ease;
}

.collection-overlay p {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.collection-overlay span {
    font-size: 14px;
    color: var(--gray);
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('https://thumbs.dreamstime.com/b/empty-cyberpunk-street-cyber-night-city-poster-anime-art-glowing-lights-buildings-hanging-wires-dark-urban-sidewalk-retro-331702804.jpg') center/cover fixed;
    z-index: -1;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.7);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.parallax-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.parallax-title {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 20px;
    text-shadow: var(--neon-glow);
}

.parallax-text {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-parallax {
    background: var(--gradient-1);
    color: white;
    padding: 18px 50px;
    font-size: 16px;
    box-shadow: var(--neon-glow);
}

/* Figures Section */
.figures-section {
    background: var(--darker);
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.figure-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.figure-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 110, 0.3);
}

.figure-card.large {
    grid-column: span 2;
    grid-row: span 1;
}

.figure-card.wide {
    grid-column: span 2;
}

.figure-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    max-height: 200px;
    width: 100%;
}

.figure-card.large .figure-image,
.figure-card.wide .figure-image {
    aspect-ratio: 16/10;
}

.figure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.figure-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.figure-card:hover .figure-glow {
    opacity: 1;
}

.figure-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.figure-info {
    padding: 20px;
}

.figure-series {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.figure-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.figure-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
}

.btn-figure {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-figure:hover {
    background: var(--gradient-1);
    border-color: transparent;
}

/* Testimonials */
.testimonials-section {
    background: var(--dark);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--primary);
    box-shadow: var(--neon-glow);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    color: #ffd700;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--primary);
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

.community-text {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.community-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: var(--neon-glow);
}

.feature-text p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text span {
    font-size: 14px;
    color: var(--gray);
}

.newsletter-form .input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: var(--light);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.btn-subscribe {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    
    box-shadow: var(--neon-glow);
}

.community-visual {
    position: relative;
    padding: 40px;
}

.community-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.community-image-main img {
    width: 100%;
    height: auto;
}

.community-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    left: 20px;
    animation-delay: 1.5s;
}

.community-floating-card i {
    color: var(--primary);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Contact Section */
.contact-section {
    background: var(--dark);
}

.contact-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
}

.contact-item span {
    font-size: 16px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-floating {
    position: relative;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 15px;
    padding: 20px;
    height: auto;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 110, 0.25);
    color: var(--light);
}

.form-floating label {
    color: var(--gray);
    padding: 20px;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary);
    transform: scale(0.85) translateY(-1.5rem) translateX(0.15rem);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-1);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--neon-glow);
    margin-top: 10px;
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-brand .brand-text {
    font-size: 28px;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-payment {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: var(--gray);
}

.footer-links p {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--light);
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

.footer-made i {
    color: var(--primary);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Modal Styles */
.custom-modal .modal-content {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--light);
}

.custom-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto;
    box-shadow: var(--neon-glow);
}

.custom-modal .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    opacity: 1;
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin: 20px 0 10px;
}

.modal-text {
    color: var(--gray);
    margin-bottom: 20px;
}

.btn-modal {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
}

/* Quick View Modal */
.quick-view-image {
    border-radius: 15px;
    overflow: hidden;
}

.quick-view-image img {
    width: 100%;
    height: auto;
}

.quick-view-category {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.quick-view-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.quick-view-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.quick-view-desc {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.quick-view-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 18px;
    
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.quantity-selector input {
    width: 50px;
    background: transparent;
    border: none;
    color: var(--light);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.btn-add-cart-lg {
    flex: 1;
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: var(--neon-glow);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 60px;
    }
    .hero-subtitle{
    	max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .figures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .figure-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .countdown-container {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .custom-cursor,
    .cursor-trail {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .btn {
        cursor: pointer;
    }
    
    .figures-grid {
        grid-template-columns: 1fr;
    }
    
    .figure-card.large,
    .figure-card.wide {
        grid-column: span 1;
    }
    
    .parallax-section {
        height: auto;
        padding: 80px 0;
    }
    
    .countdown-container {
        flex-wrap: wrap;
    }
    
    .contact-form-wrapper {
        padding: 30px;
        margin-top: 40px;
    }
    
    .community-floating-card {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form button{
    	max-width: 120px;
    }
}
@media (max-height: 660px){
	.mobile-nav-link{
		font-size: 13px;
		padding: 5px 0;
	}
}

/* Selection Color */
::selection {
    background: var(--primary);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}