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

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header Styles */
header {
    background: #000000;
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e5e5e5;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: white;
}

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

.nav-menu a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 200;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 300;
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 1px solid white;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: white;
    color: #000000;
}

/* Filter Section */
.filters {
    background: #f8f8f8;
    padding: 3rem 0;
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
}

.filter-controls {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 400;
    color: #666666;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.filter-group select, .filter-group input {
    padding: 10px 15px;
    border: 1px solid #e5e5e5;
    background: white;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}

.filter-group select:focus, .filter-group input:focus {
    outline: none;
    border-color: #000000;
}

/* Product Grid */
.products-section {
    padding: 4rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 200;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: #000000;
}

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

.product-card {
    background: white;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 280px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(20%);
}

.product-card:hover .product-image img {
    transform: scale(1.02);
    filter: grayscale(0%);
}

.product-image::before {
    content: '';
    display: none;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #000000;
    color: white;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    line-height: 1.4;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    font-size: 0.8rem;
    color: #666666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.product-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #cccccc;
    font-weight: normal;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-weight: 300;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: #000000;
    color: white;
}

.btn-primary:hover {
    background: #333333;
}

.btn-secondary {
    background: transparent;
    color: #000000;
    border: 1px solid #e5e5e5;
}

.btn-secondary:hover {
    background: #f8f8f8;
}

/* Stats Section */
.stats {
    background: #f8f8f8;
    color: #1a1a1a;
    padding: 4rem 0;
    margin: 0;
}

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

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 200;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 4rem 0 2rem;
    text-align: left;
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p {
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .filter-controls {
        flex-direction: column;
        gap: 1rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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