* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* ================= PAGE WRAPPER ================= */
.gallery--wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* ================= TITLE ================= */
.gallery--page-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #111;
}

/* ================= CATEGORY NAV ================= */
.gallery--category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.gallery--category-nav a {
    padding: 8px 14px;
    border-radius: 20px;
    background: #f3f3f3;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.gallery--category-nav a:hover {
    background: #111;
    color: #fff;
}

.gallery--category-nav a.active {
    background: #ff4d00;
    color: #fff;
}

/* ================= PRODUCT GRID ================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 10px;
}

/* ================= PRODUCT CARD ================= */
.gallery--item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery--item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ================= IMAGE BOX ================= */
.gallery--img-box {
    width: 100%;
aspect-ratio: 1 / 1;   /* 👈 forces square */
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
}

.gallery--img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
 display: block;
    transition: 0.4s ease;
}

.gallery--item:hover .gallery--img-box img {
    transform: scale(1.08);
}

/* ================= PRODUCT NAME ================= */
.gallery--item-name {
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #333;
    text-decoration: none;
}

/* ================= BUTTON ================= */
.gallery--btn {
    margin-bottom: 12px;
    padding: 7px 14px;
    background: #111;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}

.gallery--btn:hover {
    background: #ff4d00;
}

/* ================= FOOTER ================= */
.gallery--footer {
    text-align: center;
    padding: 30px;
    color: #777;
    font-size: 13px;
}

/* ================= LOADING ANIMATION (OPTIONAL) ================= */
.loading {
    text-align: center;
    padding: 20px;
    color: #777;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .gallery--page-title {
        font-size: 22px;
    }

    .gallery--img-box {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 12px;
    }
}