/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

/* Header */
.top-banner {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #666;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-icons i {
    font-size: 18px;
    color: #2c2c2c;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-icons i:hover {
    color: #666;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2c2c2c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 20px;
    height: 1px;
    background: #2c2c2c;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23d4a574" width="1200" height="600"/><g opacity="0.3"><circle cx="100" cy="100" r="20" fill="%23fff"/><circle cx="300" cy="150" r="15" fill="%23fff"/><circle cx="500" cy="80" r="25" fill="%23fff"/><circle cx="700" cy="200" r="18" fill="%23fff"/><circle cx="900" cy="120" r="22" fill="%23fff"/><circle cx="1100" cy="180" r="16" fill="%23fff"/></g></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Content below hero */
.hero-content-below {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content-below {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.hero-content-below h1 {
    font-size: 48px;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content-below .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-content-below .description {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.hero-content-below .cta-button {
    display: inline-block;
    background: #2c2c2c;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #2c2c2c;
    margin-top: 20px;
}

.hero-content-below .cta-button:hover {
    background: transparent;
    color: #2c2c2c;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #2c2c2c;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Products Section */
.products {
    padding: 80px 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid #ddd;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #2c2c2c;
}

.sort-dropdown {
    position: relative;
}

.sort-dropdown select {
    background: none;
    border: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2c2c2c;
    cursor: pointer;
    padding: 12px 20px;
    border: 1px solid #ddd;
    appearance: none;
    padding-right: 40px;
}

.sort-dropdown::after {
    content: '⌄';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #2c2c2c;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 400px;
    background: #f5f5f5;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 80px;
    color: #ccc;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 44, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-add {
    background: white;
    color: #2c2c2c;
    border: none;
    padding: 12px 25px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-add:hover {
    background: #f5f5f5;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wishlist-btn:hover {
    background: #2c2c2c;
    color: white;
}

.product-info {
    text-align: left;
}

.product-info h3 {
    font-size: 14px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

/* Features Section */
.features {
    background: #f8f8f8;
    padding: 60px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.feature-card {
    text-align: center;
    padding: 0 20px;
}

.feature-card i {
    font-size: 32px;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 24px;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.newsletter p {
    font-size: 13px;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-right: none;
    font-size: 13px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: #2c2c2c;
}

.newsletter-form button {
    background: #2c2c2c;
    color: white;
    border: 1px solid #2c2c2c;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #1a1a1a;
}

/* Footer */
.footer {
    background: #f8f8f8;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 12px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul li a:hover {
    color: #2c2c2c;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: #2c2c2c;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #666;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    padding: 40px 30px;
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1999;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2c2c2c;
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #2c2c2c;
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ccc;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 12px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-price {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-remove:hover {
    color: #2c2c2c;
}

.cart-total {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-total-row span {
    font-size: 13px;
    color: #2c2c2c;
}

.cart-total-row.total {
    font-weight: 500;
    font-size: 14px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.checkout-btn {
    width: 100%;
    background: #2c2c2c;
    color: white;
    border: none;
    padding: 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: #1a1a1a;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    color: #999;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        gap: 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .container,
    .products {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .products-header {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: 0;
        border: 1px solid #ddd;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .nav-icons {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero .subtitle {
        font-size: 14px;
    }
    
    .hero .description {
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 0 10px;
    }
    
    .features-grid {
        gap: 40px;
    }
}