@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg-color: #faf9f6; /* Off-white luxury background */
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --accent-color: #d4af37; /* Very subtle gold accent if needed */
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, .brand-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- Header & Nav --- */
header {
    background-color: #ffffff;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-logo {
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

nav a:hover {
    color: var(--text-primary);
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 6rem 1rem;
    background-color: #ffffff;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* --- Layouts & Grids --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    display: block;
    height: 400px;
    background-color: #eaeaea;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem;
    color: #ffffff;
    text-align: center;
}

.category-overlay h2 {
    font-size: 1.8rem;
}

/* --- Product Grid --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 3rem 2rem;
}

.product-card {
    text-align: center;
    background: #ffffff;
    padding-bottom: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f4f4f4;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .image-wrapper img {
    transform: scale(1.03);
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-sizes {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.btn-whatsapp {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: var(--text-primary);
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--text-primary);
}

.btn-whatsapp:hover {
    background-color: #ffffff;
    color: var(--text-primary);
}

/* --- Footer --- */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 4rem 1rem;
    margin-top: auto;
}

footer p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

footer .social-links {
    margin-bottom: 1.5rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    nav ul {
        gap: 1rem;
    }
}