/**
 * Services page — "Photography Collections" package carousel (price-list-type2).
 *
 * PURE CSS, ONE carousel. Every rule is scoped to the shortcode instance's own
 * wrapper class, `.price-list-type2.price-list-type2-59c284b183e9e`, so no other
 * price list, section or page can be affected. The parent theme and the
 * pt-novo-shortcodes plugin are not touched.
 *
 * No JavaScript is needed here:
 *   - The WhatsApp CTA is already injected on these cards by the child theme's
 *     assets/js/pricelist-whatsapp.js (its CARD_SELECTOR covers
 *     `.price-list-type2 .item`), with the message built from the card's own
 *     `.h` title -> "Hello, I'm interested in the Engagement package."
 *   - The card is reordered with flexbox `order` instead of moving nodes, so the
 *     plugin's markup and Owl's clones stay exactly as generated.
 *
 * Owl Carousel (3 / 2 / 1 columns, arrows, loop) is left completely alone, and
 * nothing here targets `.owl-item.cloned` — the cards themselves are styled, so
 * clones inherit the design for free.
 *
 * Specificity note: the plugin styles these cards with
 * `.site-dark .price-list-type2 .item …`, so the scope below intentionally
 * repeats `.price-list-type2` to out-specify it rather than use `!important`.
 */

.price-list-type2.price-list-type2-59c284b183e9e {
	/* Same gold ramp as the rest of the child theme, so branding stays one set. */
	--brp-gold-1: #f9edc0;
	--brp-gold-2: #e9cd7d;
	--brp-gold-3: #caa14a;

	--brp-wa: #25d366;
	--brp-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--brp-pad: 30px;
}

/* -------------------------------------------------------------------------
 * Card — dark editorial panel; photo first, then title, list, CTA
 * ---------------------------------------------------------------------- */
.price-list-type2.price-list-type2-59c284b183e9e .item {
	display: flex;
	flex-direction: column;
	background: #111111;
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding-bottom: 32px;
	text-align: center;
	transition: border-color 0.5s ease;
}

.price-list-type2.price-list-type2-59c284b183e9e .item:hover {
	border-color: rgba(212, 175, 55, 0.5);
}

/* The plugin's little vertical tick sat at the top of the card — the photograph
 * lives there now, so it is retired. */
.price-list-type2.price-list-type2-59c284b183e9e .item:before {
	display: none;
}

/* -------------------------------------------------------------------------
 * Photograph — visually dominant, cinematic, zooms on hover
 * ---------------------------------------------------------------------- */
.price-list-type2.price-list-type2-59c284b183e9e .item .img {
	order: 1;
	flex: 0 0 auto;
	height: 340px;
	padding-bottom: 0;
	border: 0;
	overflow: hidden; /* clips the zoom */
}

/* The zooming layer. `background-image: inherit` picks up the URL from the
 * element's own inline style, so the photo needs no JS and no duplicated URL —
 * and the card still shows its background if this layer ever fails. */
.price-list-type2.price-list-type2-59c284b183e9e .item .img:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	background-image: inherit;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	transform: scale(1);
	transition: transform 0.5s var(--brp-ease);
	will-change: transform;
}

/* Cinematic veil — light at the top, deeper at the bottom, so the photograph
 * keeps its colours and detail. */
.price-list-type2.price-list-type2-59c284b183e9e .item .img:after {
	z-index: 1;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.08) 0%,
		rgba(0, 0, 0, 0.28) 55%,
		rgba(0, 0, 0, 0.6) 100%
	);
	transition: background 0.5s ease;
}

/* -------------------------------------------------------------------------
 * Title — editorial serif, Title Case, with a thin gold rule beneath
 * ---------------------------------------------------------------------- */
.price-list-type2.price-list-type2-59c284b183e9e .item .h {
	order: 2;
	position: relative;
	margin: 0;
	padding: 28px var(--brp-pad) 0;
	color: #fff;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 42px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	text-transform: none;
	transition: transform 0.5s var(--brp-ease);
}

.price-list-type2.price-list-type2-59c284b183e9e .item .h:after {
	content: "";
	display: block;
	width: 54px;
	height: 1px;
	margin: 18px auto 0;
	background: linear-gradient(90deg, transparent, var(--brp-gold-3), transparent);
}

/* -------------------------------------------------------------------------
 * Session parameters — small gold label + a clean, scannable list
 * ---------------------------------------------------------------------- */
.price-list-type2.price-list-type2-59c284b183e9e .item .options {
	order: 3;
	padding: 20px var(--brp-pad) 0;
}

.price-list-type2.price-list-type2-59c284b183e9e .item .options .heading-decor h5 {
	margin: 0;
	color: var(--brp-gold-2);
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.6px;
	line-height: 1.4;
	text-transform: uppercase;
}

.price-list-type2.price-list-type2-59c284b183e9e .item .options .o-row {
	padding: 12px 0 12px 22px;
	color: rgba(255, 255, 255, 0.78);
	font-family: "Montserrat", sans-serif;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
}

/* The plugin ends each row with a <br> that only adds dead space. */
.price-list-type2.price-list-type2-59c284b183e9e .item .options .o-row br {
	display: none;
}

/* Small gold dot instead of a bullet glyph. */
.price-list-type2.price-list-type2-59c284b183e9e .item .options .o-row:before {
	content: "";
	position: absolute;
	top: 1.25em;
	left: 4px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--brp-gold-3);
}

