
#cart-summary div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #555;
	margin-bottom: 6px;
}

#cart-summary strong {
	font-weight: 600;
	color: #111;
	margin-left:15px;
}

#cart-summary div:last-child {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #e5e7eb;
	font-weight: 700;
	font-size: 16px;
	color: #000;
}

#cart-summary div:last-child strong {
	color: #16a34a; 
	margin-left:15px;
}


.cart-actions-zero	input, .cart-actions-zero	select	{
	width:90%;
	height:40px;
	border-radius:5px;
	border:1px solid grey;							
}
.utils-range	{							
	box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 6px;
	background: rgb(244, 251, 249);
	border-width: 1px;
	border-style: solid;
	border-color: rgb(217, 240, 233);
	border-image: initial;
	border-radius: 16px;
	padding: 14px;
}
.utils-title	{
	font-weight: 600;
	margin: 10px 0px 5px
}


#cart-modal h1 {
	font-size: 1.9em;
    color: #2b3c5f;
	border-bottom: 1px solid #e5e7eb;
}





.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
	margin-bottom:25px;
}

/* ===== Boutons ===== */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn img {
    width: 16px;
    height: 16px;
}

/* CTA principal */
.btn.primary {
    background: #facc15;
    color: #000;
    font-weight: 600;
}

.btn.primary:hover {
    background: #eab308;
}

/* secondaire */
.btn.secondary {
    background: #f1f5f9;
    color: #111;
}

.btn.secondary:hover {
    background: #e2e8f0;
}

/* danger */
.btn.danger {
    background: #fee2e2;
    color: #991b1b;
}

.btn.danger:hover {
    background: #fecaca;
}

/* ===== Groupes ===== */
.action-group {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

/* bouton toggle */
.action-toggle {
    width: 100%;
    text-align: left;
    padding: 12px;
    background: #fff;
    border: none;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

/* petite flèche */
.action-toggle::after {
    content: "▾";
    position: absolute;
    right: 12px;
    transition: transform 0.2s;
}

/* contenu caché */
.action-content {
    display: none;
    padding: 10px;
    background: #f9fafb;
    flex-direction: column;
    gap: 8px;
}

/* état ouvert */
.action-group.open .action-content {
    display: flex;
}

.action-group.open .action-toggle::after {
    transform: rotate(180deg);
}/* ===== FORM ===== */
.action-content.form {
    gap: 14px;
}

/* groupe champ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* label */
.form-group label {
    font-size: 12px;
    color: #6b7280;
}

/* inputs + select */
.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s;
}

/* focus propre */
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #facc15;
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.2);
}

/* hover léger */
.form-group input:hover,
.form-group select:hover {
    border-color: #d1d5db;
}

/* ===== SETTINGS INLINE ===== */
.cart-settings {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

/* ligne */
.setting-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* label */
.setting-row label {
    font-size: 12px;
    color: #6b7280;
}

/* champs */
.setting-row select,
.setting-row input {
    width: 80%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s;
}

/* focus UX */
.setting-row select:focus,
.setting-row input:focus {
    outline: none;
    border-color: #facc15;
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.2);
}

/* hover */
.setting-row select:hover,
.setting-row input:hover {
    border-color: #d1d5db;
}