.pg-0cf1a81b-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    font-family: sans-serif;
}
.pg-0cf1a81b-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pg-0cf1a81b-item-top {
    flex-grow: 1;
}
.pg-0cf1a81b-item-bottom {
    margin-top: auto;
}
.pg-0cf1a81b-image-wrap {
    margin-bottom: 15px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pg-0cf1a81b-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.pg-0cf1a81b-title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.pg-0cf1a81b-title a {
    color: #333;
    text-decoration: none;
}
.pg-0cf1a81b-title a:hover {
    opacity: 0.8;
}
.pg-0cf1a81b-price {
    color: #777;
    margin-bottom: 15px;
}
.pg-0cf1a81b-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}
.pg-0cf1a81b-qty {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 8px;
}
.pg-0cf1a81b-add-to-cart {
    background-color: #b58169;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}
.pg-0cf1a81b-add-to-cart:hover {
    opacity: 0.9;
}
.pg-0cf1a81b-out-of-stock {
    color: #d00;
    font-weight: bold;
}
.pg-0cf1a81b-swatches {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px auto 20px auto;
    max-width: 220px; /* Restricts width so many swatches flow into 2 lines */
}
.pg-0cf1a81b-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5; /* Fallback */
}
.pg-0cf1a81b-swatch:hover {
    border-color: #b58169;
}
.pg-0cf1a81b-swatch.active {
    border-color: #333;
    box-shadow: 0 0 0 1px #333;
}