/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Promotional Banner */
.promo-banner {
    background-color: #92400e;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.promo-banner .underline {
    text-decoration: underline;
    cursor: pointer;
}

/* Navigation */
.navbar {
    background-color: white;
    border-bottom: 1px solid #e7e5e4;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #57534e;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #92400e;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #1c1917;
    text-decoration: none;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #57534e;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.icon-btn:hover {
    color: #92400e;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #92400e;
    color: white;
    font-size: 0.75rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: inherit;
}

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

.btn-primary:hover {
    background-color: #92400e;
}

.btn-outline {
    background-color: transparent;
    color: #1c1917;
    border: 1px solid #1c1917;
}

.btn-outline:hover {
    background-color: #1c1917;
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-back {
    color: #57534e;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.btn-back:hover {
    color: #92400e;
}

/* Placeholder Images */
.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    min-height: 200px;
}

.placeholder-content {
    text-align: center;
    color: #a8a29e;
}

.placeholder-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.placeholder-text {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.placeholder-size {
    font-size: 0.75rem;
}

.product-placeholder {
    background: linear-gradient(135deg, #f5f5f4, #e7e5e4);
}

.model-placeholder {
    background: linear-gradient(135deg, #fffbeb, #f5f5f4);
}

.lifestyle-placeholder {
    background: linear-gradient(135deg, #fafaf9, #fffbeb);
}

.brand-placeholder {
    background: linear-gradient(135deg, #fef3c7, #e7e5e4);
}

/* Hero Section */
.hero {
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.hero-left {
    position: relative;
    background-color: #f5f5f4;
}

.hero-left .placeholder-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    min-height: 80vh;
}

.hero-right {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 4rem;
}

.hero-content {
    max-width: 28rem;
    text-align: center;
}

.hero-product-image {
    margin-bottom: 2rem;
}

.hero-product-image .placeholder-image {
    width: 100%;
    max-width: 20rem;
    height: 15rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    color: #1c1917;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
}

.hero-description {
    color: #57534e;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Featured Section */
.featured-section {
    padding: 5rem 0;
    background-color: #f5f5f4;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1c1917;
    margin-bottom: 1.5rem;
}

.featured-content p {
    font-size: 1.125rem;
    color: #57534e;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.featured-image .placeholder-image {
    width: 100%;
    height: 25rem;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: white;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 300;
    color: #1c1917;
    margin-bottom: 1rem;
}

.section-description {
    color: #57534e;
    max-width: 32rem;
    margin: 0 auto;
}

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

.product-card {
    background-color: transparent;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-0.25rem);
}

.product-image {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 0.5rem;
}

.product-image .placeholder-image {
    width: 100%;
    aspect-ratio: 1;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 0;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1c1917;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #57534e;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1c1917;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background-color: #f5f5f4;
}

.newsletter-content {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #1c1917;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #57534e;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d6d3d1;
    background-color: white;
    color: #1c1917;
    font-size: 0.875rem;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
    border-color: #1c1917;
}

/* Footer */
.footer {
    background-color: white;
    border-top: 1px solid #e7e5e4;
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #1c1917;
}

.footer-tagline {
    color: #57534e;
    font-size: 0.875rem;
}

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

.footer-title {
    font-weight: 500;
    color: #1c1917;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-link {
    color: #57534e;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1c1917;
}

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

.footer-bottom p {
    color: #78716c;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-left {
        display: none;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .logo {
        position: static;
        transform: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-right {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-right {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
}