/* ===== Product Grid Layout ===== */
.wp-block-woocommerce-product-template {
display: grid !important;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 30px;
}
/* ===== Product Card ===== */
.wc-block-product {
background: #fff;
border-radius: 22px;
overflow: hidden;
padding: 18px;
position: relative;
transition: all 0.45s ease;
box-shadow: 0 8px 25px rgba(0,0,0,0.06);
border: 1px solid rgba(0,0,0,0.04);
}
/* Floating Hover Effect */
.wc-block-product:hover {
transform: translateY(-12px) scale(1.02);
box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}
/* ===== Product Image ===== */
.wc-block-product img {
border-radius: 18px;
transition: transform 0.6s ease;
}
.wc-block-product:hover img {
transform: scale(1.08);
}
/* ===== Product Title ===== */
.wc-block-components-product-name {
font-size: 18px;
font-weight: 700;
color: #222;
margin-top: 15px;
transition: color 0.3s ease;
}
.wc-block-product:hover .wc-block-components-product-name {
color: #7b2cbf;
}
/* ===== Price ===== */
.wc-block-components-product-price {
color: #2b9348;
font-size: 17px;
font-weight: 700;
margin-top: 8px;
}
/* ===== Add To Cart Button ===== */
.wp-block-button__link,
.add_to_cart_button {
background: linear-gradient(135deg, #7b2cbf, #9d4edd);
color: white !important;
border-radius: 50px;
padding: 12px 22px;
transition: all 0.35s ease;
border: none;
font-weight: 600;
letter-spacing: 0.5px;
}
.wp-block-button__link:hover,
.add_to_cart_button:hover {
transform: scale(1.08);
background: linear-gradient(135deg, #5a189a, #7b2cbf);
box-shadow: 0 10px 20px rgba(123,44,191,0.35);
}
/* ===== Banner Animation ===== */
.banner .wp-block-cover__image-background {
animation: zoomBanner 14s ease-in-out infinite alternate;
}
@keyframes zoomBanner {
from {
transform: scale(1);
}
to {
transform: scale(1.08);
}
}
/* ===== Archive Title ===== */
.wp-block-query-title {
font-size: 42px;
font-weight: 800;
letter-spacing: 1px;
animation: fadeUp 1s ease;
}
/* ===== Fade Animation ===== */
@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(35px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* ===== Pagination Styling ===== */
.wp-block-query-pagination a,
.wp-block-query-pagination span {
padding: 10px 16px;
border-radius: 12px;
margin: 0 4px;
background: #f3f0ff;
transition: all 0.3s ease;
}
.wp-block-query-pagination a:hover {
background: #7b2cbf;
color: white;
transform: translateY(-3px);
}
/* ===== Smooth Entrance Animation ===== */
.wc-block-product {
animation: productFade 0.8s ease;
}
@keyframes productFade {
from {
opacity: 0;
transform: translateY(25px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* ===== Mobile Optimization ===== */
@media (max-width: 768px) {
.wp-block-query-title {
font-size: 28px;
}
.wc-block-product {
padding: 14px;
}
.wp-block-woocommerce-product-template {
gap: 20px;
}
}