/* css/style.css */
@import url('https://fonts.googleapis.css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-card: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent: #e2e2e2;
    --primary-gradient: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    --hover-bg: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.text-muted {
    color: var(--text-muted);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-card);
}

.nav-brand img {
    height: 40px;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8rem 5% 4rem;
    min-height: auto;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1100px;
    margin-bottom: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-card);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: cover;
    display: block;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-main);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn:hover {
    background: transparent;
    color: var(--text-main);
    border-color: var(--text-main);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-card);
}

.btn-outline:hover {
    background: var(--hover-bg);
    border-color: var(--text-main);
}

/* Features Bar */
.features-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 5%;
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
    flex-wrap: wrap;
    background: var(--bg-card);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* Section Common */
.section-padding {
    padding: 5rem 5%;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
}

.product-footer .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 2rem 0;
    scrollbar-width: none; /* Firefox */
}

.reviews-scroll::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.review-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
}

.review-card video {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Warranty Banner */
.warranty-banner {
    margin: 5rem 5%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.warranty-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Footer */
.footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border-card);
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-content img {
    height: 30px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-main);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none;
    }
    .features-bar {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}
