/* ---------------- ETHNIC PAGE ---------------- */

body{
background:#f0ddd1;
    color:#3d3d3d;
font-family:Georgia, serif;
}

.category-header{

```
text-align:center;

padding:30px 20px;
```

}

.small-logo{

width:180px;

display:block;

margin:0 auto 70px auto;

}
/* Center Page Content */

.category-header{

text-align:center;

padding:20px 20px 10px;

}
.category-title{

```
margin-top:15px;

letter-spacing:3px;

font-size:24px;

color:#4a3428;
```

}

/* PRODUCT GRID */

.gallery{

width:80%;

max-width:1000px;

margin:40px auto 80px;

display:grid;

grid-template-columns:repeat(2, 1fr);

gap:50px;

justify-content:center;

}

.product-card{

    width:100%;

    aspect-ratio:3/4;

}

.product-card img{

width:100%;

height:300px;

object-fit:cover;

display:block;

}
.product-card:hover{

```
transform:translateY(-5px);
```

}

.product-card img{

    width:100%;

    height:450px;

    object-fit:cover;

    display:block;

.product-info{

```
padding:18px;

text-align:center;
```

}

.product-name{

```
font-size:18px;

color:#4a3428;

letter-spacing:1px;
```

}

.product-price{

```
margin-top:8px;

color:#8b4b4b;

font-size:16px;
```

}

/* MOBILE */

@media(max-width:768px){

```
.gallery{

    grid-template-columns:1fr;

}

.product-card img{

    height:400px;

}
```

}
