0
Your Cart

botiga

/* ===== PRODUCT GRID CLEAN STYLE ===== */
.woocommerce ul.products{
display:grid !important;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin:0;
}

/* ===== PRODUCT CARD ===== */
.woocommerce ul.products li.product{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 4px 18px rgba(0,0,0,0.08);
text-align:center;
padding:15px;
transition:0.3s;
}

.woocommerce ul.products li.product:hover{
transform:translateY(-6px);
}

/* ===== IMAGE ===== */
.woocommerce ul.products li.product img{
border-radius:12px;
height:220px;
object-fit:cover;
}

/* ===== PRODUCT TITLE ===== */
.woocommerce ul.products li.product h2{
font-size:16px;
font-weight:700;
margin:10px 0;
}

/* ===== PRICE ===== */
.woocommerce ul.products li.product .price{
color:#1565C0;
font-weight:800;
}

/* ===== BUTTON ===== */
.woocommerce ul.products li.product .button{
background:#FF6F00;
color:#fff;
border-radius:25px;
padding:10px 16px;
font-weight:700;
transition:0.3s;
}

.woocommerce ul.products li.product .button:hover{
background:#ff8f00;
transform:translateY(-2px);
}

/* ===== TABLET ===== */
@media(max-width:900px){
.woocommerce ul.products{
grid-template-columns:repeat(2,1fr);
}
}

/* ===== MOBILE ===== */
@media(max-width:480px){
.woocommerce ul.products{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.woocommerce ul.products li.product img{
height:160px;
}
}

selector{
font-size: 34px;
font-weight: 900;
text-align: center;
font-family: ‘Baloo 2’, cursive;
color: #1565C0;
position: relative;
margin-bottom: 25px;
}

/* Orange underline effect */
selector::after{
content: “”;
display: block;
width: 90px;
height: 4px;
background: linear-gradient(135deg, #FF6F00, #FFA726);
margin: 12px auto 0;
border-radius: 50px;
}

/* Small glow effect */
selector::before{
content: “”;
position: absolute;
width: 140px;
height: 40px;
background: rgba(255,111,0,0.15);
filter: blur(20px);
top: 10px;
left: 50%;
transform: translateX(-50%);
z-index: -1;
}