.impekkable-container { display: flex; flex-direction: column; gap: 2.5em;}
.category-group { 
	display: flex; 
	flex-direction: column; 
	background-color: #fff;
	border-radius: 8px;
}

.product-info {
	display: flex;
	width: 60%;
	align-items: center;
	gap: 1rem;
}
.catbox {
	/*background: #fff;
    padding: 20px;*/
}
.category-title {
	font-family: "avenirheavy";
	font-size: 1.5rem !important;
	color: #fff !important;
}
.product-item { 
	display: flex; 
	justify-content: space-between; 
	align-items: center; 
	padding: 1rem; 
	font-size: 1.25rem;
	gap: 1rem;
}
.product-item:not(:last-child){
	border-bottom: 1px solid #EBE1E1;
}
.product-image{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	background-color: #F0F1FF;
	border-radius: 4px;
}
.product-info img {
    width: 100%;
	max-width: 50px!important;
}
.product-info .title { 
	font-weight: 700;
	color:#000;
}
.product-info-2{
	display: flex;
	align-items: center;
	gap: 1rem;
}
.product-info-2 .price {
    font-weight: 700;
    color: #0000FF;
	text-align: center;
}
.product-info-2 .actions {
    font-weight: 700;
}
.product-content{
	display: flex;
	flex-direction: column;
	line-height: 1.5;
	width: 80%;
}
.qty-control { 
	display: flex;
	background-color: rgba(0,0,0,0.05);
	border-radius: 8px;
	padding: 2px;
}
.qty-control button {
    background: #fff !important;
	width: 30px;
	height: 30px;
	border: none!important;
    border-radius: 8px;
	padding: 0!important;
}
.qty-control button.minus:hover{
	background-color: #F0F1FF !important;
	color: #000 !important;
}
.qty-control button.plus{
	background-color: #0000FF !important;
	color: #fff !important;
	&:hover{
		background-color: #1616FF !important;
	}
}
.qty-control button:hover, .qty-control button:focus {
    background: #001aff;
}
.qty-control input[type=text] {
    width: 2.5rem;
    text-align: center;
    padding: 0;
    background: transparent;
    border: 0;
    color: #000;
    font-weight: 500;
}
.impekkable-summary {
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    position: fixed;
    right: 3.5rem;
    top: 13rem;
    bottom: auto;
    padding-top: 12px;
	width: 30%;
	z-index: 10;
}

.summary-header{
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0101FF!important;
	border-bottom: 1px solid #EBE1E1;
	margin-bottom: 0.5rem;
}
.summary-total {
    display: flex;
    justify-content: space-between;
	margin-top: 20px;
}
.summary-line {
    display: flex;
    justify-content: space-between;
	color: #000;
}
.summary-total strong {
	background: #fff;
	padding: 0 8px 0 0;
	font-size:20px;
	font-weight:700;
	color:#1A1A3D;
}
.impekkable-order { 
	display: block; 
	text-align: center; 
	background: #0101DB; 
	color: #fff!important; 
	padding: 0.5rem; 
	margin-top: 10px; 
	border-radius: 8px; 
	text-decoration: none!important;
	font-size:1rem;
	font-weight: 900;
}
.impekkable-order:hover { 
	background-color: #1616FF;
	color: #fff;
}
.qty-control.zero button {
  background: #0000FF33;
  color:#1A1A3D;
}
.total-price {
	font-weight:700;
	color:#0000FF;
}
.summary-line .produit {
	font-size:1rem;
	font-weight:700;
}
.summary-line .prix-produit {
	font-size:1rem;
	color:#0000FF;
}
.bgti {
    padding: 10px 10px 0 0;
}
.summary-items {
	max-height: 33vh;
	overflow-y: scroll;
}
@media (max-width: 1024px) {
	.product-item{
		font-size: 1rem;
	}
	.product-info-2{
		flex-direction: column;
		align-items: flex-end;
		gap: 0;
	}
}

@media (max-width: 767px) {
	.impekkable-summary{
		top: auto;
		right: 1rem;
		left: 1rem;
		bottom: 1rem;
		width: auto;
		max-width: 100%;
		box-shadow: 0px -6px 24px 0 rgba(0,0,255,0.5);
	}
	
	.qty-control button{
		width: 24px;
		height: 24px;
	}
	
	.qty-control input[type=text]{
    	width: 2rem;
	}
}

.summary-items::-webkit-scrollbar {
  width: 3px;
}

.summary-items::-webkit-scrollbar-track {
  background: transparent; /* correction ici */
  border-radius: 3px;
}

.summary-items::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}

.summary-items::-webkit-scrollbar-corner {
  background: transparent;
}

.summary-items::-webkit-scrollbar-thumb {
  background: #001aff; /* bleu */
  border-radius: 3px;
  border: 3px solid transparent;
  background-clip: padding-box;
}

/* Firefox */
.summary-items {
  scrollbar-width: thin;
  scrollbar-color: #001aff transparent;
}
