cart-drawer {
	.tab-pills {
		[slot="tab"][type="button"] {
			&[aria-selected="false"] .subheading, &[aria-selected="false"] svg, &[aria-selected="false"] svg path {
				color: white;
				stroke: white;
			}
			&[aria-selected="true"] .subheading, &[aria-selected="true"] svg, &[aria-selected="true"] svg path {
				color: #57080C;
				stroke: #57080C;
			}
			svg {
				width: 20px;
			}
			.subheading {
				font-weight: 400;
				letter-spacing: normal;

				@media (max-width: 768px) {
					font-size: 0.875rem;
				}
			}
		}
		.icon-cart-count {
			position: relative;

			.badge {
				top: -4px;
    		right: -8px;
				position: absolute;
				border-radius: 50%;
				width: 14px;
				height: 14px;
				display: flex;
				align-items: center;
				justify-content: center;
				background: #F2FF00;
				font-size: 8px;
				font-weight: 300;
				color: #57080C;
			}
		}
	}

	.cart-drawer__footer-inner {
		.medium {
			font-size: 1.125rem;

			@media (max-width: 768px) {
				font-size: 1rem;
				letter-spacing: normal;
			}
		}
		[type="submit"] {
			color: #F2FF00;
		}
		[type="submit"]:hover {
			border-color: #57080C;
			color: #57080C;
			background: white;
		}
	}

	line-item {
		.quantity-selector__input {
			font-size: 0.875rem;
			font-weight: 600;
		}

		.line-item__info {
			height: 100%;
		}

		.line-item__info-content {
			height: 100%;
			align-content: space-between;
		}

		.title-link {
			font-size: 1.125rem;

			@media (max-width: 768px) {
				font-size: 1rem;
			}
		}
		
		.title-link, .option-value {
			font-weight: 400;
		}
	}

	.cart-drawer__cross-sell .constrained-image, line-item .line-item__media {
		border: 1px solid rgba(1, 1, 1, 0.10);
		aspect-ratio: 90 / 110;
	}
	
	@media (max-width: 768px) {
		line-item {
			column-gap: 1.5rem !important;
		}

		line-item .line-item__media {
			flex: 0 0 5.5rem;
		}

		.line-item__line-price {
			font-size: 0.875rem;
			font-weight: 400;
			text-wrap: nowrap;
		}

		.text-descriptif-footer {
			font-size: 0.75rem;
		}

		button[aria-controls*="product-quick-buy"] {
			font-size: 0.75rem;
		}

		.cart-drawer__cross-sell .product-cross-sell--horizontal {
			background-color: #FEFBF9 !important;
		}
		
		.cart-drawer__cross-sell .product-cross-sell--horizontal .justify-items-start {
			padding: 5px 0;
		}
	}

	.cart-drawer__cross-sell {
		carousel-prev-button .circle-button:not([disabled]):before, 
		carousel-next-button .circle-button:not([disabled]):before {
			background: #57080C;
		}
		.circle-button:not([disabled]) .icon path {
				stroke: white;
				stroke-width: 4;
		}
		.circle-button:not([disabled]) svg {
			width: 11px;
		}
	}

	.product-cross-sell {
		padding: 0;
		height: fit-content;

		a, .justify-items-start {
			height: 100%;
		}

		sale-price {
			font-size: 0.875rem;

			@media (max-width: 768px) {
				font-size: 0.75rem;
			}
		}

		.v-stack.justify-items-start {
			align-content: space-between;
		}

		.title-horizontal-link {
			display: -webkit-box;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 1;
			overflow: hidden;
		}
	}
}