/* Lumicot main styles */

/* Header, hero, grids and animations are defined in style.css root for theme-level styling */

.shop-page .products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.shop-page .products .product { border: 1px solid #eee; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: transform .2s ease, box-shadow .2s ease; }
.shop-page .products .product:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }

.woocommerce div.product .product_title { font-size: 24px; font-weight: 700; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: #c2185b; font-weight: 700; }
.woocommerce .button { border-radius: 999px; padding: 10px 16px; }

.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-notices-wrapper .woocommerce-message { border-radius: 12px; }

@media (max-width: 980px) { .shop-page .products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .shop-page .products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .shop-page .products { grid-template-columns: 1fr; } }

