/*
Theme Name: Point of Purchase
Theme URI: http://localhost
Author: Ankur Saha
Author URI: http://localhost
Description: Point of Purchase theme (copy of Promo Materials)
Version: 1.0
*/

/* BREADCRUMB CONTAINER */

.woocommerce-breadcrumb{
display:flex;
align-items:center;
flex-wrap:wrap;
gap:8px;
margin-bottom:25px;
font-size:14px;
font-weight:500;
}


/* LINKS */

.woocommerce-breadcrumb a{
display:inline-block;
padding:6px 14px;
border-radius:6px;
background:#f3f3f3;
color:#880b17;
text-decoration:none;
transition:all 0.25s ease;
}


/* HOVER */

.woocommerce-breadcrumb a:hover{
background:#880b17;
color:#ffffff;
transform:translateY(-2px);
box-shadow:0 4px 10px rgba(0,0,0,0.15);
}


/* ACTIVE / CURRENT PAGE */

.woocommerce-breadcrumb span{
padding:6px 14px;
border-radius:6px;
background:#880b17;
color:#fff;
font-weight:600;
}


/* SEPARATOR */

.woocommerce-breadcrumb .breadcrumb-separator{
color:#bbb;
font-size:12px;
padding:0 2px;
}

