body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
header { background: #0b44a7; color: white; padding: 20px; text-align: center; }
.hero { background: #186af5; color: white; padding: 40px 20px; text-align: center; }
.btn { background: white; color: #cc5500; padding: 10px 20px; text-decoration: none; border-radius: 5px; }
.features, #catalog { padding: 20px; }
.catalog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
}
.catalog-grid .item {
    width: 250px; /* 200px + 15% = 230px */
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
	position: relative;
}
.catalog-grid .item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* 👇 Zoom the image only */
.catalog-grid .item img {
    height: 180px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 6px;
    background: #f9f9f9;
    transition: transform 0.3s ease;
}

.catalog-grid .item:hover img {
    transform: scale(1.15);
}
.catalog-grid img {
    height: 180px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 6px;
    background: #f9f9f9;
}
.catalog-grid .item p {
    margin: 0;
    font-weight: bold;
}
.product-detail img.zoom-on-hover:hover {
    transform: scale(2);
    z-index: 10;
    position: relative;
}
footer { background: #333; color: white; text-align: center; padding: 10px; margin-top: 40px; }
