.pcc1-qty-btn--delete {
	color: #dc2626 !important;
	border-color: #dc2626 !important;
	background: #fff !important;
}
.pcc1-qty-btn--delete:hover {
	color: #fff !important;
	background: #dc2626 !important;
	border-color: #dc2626 !important;
	transform: scale(1.08);
}
/* Modal overlay for delete/for later */
.pcc1-modal-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.18);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pcc1-modal {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 32px 0 #b39ddb;
	padding: 24px 20px 18px 20px;
	min-width: 320px;
	max-width: 90vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.pcc1-modal-title {
	font-size: 1.18em;
	font-weight: 700;
	color: #dc2626;
	margin-bottom: 2px;
}
.pcc1-modal-desc {
	font-size: 1em;
	color: #333;
	margin-bottom: 8px;
	text-align: center;
}
.pcc1-modal-actions {
	display: flex;
	flex-direction: row;
	gap: 10px;
	width: 100%;
	justify-content: center;
}
.pcc1-modal-btn {
	border-radius: 12px;
	font-size: 1em;
	font-weight: 600;
	padding: 7px 16px;
	border: none;
	cursor: pointer;
	transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.pcc1-modal-btn-cancel {
	color: #555;
	background: rgba(128,128,128,0.14);
}
.pcc1-modal-btn-cancel:hover {
	background: rgba(128,128,128,0.28);
	color: #222;
	transform: scale(1.04);
}
.pcc1-modal-btn-later {
	color: blueviolet;
	background: rgba(138,43,226,0.08);
	border: 1.5px solid rgba(138,43,226,0.4);
}
.pcc1-modal-btn-later:hover {
	background: #7c3aed;
	color: #fff;
	border-color: #7c3aed;
	transform: scale(1.04);
}
.pcc1-modal-btn-delete {
	color: #fff;
	background: rgba(220,38,38,0.7);
	border: 1.5px solid rgba(220,38,38,0.4);
}
.pcc1-modal-btn-delete:hover {
	background: #dc2626;
	color: #fff;
	border-color: #dc2626;
	transform: scale(1.04);
}
.pcc1-qty-action-row {
    display: flex;
    align-items: center;
    flex-direction: row;
	flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}
/* Quantité row */
.pcc1-qty-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	margin: 4px 0;
}

.pcc1-qty-btn {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 2px solid #bbb;
	background: #fff;
	color: #888;
	font-size: 1.2em;
	cursor: pointer;
	transition: border-color 0.18s, color 0.18s, background 0.18s, transform 0.18s;
}
.pcc1-qty-btn:hover {
	color: blueviolet;
	border-color: blueviolet;
	background: #f3e8ff;
	transform: scale(1.08);
}

.pcc1-qty-input {
	width: 48px;
	min-width: 0;
	text-align: center;
	font-size: 1em;
	color: #555;
	border: 2px solid #bbb;
	border-radius: 12px;
	padding: 4px 0;
	outline: none;
	transition: border-color 0.18s, color 0.18s, background 0.18s, transform 0.18s;
}
.pcc1-qty-input:focus, .pcc1-qty-input:hover {
	border-color: blueviolet;
	color: blueviolet;
	background: #f3e8ff;
	transform: scale(1.04);
}
/* Product Card Cart One */

.pcc1-root {
	width: 100%;
	min-width: 0;
	/* max-width: 100vw; */
	box-sizing: border-box;
	border: 1px solid #bbb;
	border-radius: 14px;
	box-shadow: 0 2px 12px 0 #e3d7fa;
	background: #fff;
	transition: box-shadow 0.18s, border-color 0.18s;
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 4px;
}
.pcc1-root:hover {
	box-shadow: 0 4px 24px 0 #b39ddb;
	border-color: blueviolet;
}
.pcc1-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	min-width: 0;
	padding: 4px 8px;
	gap: 0;
	flex-wrap: nowrap;
	box-sizing: border-box;
}
.pcc1-col-left {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 8px 0 0;
}
.pcc1-btn-select {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid #bbb;
	background: #fff;
	color: #bbb;
	font-size: 1.3em;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.18s, color 0.18s, background 0.18s, transform 0.18s;
	cursor: pointer;
}
.pcc1-btn-select.selected {
	color: #fff;
	background: blueviolet;
	border-color: blueviolet;
}
.pcc1-btn-select:hover {
	color: blueviolet;
	border-color: blueviolet;
	transform: scale(1.08);
}
.pcc1-col-main-row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 4px;
	flex-wrap: wrap;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}
