:root{
	--category-gap:20px;
}
.categoryList{gap:var(--category-gap);}
.categoryList .categoryList__el{width:calc(100% / 4 - var(--category-gap));}
.categoryList[data-column="6"] .categoryList__el{width:calc(100% / 6 - var(--category-gap));}
.categoryList[data-column="5"] .categoryList__el{width:calc(100% / 5 - var(--category-gap));}
.categoryList[data-column="3"] .categoryList__el{width:calc(100% / 3 - var(--category-gap));}
.categoryList[data-column="2"] .categoryList__el{width:calc(100% / 2 - var(--category-gap));}
.categoryList__image{max-width:100%;}
.categoryList__title{font-size:1.2rem;font-weight:600;text-wrap:balance;margin-bottom:5px;}
.categoryList__price{font-size:1.2rem;font-weight:600;color:var(--main-color);}

.iva_label{font-size:0.9rem;}

.c_drawer_container{padding:0px;position:relative;height:100vh;background:var(--background);}
.c_drawer_head{padding:20px 30px;border-bottom:1px solid #ddd;}
.c_drawer_title{font-size:1.8rem;font-family:var(--font-title);}
.c_drawer_message{padding:20px 30px;font-size:.8rem;}
.c_drawer_container p.close{display:inline-block;cursor:pointer;}
.c_drawer_container p.close svg{width:30px;height:30px;}
.c_drawer_list{padding:10px;margin:0 30px;background:#fff;display:flex;flex-wrap:wrap;gap:15px;position:relative;}
.c_d_list_el{padding:0;gap:30px;width:100%;position:relative;}
.c_d_list_el quantity span,.c_d_list_el quantity input{border:1px solid var(--background)!important;width:30px;height:30px;}
.c_d_list_el img{height:100px;aspect-ratio:1/1;filter:brightness(0.95);}
.c_d_title{font-size:1.1rem;font-family:var(--font-title);font-weight:600;width:92%;}
.c_d_price{white-space:nowrap;}
.c_d_control{height:40px;margin-top:10px;gap:15px;justify-content:space-between;}
.c_d_remove{font-size:.8rem;gap:2px;cursor:pointer;position:absolute;top:0;right:0;color:red;}
.c_d_remove svg{width:18px;aspect-ratio:1/1;}
.c_d_remove:hover{text-decoration:underline;}
.c_drawer_cta{padding:20px 30px;}
.gocheckout{background:var(--main-color);color:#fff;width:100%;transition:all .4s;}
.gocheckout:hover{background:var(--dark);transition:all .4s;}
.c_drawer_total{padding:0px 30px;}
.c_drawer_total p:first-child{font-weight:700;}
.c_drawer_cta{margin-top:30px;order:10;}
.c_drawer_iva{font-style:italic;font-size:.8rem;}
.c_drawer_iva.order_1{order:0;}
.c_drawer_iva.order_2{order:2;}

.shimmer{position:relative;width:100%;min-height:20px;overflow:hidden;background:#d5d5d5;}
span.shimmer{display:inline-block;width:120px;}
.shimmer::before{content:"";position:absolute;background:linear-gradient(90deg,rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%,rgba(255,255,255,0) 100%);height:100%;width:100%;z-index:1;animation:shimmer 1s infinite;}
	  
@keyframes shimmer {
	0% {
		transform:translateX(-100%);
	}
	100% {
		transform:translateX(100%);
	}
}