/* Kingprint Products Grid */
:root { --kp-red:#e30613; --kp-yellow:#ffd100; --kp-black:#000; --kp-white:#fff; }

.kp-products { padding: 64px 16px; background: #fff; }
.kp-products__container { max-width: 1140px; margin: 0 auto; }
.kp-products__title { font-size: clamp(22px, 3.6vw, 32px); margin: 0 0 16px; text-align: center; }
.kp-gradient-title { background: linear-gradient(90deg, var(--kp-red), var(--kp-yellow)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.kp-products__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.kp-product { background:#fafafa; border-radius:12px; overflow:hidden; box-shadow:0 6px 18px rgba(0,0,0,0.06); display:flex; flex-direction:column; }
.kp-product__media { aspect-ratio: 1 / 1; background:#eee; position:relative; }
.kp-product__media img { width:100%; height:100%; object-fit:cover; display:block; }
.kp-product__body { padding:14px; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.kp-product__title { font-size:16px; margin:0; line-height:1.3; flex:1; }
.kp-product__title-link { color: inherit; text-decoration: none; display: inline-block; }
.kp-product__title-link:hover { color: var(--kp-red); text-decoration: none; }
.kp-product__title-link:focus-visible { outline: 2px solid var(--kp-yellow); outline-offset: 3px; text-decoration: none; }
.kp-product__wa { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:10px; color:#fff; background:#25D366; text-decoration:none; flex:0 0 auto; }
.kp-product__wa:hover { filter:brightness(0.95); }

@media (min-width: 640px) { .kp-products__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1024px) { .kp-products__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } .kp-products { padding: 80px 24px; } }
