/*
Theme Name: Ice Cream Parlor Child
Template: ice-cream-parlor
Description: Tema hijo de Ice Cream Parlor para personalizaciones y WooCommerce sin tocar el tema padre.
Author: Rincón del Dulce
Version: 1.0.0
Text Domain: ice-cream-parlor-child
*/

/* Añade aquí solo CSS que quieras sobrescribir al padre. */

/* Venta por peso (WooCommerce) */
.rdc-weight-sale {
	margin: 1.25em 0;
	padding: 1em 1.25em;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	max-width: 28rem;
}
.rdc-weight-sale__title {
	margin: 0 0 0.75em;
}
.rdc-weight-sale__modes {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0 0 1em;
	padding: 0;
	border: 0;
}
.rdc-weight-sale__mode {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	cursor: pointer;
	font-weight: 500;
}
.rdc-weight-sale__panel label {
	display: block;
	margin-bottom: 0.35em;
	font-weight: 500;
}
.rdc-weight-sale__panel input[type="number"] {
	width: 100%;
	max-width: 12rem;
	padding: 0.5em 0.65em;
}
.rdc-weight-sale__hint {
	margin: 0.5em 0 0;
	font-size: 0.95em;
	opacity: 0.85;
}

/* Promoción por cantidad (ej. 2 por $85) */
.rdc-qty-promo-note {
	font-size: 0.95em;
	font-weight: 600;
	white-space: nowrap;
}

/* Vídeos en ficha de producto */
.rdc-product-videos {
	margin-top: 1.25rem;
	width: 100%;
	clear: both;
}
.rdc-product-videos__title {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 600;
}
.rdc-product-videos__item {
	margin-bottom: 1rem;
}
.rdc-product-videos__item:last-child {
	margin-bottom: 0;
}
.rdc-product-videos__item--file .rdc-product-videos__aspect {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	max-width: 100%;
	background: #000;
	border-radius: 6px;
	overflow: hidden;
}
.rdc-product-videos__item--file .rdc-product-videos__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.rdc-product-videos__item--embed iframe {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 6px;
}
.rdc-product-videos__item--embed .wp-block-embed,
.rdc-product-videos__item--embed .wp-block-embed__wrapper {
	max-width: 100%;
}
.rdc-product-videos__link {
	font-weight: 600;
}
