body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 0;
}
header {
    background: #7a7d8a;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 2px;
}
h1 {
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #e0e0e0;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}
.bag-card {
    background: #fff;
    border-radius: 8px; /* reduced */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
}
.bag-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.bag-card img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 8px; /* reduced */
    margin-bottom: 1rem;
}
.bag-desc {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}
.popup-overlay img {
    border-radius: 8px; /* slight border radius for pop-up */
}
.footer {
    background: #7a7d8a;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
    margin-top: 2rem;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
    position: relative;
    width: 100%;
    font-family: 'Inter', sans-serif;
}
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.footer-content span {
    font-weight: 500;
    letter-spacing: 1px;
}
@media (max-width: 700px) {
    .gallery {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    .bag-card img {
        width: 100%;
        height: auto;
    }
}
