/* Front Page Featured Products */
.front-shop { padding:80px 20px; background:#fff; }
.featured-products-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:24px; }
.featured-product-card { display:flex; flex-direction:column; min-width:0; overflow:hidden; border:1px solid #e4e9ed; border-radius:10px; background:#fff; box-shadow:0 3px 14px rgba(0,0,0,.045); transition:transform .25s ease,box-shadow .25s ease; }
.featured-product-card:hover { transform:translateY(-4px); box-shadow:0 9px 26px rgba(31,119,180,.11); }
.featured-product-card__image-link { display:block; background:#f5f7f8; text-decoration:none; }
.featured-product-card__image { aspect-ratio:1/1; overflow:hidden; }
.featured-product-card__image img { display:block; width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.featured-product-card:hover .featured-product-card__image img { transform:scale(1.025); }
.featured-product-card__placeholder { display:flex; flex-direction:column; align-items:center; justify-content:center; width:100%; height:100%; color:#7d8991; letter-spacing:.08em; }
.featured-product-card__placeholder span { font-size:18px; font-weight:600; letter-spacing:.12em; }
.featured-product-card__placeholder small { margin-top:8px; font-size:11px; font-weight:400; text-transform:uppercase; }
.featured-product-card__body { display:flex; flex:1; flex-direction:column; padding:20px; }
.featured-product-card__title { margin:0 0 12px; font-size:18px; line-height:1.55; }
.featured-product-card__title a { color:#222; text-decoration:none; }
.featured-product-card__title a:hover { color:#1f77b4; }
.featured-product-card__price { margin:0; color:#222; font-size:17px; font-weight:700; line-height:1.5; }
.featured-product-card__tax { margin-left:4px; color:#777; font-size:12px; font-weight:400; }
.featured-product-card__tax em { font-style:normal; }
.featured-product-card__soldout { margin:9px 0 0; color:#8b3a35; font-size:12px; font-weight:700; letter-spacing:.08em; }
.featured-product-card__link { margin-top:auto; padding-top:22px; color:#1f77b4; font-size:14px; font-weight:700; text-decoration:none; }
.featured-product-card__link span { margin-left:7px; }
.front-shop__button { margin-top:42px; text-align:center; }
@media screen and (max-width:900px) { .featured-products-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media screen and (max-width:600px) { .front-shop { padding:56px 20px; } .featured-products-grid { grid-template-columns:1fr; gap:20px; } .featured-product-card__body { padding:20px; } }
