/* Catering Menu Slider – front-end styles */

.cmw-section {
	width: 100%;
	position: relative;
	overflow: hidden;
	background-color: #f0e6d0;
	padding: 50px 0 40px;
	font-family: 'Lato', sans-serif;
}

/* ── Decorations ── */
.cmw-deco {
	position: absolute;
	pointer-events: none;
}
.cmw-deco-leaf-l { top: 0; left: -10px; width: 180px; opacity: .22; }
.cmw-deco-leaf-r { top: 0; right: -10px; width: 180px; opacity: .22; transform: scaleX(-1); }
.cmw-deco-barn   { bottom: -5px; left: -20px; width: 260px; opacity: .12; }
.cmw-deco-spots  { bottom: 0; right: 0; width: 180px; opacity: .18; }

/* ── Header ── */
.cmw-header {
	text-align: center;
	margin-bottom: 44px;
	position: relative;
	z-index: 1;
}

.cmw-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 34px;
	font-weight: 700;
	color: #6b3410;
	letter-spacing: 5px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	line-height: 1.2;
}

.cmw-orn {
	color: #b8934a;
	display: flex;
	align-items: center;
}
.cmw-orn svg { width: 34px; height: 18px; }

.cmw-title-rule {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 12px;
}
.cmw-rule-line {
	width: 200px;
	height: 1px;
	background: linear-gradient(to right, transparent, #b8934a, transparent);
}
.cmw-rule-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #6b3410;
	margin: 0 6px;
}

/* ── Slider wrap ── */
.cmw-slider-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 60px;
}

/* ── Stage ── */
.cmw-stage {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* ── Cards ── */
.cmw-card {
	position: absolute;
	background: #fffdf5;
	border-radius: 6px;
	padding: 28px 18px 24px;
	text-align: center;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition:
		left      .5s cubic-bezier(.4, 0, .2, 1),
		top       .5s cubic-bezier(.4, 0, .2, 1),
		transform .5s cubic-bezier(.4, 0, .2, 1),
		box-shadow .5s cubic-bezier(.4, 0, .2, 1),
		opacity   .5s cubic-bezier(.4, 0, .2, 1);
}

.cmw-card-icon {
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	flex-shrink: 0;
}
.cmw-card-icon svg { width: 60px; height: 60px; }

.cmw-card-name {
	font-family: 'Lato', sans-serif;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #6b3410;
	margin-bottom: 9px;
	flex-shrink: 0;
}

.cmw-sep {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 11px;
	flex-shrink: 0;
}
.cmw-sep-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #b8934a;
}

.cmw-card-body {
	font-size: 12.5px;
	line-height: 1.72;
	color: #4a3325;
	margin-bottom: 16px;
	flex: 1;
}

.cmw-card-price {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 16px;
	font-style: italic;
	font-weight: 600;
	color: #6b3410;
	line-height: 1.45;
	flex-shrink: 0;
	margin-top: auto;
}
.cmw-price-sub {
	font-size: 12.5px;
	font-weight: 400;
}

.cmw-ask-price {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 14px;
	font-style: italic;
	color: #b8934a;
	margin-bottom: 4px;
	flex-shrink: 0;
	margin-top: auto;
}
.cmw-ask-orn { color: #b8934a; opacity: .55; flex-shrink: 0; }
.cmw-ask-orn svg { width: 52px; height: 8px; }

/* ── Nav buttons ── */
.cmw-nav-btn {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #6b3410;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 10px rgba(107, 52, 16, .3);
	transition: background .2s;
	position: relative;
	z-index: 100;
}
.cmw-nav-btn:hover { background: #5a2c0e; }
.cmw-nav-btn svg {
	width: 18px;
	height: 18px;
	stroke: #f0e6d0;
	stroke-width: 2.5;
	fill: none;
}

/* ── Dots ── */
.cmw-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}
.cmw-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #b8934a;
	border: none;
	cursor: pointer;
	opacity: .32;
	transition: opacity .3s, transform .3s;
	padding: 0;
}
.cmw-dot.cmw-dot-on {
	opacity: 1;
	transform: scale(1.15);
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.cmw-title {
		font-size: 22px;
		letter-spacing: 3px;
		gap: 10px;
	}
	.cmw-slider-wrap { padding: 0 44px; }
	.cmw-nav-btn { width: 34px; height: 34px; }
}
