.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.gallery-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.gallery-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.gallery-item a {
    display: block;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}
.product-image {
    text-align: center;
    margin: 20px 0;
}
.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.back-link {
    margin-bottom: 15px;
}
.back-link a {
    color: #1bb3e9;
    text-decoration: none;
}
.back-link a:hover {
    text-decoration: underline;
}
.product-info {
    max-width: 700px;
    margin: 20px auto;
    color: #666;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