.pcc1-col-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-width: 80px;
	max-width: 100%;
	box-sizing: border-box;
}
.pcc1-type-row {
	display: flex;
	align-items: center;
    flex-direction: row;
    justify-content: center;
	gap: 4px;
	margin-bottom: 2px;
}
.pcc1-type-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.85em;
	font-weight: 600;
	border-radius: 8px;
	padding: 2px 10px;
	color: #fff;
}
.pcc1-type-badge--product {
	background: #111;
}
.pcc1-type-badge--collection {
	background: blueviolet;
}
.pcc1-img-card-wrap {
	width: 80px;
	min-width: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pcc1-img-card {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.pcc1-float-img {
	position: absolute;
	right: -8px;
	bottom: -8px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	background: #fff;
	object-fit: cover;
}
.pcc1-col-right {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 0 0 0 8px;
	gap: 0;
	min-width: 0;
	flex: 1 1 200px;
	box-sizing: border-box;
}
.pcc1-deref-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 4px;
    width: 100%;
}
.pcc1-btn-delete {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #dc2626;
    background: rgba(220,38,38,0.12);
    border: 1.5px solid rgba(220,38,38,0.4);
    border-radius: 12px;
    padding: 4px 6px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.pcc1-btn-delete:hover {
    background: rgba(220,38,38,0.2);
    color: #fff;
    border-color: rgba(220,38,38,0.6);
    transform: scale(1.04);
}
.pcc1-delivery-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
	margin: 2px 0;
}
.pcc1-delivery-badge {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.85em;
	font-weight: 600;
	border-radius: 12px;
	padding: 2px 4px;
}
.pcc1-delivery-badge--free {
	color: #16a34a;
	background: rgba(22,163,74,0.14);
	border: 1.5px solid #16a34a;
}
.pcc1-delivery-badge--return {
	color: blueviolet;
	background: rgba(138,43,226,0.14);
	border: 1.5px solid blueviolet;
}
.pcc1-stock-badge {
	display: flex;
	align-items: center;
	font-size: 0.85em;
	font-weight: 600;
	border-radius: 12px;
	padding: 2px 6px;
}
.pcc1-stock-badge--out {
	color: #dc2626;
	background: rgba(220,38,38,0.12);
}
.pcc1-stock-badge--low {
	color: #dc2626;
	background: rgba(220,38,38,0.12);
}
.pcc1-stock-badge--almost {
	color: #ea580c;
	background: rgba(234,88,12,0.12);
}
.pcc1-promo-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: linear-gradient(90deg, #ef4444, #f97316);
	color: #fff;
	font-size: 0.78em;
	font-weight: 700;
	border-radius: 8px;
	padding: 2px 4px;
}
.pcc1-title-row {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 1.05em;
	font-weight: 600;
	color: #111;
	cursor: pointer;
	transition: color 0.18s, text-decoration 0.18s, transform 0.18s;
}
.pcc1-title-row:hover {
	text-decoration: skyblue underline;
	transform: scale(1.02);
}
.pcc1-title {
	color: #111;
	font-size: 1em;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
	max-width: 100%;
	transition: color 0.18s, text-decoration 0.18s;
}
.pcc1-title:hover {
	color: skyblue;
	text-decoration: skyblue underline;
	transition: color 0.18s, text-decoration 0.18s, transform 0.18s;
	transform: scale(1.02);
}
.pcc1-price-row {
	display: flex;
	align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
	gap: 4px;
	font-size: 1.05em;
	color: black;
}
.pcc1-price-selling {
    color: blueviolet;
    font-weight: 700;
    text-decoration: line-through;
    font-size: 0.85em;
}
.pcc1-price-final {
	color: red;
	font-weight: 700;
}
.pcc1-price-final.base {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.05em;
}
.pcc1-price-base {
	color: #16a34a;
	font-weight: 500;
    font-size: 0.95em;
	text-decoration: line-through;
	margin-left: 4px;
}
.pcc1-btn-later {
	display: flex;
	align-items: center;
	gap: 6px;
	color: blueviolet;
	background: #f3e8ff;
	border: 1.5px solid blueviolet;
	border-radius: 12px;
	padding: 4px 6px;
	font-size: 0.85em;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.pcc1-btn-later:hover {
	background: #7c3aed;
	color: #fff;
	border-color: #7c3aed;
	transform: scale(1.04);
}
.pcc1-variant {
    display: inline-flex;
    align-items: center;
    font-size: 0.85em;
    color: blueviolet;
    border: 1.5px solid blueviolet;
    border-radius: 8px;
    padding: 2px 4px;
    gap: 4px;
}
.pcc1-variant-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid blueviolet;
}