/* =========================================================
   Laroca Components
   Showcase v1.0
   Finální luxury hover karta
   ========================================================= */


/* =========================================================
   HLAVNÍ SEKCE
   ========================================================= */

.laroca-showcase {
	position: relative;
	width: 100%;
	padding: 90px 30px 110px;
	background: #090909;
	color: #ffffff;
	overflow: hidden;
}

.laroca-showcase::before {
	content: "";
	position: absolute;
	top: -270px;
	left: 50%;
	width: 820px;
	height: 820px;
	background: radial-gradient(
		circle,
		rgba(199, 165, 91, 0.14) 0%,
		rgba(199, 165, 91, 0.05) 38%,
		rgba(199, 165, 91, 0) 72%
	);
	transform: translateX(-50%);
	pointer-events: none;
}


/* =========================================================
   NADPIS SEKCE
   ========================================================= */

.laroca-showcase__heading {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto 55px;
	text-align: center;
}

.laroca-showcase__eyebrow {
	margin-bottom: 13px;
	color: #c7a55b;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}

.laroca-showcase__title {
	margin: 0;
	color: #ffffff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(38px, 5vw, 68px);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.laroca-showcase__title::after {
	content: "";
	display: block;
	width: 52px;
	height: 1px;
	margin: 24px auto 0;
	background: linear-gradient(
		90deg,
		rgba(199, 165, 91, 0),
		#c7a55b,
		rgba(199, 165, 91, 0)
	);
}


/* =========================================================
   GRID
   Prozatím jedna karta uprostřed
   ========================================================= */

.laroca-products {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
}


/* =========================================================
   KARTA
   ========================================================= */

.laroca-card {
	position: relative;
	width: 100%;
	min-width: 0;
	background: #111111;
	box-shadow:
		0 26px 70px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.04);
	overflow: visible;
}

.laroca-card__link {
	position: relative;
	display: block;
	width: 100%;
	color: inherit;
	text-decoration: none;
	outline: none;
}

.laroca-card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	background: #171717;
	overflow: hidden;
}


/* =========================================================
   PRODUKTOVÁ FOTOGRAFIE
   ========================================================= */

.laroca-card__image > img,
.laroca-card__product-image {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	object-fit: cover !important;
	object-position: center !important;
	transform: translateY(0) scale(1);
	transition:
		transform 950ms cubic-bezier(0.2, 0.75, 0.25, 1),
		filter 700ms ease;
}


/* =========================================================
   TMAVÁ VRSTVA PŘES CELOU FOTOGRAFII

   V klidovém stavu je téměř neviditelná.
   Na hoveru se ztmaví přes celou plochu.
   ========================================================= */

.laroca-card__image::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.08);
	opacity: 1;
	pointer-events: none;
	transition:
		background-color 600ms ease,
		opacity 600ms ease;
}


/* =========================================================
   FILMOVÝ GRADIENT

   Směrem dolů postupně tmavne.
   ========================================================= */

.laroca-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.01) 16%,
		rgba(0, 0, 0, 0.04) 30%,
		rgba(0, 0, 0, 0.10) 43%,
		rgba(0, 0, 0, 0.20) 55%,
		rgba(0, 0, 0, 0.38) 68%,
		rgba(0, 0, 0, 0.68) 84%,
		rgba(0, 0, 0, 0.94) 100%
	);
	pointer-events: none;
	transition:
		opacity 600ms ease;
}


/* =========================================================
   JEMNÝ ZLATÝ OUTLINE
   ========================================================= */

.laroca-card__link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 10;
	border: 1px solid rgba(199, 165, 91, 0.38);
	box-shadow:
		inset 0 0 0 1px rgba(199, 165, 91, 0.05);
	pointer-events: none;
	transition:
		border-color 500ms ease,
		box-shadow 500ms ease,
		filter 500ms ease;
}


/* =========================================================
   OVERLAY

   Samotný overlay se nehýbe.
   Animují se pouze jeho jednotlivé části.
   ========================================================= */

.elementor-widget-laroca-showcase .laroca-card__overlay,
.laroca-showcase .laroca-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 13% 8% 9%;
	color: #ffffff;
	text-align: center;
	pointer-events: none;

	opacity: 0;
	visibility: hidden;
	transform: none;

	transition:
		opacity 350ms ease,
		visibility 350ms ease;
}


/* =========================================================
   HORNÍ CENOVÁ ZÓNA
   ========================================================= */

