:root {
    --bg-color: #000000;
    --bg-card: #111111;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    --accent-color: #FFD700;
    --accent-glow: rgba(255, 215, 0, 0.4);
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-accent {
    color: var(--accent-color);
}

.text-outline {
    -webkit-text-stroke: 2px var(--accent-color);
    color: transparent;
}

/* Helper Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.9rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn--primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn--outline {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn--outline:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn--full {
    width: 100%;
    margin-top: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo--sm {
    font-size: 1.2rem;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.icon-btn:hover {
    color: var(--accent-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.mobile-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.95));
    z-index: -1;
}

.hero__title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-gray);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section__subtitle {
    color: var(--text-gray);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.product-card__image {
    aspect-ratio: 1 / 1;
    width: 100%;
    background-color: #222;
    position: relative;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-card__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
}

.product-card:hover .product-card__image::before {
    opacity: 1;
}

.product-card__info {
    padding: 1.5rem;
}

.product-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-card__desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 40px;
}

.product-card__price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

/* Feature Section */
.feature__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature--dark {
    background-color: #050505;
}

.feature__container--reverse {
    direction: rtl;
}

.feature__container--reverse .feature__content {
    direction: ltr;
}

.feature__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature__text {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature__list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature__image {
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature__image:hover img {
    transform: scale(1.05);
}

/* Newsletter Box */
.newsletter__box {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    padding: 4rem;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.newsletter__box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    filter: blur(100px);
    opacity: 0.1;
}

.newsletter__title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter__text {
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter__form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter__form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
}

.newsletter__form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__text {
    color: var(--text-gray);
    margin: 1rem 0;
    max-width: 250px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer__heading {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer__links li {
    margin-bottom: 0.8rem;
}

.footer__links a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer__bottom {
    background-color: #000000;
    padding: 1.5rem 0;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* Modal */
.modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.modal__content {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    width: 350px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal__title {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.modal__content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modal__form input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    margin-bottom: 0.5rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .header__container {
        padding: 0 1.5rem;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #111;
        padding: 2rem;
        transform: translateY(-100%);
        transition: var(--transition);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
    }

    .mobile-toggle {
        display: block;
    }

    .hero__title {
        font-size: 3rem;
    }

    .feature__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .grid-footer {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter__form {
        flex-direction: column;
    }
}