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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    color: #111;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: white;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
}

nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

nav a:hover {
    color: #666;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/hero-bg.JPG.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    font-weight: 900;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

button {
    background: white;
    color: black;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 4px;
}

button:hover {
    background: #ddd;
    transform: scale(0.98);
}

/* About Us Section */
.about-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.about-story p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Shop Section */
.products {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.products h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.product {
    background: white;
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product h3 {
    margin: 0.5rem 0;
}

.product p {
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Image Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.slider-image {
    width: 100%;
    display: block;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(0,0,0,0.9);
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.swipe-hint {
    font-size: 0.7rem;
    color: #888;
    margin-top: 0.5rem;
    text-align: center;
}

/* Lookbook Gallery */
.lookbook {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.lookbook h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.lookbook-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.lookbook-item img:hover {
    transform: scale(1.03);
}

/* Contact Section */
.contact-section {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.contact-info a {
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
}

.contact-info a:hover {
    border-bottom-color: #111;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #111;
    color: #aaa;
    margin-top: 3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    nav a {
        margin: 0 1rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .lookbook-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}
