/*
Theme Name: Bambu
Description: Standalone WooCommerce theme for Bambu 3D store.
Version: 2.0
*/

/* GLOBAL */

body{
background:#ffffff;
color:#111;
}

/* убираем ограничение ширины */

.woocommerce-page .content-area{
width:100%!important;
max-width:100%!important;
flex:none!important;
}

/* стандартные кнопки */

.button{
background:#7c3aed;
border:none;
border-radius:8px;
font-weight:600;
transition:.25s;
}

.button:hover{
background:#6d28d9;
}

/* SHOP HEADER */

.shop-header{
text-align:center;
margin-bottom:30px;
}

.shop-header-inner{
max-width:760px;
margin:0 auto;
}

.shop-title{
font-size:64px;
font-weight:700;
letter-spacing:-2px;
color:#1d1d1f;
margin:0;
display:inline-block;
}

.shop-title::after{
content:"";
display:block;
width:100%;
height:4px;
margin:20px auto 0;
background:#7c3aed;
border-radius:999px;
}

.shop-subtitle{
margin-top:8px;
font-size:22px;
font-weight:500;
color:#3a3a3c;
}

/* BREADCRUMBS */
.bambu-breadcrumbs{
margin:16px 0 24px;
}

.bambu-breadcrumbs__list{
display:flex;
flex-wrap:wrap;
gap:8px;
list-style:none;
padding:0;
margin:0;
font-size:14px;
}

.bambu-breadcrumbs__item{
display:flex;
align-items:center;
color:#6b7280;
}

.bambu-breadcrumbs__item:not(:last-child)::after{
content:"/";
margin-left:8px;
color:#9ca3af;
}

.bambu-breadcrumbs__link{
color:#4b5563;
text-decoration:none;
}

.bambu-breadcrumbs__link:hover{
color:#7c3aed;
}

.bambu-breadcrumbs__current{
color:#111827;
font-weight:500;
}