.laroca-card__price-zone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 2%;

	opacity: 0;
	transform: translateY(34px);

	transition:
		opacity 430ms ease 80ms,
		transform 580ms cubic-bezier(0.2, 0.75, 0.25, 1) 80ms;
}


/* =========================================================
   CENA
   ========================================================= */

.laroca-card__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 8px 12px;
	color: #ffffff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 31px;
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: 0.025em;
}

.laroca-card__price,
.laroca-card__price span,
.laroca-card__price bdi {
	color: #ffffff !important;
}


/* Běžný produkt */

.laroca-card__price--regular,
.laroca-card__price--regular span,
.laroca-card__price--regular bdi {
	color: #ffffff !important;
	font-size: 31px;
}


/* Akční produkt – původní cena */

.laroca-card__price--sale del,
.laroca-card__price--sale del span,
.laroca-card__price--sale del bdi {
	order: 1;
	margin: 0 !important;
	color: rgba(255, 255, 255, 0.88) !important;
	font-size: 17px !important;
	font-weight: 400 !important;
	line-height: 1.2 !important;
	text-decoration-thickness: 1px !important;
}


/* Akční produkt – nová cena */

.laroca-card__price--sale ins {
	order: 2;
	margin: 0 !important;
	color: #d8232a !important;
	text-decoration: none !important;
}

.laroca-card__price--sale ins span,
.laroca-card__price--sale ins bdi {
	color: #d8232a !important;
	font-size: 34px !important;
	font-weight: 600 !important;
	line-height: 1.1 !important;
}


/* =========================================================
   ZLATÁ LINKA POD CENOU
   ========================================================= */

.laroca-card__divider {
	width: 56px;
	height: 1px;
	margin-top: 22px;
	background: linear-gradient(
		90deg,
		rgba(199, 165, 91, 0),
		#d2af63,
		rgba(199, 165, 91, 0)
	);

	transform: scaleX(0.25);
	transform-origin: center;

	transition:
		transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1) 180ms;
}


/* =========================================================
   SPODNÍ BRANDOVÁ ZÓNA
   ========================================================= */

.laroca-card__brand-zone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	margin-bottom: 1%;
}


/* =========================================================
   SLOGAN
   ========================================================= */

.laroca-card__slogan {
	margin: 0 0 11px;
	color: rgba(255, 255, 255, 0.9);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.025em;

	opacity: 0;
	transform: translateY(22px);

	transition:
		opacity 430ms ease 230ms,
		transform 560ms cubic-bezier(0.2, 0.75, 0.25, 1) 230ms;
}


/* =========================================================
   LINKA MEZI SLOGANEM A LAROCA
   ========================================================= */

.laroca-card__brand-divider {
	width: 34px;
	height: 1px;
	margin-bottom: 13px;
	background: rgba(210, 175, 99, 0.78);

	opacity: 0;
	transform: scaleX(0.35);

	transition:
		opacity 400ms ease 310ms,
		transform 550ms cubic-bezier(0.2, 0.75, 0.25, 1) 310ms;
}


/* =========================================================
   LAROCA
   ========================================================= */

.laroca-card__brand-name {
	color: #d2af63;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.18em;
	text-indent: 0.18em;
	text-transform: uppercase;

	opacity: 0;
	transform: translateY(20px);

	transition:
		opacity 480ms ease 390ms,
		transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1) 390ms;
}


/* =========================================================
   DESKTOP HOVER A OVLÁDÁNÍ KLÁVESNICÍ
   ========================================================= */

