/**
 * Freon Product Cards — «Ψυκτικό υγρό» (simple) & Shop (τιμή + καλάθι).
 * Για χρήση σε Elementor Loop Grid ή standalone. px-based (grid-friendly).
 */

/* Ίσα ύψη σε Loop Grid / flex cells */
.elementor-widget-freon-product-card,
.elementor-widget-freon-product-card-shop,
.elementor-widget-freon-product-card > .elementor-widget-container,
.elementor-widget-freon-product-card-shop > .elementor-widget-container {
	height: 100%;
}

.freon-pcard {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border-radius: 24px;
	padding: 32px 30px 28px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-sizing: border-box;
}

/* Shop κάρτες: απαλή σκιά (όπως στο design) — όχι στις simple (διάφανο wrapper) */
.freon-pcard--shop {
	box-shadow: 0 18px 44px rgba(35, 78, 96, 0.06);
	/* πιο μακρόστενες: extra χώρος στον πάτο ώστε το «+» να κάθεται πιο κάτω-δεξιά */
	padding-bottom: 46px;
}
.freon-pcard--shop:hover {
	box-shadow: 0 24px 54px rgba(35, 78, 96, 0.1);
}

/* Ψηλότερη εικόνα → πιο μακρόστενη κάρτα (μόνο shop, όχι στα ψυκτικά) */
.freon-pcard--shop .freon-pcard__media {
	height: 250px;
}

.freon-pcard *,
.freon-pcard *::before,
.freon-pcard *::after {
	box-sizing: border-box;
}

/* --------------------------------------------------------------- Media */

.freon-pcard__media {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 220px;
	margin-bottom: 20px;
	overflow: hidden;
	text-decoration: none;
}

.freon-pcard__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: 100%;
	object-fit: contain;
	transition: transform 0.5s ease;
}

.freon-pcard--zoom:hover .freon-pcard__img {
	transform: scale(1.06);
}

/* ---------------------------------------------- Simple: floating image */
/* Το λευκό μεταφέρεται σε ξεχωριστό panel· η εικόνα «κρέμεται» από πάνω.
   Η θέση του λευκού ορίζεται σε σχέση με το ΚΑΤΩ μέρος της εικόνας
   (--fp-overlap = πόσο ανεβαίνει το λευκό μέσα στην εικόνα). */

.freon-pcard--simple {
	--fp-overlap: 110px;
	background: transparent !important;
	padding: 0 !important;
	box-shadow: none !important;
	overflow: visible;
}

.freon-pcard--simple .freon-pcard__media {
	position: relative;
	z-index: 2;
	margin-bottom: 0;
}

.freon-pcard--simple .freon-pcard__panel {
	position: relative;
	z-index: 1;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 22px 45px rgba(35, 78, 96, 0.07);
	margin-top: calc(-1 * var(--fp-overlap));
	padding: calc(var(--fp-overlap) + 26px) 30px 30px;
	text-align: center;
}

/* ---------------------------------------------------------------- Body */

.freon-pcard__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	text-align: center;
}

.freon-pcard__title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #234e60;
}

.freon-pcard__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.freon-pcard__subtitle {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.65;
	color: #7a8a97;
}

.freon-pcard__subtitle p {
	margin: 0;
}

/* --------------------------------------- Shop: foot (τιμή + κουμπί) */

.freon-pcard__foot {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	align-items: center; /* κεντραρισμένη τιμή + pill κουμπί (όπως στο design) */
	width: 100%;
	padding-top: 8px;
}

/* ------------------------------------------------------- Shop: price */

.freon-pcard__price {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	color: #234e60;
	margin: 14px 0;
}

.freon-pcard__price del {
	opacity: 0.5;
	font-weight: 400;
	margin-inline-end: 0.4em;
}

/* --------------------------------------------------- Shop: cart button */

.freon-pcard__cart {
	margin-top: auto;
}

.freon-pcard a.freon-pcard__cart-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: auto; /* pill βάσει περιεχομένου, κεντραρισμένο (όχι full-width) */
	max-width: 100%;
	min-height: 46px;
	margin-top: 6px;
	padding: 0 30px;
	border: 0;
	border-radius: 40px;
	background: #bfddf0;
	color: #234e60;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.freon-pcard a.freon-pcard__cart-btn:hover,
.freon-pcard a.freon-pcard__cart-btn:focus {
	background: #234e60;
	color: #fff;
}

/* WooCommerce ajax states */
.freon-pcard a.freon-pcard__cart-btn.loading {
	opacity: 0.75;
	pointer-events: none;
}

.freon-pcard a.freon-pcard__cart-btn.added::after {
	content: "✓";
	margin-inline-start: 6px;
}

.freon-pcard__cart-icon {
	display: inline-flex;
	line-height: 0;
}

.freon-pcard__cart-icon svg {
	width: 18px;
	height: 18px;
}

.freon-pcard__cart-icon i {
	font-size: 18px;
}

/* Το «view cart» link που προσθέτει το WooCommerce μετά το add — κρυφό μέσα στην κάρτα */
.freon-pcard .added_to_cart {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	color: #234e60;
	text-decoration: underline;
}

/* ------------------------------------------------------------- Plus */

.freon-pcard__plus {
	position: absolute;
	right: 22px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	line-height: 0;
	color: #b7dbf2;
	text-decoration: none;
	transition: color 0.25s ease, transform 0.25s ease;
	z-index: 2;
}

.freon-pcard__plus svg {
	width: 1em;
	height: 1em;
}

.freon-pcard__plus:hover {
	transform: rotate(90deg);
}

.freon-pcard:hover .freon-pcard__plus {
	color: #234e60;
}

/* ----------------------------------------------------------- Editor */

.freon-pcard--empty {
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
	border: 1px dashed #b7c6d3;
	border-radius: 16px;
	color: #7a8a97;
	font-size: 14px;
}

/* --------------------------------------------------------- Responsive */

@media (max-width: 767px) {
	.freon-pcard {
		padding: 24px 22px 22px;
	}

	.freon-pcard__media {
		height: 180px;
	}

	.freon-pcard--shop .freon-pcard__media {
		height: 210px;
	}

	.freon-pcard--shop {
		padding-bottom: 38px;
	}

	.freon-pcard__plus {
		right: 16px;
		bottom: 14px;
	}
}
