:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #c5a059; /* Gold accent */
    --secondary-color: #1a1a1a;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background 0.3s ease;
    mix-blend-mode: difference;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    z-index: 100;
    mix-blend-mode: difference;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--text-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: var(--transition);
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

.cart-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-count {
    background: var(--accent-color);
    color: black;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}

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

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* Products Section */
.products-section {
    padding: 10rem 4rem;
    background: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    cursor: pointer;
    transition: var(--transition);
}

.product-image-container {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--secondary-color);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.add-to-cart-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(255,255,255,0.9);
    color: black;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .add-to-cart-overlay {
    transform: translateY(0);
}

.product-info {
    margin-top: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 300;
    opacity: 0.7;
}

/* Tech Highlight */
.tech-highlight {
    padding: 10rem 4rem;
    background: var(--secondary-color);
    position: relative;
}

.tech-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tech-label {
    display: block;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.tech-highlight h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.tech-highlight p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

.tech-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-color);
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Footer */
.footer {
    padding: 5rem 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

.footer p {
    font-size: 0.8rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

@media (max-width: 768px) {
    .navbar { padding: 1.5rem; }
    .nav-links { display: none; }
    .products-section { padding: 5rem 1.5rem; }
    .tech-stats { flex-direction: column; gap: 2rem; }
}