@media (hover: hover) and (pointer: fine) {

	/* Jemný parallax fotografie */

	.laroca-card:hover .laroca-card__image > img,
	.laroca-card:focus-within .laroca-card__image > img {
		transform: translateY(-15px) scale(1.075);
		filter: brightness(0.68);
	}


	/* Přibližně 50% tmavá vrstva přes celou fotografii */

	.laroca-card:hover .laroca-card__image::before,
	.laroca-card:focus-within .laroca-card__image::before {
		background: rgba(0, 0, 0, 0.50);
	}


	/* Lehké zvýraznění gradientu */

	.laroca-card:hover .laroca-card__image::after,
	.laroca-card:focus-within .laroca-card__image::after {
		opacity: 0.88;
	}


	/* Jemná animace jasu outline */

	.laroca-card:hover .laroca-card__link::after,
	.laroca-card:focus-within .laroca-card__link::after {
		border-color: rgba(222, 188, 106, 0.92);
		box-shadow:
			inset 0 0 22px rgba(199, 165, 91, 0.08),
			0 0 12px rgba(199, 165, 91, 0.16);
		filter: brightness(1.18);
	}


	/* Zobrazení celého overlaye */

	.elementor-widget-laroca-showcase
	.laroca-card:hover
	.laroca-card__overlay,

	.elementor-widget-laroca-showcase
	.laroca-card:focus-within
	.laroca-card__overlay,

	.laroca-showcase
	.laroca-card:hover
	.laroca-card__overlay,

	.laroca-showcase
	.laroca-card:focus-within
	.laroca-card__overlay {
		opacity: 1;
		visibility: visible;
	}


	/* Cena vyjede z gradientu */

	.laroca-card:hover .laroca-card__price-zone,
	.laroca-card:focus-within .laroca-card__price-zone {
		opacity: 1;
		transform: translateY(0);
	}


	/* Linka se natáhne */

	.laroca-card:hover .laroca-card__divider,
	.laroca-card:focus-within .laroca-card__divider {
		transform: scaleX(1);
	}


	/* Slogan přijede se zpožděním */

	.laroca-card:hover .laroca-card__slogan,
	.laroca-card:focus-within .laroca-card__slogan {
		opacity: 1;
		transform: translateY(0);
	}


	/* Brandová linka */

	.laroca-card:hover .laroca-card__brand-divider,
	.laroca-card:focus-within .laroca-card__brand-divider {
		opacity: 1;
		transform: scaleX(1);
	}


	/* LAROCA jako poslední */

	.laroca-card:hover .laroca-card__brand-name,
	.laroca-card:focus-within .laroca-card__brand-name {
		opacity: 1;
		transform: translateY(0);
	}
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

	.laroca-showcase {
		padding: 75px 25px 90px;
	}

	.laroca-showcase__heading {
		margin-bottom: 45px;
	}

	.laroca-products {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

	.laroca-card__overlay {
		padding:
			12% 8%
			8%;
	}

	.laroca-card__price {
		font-size: 28px;
	}

	.laroca-card__price--regular,
	.laroca-card__price--regular span,
	.laroca-card__price--regular bdi {
		font-size: 28px;
	}

	.laroca-card__price--sale ins span,
	.laroca-card__price--sale ins bdi {
		font-size: 31px !important;
	}
}


/* =========================================================
   MOBIL
   Na mobilu není spolehlivý hover.
   Obsah proto zůstává viditelný.
   ========================================================= */

@media (max-width: 767px) {

	.laroca-showcase {
		padding: 58px 16px 70px;
	}

	.laroca-showcase__heading {
		margin-bottom: 34px;
	}

	.laroca-showcase__eyebrow {
		margin-bottom: 10px;
		font-size: 9px;
		letter-spacing: 0.27em;
	}

	.laroca-showcase__title {
		font-size: clamp(34px, 11vw, 48px);
	}

	.laroca-showcase__title::after {
		margin-top: 18px;
	}

	.laroca-products {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

	.laroca-card__image::before {
		background: rgba(0, 0, 0, 0.46);
	}

	.elementor-widget-laroca-showcase .laroca-card__overlay,
	.laroca-showcase .laroca-card__overlay {
		padding: 12% 7% 8%;
		opacity: 1;
		visibility: visible;
	}

	.laroca-card__price-zone {
		opacity: 1;
		transform: none;
	}

	.laroca-card__divider {
		transform: scaleX(1);
	}

	.laroca-card__slogan {
		font-size: 16px;
		opacity: 1;
		transform: none;
	}

	.laroca-card__brand-divider {
		opacity: 1;
		transform: scaleX(1);
	}

	.laroca-card__brand-name {
		font-size: 28px;
		opacity: 1;
		transform: none;
	}

	.laroca-card__price {
		font-size: 25px;
	}

	.laroca-card__price--regular,
	.laroca-card__price--regular span,
	.laroca-card__price--regular bdi {
		font-size: 25px;
	}

	.laroca-card__price--sale del,
	.laroca-card__price--sale del span,
	.laroca-card__price--sale del bdi {
		font-size: 14px !important;
	}

	.laroca-card__price--sale ins span,
	.laroca-card__price--sale ins bdi {
		font-size: 28px !important;
	}
}