/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    overflow-x: hidden;
    background: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff 0%, #090979 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff 0%, #090979 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav {
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
}

.btn-nav:not(.btn-register) {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-nav:not(.btn-register):hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff6b35;
}

.btn-register {
    background: linear-gradient(45deg, #00d4ff 0%, #090979 100%);
    border: none;
}

.btn-register:hover {
    background: linear-gradient(45deg, #090979 0%, #00d4ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('resources/apexbanner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(9, 9, 121, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff 0%, #090979 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff 0%, #090979 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
    background: linear-gradient(45deg, #090979 0%, #00d4ff 100%);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff 0%, #090979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #999;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #050505;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00d4ff 0%, #090979 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #0f0f0f;
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

.product-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.product-badge.discount {
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.product-header {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-header i {
    font-size: 1.8rem;
    color: #00d4ff;
}

.product-header h3 {
    font-size: 1.4rem;
    color: #00d4ff;
    font-weight: 600;
    margin: 0;
}

.product-subtitle {
    color: #999;
    font-size: 0.95rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.product-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-old {
    font-size: 1.2rem;
    color: #666;
    text-decoration: line-through;
}

.price-new {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff 0%, #090979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-stock {
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid #00d4ff;
}

.stock-label {
    color: #999;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.stock-value {
    color: #00d4ff;
    font-weight: 600;
    font-size: 1rem;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #050505 0%, #090979 50%, #050505 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff 0%, #090979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Discord Section */
.discord-section {
    padding: 100px 0;
    background: #5865F2;
    color: #fff;
    text-align: center;
}

.discord-content {
    max-width: 700px;
    margin: 0 auto;
}

.discord-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.discord-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.discord-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.discord-section .btn-primary {
    background: #fff;
    color: #5865F2;
}

.discord-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #000;
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4), 0 0 30px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6), inset 0 0 15px rgba(0, 212, 255, 0.2);
    flex-shrink: 0;
    position: relative;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.contact-icon i {
    font-size: 1.8rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.contact-icon.shopier-icon {
    position: relative;
}

.contact-icon.shopier-icon .fa-shopping-bag {
    font-size: 1.6rem;
}

.contact-icon.shopier-icon .fa-lock {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.9rem;
    background: rgba(0, 212, 255, 0.3);
    padding: 3px;
    border-radius: 3px;
    color: #00d4ff;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.contact-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #00d4ff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.contact-details p {
    color: #aaa;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.contact-details a:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    transform: translateX(3px);
}

.contact-cta {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-cta h3 {
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #00d4ff;
}

.footer-section p {
    color: #999;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

.footer-powered {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-actions {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(45deg, #00d4ff 0%, #090979 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Product Detail Page Styles */
.product-detail {
    padding: 120px 0 100px;
    background: #1a1625;
    color: #fff;
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #999;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.product-detail-image {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.product-image-placeholder:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.product-image-placeholder i {
    font-size: 5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.product-image-placeholder p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #00d4ff 0%, #090979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-rating i {
    color: #ffd700;
    font-size: 1.1rem;
}

.product-rating span {
    color: #999;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.product-detail-price .price-old {
    font-size: 1.5rem;
    color: #666;
    text-decoration: line-through;
}

.product-detail-price .price-new {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff 0%, #090979 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discount-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.product-description {
    margin-bottom: 2rem;
}

.product-description h3 {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.product-description p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-description h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ccc;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.product-features li i {
    color: #00d4ff;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.product-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.info-item span {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design for Product Detail */
@media (max-width: 968px) {
    .product-detail-content {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        position: relative;
        top: 0;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .product-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-detail-info h1 {
        font-size: 2rem;
    }

    .product-detail-price {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-detail-price .price-new {
        font-size: 2rem;
    }
}

/* Category Selection Styles */
.product-categories {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.category-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-option {
    cursor: pointer;
    display: block;
}

.category-option input[type="radio"] {
    display: none;
}

.category-card {
    padding: 2rem 1.5rem;
    background: rgba(20, 20, 30, 0.8);
    border: 2px solid rgba(100, 100, 120, 0.3);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.category-option input[type="radio"]:checked+.category-card {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.category-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
}

.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-family: 'Rajdhani', sans-serif;
}

.category-price-old {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
}

.category-price-new {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
    font-family: 'Orbitron', sans-serif;
}

.product-subtitle-detail {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .category-options {
        grid-template-columns: 1fr;
    }
}

/* Fresh Products Section */
.fresh-products {
    padding: 100px 0;
    background: #0f0f0f;
    color: #fff;
}

.fresh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fresh-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.fresh-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

.fresh-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fresh-header i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.fresh-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.fresh-price {
    margin-bottom: 1.5rem;
}

.fresh-price .price-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    display: block;
    margin-bottom: 0.5rem;
}

.fresh-price small {
    color: #999;
    font-size: 1rem;
}

.fresh-card .btn {
    width: 100%;
    justify-content: center;
}

/* Hover Link Bottom */
.hover-link-container {
    padding: 20px 0;
    text-align: center;
    background: #000;
}

.hoover-link {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.footer:hover+.hover-link-container .hoover-link,
.hover-link-container:hover .hoover-link {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.hoover-link a {
    color: #00d4ff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    background: rgba(0, 212, 255, 0.05);
}

.hoover-link a:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}