/* ---- Add-to-list button ---- */
.slc-add-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 2px solid #2a2a2a;
	background: #ffffff;
	color: #2a2a2a;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.slc-add-btn:hover {
	background: #2a2a2a;
	color: #ffffff;
}

.slc-add-btn .slc-btn-added-label {
	display: none;
}

.slc-add-btn.slc-added {
	background: #2e7d32;
	border-color: #2e7d32;
	color: #ffffff;
}

.slc-add-btn.slc-added .slc-btn-label {
	display: none;
}

.slc-add-btn.slc-added .slc-btn-added-label {
	display: inline;
}

/* ---- Floating cart ---- */
#slc-floating-cart {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 9999;
	font-family: inherit;
}

#slc-cart-toggle {
	background: #2a2a2a;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 12px 18px;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

#slc-cart-count {
	font-weight: 700;
}

#slc-cart-panel {
	display: none;
	position: absolute;
	left: 0;
	bottom: 60px;
	width: 260px;
	max-height: 320px;
	overflow-y: auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	padding: 14px;
}

#slc-cart-panel.slc-open {
	display: block;
}

.slc-panel-title {
	margin: 0 0 10px;
	font-weight: 700;
}

#slc-cart-panel-list,
#slc-list-items {
	list-style: none;
	margin: 0;
	padding: 0;
}

#slc-cart-panel-list li,
#slc-list-items li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 0;
	border-bottom: 1px solid #eee;
}

.slc-empty {
	color: #888;
	font-style: italic;
	border-bottom: none !important;
}

.slc-remove-btn {
	background: none;
	border: none;
	color: #b00020;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	padding: 0 4px;
}

/* ---- Submit page ---- */
#slc-submit-wrap {
	max-width: 480px;
}

#slc-submit-wrap h3 {
	margin-top: 0;
}

#slc-submit-wrap label {
	font-weight: 600;
}

#slc-submit-wrap input[type="text"],
#slc-submit-wrap input[type="email"] {
	width: 100%;
	padding: 8px 10px;
	margin-top: 4px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

#slc-submit-btn {
	background: #2a2a2a;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
}

#slc-submit-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

#slc-submit-message {
	margin-top: 10px;
	font-weight: 600;
}

#slc-submit-message.slc-success {
	color: #2e7d32;
}

#slc-submit-message.slc-error {
	color: #b00020;
}
