* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f4f4;
}

/* NAV */
nav {
    background: #111;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 26px;
    letter-spacing: 3px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #ccc;
    text-decoration: none;
}

nav a:hover {
    color: #fff;
}

/* HERO */
.hero {
    height: 90vh;
    background-image: url("https://images.unsplash.com/photo-1548036328-c9fa89d128fa");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    text-align: center;
    color: #fff;
}

.hero-text h1 {
    font-size: 60px;
    letter-spacing: 4px;
}

/* PAGE */
.page {
    padding: 80px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.page h1 {
    margin-bottom: 20px;
}

/* COLLECTION */
.collection {
    padding: 60px 20px;
}

.collection h1 {
    text-align: center;
    margin-bottom: 40px;
}

.bag-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.bag-card {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.bag-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.bag-card h3 {
    padding: 15px;
}

/* FOOTER */
footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px;
}