/* Replace the plugin's centred 10px dash with a full-width hairline. */
.price-list-type2.price-list-type2-59c284b183e9e .item .options .o-row:not(:last-of-type):after {
	left: 0;
	width: 100%;
	height: 1px;
	margin-left: 0;
	background: rgba(255, 255, 255, 0.08);
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* -------------------------------------------------------------------------
 * WhatsApp CTA — compact, dark, green icon; integrated rather than shouting
 *
 * pricelist-whatsapp.css styles `.ptcf-wa-btn` globally as a full-width green
 * pill for the Price List cards, so three of its declarations have to be undone
 * here: `width: 100%`, `border: 0` (which left the border invisible) and the
 * green drop glow (which stayed behind this card's dark background).
 * ---------------------------------------------------------------------- */
.price-list-type2.price-list-type2-59c284b183e9e .item .ptcf-wa-btn {
	order: 4;
	align-self: center;
	display: inline-flex;
	width: auto; /* undo width: 100% */
	max-width: 100%;
	margin: 28px auto 0;
	padding: 12px 24px;
	border: 1px solid var(--brp-wa); /* undo `border: 0` */
	border-radius: 999px;
	background: var(--brp-wa);
	box-shadow: none; /* undo the green drop glow */
	color: #fff;
	font-size: 11px;
	letter-spacing: 1.6px;
}

.price-list-type2.price-list-type2-59c284b183e9e .item .ptcf-wa-icon {
	width: 16px;
	height: 16px;
	color: #fff;
	transition: transform 0.45s var(--brp-ease);
}

/* White glyph on the green button — `currentColor` follows the rule above and
 * out-specifies the Price List's own `fill`. */
.price-list-type2.price-list-type2-59c284b183e9e .item .ptcf-wa-icon svg {
	fill: currentColor;
}

.price-list-type2.price-list-type2-59c284b183e9e .item .ptcf-wa-btn:hover,
.price-list-type2.price-list-type2-59c284b183e9e .item .ptcf-wa-btn:focus-visible {
	border-color: #1ebe5b;
	background: #1ebe5b;
	color: #fff;
	box-shadow: none;
	transform: translateY(-2px);
}

.price-list-type2.price-list-type2-59c284b183e9e .item .ptcf-wa-btn:hover .ptcf-wa-icon,
.price-list-type2.price-list-type2-59c284b183e9e .item .ptcf-wa-btn:focus-visible .ptcf-wa-icon {
	transform: scale(1.1);
}

/* -------------------------------------------------------------------------
 * Hover — zoom the photo, deepen the veil, lift the title
 * ---------------------------------------------------------------------- */
.price-list-type2.price-list-type2-59c284b183e9e .item:hover .img:before {
	transform: scale(1.04);
}

.price-list-type2.price-list-type2-59c284b183e9e .item:hover .img:after {
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.16) 0%,
		rgba(0, 0, 0, 0.38) 55%,
		rgba(0, 0, 0, 0.7) 100%
	);
}

.price-list-type2.price-list-type2-59c284b183e9e .item:hover .h {
	transform: translateY(-4px);
}

/* -------------------------------------------------------------------------
 * Carousel arrows — same position and behaviour, gold on hover
 * ---------------------------------------------------------------------- */
.price-list-type2.price-list-type2-59c284b183e9e .owl-nav [class*="owl-"]:hover {
	color: var(--brp-gold-2);
}

/* -------------------------------------------------------------------------
 * Responsive — follows the carousel's own 3 / 2 / 1 breakpoints
 * ---------------------------------------------------------------------- */

/* 2 cards per view (Owl switches at 980px). */
@media screen and (max-width: 1199.98px) {
	.price-list-type2.price-list-type2-59c284b183e9e {
		--brp-pad: 26px;
	}

	.price-list-type2.price-list-type2-59c284b183e9e .item .img {
		height: 310px;
	}

	.price-list-type2.price-list-type2-59c284b183e9e .item .h {
		font-size: 36px;
	}
}

/* 1 card per view. */
@media screen and (max-width: 979.98px) {
	.price-list-type2.price-list-type2-59c284b183e9e .item .img {
		height: 320px;
	}
}

@media screen and (max-width: 767.98px) {
	.price-list-type2.price-list-type2-59c284b183e9e {
		--brp-pad: 22px;
	}

	.price-list-type2.price-list-type2-59c284b183e9e .item {
		padding-bottom: 28px;
	}

	.price-list-type2.price-list-type2-59c284b183e9e .item .img {
		height: 260px;
	}

	.price-list-type2.price-list-type2-59c284b183e9e .item .h {
		padding-top: 24px;
		font-size: 32px;
	}

	.price-list-type2.price-list-type2-59c284b183e9e .item .h:after {
		margin-top: 14px;
	}

	.price-list-type2.price-list-type2-59c284b183e9e .item .options .o-row {
		padding: 11px 0 11px 20px;
		font-size: 13px;
	}

	.price-list-type2.price-list-type2-59c284b183e9e .item .ptcf-wa-btn {
		margin-top: 24px;
		padding: 11px 20px;
	}
}

/* Respect reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
	.price-list-type2.price-list-type2-59c284b183e9e .item,
	.price-list-type2.price-list-type2-59c284b183e9e .item .img:before,
	.price-list-type2.price-list-type2-59c284b183e9e .item .img:after,
	.price-list-type2.price-list-type2-59c284b183e9e .item .h,
	.price-list-type2.price-list-type2-59c284b183e9e .item .ptcf-wa-icon {
		transition: none;
	}

	.price-list-type2.price-list-type2-59c284b183e9e .item:hover .img:before,
	.price-list-type2.price-list-type2-59c284b183e9e .item:hover .h,
	.price-list-type2.price-list-type2-59c284b183e9e .item .ptcf-wa-btn:hover,
	.price-list-type2.price-list-type2-59c284b183e9e .item .ptcf-wa-btn:hover .ptcf-wa-icon {
		transform: none;
	}
}
