:root {
	/* Primary colours (from your screenshots) */
	--teal: #016B8E;        /* CRYO Blue */
	--teal-2: #037DA5;      /* Lighter */
	--text: #07212C;        /* Blue-tint grayscale (100%) */
	--text-heading:#002B3B;

	--cryo-teal: #016B8E;
	--cryo-ink: #00536F;    /* Darker */
	--cryo-muted: #8197A1;  /* Blue-tint grayscale (40%) */
	--cryo-border: #DBE3E8; /* Blue-tint grayscale (10%) */
	--cryo-pill: #E2EAEE;   /* Blue-tint grayscale (5%) */
	--cryo-pill-text: #016B8E;

	/* Supporting neutrals (from grayscale section) */
	--ink: #092A39;         /* Blue-tint grayscale (80%) */
	--muted: #445963;       /* Blue-tint grayscale (60%) */
	--line: #DBE3E8;        /* matches border */
	--soft: #F4FBFF;        /* Blue-tint grayscale (0%) */
	--soft-2: #E2EAEE;      /* matches pill */

	--radius: 18px;
	--button-font: 16px;
	--nav-font: 14px;
	--title-max-width:500px;
}


body, button, input, textarea, select {
	font-family:"Rethink Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	letter-spacing: .6px;
}



/* Match the clean spacing/feel from the screenshot */
.site-header {
	min-height: 57px;
	border-bottom: 1px solid rgba(0, 0, 0, .06);
	background: #fff;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;

	position: relative;
	transition: all 0.3s ease;
}

.sticky {
	position: fixed;
	top: 15px;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 1370px;
	margin: auto;
	padding: 5px;
	border-radius: 15px;

	/* animation effect */
	animation: slideDown 0.4s ease forwards;

	backdrop-filter: blur(10px);
	background: rgba(255,255,255,0.8);
	transform: scale(0.98);
}

/* KEYFRAME ANIMATION */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}


.navbar-brand img {
	max-height: 33px;
	max-width: 105px;
	display: block;
}

button.navbar-toggler {
	border: none;
}

.dropdown-menu-end[data-bs-popper] {
	right: auto;
}

/* ===== Equipment dropdown with images ===== */
.equipDropMenu {
	width: 100%;
	padding: 18px 18px 14px;
	border: 0;
	border-radius: 16px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.equipDropWrap {
	width: 100%;
}

.equipDropItem {
	text-decoration: none;
	display: block;
	text-align: center;
	color: var(--text);
	width: 19%;
	margin: auto;
}

.equipDropImg {
	background: #f4fbff;
	border-radius: 14px;
}

.equipDropImg img {
	width: 100%;
	max-height: 140px;
	height: auto;
	object-fit: contain;
	display: block;
	border-radius:15px;
}

.equipDropName {
	font-size: 13px;
	font-weight: 500;
	margin-top: 10px;
	color: var(--text);
}

/* Buttons under dropdown */
.equipDropActions {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}

/* ----- Desktop: show items as a 5-column grid (no slider feel) ----- */
@media (min-width: 768px) {

	.site-header{
		min-height:auto; 
	}

	/* Disable owl styling and force grid layout */
	.equipDropCarousel {
		display: grid !important;
		grid-template-columns: repeat(5, 1fr);
		gap: 16px;
	}

	.equipDropCarousel .owl-stage-outer,
	.equipDropCarousel .owl-stage,
	.equipDropCarousel .owl-item {
		width: 100% !important;
		transform: none !important;
	}

	.equipDropCarousel .owl-item {
		float: none !important;
	}
}

/* ----- Mobile: slider ----- */
@media (max-width: 767px) {
	.equipDropMenu {
		width: calc(100vw - 22px);
		padding: 16px 14px 14px;
	}

	.navbar-toggler{
		padding:0;
	}

	.equipDropActions {
		flex-direction: column;
	}

	.equipDropActions .btn {
		width: 100%;
		justify-content: center;
	}

	/* spacing inside owl */
	.equipDropCarousel .item,
	.equipDropCarousel .owl-item {
		padding: 0 6px;
	}
}

/* ===== FULL WIDTH EQUIPMENT MEGA DROPDOWN ===== */
.navbar .equipMega {
	position: static;
	/* KEY: breaks container limit */
	/* max-width: 90%;
	overflow: hidden; */
}

.navbar {
	padding-top:0;
	padding-bottom:0;
}

.navbar .equipMega .dropdown-menu {
	width: 100vw;
	max-width: 100%;
	left: 0 !important;
	right: 0 !important;
	top: 100%;
	/* 	margin-top: 12px; */
	border-radius: 0;
	padding: 28px 15px 26px;
	border: 0;
}

/* center content inside mega menu */
.equipMega .equipDropMenu {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	box-shadow: none;
	border-radius: 24px;
}

.navRow{
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y : 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x));
	justify-content: center;
}

/* Responsive */
@media (max-width: 767px) {

	.site-header {
		min-height: 56px;
	}
	.navbar{
		padding-top:6px;
	}
}

/* Mobile fix */
@media (max-width: 991px) {
	.navbar .equipMega .dropdown-menu {
		margin-top: 6px;
		padding-top: 0;
		border-radius: 0;
		width: auto;
	}

	.equipDropItem {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 10px;
		width: 100%;
	}

	.equipDropImg {
        max-width: 90px;
        height: 70px;
	}

	.flex-wrap-mobile {
		flex-flow: column;
	}

	.flex-wrap-mobile div,
	.flex-wrap-mobile a {
		width: 100%;
	}
    
    .flex-wrap-mobile a {
        margin-left:0;
        margin-right:0;
        max-width:100%;
    }

	.flex-wrap-mobile div button {
		width: 100%;
	}
}


/* Center menu on desktop */
@media (min-width: 992px) {
	.navbar .navbar-collapse {
		justify-content: center;
		margin-left: -130px;
	}

	.navbar .right-actions {
		position: absolute;
		right: 12px;
	}
}

.nav-link {
	font-size: var(--nav-font);
	font-weight: 400;
	color: #002B3B;
	padding: 18px 14px;
}

.nav-link:hover {
	/* color: #0b5ed7; */
	color: var(--teal);
}

.btn-contact {
	padding: 10px 18px;
	border-radius: 10px;
	font-weight: 400;
}

.country-btn {
	border-radius: 8px;
	padding: 12px;
	font-weight: 400;
	border: 1px solid #7D98A2;
	background: #fff;
	font-size: 16px;
	color: #7D98A2;
}

.dropdown-toggle::after {
	margin-left: .5rem;
}






/* ================= HERO BASE ================= */
.hero {
	position: relative;
	min-height: 90vh;
	min-height: 722px;
	background: url("https://dummyimage.com/1920x900/aeaeae/fff") center/cover no-repeat;
	color: #fff;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Desktop overlay */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		rgba(0, 0, 0, .8) 0%,
		rgba(0, 0, 0, .55) 35%,
		rgba(0, 0, 0, .25) 60%,
		rgba(0, 0, 0, .05) 100%);
}

/* ================= CONTENT ================= */
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 560px;
}

.hero-sub {
	font-size: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 12px;
	opacity: .85;
}

.hero-title {
	font-size: clamp(2.2rem, 4vw, 48px);
	line-height: 1.15;
	font-weight: 400;
	margin-bottom: 18px;
}

.hero-text {
	font-size: 16px;
	line-height: 1.6;
	opacity: .9;
	margin-bottom: 26px;
	max-width: 480px;
}


.cryo-leader-section {
	background: #fff;
	padding:30px 0;
}

.cryo-title {
	color: var(--text);
	letter-spacing: 0.01em;
	line-height: 1.15;
	font-size: clamp(26px, 3vw, 40px);
	margin: 0;
	/*max-width: 510px;*/
	margin-left: auto;
	margin-right:auto;
}

/*title*/
.cryo-title,
.equipIntro-title,
.treatments-title,
.benefits-title,
.how-title,
.split-title,
.experts-title,
.testi-title,
.news-title,
.prefooter-title
{
	font-weight: 400!important;
}

.cryo-subtitle {
	color: var(--muted);
	line-height: 1.6;
	font-size: 16px;
	max-width: 718px;
}

.cryo-card {
	background: #fff;
	overflow: hidden;
	height: 100%;
	/*border: 1px solid var(--cryo-border);*/
	/*border-radius: var(--radius);*/
	/*box-shadow: 0 8px 22px rgba(7, 33, 44, 0.06);*/
}

.cryo-card-media {
	aspect-ratio: 16 / 10;
	background: #f2f6f8;
	border-bottom: 1px solid var(--cryo-border);
	overflow: hidden;
	border-radius: var(--radius);
}

.cryo-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cryo-card-body {
	padding: 16px 10px 18px;
}

.cryo-card-title {
	color: var(--text);
	font-size: 24px;
	font-weight: 500;
	margin: 0 0 8px;
}

.cryo-card-text {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.55;
	margin: 0 0 12px;
}

.cryo-pills {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.cryo-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: #F3FCFF;
	color: #7D98A2;
	font-size: 12px;
	font-weight: 500;
	border: 1px solid #E0EBEF;
	text-decoration: none;
}

/* Stats */
.cryo-stats {
	/*border-top: 1px solid var(--cryo-border);*/
	/*padding-top: 22px;*/
}

.cryo-stat-num {
	color: #037DA5;
	letter-spacing: -0.02em;
	font-size: clamp(27px, 3.4vw, 50px);
	line-height: 1;
	margin-bottom: 6px;
}

.cryo-stat-label {
	color: #002B3B;
	font-size: 16px;
	letter-spacing: 0.08em;
	font-weight: 400;
}

/* Small tweaks */
@media (max-width: 575.98px) {
	.cryo-card-body {
		padding: 14px;
	}
	.cryo-stats .row div {
		margin-top: 10px;
	}
	.cryo-stat-label {
		color: #002B3B;
		font-size: 13px;
	}
}


/* ================= BUTTONS ================= */

/* ================= PRIMARY BUTTON ================= */
.wc-block-components-checkout-place-order-button,
.btn-teal {
	background: var(--cryo-teal);        /* #016B8E */
	border: 1px solid var(--cryo-teal);
	color: #ffffff !important;
	border-radius: 8px;
	padding: 12px;
	font-weight: 400;
	transition: all .2s ease;
	font-size: var(--button-font);
}

/* Hover */
.btn-teal:hover {
	background: var(--teal-2);                 /* lighter */
	border-color:var(--teal-2);
	color: #ffffff !important;
}

/* Pressed */
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active,
.btn-teal:active,
.btn-teal:focus {
	background: var(--cryo-ink);                 /* darker */
	border-color: var(--cryo-ink);
	color: #ffffff !important;
	box-shadow: none;
}

/* Disabled */
.btn-teal:disabled,
.btn-teal.disabled {
	background: var(--muted);
	border-color: var(--muted);
	color: #ffffff !important;
	cursor: not-allowed;
	opacity: 1;
}


/* ================= SECONDARY BUTTON ================= */
.btn-outline-teal {
	background: #ffffff;
	border: 1px solid var(--cryo-teal);
	color: var(--cryo-teal);
	border-radius: 10px;
	padding: 10px 18px;
	font-weight: 400;
	transition: all .2s ease;
	font-size: var(--button-font);
}

/* Hover */
.btn-outline-teal:hover {
	background: #F4FBFF;                 /* very light blue */
	border-color: var(--teal-2);
	color: var(--teal-2);
}

/* Pressed */
.btn-outline-teal:active,
.btn-outline-teal:focus {
	background: #E2EAEE;
	border-color: var(--cryo-ink);
	color: var(--cryo-ink);
	box-shadow: none;
}

/* Disabled */
.btn-outline-teal:disabled,
.btn-outline-teal.disabled {
	background: #ffffff;
	border-color:  var(--cryo-muted);
	color: var(--cryo-muted);
	cursor: not-allowed;
	opacity: 1;
	font-size: var(--button-font);
}

.hero-buttons .btn {
	border-radius: 14px;
	padding: 14px 22px;
	font-weight: 400;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: var(--button-font);
	color: var(--teal-2);
}

.btn-light {
	color: var(--text);
}

.btn-outline-light {
	border-color: rgba(255, 255, 255, .7);
	color: #ffffff!important;
}

.btn-outline-light:hover {
	background: #fff;
	color: var(--text)!important;
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
	.hero {
		min-height: 100vh;
		align-items: flex-end;
	}

	/* Mobile bottom gradient */
	.hero::before {
		background: linear-gradient(180deg,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, .25) 30%,
			rgba(0, 0, 0, .65) 65%,
			rgba(0, 0, 0, .9) 100%);
	}

	.hero-content {
		max-width: 100%;
		padding-bottom: 32px;
	}

	.hero-title {
		font-size: 2.2rem;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-buttons .btn {
		width: 100%;
		justify-content: center;
	}
}





/* ===== Brand section ===== */
.brand-strip {
	padding: 30px 0;
	background: #fff;
}

.brand-title {
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	/* color: #1f2a37; */
	color: var(--text);
	margin-top: 18px;
	margin-bottom: 36px;
}

.brand-card {
	/* background: #f7f7f7; */
	/* height: 74px; */
	display: flex;
	align-items: center;
	justify-content: center;
	/* padding: 10px 14px; */
}

.brand-card img {
	/*max-height: 28px;*/
	max-width: 100%;
	width: auto;
	object-fit: contain;
}

/* Owl spacing */
.brand-carousel .owl-stage {
	display: flex;
	align-items: center;
}

.brand-carousel .item {
	padding: 0 0px;
	/* space between cards */
}

/* Remove default dots spacing (optional) */
.brand-carousel .owl-dots {
	margin-top: 16px;
}




.equipment-sec {
	padding: 48px 0 34px;
	background: #fff;
	color: var(--text);
}

.equipment-title {
	text-align: center;
	margin-bottom: 10px;
}

.equipment-desc {
	max-width: 760px;
	margin: 0 auto 18px;
	text-align: center;
	color: rgba(7, 48, 68, .75);
	line-height: 1.6;
	font-size: 15px;
}

.equipment-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}


.btn-outline-teal {
	background: #fff;
	color: var(--teal);
	border: 1px solid var(--teal);
	border-radius: 10px;
	padding: 10px 18px;
	font-weight: 400;
}

.btn-outline-teal:hover {
	background: #ecf3f5;
	color: var(--teal);
}

.btn-icon {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

/* cards */
.equip-card {
	text-align: center;
}

.equip-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 18px;
	background:
		linear-gradient(0deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .06)),
		url("https://dummyimage.com/800x800/ececec/aaaaaa") center/cover no-repeat;
	margin-bottom: 10px;
}

.equip-name {
	font-weight: 500;
	color: var(--text);
	margin: 0;
	font-size: 16px;
}

/* Desktop grid */
.equip-grid {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(4, 1fr);
	align-items: start;
}

/* Owl (mobile) */
.equip-carousel-wrap {
	display: none;
	/* shown on mobile */
}

.equip-carousel .item {
	padding: 0 18px;
}

/* Custom nav + dots like screenshot */
.equip-controls {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 18px;
	margin-top: 14px;
}

.equip-navbtn {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	border: 0;
	background: var(--teal);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.equip-dots {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-width: 90px;
}

.equip-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(7, 48, 68, .25);
}

.equip-dot.active {
	background: var(--teal);
	width: 8px;
	height: 8px;
}

/* Responsive: switch desktop grid -> mobile carousel */
@media (max-width: 767px) {
	.equipment-sec {
		padding: 40px 0 28px;
	}

	.equipment-actions {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		margin-bottom: 20px;
	}

	.equipment-actions .btn {
		width: 100%;
		max-width: 310px;
		justify-content: center;
	}

	.equip-grid {
		display: none;
	}

	.equip-carousel-wrap {
		display: block;
	}
}


/* ================= Treatments ================= */
.treatments-sec {
	padding: 30px 0 30px;
	background: #fff;
	color: var(--text);
}

.treatments-title {
	font-size: 40px;
	max-width: 610px;
	color: var(--text-heading);
	margin: auto;
	margin-bottom: 10px;
	text-align:center;
}

.treatments-desc {
	max-width: 700px;
	margin: 0 auto 18px;
	font-size: 16px;
	line-height: 1.6;
	color: #405A64;
	text-align:center;
}

.treatments-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

/* Desktop grid (3 cards) */
.treat-grid {
    display: flex;
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 15px;
    /* align-items: center; */
    justify-content: center;
}

/* Desktop grid (3 cards) */
.treat-type-grid {
	grid-template-columns: repeat(2, 1fr);
}

.treat-card {
	text-align: left;
	display: flex;
	flex-direction: column;
	height: 100%;
	width:100%;
	max-width:50%;
}

.treat-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 18px;
	background:
		linear-gradient(0deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .06)),
		url("https://dummyimage.com/1200x700/ececec/aaaaaa") center/cover no-repeat;
	margin-bottom: 14px;
}

.treat-name {
	font-weight:500;
	margin: 0 0 10px;
	font-size: 24px;
	color: var(--text-heading);
}

.treat-text {
	margin: 0 0 12px;
	font-size: 12px;
	line-height: 1.6;
	color: #737375;
	max-width: 95%;
	flex-grow: 1; /* makes text area expand */
}

.treat-tags {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	margin-top: auto; /* pushes tags to bottom */
}

.treat-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: #F3FCFF;
	color: #7D98A2;
	font-size: 12px;
	font-weight: 500;
	border: 1px solid #E0EBEF;
	text-decoration: none;
}

/* Mobile carousel */
.treat-carousel-wrap {
	display: none;
}

.treat-carousel .item {
	padding: 0 18px;
}

.treat-controls {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 18px;
	margin-top: 14px;
}

.treat-navbtn {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	border: 0;
	background: var(--teal);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.treat-dots {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-width: 90px;
}

.treat-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(7, 48, 68, .25);
}

.treat-dot.active {
	background: var(--teal);
}

/* Responsive */
@media (max-width: 767px) {

	.treat-name {
		font-size: 18px;
	}
	.treatments-title{
		font-size:30px;
	}

	.treatments-sec {
		padding: 15px 0 5px;
	}

	.treatments-actions {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		margin-top: 30px;
		margin-bottom: 50px;
	}

	.treatments-actions .btn {
		width: 100%;
		/*max-width: 310px;*/
		justify-content: center;
	}

	.treat-grid {
		display: none;
	}

	.treat-carousel-wrap {
		display: block;
	}
}



/* ================= Key Benefits ================= */
.benefits-sec {
	padding: 30px 0;
	background: #fff;
}

.benefits-img {
	/*width: 100%;*/
	/*aspect-ratio: 1 / 1.3;*/
	/*border-radius: 28px;*/
	/*background:*/
	/*  linear-gradient(0deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .06)),*/
	/*  url("https://dummyimage.com/1200x1500/ececec/aaaaaa") center/cover no-repeat;*/
}

.benefits-img img {
	max-width: 100%;
	height: auto;
	width: auto;
	border-radius: 18px;
}

.benefits-content {
	max-width: 640px;
}

.benefits-sub {
	font-size: 18px;
	font-weight: 500;
	color: #002B3B;
	margin-bottom: 10px;
}

.benefits-title {
	font-size: 40px;
	color: var(--text-heading);
	margin: auto;
	margin-bottom: 10px;
}

.benefits-text {
	margin: 0 auto 18px;
	font-size: 16px;
	line-height: 1.6;
	color: #405A64;
}

.benefits-list {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
	display: grid;
	gap: 14px;
}

.benefits-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #737375;
	font-size: 18px;
	font-weight: 500;
}

.benefits-list .tick {
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--text);
	font-weight: 800;
}

.benefits-btn {
	border-radius: 10px;
	padding: 10px 16px;
}

/* Mobile: make button full width like screenshot */
@media (max-width: 767px) {

	.benefits-title{
		font-size:30px;
	}

	.benefits-sec {
		padding: 15px 0;
	}

	.benefits-content {
		max-width: 100%;
	}

	.benefits-img {
		aspect-ratio: 1 / 1;
		border-radius: 22px;
	}

	.benefits-btn {
		width: 100%;
		justify-content: center;
		padding: 12px 16px;
	}
}





/* ================= How it works ================= */
.howitworks-sec {
	padding: 30px 0;
	background: #fff;
	color: var(--text);
}

.how-title {
	font-size: 40px;
	max-width: 615px;
	color: var(--text-heading);
	margin: auto;
	margin-bottom: 10px;
	text-align: center;
}

.how-desc {
	max-width: 650px;
	margin: 0 auto 18px;
	font-size: 16px;
	line-height: 1.6;
	color: #405A64;
	text-align: center;
}

.how-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

/* Desktop cards (3) */
.how-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	align-items: start;
}

.how-card {
	text-align: left;
}

.how-img {
	width: 100%;
	aspect-ratio: 8 / 6;
	border-radius: 18px;
	background:
	  linear-gradient(0deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .06)),*/
	  url("https://dummyimage.com/1200x1500/ececec/aaaaaa") center/cover no-repeat;
        background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	margin-bottom: 14px;
}

.split-img img,
.how-img img {
	max-width: 100%;
	border-radius:18px;
}

.how-cryotherapy-img {
	aspect-ratio: 16 / 15;
}

.how-step {
	font-weight: 500;
	color: #016B8E;
	font-size: 18px;
	margin-bottom: 6px;
}

.how-card-title {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 500;
	color: #002B3B;
}

.how-card-text {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #002B3B;
	max-width: 95%;
	margin: 0;
}

/* Mobile carousel */
.how-carousel-wrap {
	display: none;
}

.how-carousel .item {
	padding: 0 18px;
}

.how-controls {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 18px;
	margin-top: 14px;
}

.how-navbtn {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	border: 0;
	background: var(--teal);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.how-dots {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-width: 90px;
}

.how-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(7, 48, 68, .25);
}

.how-dot.active {
	background: var(--teal);
}

/* Responsive */
@media (max-width: 767px) {

	.how-title {
		font-size: 30px;
	}

	.howitworks-sec {
		padding: 44px 0 28px;
	}

	.how-actions {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		margin-bottom: 20px;
	}

	.how-actions .btn {
		width: 100%;
		/*max-width: 310px;*/
		justify-content: center;
	}

	.how-grid {
		display: none;
	}

	.how-carousel-wrap {
		display: block;
	}
}




/* ================= Split sections (Franchise + About) ================= */
.split-sec {
	padding: 30px 0;
	background: #fff;
}

.split-content {
	max-width: 560px;
}

.split-sub {
	font-size: 18px;
	font-weight: 500;
	color: #002B3B;
	margin-bottom: 10px;
}

.split-title {
	font-size: 40px;
	color: var(--text-heading);
	margin: auto;
	margin-bottom: 10px;
}

.split-text {
	margin: 0 auto 18px;
	font-size: 16px;
	line-height: 1.6;
	color: #405A64;
}

.split-list {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
	display: grid;
	gap: 14px;
}

.split-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #737375;
	font-size: 18px;
	font-weight: 500;
}

.split-list .tick {
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: var(--text);
}

.split-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Big image blocks */
.split-img {
	width: 100%;
	aspect-ratio: 1 / 1.3;
	border-radius: 28px;

	background:
		linear-gradient(0deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .06)),
		url("https://dummyimage.com/1200x900/ececec/aaaaaa") center/cover no-repeat;
	background-size:cover;
	background-position:center;
}

/* create some breathing space between Franchise and About like screenshot */
.split-about {
	padding-top: 30px;
}

/* Mobile like screenshot: stacked + full width buttons */
@media (max-width: 767px) {

	.split-title {
		font-size: 30px;
	}
	.split-sec {
		padding: 44px 0 15px;
	}

	.split-content {
		max-width: 100%;
	}

	.split-img {
		border-radius: 22px;
		aspect-ratio: 1 / 1;
	}

	.split-actions {
		flex-direction: column;
	}

	.split-actions .btn {
		width: 100%;
		justify-content: center;
	}
}



/* ================= Our Experts ================= */
.experts-sec {
	padding: 30px 0 40px;
	background: #fff;
	color: var(--text);
}

.experts-title {
	font-size: 40px;
	max-width: 660px;
	color: var(--text-heading);
	margin: auto;
	margin-bottom: 10px;
	text-align: center;
}

.experts-desc {
	max-width: 670px;
	margin: 0 auto 25px;
	font-size: 16px;
	line-height: 1.6;
	color: #405A64;
	text-align: center;
}

.experts-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 34px;
}

/* Desktop grid */
.experts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	align-items: start;
}

.expert-card {}

/* Photo block with bottom gradient overlay */
.expert-photo {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	border-radius: 18px;
	overflow: hidden;
}

/* bottom fade like screenshot */
.expert-photo::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 48%;
	background: linear-gradient(180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, .25) 35%,
		rgba(0, 0, 0, .55) 100%);
}

.expert-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 18px 5px 16px;
	z-index: 2;
	text-align: center;
	color: #fff;
}

.expert-name {
	font-size: 24px;
	line-height: 1.15;
	margin-bottom: 8px;
}

.expert-role {
	font-size: 16px;
	line-height: 1.35;
	opacity: .95;
}

/* Mobile carousel */
.experts-carousel-wrap {
	display: none;
}

.experts-carousel .item {
	padding: 0 18px;
}

.experts-controls {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 18px;
	margin-top: 14px;
}

.experts-navbtn {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	border: 0;
	background: var(--teal);
	color: #fff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.experts-dots {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-width: 90px;
}

.experts-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(7, 48, 68, .25);
}

.experts-dot.active {
	background: var(--teal);
}

/* Responsive */
@media (max-width: 767px) {
	.experts-title {
		font-size: 30px;
	}

	.experts-sec {
		padding: 44px 0 28px;
	}

	.experts-actions {
		flex-direction: column;
		align-items: center;
		gap: 12px;
		margin-bottom: 20px;
	}

	.experts-actions .btn {
		width: 100%;
		max-width: 310px;
		justify-content: center;
	}

	.experts-grid {
		display: none;
	}

	.experts-carousel-wrap {
		display: block;
	}
}




/* ================= Testimonials ================= */
.testi-sec{
	padding: 30px 0px;
	background:#fff;
	overflow:hidden;
}

.testi-title {
	font-size: 40px;
	max-width: 660px;
	color: var(--text-heading);
	margin: auto;
	margin-bottom: 30px;
	text-align: center;
}

.testi-slider{
	max-width: 1100px;     /* same feel as screenshot */
	margin: 0 auto;
	position: relative;
}

/* allow side cards to be visible */
.testi-carousel .owl-stage-outer{
	overflow: visible !important;
}

.testi-card{
	background:#eef9ff;
	border-radius: 18px;
	padding: 26px 26px 22px;
	min-height: 180px;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	border: 1px solid rgba(219,227,232,.6);
	box-shadow: 0 10px 22px rgba(7,33,44,.06);
}

.testi-quote{
	font-size: 24px;
	line-height: 1.7;
	font-weight: 500;
	color: #002B3B;
	margin:0;
}

.testi-user{
	display:flex;
	align-items:center;
	gap:10px;
	margin-top:16px;
}

.testi-avatar{
	max-width: 22px;
	height: 22px;
	border-radius:999px;
	object-fit:cover;
}

.testi-name{
	font-size: 14px;
	color: #016B8E;
	font-weight: 400;
}

/* nav buttons center bottom */
.testi-controls{
	display:flex;
	justify-content:center;
	gap:10px;
	margin-top: 22px;
}

.testi-navbtn{
	width: 42px;
	height: 42px;
	border-radius: 10px;
	border:0;
	background: var(--teal);
	color:#fff;
	font-size: 18px;
	display:flex;
	align-items:center;
	justify-content:center;
}

/* Responsive */
@media (max-width: 767px) {

	.testi-title {
		font-size: 30px;
	}

	.testi-quote {
		padding: 44px 0 28px;
		font-size: 15px;
	}

}


/* ================= Latest news ================= */
.news-sec {
	padding: 50px 0 30px;
	background: #fff;
	color: var(--text);
}

.news-title {
	font-size: 40px;
	max-width: 660px;
	color: var(--text-heading);
	margin: auto;
	text-align: center;
	margin-bottom: 40px;
}

.news-desc {
	max-width: 650px;
	margin: 0 auto 18px;
	font-size: 16px;
	line-height: 1.6;
	color: #405A64;
	text-align: center;
}

.news-topbtn {
	display: flex;
	justify-content: center;
	margin-bottom: 32px;
}

/* Desktop grid */
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	align-items: start;
}

.news-card {
	text-align: left;
}

.news-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 18px;
	/* 	background:
	linear-gradient(0deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .06)),
	url("https://dummyimage.com/1200x700/ececec/aaaaaa") center/cover no-repeat; */
	margin-bottom: 14px;
	background-size: cover;
	background-position:center;
	background-repeat:no-repeat;
}

.news-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.news-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: #F3FCFF;
	color: #7D98A2;
	font-size: 12px;
	font-weight: 500;
	border: 1px solid #E0EBEF;
}

.news-date {
	font-size: 12px;
	color: #737375;
}

.news-head {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.15;
	color: #002B3B;
	max-width: 95%;
}

.news-text {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.6;
	color: #737375;
	max-width: 95%;
}

.news-link {
	font-size: 14px;
	color: #016B8E;
	font-weight: 400;
	text-decoration: none;
}

.news-link:hover {
	text-decoration: underline;
}

/* Mobile carousel */
.news-carousel-wrap {
	display: none;
}

.news-carousel .item {
	padding: 0 18px;
}

.news-controls {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 18px;
	margin-top: 14px;
}

.news-navbtn {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	border: 0;
	background: var(--teal);
	color: #fff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.news-dots {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	min-width: 90px;
}

.news-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(7, 48, 68, .25);
}

.news-dot.active {
	background: var(--teal);
}

/* Responsive */
@media (max-width: 767px) {
	.news-title {
		font-size: 30px;
		margin-bottom: 30px;
	}

	.news-sec {
		padding: 44px 0 28px;
	}

	.news-topbtn .btn {
		width: 100%;
		max-width: 320px;
		justify-content: center;
	}

	.news-grid {
		display: none;
	}

	.news-carousel-wrap {
		display: block;
	}
}




/* ================= Pre-footer CTA ================= */
.prefooter-cta {
	padding: 60px 0 30px;
	background: #fff;
}

.prefooter-box {
	position: relative;
	border-radius: 42px;
	overflow: hidden;
	min-height: 360px;
	padding: 70px 70px;
	background: url("https://dummyimage.com/1920x900/aeaeae/fff") center/cover no-repeat;
}

/* dark overlay so text is readable */
.prefooter-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .25);
}

.prefooter-content {
	position: relative;
	z-index: 2;
	max-width: 520px;
	color: #fff;
}

.prefooter-sub {
	font-size: 18px;
	font-weight: 500;
	opacity: .95;
	margin-bottom: 12px;
}

.prefooter-title {
	font-size:48px;
	line-height: 1.05;
	margin: 0 0 18px;
}

.prefooter-text {
	margin: 0 0 22px;
	font-size: 16px;
	line-height: 1.7;
	opacity: .95;
	max-width: 520px;
}

/* Mobile like screenshot */
@media (max-width: 767px) {
	.prefooter-cta {
		padding: 44px 0;
	}

	.prefooter-box {
		border-radius: 34px;
		/*min-height: 620px;*/
		/* tall banner */
		padding: 48px 26px;
	}

	.prefooter-content {
		max-width: 100%;
	}

	.prefooter-title {
		font-size: 35px;
		line-height: 1.05;
	}
}



/* ================= Footer ================= */
.site-footer {
	background: #fff;
	padding: 44px 0 18px;
	border-top: 1px solid rgba(0, 0, 0, .06);
	color: var(--text);
}

.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr 320px;
	gap: 36px;
	align-items: start;
	padding-bottom: 34px;
}

.footer-logo img {
	max-width: 105px;
	height: auto;
	display: block;
}
.footer-social{
	margin-top:2rem;
	display:flex;
	gap:14px;
	align-items:center;
}

.footer-social img{
	height:35px;
	width:auto;
	display:block;
}
.footer-title {
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 14px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 14px;
}

.footer-links a {
	color: #002B3B;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-arrow {
	color: var(--teal);
	font-weight: 700;
	margin-right: 6px;
}

.footer-news-title {
	font-size: 12px;
	color: #18181A;
	margin: 6px 0 10px;
}

.footer-form {
	display: flex;
	flex-direction: column;
	/* button below like screenshot */
	gap: 10px;
	max-width: 320px;
}

.footer-input {
	height: 46px;
	border-radius: 8px;
	border: 1px solid rgba(7, 48, 68, .35);
	padding: 0 14px;
	outline: none;
}

.footer-input:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 .2rem rgba(0, 123, 255, 0.15);
}

/* .footer-btn {
background: var(--teal);
width: 86px;
height: 42px;
border: 0;
border-radius: 10px;
color: #fff;
font-size: 14px;
} */

.footer-btn {
	width: 86px;
	background: var(--cryo-teal);        /* #016B8E */
	border: 1px solid var(--cryo-teal);
	color: #ffffff !important;
	border-radius: 10px;
	padding: 10px 18px;
	font-weight: 500;
	transition: all .2s ease;
	font-size: var(--button-font);
	margin:auto;
	margin-right:0;
}

/* Hover */
.footer-btn:hover {
	background: var(--teal-2);                 /* lighter */
	border-color:var(--teal-2);
	color: #ffffff !important;
}


/* Bottom row */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: center;
	padding-top: 18px;
	border-top: 1px solid rgba(0, 0, 0, .06);
	font-size: 12px;
	color: #737375;
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer-bottom-links a {
	color: #737375;
	text-decoration: none;
}

.footer-bottom-links a:hover {
	text-decoration: underline;
}

.footer-dot {
	opacity: .7;
}

/* Responsive */
@media (max-width: 991px) {
	.footer-top {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-news {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.site-footer {
		padding: 34px 0 16px;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 24px;
        text-align: center;
        justify-items: center;
        text-align: -webkit-center
	}
	.footer-social {
        margin-top: 2rem;
        margin-bottom: 1rem;
	}

	.footer-logo img {
		max-width: 110px;
	}

	.footer-form {
		max-width: 100%;
	}

	.footer-btn {
		width: 96px;
		margin-left: 0;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-bottom-links {
		justify-content: flex-start;
	}
}








/* =========================
EQUIPMENT PAGE
========================= */

/* Page hero (shorter than home hero) */
.page-hero {
	position: relative;
	color: #fff;
	background: url("https://dummyimage.com/1920x520/000/fff") center/cover no-repeat;
	min-height: 320px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		rgba(0, 0, 0, .78) 0%,
		rgba(0, 0, 0, .48) 32%,
		rgba(0, 0, 0, .20) 58%,
		rgba(0, 0, 0, .05) 100%);
}

.page-hero__content {
	position: relative;
	z-index: 2;
	max-width: 620px;
	padding: 34px 0;
}

.page-hero__sub {
	font-size: 14px;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 10px;
	opacity: .9;
}

.page-hero__title {
	font-size: clamp(2.2rem, 4.2vw, 3.6rem);
	line-height: 1.05;
	font-weight: 400;
	margin: 0 0 14px;
}

.page-hero__text {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.7;
	opacity: .9;
	max-width: 520px;
}

.page-hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Blocks */
.equip-page {
	padding: 50px 0 10px;
	background: #fff;
	color: var(--text);
}

.equip-row {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 56px;
	align-items: center;
	padding: 70px 0;
}

.equip-row--reverse {
	grid-template-columns: .95fr 1.05fr;
}

.equip-row--reverse .equip-media {
	order: 2;
}

.equip-row--reverse .equip-info {
	order: 1;
}

.equip-imgbox {
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 28px;
	background: #f1f1f1 url("https://dummyimage.com/900x900/e9e9e9/aaaaaa") center/cover no-repeat;
}

.equip-imgbox img {
	width: 100%;
	border-radius: 28px;
}

.equip-sub {
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .75;
	margin-bottom: 10px;
}

.equip-title {
	margin: 0 0 12px;
}

.equip-text {
	font-size: 13px;
	line-height: 1.75;
	color: rgba(7, 48, 68, .75);
	margin: 0 0 18px;
	max-width: 520px;
}

/* list */
.equip-list {
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	display: grid;
	gap: 10px;
}

.equip-list li {
	display: flex;
	gap: 12px;
	align-items: center;
	color: rgba(7, 48, 68, .72);
	font-size: 13px;
}

.equip-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: var(--text);
	font-weight: 700;
}

/* buttons row */
.equip-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

@media screen and (max-width: 600px) {
    .equip-actions {
        justify-content: center;
    }
}


/* bottom CTA */
.equip-bottom-cta {
	padding: 60px 0 80px;
	background: #fff;
}

.equip-bottom-cta__box {
	position: relative;
	border-radius: 34px;
	overflow: hidden;
	padding: 64px 60px;
	background: url("https://dummyimage.com/1920x520/000/fff") center/cover no-repeat;
	color: #fff;
}

.equip-bottom-cta__box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
		rgba(0, 0, 0, .62) 0%,
		rgba(0, 0, 0, .38) 40%,
		rgba(0, 0, 0, .10) 100%);
}

.equip-bottom-cta__box>* {
	position: relative;
	z-index: 2;
	max-width: 560px;
}

.equip-bottom-cta__sub {
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .9;
	margin-bottom: 10px;
}

.equip-bottom-cta__title {
	font-size: clamp(2rem, 3.6vw, 3.2rem);
	line-height: 1.05;
	font-weight: 400;
	margin: 0 0 14px;
}

.equip-bottom-cta__text {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.7;
	opacity: .9;
}

/* Mobile */
@media (max-width: 767px) {
	.page-hero {
		min-height: 520px;
		align-items: flex-end;
	}

	.page-hero::before {
		background: linear-gradient(180deg,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, .20) 30%,
			rgba(0, 0, 0, .62) 65%,
			rgba(0, 0, 0, .88) 100%);
	}

	.page-hero__content {
		padding: 0 0 28px;
	}

	.page-hero__actions .btn {
		width: 100%;
		justify-content: center;
	}

	.equip-row,
	.equip-row--reverse {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 42px 0;
	}

	.equip-row--reverse .equip-media,
	.equip-row--reverse .equip-info {
		order: initial;
	}

	.equip-bottom-cta__box {
		padding: 44px 18px;
		border-radius: 26px;
	}
}



/* ===== Equipment Details Hero (Figma Match) ===== */
.equipD-hero {
	/* background like the figma checker */
	/* background:
	linear-gradient(90deg, rgba(0, 0, 0, .06) 0, rgba(0, 0, 0, .06) 1px, transparent 1px) 0 0 / 120px 120px,
	linear-gradient(0deg, rgba(0, 0, 0, .06) 0, rgba(0, 0, 0, .06) 1px, transparent 1px) 0 0 / 120px 120px,
	#f7fafc; */
}

.equipD-hero-bg-product {
	background-image: url(https://dummyimage.com/1920x1100/000/fff);
	background-size: cover;
    background-position: center;
}


.equipD-hero__wrap {
	position: relative;
	min-height: 720px;
	/* big empty space like screenshot */
	padding: 34px 28px;
	display: flex;
	justify-content: flex-end;
	/* card on the right */
	align-items: flex-start;
}

/* Card */
.equipD-card {
	width: 420px;
	max-width: calc(100vw - 32px);
	background: #fff;
	border-radius: 28px;
	box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
	padding: 28px 26px 22px;
	display: flex;
	flex-direction: column;
	min-height: 640px;
	/* gives same tall card look */
}

/* Top content */
.equipD-title {
	text-align: center;
	font-weight: 500;
	font-size: 28px;
	/* color: #073044; */
	color: var(--text);
	margin: 8px 0 12px;
}

.equipD-subtitle {
	text-align: center;
	font-weight: 500;
	/* color: #073044; */
	color: #002B3B;
	font-size: 16px;
	line-height: 1.25;
	margin-bottom: 14px;
}

.equipD-text {
	text-align: center;
	
	color: var(--text);
    color: #405A64;
	font-size: 12.5px;
	line-height: 1.55;
	max-width: 330px;
	margin: 0 auto;
}

/* Push bottom group to the bottom like figma */
.equipD-card__top {
	padding-top: 4px;
}

.equipD-card__bottom {
	margin-top: auto;
}

/* Features grid */
.equipD-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 28px;
	padding: 150px 4px 18px;
}

.equipD-feature {
	text-align: center;
	/* color: #073044; */
	color: var(--text);
}

.equipD-ico {
	width: 36px;
	height: 36px;
	margin: 0 auto 8px;
	display: grid;
	place-items: center;
	/* color: #073044; */
	color: var(--text);

}

.equipD-ico svg {
	width: 26px;
	height: 26px;
}

.equipD-feature__title {
	font-weight: 700;
	font-size: 13px;
	margin-bottom: 3px;
}

.equipD-feature__desc {
	font-size: 11.5px;
	line-height: 1.25;
	color: rgba(7, 48, 68, .45);
}

/* Buttons (match spacing like screenshot) */
.equipD-actions {
	display: grid;
	gap: 10px;
	padding: 8px 0 0;
}

.equipD-actions .btn {
	border-radius: 10px;
	padding: 12px 16px;
}

/* Mobile (same card, centered, same pattern bg) */
@media (max-width: 767px) {
	.equipD-hero__wrap {
		min-height: 820px;
		justify-content: center;
		padding: 26px 14px;
		padding-top: 280px;
	}

	.equipD-hero-bg-product {
		background-image: url(https://dummyimage.com/1920x1920/000/fff);
		background-size: contain;
		background-position: top;
		background-repeat: no-repeat;
	}

	.equipD-card {
		width: 100%;
		min-height: 680px;
	}

	.equipD-text {
		max-width: 320px;
	}

	.equipD-features {
		gap: 18px 18px;
	}
}


/* ===== Equipment Inner Page – Section 2 ===== */
.equipS2 {
	background-image: url("https://dummyimage.com/2000x1400/f2f4f6/d9dfe4");
	background-repeat: no-repeat;
	background-size: cover;
	/* checker feel like figma image */
}

.equipS2__wrap {
	min-height: 950px;
	padding: 60px 40px;
	display: grid;
	grid-template-columns: 520px 1fr;
	gap: 40px;
	align-items: center;
}

/* LEFT */
.equipS2__sub {
	font-size: 13px;
	color: var(--text);
	margin-bottom: 10px;
}

.equipS2__title {
	font-size: 40px;
	line-height: 1.15;
	font-weight: 400;
	color: var(--text);
	margin-bottom: 16px;
}

.equipS2__text {
	max-width: 420px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--text);
	margin-bottom: 22px;
}

.equipS2__actions {
	display: flex;
	gap: 12px;
	margin-bottom: 30px;
}

/* SPECS */
.equipS2__specs {
	/* max-width: 420px;*/
    margin-top:5rem;
}

.equipS2__spec {
	padding: 18px 0;
	border-bottom: 1px solid rgba(7, 48, 68, .15);
}

.equipS2__value {
	font-size: 26px;
	font-weight: 400;
	/* color: #0b6a7b; */
	color: var(--teal);
	margin-bottom: 4px;
}

.equipS2__desc {
	font-size: 13px;
	color: rgba(7, 48, 68, .55);
}

/* RIGHT IMAGE */
.equipS2__right img {
	max-width: 520px;
	width: 100%;
	display: block;
	margin-left: auto;
	border-radius:18px;
}

/* MOBILE IMAGE BLOCK */
.equipS2__mobileBg {
	display: none;
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 30px 0;
	background-image: url("https://dummyimage.com/800x800/f2f4f6/d9dfe4");
	background-repeat: no-repeat;
	background-size: cover;
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
	.equipS2__wrap {
		grid-template-columns: 1fr;
		padding: 40px 20px;
		min-height: auto;
	}

	.equipS2 {
		background-image: none;
	}

	.equipS2__title {
		font-size: 32px;
	}

	.equipS2__actions {
		flex-direction: column;
	}

	.equipS2__right {
		display: none;
		/* hide product image */
	}

	.equipS2__mobileBg {
		display: block;
	}
    
    /* SPECS */
    .equipS2__specs {

        margin-top:1rem;
    }
}



/* ===== Section 3: Introduction + Slider + Overview ===== */
.equipIntro {
	padding: 50px 0 50px;
	background: #fff;
}

.equipIntro-head {
	margin-bottom: 37px;
}

.equipIntro-sub {
	font-size: 18px;
	color: #B1C1C7;
	margin-bottom: 8px;
	font-weight: 500;
}

.equipIntro-title {
	font-size: 40px;
	max-width:600px;
	color: var(--text-heading);
	margin:auto;
	margin-bottom: 10px;
}

.equipIntro-desc {
	max-width:700px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.6;
	color: #405A64;
}

/* Slider area */
.equipIntro-slider {
	position: relative;
	padding: 0 64px;
	/* space for arrows */
	margin-bottom: 30px;
}

.equipIntro-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 8px;
	background: var(--teal);
	color: #fff;
	display: grid;
	place-items: center;
	z-index: 5;
}

.equipIntro-prev {
	left: 22px;
}

.equipIntro-next {
	right: 22px;
}

/* Carousel look */
.equipIntro-carousel .owl-stage {
	display: flex;
	align-items: center;
}

.introCard {
	width: 100%;
}

.introMedia {
	width: 100%;
	border-radius: 18px;
	background-color: #f2f4f6;
	background-repeat: no-repeat;
	background-size: cover;
	aspect-ratio: 16/9;
	position: relative;
	overflow: hidden;
}

.introCaption {
	font-size: 11px;
	color: rgba(7, 48, 68, .35);
	margin-top: 8px;
}

.home-introCaption {
	color: #000000;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}


/* center slide bigger, side slides smaller (like your screenshot) */
.equipIntro-carousel .owl-item {
	opacity: .55;
	transform: scale(.86);
	transition: .25s ease;
}

.equipIntro-carousel .owl-item.center {
	opacity: 1;
	transform: scale(1);
}

/* Play button */
.introPlay {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 0;
	background: var(--teal);
	color: #fff;
	border-radius: 10px;
	padding: 8px 14px;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .14);
}

.introPlay span {
	font-size: 12px;
}

/* Overview */
.equipOverview {
	display: grid;
	grid-template-columns: 500px 1fr;
	gap: 46px;
	align-items: center;
}

.equipOverview-title {
	font-size: 34px;
	font-weight: 400;
	color: var(--text);
	margin-bottom: 12px;
}

.equipOverview-actions {
	display: flex;
	gap: 12px;
	/* flex-wrap: wrap; */
}

.equipOverview-right {
	color: rgba(7, 48, 68, .65);
	font-size: 13px;
	line-height: 1.75;
}

.equipOverview-right p {
	margin: 0 0 18px;
}

/* Mobile */
@media (max-width: 767px) {
	.equipIntro-nav{
		z-index:1;
	}

	.equipIntro {
		padding: 46px 0 0px;
	}

	.equipIntro-title {
		font-size: 30px;
	}

	.equipIntro-slider {
		padding: 0 18px;
		/* arrows closer */
		margin-bottom: 44px;
	}

	.equipIntro-prev {
		left: 10px;
	}

	.equipIntro-next {
		right: 10px;
	}

	.equipOverview {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.equipOverview-actions {
		flex-direction: column;
	}
}




/* ===== Benefits Section ===== */
.equipBenefits {
	padding: 56px 0 70px;
	background: #fff;
}

.equipBenefits-sub {
	font-size: 13px;
	color: rgba(7, 48, 68, .35);
	margin-bottom: 10px;
}

.equipBenefits-title {
	font-size: 34px;
	font-weight: 400;
	color: var(--text);
	margin-bottom: 10px;
}

.mw-600-auto-center {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.equipBenefits-desc {
	max-width: 540px;
	margin: 0 auto 18px;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(7, 48, 68, .55);
}

.equipBenefits-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
}

/* cards */
.benefitCard-bg {
	border-radius: 18px;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 3/4;
	/* tall like screenshot */
	background:
		url("https://dummyimage.com/600x800/f2f4f6/d9dfe4") center/cover no-repeat;
	position: relative;
}

.benefitCard-overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	padding: 14px 14px 12px;
	color: #fff;
	background: linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .14) 60%, rgba(0, 0, 0, 0) 100%);
}

.benefitCard-overlay h4 {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 700;
}

.benefitCard-overlay p {
	margin: 0;
	font-size: 12px;
	line-height: 1.35;
	opacity: .95;
	max-width: 92%;
}

/* Desktop grid: 4 cards */
.equipBenefits-grid {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

/* Mobile carousel */
.equipBenefits-carouselWrap {
	display: none;
}

.equipBenefits-carousel .item {
	padding: 0 10px;
}

.benefitsControls {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 18px;
	margin-top: 16px;
}

.benefitsNav {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	border: 0;
	background: var(--teal);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 18px;
}

.benefitsDots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex: 1;
}

.benefitsDot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: rgba(7, 48, 68, .28);
}

.benefitsDot.active {
	background: var(--teal);
}

/* Responsive */
@media (max-width: 767px) {
	.equipBenefits {
		padding: 44px 0 56px;
	}

	.equipBenefits-title {
		font-size: 30px;
	}

	.btn-outline-teal,
	.equipBenefits-cta, .btn-teal {
		width: 100%;
		max-width: 360px;
		margin: 0px;
		justify-content: center;
	}
    .split-actions{
    	gap:0
    }
	.btn-outline-teal, .btn-teal{
		margin: 5px 0;
	}
    
    .treatments-actions,.equip-actions,.frOverview-actions,.equipDropActions,
    .split-actions {
    	display: block;
    }	

	.equipBenefits-grid {
		display: none;
	}

	.equipBenefits-carouselWrap {
		display: block;
		margin-top: 26px;
	}
    .treat-card{
    	max-width:100%;
    }
}

@media (max-width: 600px) {
    .btn-outline-teal, .btn-teal{
        margin: 10px auto;
        display: block;
    }
}


/* ===== Technical Specifications ===== */
.techSpecs {
	/* background: #052b3a; */
	background: var(--text);
	/* deep teal */
	color: #fff;
	padding: 64px 0 70px;
}

.techSpecs-head {
	max-width: 680px;
	margin: 0 auto 54px;
}

.techSpecs-title {
	font-size: 34px;
	font-weight: 400;
	margin-bottom: 10px;
}

.techSpecs-desc {
	font-size: 12.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .7);
	margin: 0 auto 18px;
	max-width: 560px;
}

.techSpecs-actions {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

/* buttons (match screenshot: light primary + dark outlined secondary) */
.techBtnPrimary {
	background: #fff;
	/* color: #073044; */
	color: var(--text);
	border: 1px solid #fff;
	border-radius: 8px;
	padding: 9px 18px;
	font-weight: 500;
	font-size: 12px;
}

.techBtnPrimary:hover {
	background: #f2f6f9;
	color: var(--text);
}

.techBtnSecondary {
	background: transparent;
	color: rgba(255, 255, 255, .85);
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 8px;
	padding: 9px 18px;
	font-weight: 500;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.techBtnSecondary:hover {
	background: rgba(255, 255, 255, .06);
	color: #fff;
}

/* rows layout */
.techRow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	padding: 44px 0;
}

.techRow-last {
	padding-bottom: 10px;
}

/* left block */
.techLeft-title {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 10px;
}

.techLeft-text {
	font-size: 11.8px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .62);
	max-width: 460px;
	margin: 0;
}

/* right table */
.techTable-title {
	font-size: 14px;
	font-weight: 700;
	margin: 6px 0 14px;
	color: #fff;
}

.techTable {
	border-top: 1px solid rgba(255, 255, 255, .14);
}

.techTr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.techTdL {
	font-size: 11px;
	font-weight: 500;
	color: rgba(255, 255, 255, .85);
}

.techTdR {
	font-size: 11px;
	color: rgba(255, 255, 255, .7);
	text-align: end;
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
	.techSpecs {
		padding: 44px 0 44px;
        margin-top:30px;
	}

	.techSpecs-title {
		font-size: 30px;
		line-height: 1.15;
	}

	.techSpecs-actions {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		margin-top: 10px;
	}

	.techBtnPrimary,
	.techBtnSecondary {
		width: 100%;
		justify-content: center;
		padding: 12px 16px;
	}

	.techRow {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 26px 0;
	}

	.techLeft-title {
		font-size: 22px;
		margin-bottom: 8px;
	}

	.techTable-title {
		margin-top: 4px;
	}
}




/* ===== Contact for pricing banner ===== */
.equipCtaBanner {
	padding: 60px 0 40px;
	background: #fff;
}

.equipCtaBanner-box {
	border-radius: 26px;
	padding: 54px 54px;
	min-height: 260px;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.equipCtaBanner-content {
	max-width: 520px;
}

.equipCtaBanner-sub {
	font-size: 13px;
	color: rgba(255, 255, 255, .75);
	margin-bottom: 8px;
}

.equipCtaBanner-title {
	font-size: 44px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 12px;
}

.equipCtaBanner-text {
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .80);
	max-width: 480px;
	margin-bottom: 18px;
}

/* ===== FAQ ===== */
.equipFaq {
	padding: 60px 0 70px;
	background: #fff;
}

.equipFaq-head {
	max-width: 680px;
	margin: 0 auto 34px;
}

.equipFaq-sub {
	font-size: 13px;
	color: rgba(7, 48, 68, .35);
	margin-bottom: 8px;
}

.equipFaq-title {
	font-size: 34px;
	font-weight: 400;
	color: var(--text);
	margin-bottom: 10px;
}

.equipFaq-desc {
	font-size: 13px;
	line-height: 1.6;
	color: rgba(7, 48, 68, .55);
	margin: 0 auto 18px;
	max-width: 560px;
}

.equipFaq-cta {
	display: inline-flex;
	min-width: 160px;
	justify-content: center;
}

/* accordion wrapper width */
.equipFaq-wrap {
	max-width: 620px;
}

/* custom accordion look like screenshot */
.equipFaq-item {
	border: 0;
	border-bottom: 1px solid rgba(7, 48, 68, .18);
	border-radius: 0;
}

.equipFaq-btn {
	padding: 16px 0;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
}

.equipFaq-btn::after {
	/* make the arrow look thin like figma */
	transform: scale(.9);
}

.equipFaq-body {
	padding: 0 0 18px 0;
	font-size: 13px;
	line-height: 1.65;
	color: var(--text)
}

/* opened item background */
.equipFaq-item .accordion-collapse.show {
	/* background: #eef6fb; */
	/* border-radius: 8px; */
}

.equipFaq-item .accordion-collapse.show .equipFaq-body {
	/* padding: 12px 14px 16px; */
}

.equipFaq-item:has(.accordion-collapse.show) .equipFaq-btn {
	/* padding: 16px 14px;   */
}

/* Mobile */
@media (max-width: 767px) {
	.equipCtaBanner {
		padding: 40px 0 26px;
	}

	.equipCtaBanner-box {
		padding: 34px 22px;
		border-radius: 26px;
	}

	.equipCtaBanner-title {
		font-size: 38px;
		line-height: 1.05;
	}

	.equipFaq {
		padding: 40px 0 56px;
	}

	.equipFaq-title {
		font-size: 32px;
		line-height: 1.15;
	}

	.equipFaq-cta {
		width: 100%;
		max-width: 360px;
	}
}


/* ===== Franchise Hero ===== */
.frHero {
	position: relative;
	min-height: 300px;
	padding: 70px 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

/* dark fade from left (strong) -> right (transparent) */
.frHero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg,
			rgba(0, 0, 0, .78) 0%,
			rgba(0, 0, 0, .62) 22%,
			rgba(0, 0, 0, .40) 42%,
			rgba(0, 0, 0, .18) 60%,
			rgba(0, 0, 0, 0) 78%);
	pointer-events: none;
}

.frHero .container {
	position: relative;
	z-index: 2;
}

.frHero__content {
	max-width: 640px;
}

.frHero__sub {
	font-size: 13px;
	color: rgba(255, 255, 255, .78);
	margin-bottom: 10px;
}

.frHero__title {
	font-size: 56px;
	font-weight: 400;
	line-height: 1.04;
	color: #fff;
	margin: 0 0 18px;
}

.frHero__text {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .80);
	margin: 0;
	max-width: 560px;
}

/* Mobile */
@media (max-width: 767px) {
	.frHero {
		min-height: 260px;
		padding: 44px 0;
		background-size: cover;
	}

	.frHero__title {
		font-size: 40px;
		line-height: 1.05;
		margin-bottom: 14px;
	}

	.frHero__text {
		font-size: 13px;
	}

	.frHero__overlay {
		background:
			linear-gradient(180deg,
				rgba(0, 0, 0, .72) 0%,
				rgba(0, 0, 0, .58) 35%,
				rgba(0, 0, 0, .35) 62%,
				rgba(0, 0, 0, .12) 80%,
				rgba(0, 0, 0, 0) 100%);
	}
}


/* ===== Franchise: Overview of the opportunity ===== */
.frOverview {
	padding: 70px 0 70px;
	background: #fff;
}

.frOverview-grid {
	display: grid;
	grid-template-columns: 520px 1fr;
	gap: 20px;
	align-items: start;
}

.frOverview-title {
	font-size: 35px;
	line-height: 1.1;
	font-weight: 400;
	color: var(--text);
	margin: 0 0 18px;
	max-width: 520px;
}

.frOverview-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.frOverview-btn {
	min-width: 160px;
	justify-content: center;
}

.frOverview-right {
	font-size: 13px;
	line-height: 1.75;
	color: rgba(7, 48, 68, .55);
}

.frOverview-right p {
	margin: 0 0 28px;
}

/* Mobile */
@media (max-width: 767px) {
	.frOverview {
		padding: 44px 0 44px;
	}

	.frOverview-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.frOverview-title {
		font-size: 30px;
		max-width: 100%;
		margin-bottom: 14px;
	}

	.frOverview-actions {
		flex-direction: column;
		gap: 10px;
		margin-bottom: 10px;
	}

	.frOverview-btn {
		width: 100%;
	}

	.frOverview-right p {
		margin-bottom: 22px;
	}
}




/* ===== Treatments Hero ===== */
.treatHero {
	position: relative;
	min-height: 300px;
	padding: 70px 0;
	background-repeat: no-repeat;
	background-size: cover;
	/* grid look */
	background-position: center;
	overflow: hidden;
}

/* dark fade: left strong → right transparent */
.treatHero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg,
			rgba(0, 0, 0, .78) 0%,
			rgba(0, 0, 0, .62) 22%,
			rgba(0, 0, 0, .40) 42%,
			rgba(0, 0, 0, .18) 60%,
			rgba(0, 0, 0, 0) 78%);
	pointer-events: none;
}

.treatHero .container {
	position: relative;
	z-index: 2;
}

.treatHero__content {
	max-width: 640px;
}

.treatHero__sub {
	font-size: 13px;
	color: rgba(255, 255, 255, .78);
	margin-bottom: 10px;
}

.treatHero__title {
	font-size: 56px;
	font-weight: 400;
	line-height: 1.04;
	color: #fff;
	margin: 0 0 18px;
}

.treatHero__text {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .80);
	max-width: 560px;
	margin: 0;
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
	.treatHero {
		min-height: 260px;
		padding: 44px 0;
		background-size: cover;
	}

	.treatHero__title {
		font-size: 40px;
		line-height: 1.05;
		margin-bottom: 14px;
	}

	.treatHero__text {
		font-size: 13px;
	}

	/* vertical fade on mobile (matches screenshot) */
	.treatHero__overlay {
		background:
			linear-gradient(180deg,
				rgba(0, 0, 0, .72) 0%,
				rgba(0, 0, 0, .58) 35%,
				rgba(0, 0, 0, .35) 62%,
				rgba(0, 0, 0, .12) 80%,
				rgba(0, 0, 0, 0) 100%);
	}
}




/* ===== Treatments Listing ===== */
.treatList {
	padding: 22px 0 60px;
	background: #fff;
}

/* tabs */
.treatTabs {
	display: flex;
	justify-content: center;
	gap: 18px;
	margin: 0 auto 22px;
	position: sticky;
	/* optional - remove if you don't want sticky */
	top: 0;
	/* 	z-index: 5; */
	padding: 10px 0;
	background: #fff;
}

.treatTab {
	border: 0;
	background: transparent;
	font-size: 12px;
	font-weight: 500;
	color: rgba(7, 48, 68, .55);
	padding: 6px 10px;
	border-radius: 8px;
}

.treatTab.is-active {
	background: var(--teal);
	color: #fff;
}

.treatTabsMobile {
	display: none;
	margin-bottom: 14px;
}

/* grid with responsive columns requirement */
.treatGrid {
	display: grid;
	gap: 26px 26px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	/* default 4 */
	padding: 0 10px;
}

/* <1440 => 3 columns */
@media (max-width: 1439px) {
	.treatGrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* <=1024 => 2 columns */
@media (max-width: 1024px) {
	.treatGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* <=767 => 1 column + dropdown tabs */
@media (max-width: 767px) {
	.treatTabs {
		display: none;
	}

	.treatTabsMobile {
		display: block;
		padding: 0 10px;
	}

	.treatGrid {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 0 10px;
	}
}

/* card */
.treatCard {
	background: transparent;
}

.treatImg {
	border-radius: 18px;
	overflow: hidden;
	background: #f3f7fa;
	aspect-ratio: 16/9;
    background-image: url(https://redbrassadvertising.com/cryo.com/wp-content/uploads/2026/03/logo.svg);
    background-repeat: no-repeat;
    background-position: center;	
}

.treatImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.treatTitle {
	font-size: 16px;
	font-weight: 700;
	margin: 12px 0 6px;
	color: var(--text);
}

.treatDesc {
	font-size: 11px;
	line-height: 1.55;
	color: var(--text);
	margin: 0 0 8px;
}

.treatBadges {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.treatBadge {
	font-size: 10px;
	padding: 4px 10px;
	border-radius: 999px;
	background: #eef6fb;
	color: var(--teal);
	border: 1px solid rgba(46, 111, 134, .12);
}

/* pagination */
.treatPagination {
	margin-top: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 11px;
}

.treatPageLink {
	color: var(--teal);
	text-decoration: none;
	padding: 6px 10px;
}

.treatPageNum {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 6px;
	color: rgba(7, 48, 68, .55);
	text-decoration: none;
}

.treatPageNum.is-active {
	border: 1px solid var(--teal);
	color: var(--teal);
}

.treatPageDots {
	/* color: rgba(7, 48, 68, .35); */
	color: var(--text);
}




/* ===== Contact Block (Get in touch) ===== */
.contactBlock {
	padding: 70px 0 70px;
	background: #fff;
}

.contactBlock-grid {
	display: grid;
	grid-template-columns: 1fr 680px;
	gap: 80px;
	align-items: start;
}

.contactBlock-title {
	font-size: 52px;
	font-weight: 400;
	line-height: 1.05;
	color: var(--text);
	margin: 0 0 18px;
}

.contactBlock-desc {
	font-size: 13px;
	line-height: 1.75;
	color: rgba(7, 48, 68, .55);
	max-width: 620px;
	margin: 0 0 22px;
}

/* left info list */
.contactInfo {
	display: grid;
	gap: 14px;
	margin-bottom: 18px;
}

.contactInfo-item {
	display: grid;
	grid-template-columns: 22px 1fr;
	column-gap: 12px;
	align-items: start;
}

.contactInfo-ic {
	font-size: 15px;
	color: var(--text);
	margin-top: 2px;
}

.contactInfo-link {
	/* color: rgba(7, 48, 68, .70); */
	color: var(--text);
	text-decoration: underline;
	font-size: 13px;
	line-height: 1.4;
}

.contactHours {
	font-size: 13px;
	line-height: 1.35;
	color: rgba(7, 48, 68, .70);
	margin-top: 6px;
}

/* ===== Form styles ===== */
.contactForm {
	/*max-width: 420px;*/
	/*margin-left: auto;*/
}

.formRow {
	margin-bottom: 16px;
}

.formRow-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.formLabel {
	display: block;
	font-size: 11px;
	font-weight: 700;
	color: rgba(7, 48, 68, .80);
	margin: 0 0 6px;
}

.formControl {
	width: 100%;
	height: 46px;
	border-radius: 8px;
	border: 1px solid rgba(7, 48, 68, .45);
	padding: 0 14px;
	font-size: 14px;
	color: var(--text);
	outline: none;
	background: #fff;
}

.formControl:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 2px rgba(10, 106, 132, .15);
}

.formTextarea {
	height: 70px;
	padding-top: 12px;
	resize: none;
}

.formActions {
	display: flex;
	justify-content: flex-end;
	margin-top: 8px;
}

.contactSubmit {
	padding: 12px 22px;
	border-radius: 10px;
	min-width: 120px;
	justify-content: center;
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
	.contactBlock {
		padding: 44px 0 44px;
	}

	.contactBlock-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.contactBlock-title {
		font-size: 44px;
		margin-bottom: 12px;
	}

	.contactForm {
		max-width: 100%;
		margin-left: 0;
	}

	.formRow-2 {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.formActions {
		justify-content: flex-end;
	}
}


/* ===== Equipment contact choices ===== */
.equipChoice {
	margin: 6px 0 18px;
}

.equipChoice-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin: 10px 0 12px;
	max-width: 420px;
	line-height: 1.25;
}

.equipChoice-item {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 10px;
	align-items: center;
	cursor: warning;
	margin: 9px 0;
	user-select: none;
	cursor: pointer;
}

.equipChoice-check {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.equipChoice-box {
	width: 18px;
	height: 18px;
	border: 1px solid rgba(7, 48, 68, .35);
	border-radius: 2px;
	display: inline-block;
	background: #fff;
	position: relative;
}

.equipChoice-text {
	font-size: 13px;
	color: rgba(7, 48, 68, .80);
}

/* checked style */
.equipChoice-check:checked+.equipChoice-box {
	border-color: var(--teal);
}

.equipChoice-check:checked+.equipChoice-box::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 6px;
	height: 11px;
	border: solid var(--teal);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* mobile spacing to match screenshot */
@media (max-width: 767px) {
	.equipChoice-title {
		font-size: 16px;
	}
}


/* ===== Form section titles (Franchise contact) ===== */
.formSectionTitle {
	font-size: 16px;
	font-weight: 800;
	color: var(--text);
	margin: 14px 0 10px;
}

.formHintTitle {
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
	margin: 6px 0 10px;
	line-height: 1.35;
}

.formNote {
	font-size: 12px;
	line-height: 1.5;
	color: rgba(7, 48, 68, .70);
	margin: 10px 0 14px;
	max-width: 420px;
}

.mt-10 {
	margin-top: 18px;
}


/* ===== Support note text ===== */
.supportNote {
	font-size: 14px;
	line-height: 1.45;
	color: var(--text);
	margin: 6px 0 16px;
	max-width: 420px;
}

.supportNote-link {
	color: var(--cryo-ink);
	text-decoration: underline;
}



/* =========================
LOCATIONS PAGE LAYOUT
========================= */
.locationsPage {
	display: grid;
	grid-template-columns: 380px 1fr;
	min-height: calc(100vh - 120px);
	background: #fff;
}

/* LEFT SIDEBAR */
.locSidebar {
	border-right: 1px solid rgba(7, 48, 68, .08);
	background: #fff;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.locSidebar-top {
	padding: 18px 18px 12px;
}

.locSidebar-title {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 10px;
	color: var(--text);
}

.locSearch {
	position: relative;
	display: flex;
	align-items: center;
}

.locSearch-input {
	width: 100%;
	height: 44px;
	border: 1px solid rgba(7, 48, 68, .25);
	border-radius: 8px;
	padding: 0 44px 0 14px;
	outline: none;
}

.locSearch-btn {
	position: absolute;
	right: 8px;
	width: 34px;
	height: 34px;
	border: 0;
	background: transparent;
	color: rgba(7, 48, 68, .55);
}

.locMeta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 12px;
	font-size: 12px;
	color: rgba(7, 48, 68, .7);
}

.locUseMy {
	border: 0;
	background: transparent;
	color: var(--teal);
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 6px;
}

.locList {
	padding: 6px 0 14px;
	overflow: auto;
	height: 100%;
}

/* LIST ITEM */
.locItem {
	width: 100%;
	border: 0;
	background: #fff;
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 12px;
	padding: 14px 18px;
	text-align: left;
	border-top: 1px solid rgba(7, 48, 68, .06);
}

.locItem:hover {
	background: rgba(7, 106, 132, .03);
}

.locItem.active {
	background: rgba(7, 106, 132, .06);
}

.locItem-thumb img {
	width: 72px;
	height: 72px;
	border-radius: 10px;
	display: block;
	object-fit: cover;
	border: 1px solid rgba(7, 48, 68, .08);
}

.locItem-name {
	font-weight: 800;
	color: var(--text);
	margin-bottom: 2px;
}

.locItem-addr {
	font-size: 11px;
	color: rgba(7, 48, 68, .65);
	line-height: 1.25;
}

.locItem-tags {
	margin-top: 6px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.pill {
	font-size: 11px;
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(7, 106, 132, .08);
	color: rgba(7, 48, 68, .75);
	border: 1px solid rgba(7, 106, 132, .12);
}

/* MAP */
.locMapWrap {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.locMap {
	position: relative;
	height: 100%;
	min-height: calc(100vh - 120px);
}

.locMap {
	height: 100%;
	min-height: calc(100vh - 120px);
	width: 100%;
	border-radius: 0;
}

.mapPin {
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--teal);
	box-shadow: 0 6px 20px rgba(0, 0, 0, .10);
	transform: translate(-50%, -50%);
}

.mapPin::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 9px solid var(--teal);
	transform: translateX(-50%);
}

.mapPin.active {
	background: var(--teal);
}

/* RIGHT PANEL */
.locPanel {
	position: absolute;
	right: 24px;
	top: 100px;
	width: 360px;
	z-index: 5;
}

.locPanel-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
	overflow: hidden;
	border: 1px solid rgba(7, 48, 68, .08);
}

.locPanel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 16px 8px;
}

.locPanel-title {
	font-size: 18px;
	font-weight: 900;
	color: var(--text);
}

.locPanel-close {
	border: 0;
	background: transparent;
	color: var(--text);
	width: 38px;
	height: 38px;
	border-radius: 10px;
}

.locPanel-info {
	padding: 0 16px 10px;
}

.infoRow {
	display: grid;
	grid-template-columns: 16px 1fr;
	gap: 10px;
	align-items: start;
	margin: 8px 0;
	font-size: 12px;
	color: rgba(7, 48, 68, .75);
}

.locPanel-cta {
	border-radius: 10px;
	margin: 0 16px 12px;
	padding: 12px 14px;
	width: -webkit-fill-available;
}

.locPanel-imgRow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 0 16px 12px;
}

.locPanel-imgRow img {
	width: 100%;
	height: 90px;
	border-radius: 12px;
	object-fit: cover;
	border: 1px solid rgba(7, 48, 68, .08);
}

.locPanel-subTitle {
	padding: 6px 16px 6px;
	font-weight: 900;
	color: var(--text);
}

.locPanel-section {
	padding: 8px 16px 14px;
}

.locPanel-rowTitle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 900;
	color: var(--text);
	margin-bottom: 6px;
}

.miniLink {
	font-size: 12px;
	color: var(--teal);
	text-decoration: none;
	font-weight: 800;
}

.pillWrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.locList {
	max-height: 600px;
}

.locMap {
	position: relative;
	min-height: 100%;
	overflow: hidden;
}

.mapboxgl-map {
	width: 100%;
	height: 100%;
}

.mapboxgl-canvas {
	border-radius: inherit;
}

.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right {
	z-index: 2;
}

.mapboxMarkerWrap {
	position: relative;
	width: 22px;
	height: 22px;
	cursor: pointer;
}

.mapboxPin {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #0a6a84;
	border: 3px solid #ffffff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
	transition: .25s ease;
}

.mapboxMarkerWrap.active .mapboxPin {
	transform: scale(1.2);
	background: #083f50;
}

.mapboxLabel {
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%);
	white-space: nowrap;
	background: #fff;
	color: #0b2430;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
	opacity: 0;
	visibility: hidden;
	transition: .25s ease;
}

.mapboxMarkerWrap:hover .mapboxLabel,
.mapboxMarkerWrap.active .mapboxLabel {
	opacity: 1;
	visibility: visible;
	bottom: 34px;
}

.locCountry {
	font-size: 12px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #0a6a84;
	font-weight: 700;
	letter-spacing: .4px;
	margin-bottom: 6px;
}

.locPanel-country {
	font-size: 13px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #0a6a84;
	font-weight: 700;
	letter-spacing: .5px;
	margin-bottom: 10px;
}

.locPanel-metaBlock {
	margin-top: 18px;
	border-top: 1px solid rgba(0, 0, 0, .08);
	padding: 0 16px;
	padding-top: 16px;
    margin-bottom:12px;
}

.locPanel-metaTitle {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #0a6a84;
	margin-bottom: 8px;
}

.locPanel-metaText {
	font-size: 14px;
	line-height: 1.7;
	color: #2f3a40;
	white-space: pre-line;
}

.locPanel-singleImg {
    display: flex;
    gap: 10px;
    padding: 0 16px;
    overflow: auto;
}

.locPanel-singleImg img {
	width: 100%;
	border-radius: 14px;
	display: block;
	max-width: 33.33%;
}

.emptyNote {
	font-size: 14px;
	color: #6f7c82;
}

.locGroupLabel {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 700;
	color: #0a6a84;
	text-transform: uppercase;
}

@media (max-width: 991.98px) {
	.locMapWrap {
		display: none !important;
	}
}

main.locationsPage {
    max-width: 1800px;
}
@media screen and (min-width: 1600px) {
	.locationsPage {
		position:relative;
	}
}


/* Equipment list inside panel */
.equipMiniList {
	border-top: 1px solid rgba(7, 48, 68, .08);
	margin-top: 10px;
}

.equipMiniItem {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 10px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(7, 48, 68, .08);
}

.equipMiniItem img {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	border: 1px solid rgba(7, 48, 68, .08);
	object-fit: cover;
}

.equipMiniName {
	font-weight: 900;
	color: var(--text);
	font-size: 13px;
	line-height: 1.2;
}

.equipMiniDesc {
	font-size: 11px;
	color: rgba(7, 48, 68, .65);
	line-height: 1.25;
	margin-top: 2px;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 991px) {
	.locationsPage {
		grid-template-columns: 1fr;
	}

	.locMapWrap {
		display: none;
		/* mobile shows list only like your screenshot */
	}

	.locSidebar {
		border-right: 0;
	}

	/* panel becomes mobile card */
	.locPanel {
		position: static;
		width: 100%;
		padding: 12px 14px 18px;
		background: #fff;
	}

	.locPanel-card {
		box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
		border-radius: 18px;
	}
}


.leafletPin {
	background: #ffffff;
	border: 2px solid var(--teal);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	position: relative;
}

.leafletPin::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 9px solid var(--teal);
}

.leafletPin.active {
	background: var(--teal);
}

/* Mobile: ONLY list visible (no map until you want) */
@media (max-width: 991px) {
	.locMapWrap {
		display: none;
	}

	/* hide map */
	.locPanel {
		display: none;
	}

	/* hidden until click */
	.locPanel.active {
		/* show popup */
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		top: 101px;
		bottom: 12px;
		z-index: 9;
		overflow: auto;
	}

	/* optional overlay feel */
	.locPanel.active .locPanel-card {
		border-radius: 18px;
		box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
	}
}

/* Leaflet custom pin (your existing class) */
.leafletPin {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--cryo-teal);
	border: 3px solid var(--cryo-border);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.leaflet-marker-icon.active .leafletPin {
	transform: scale(1.15);
	box-shadow: 0 10px 26px rgba(10, 106, 132, .35);
}


/* container should look like the screenshot: clean + thin separators */
.scienceSection {
	background: #fff;
}

.scienceDivider {
	border: 0;
	border-top: 1px solid var(--cryo-border);
	opacity: 1;
}

.scienceLead {
	font-size: 22px;
	line-height: 1.3;
	/* color: #0b2530; */
	color: var(--text);
	letter-spacing: -.01em;
}

.scienceBadge {
	text-align: left;
}

.scienceBadge-title {
	font-size: 12px;
	font-weight: 700;
	/* color: #0b2530; */
	color: var(--text);
	margin-bottom: 4px;
}

.scienceBadge-sub {
	font-size: 11px;
	color: #6f7f8a;
	line-height: 1.2;
}

.scienceNo {
	font-size: 28px;
	line-height: 1;
	color: #cfd7de;
	font-weight: 300;
	letter-spacing: .02em;
	padding-top: 4px;
}

.scienceImg {
	width: 100%;
	max-width: 260px;
}

.scienceImg img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 0;
	display: block;
}

.scienceH {
	font-size: 34px;
	letter-spacing: -.02em;
	/* color: #0b2530; */
	color: var(--text);
	margin: 0 0 10px;
	font-weight: 400;
}

.scienceSub {
	font-size: 13px;
	font-weight: 700;
	/* color: #0b2530; */
	color: var(--text);
	margin-bottom: 6px;
}

.scienceP {
	font-size: 12px;
	color: #6f7f8a;
	line-height: 1.35;
	max-width: 560px;
	margin: 0 0 18px;
}

.scienceBtn {
	border: 1px solid var(--cryo-teal);
	;
	color: var(--cryo-teal);
	;
	background: transparent;
	border-radius: 6px;
	padding: 8px 14px;
	font-size: 12px;
	font-weight: 500;
}

.scienceBtn:hover {
	background: var(--cryo-teal);
	;
	color: #fff;
}

/* MOBILE = matches stacked layout */
@media (max-width: 991.98px) {
	.scienceLead {
		font-size: 18px;
	}

	.scienceBadge {
		text-align: left;
		margin-top: 6px;
	}

	.scienceImg {
		max-width: 100%;
	}

	.scienceH {
		font-size: 26px;
	}

	.scienceNo {
		font-size: 26px;
	}
}

@media (max-width: 575.98px) {
	.scienceTop {
		padding-top: 28px !important;
		padding-bottom: 28px !important;
	}

	.scienceItem {
		padding-top: 26px !important;
		padding-bottom: 26px !important;
	}

	.scienceImg {
		max-width: 100%;
	}

	.scienceP {
		max-width: 100%;
	}
}


.newsSection {
	padding: 22px 0 40px;
	background: #fff;
	position: relative;
}

/* Tabs */
.newsTabsWrap {
	display: flex;
	justify-content: center;
	margin-bottom: 18px;
}

.newsTabs {
	gap: 10px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.newsTab {
	border: 0;
	background: transparent;
	color: var(--cryo-ink);
	padding: 6px 12px;
	border-radius: 10px;
	font-weight: 500;
	font-size: 13px;
	line-height: 1;
}

.newsTab.is-active {
	background: var(--cryo-teal);
	color: #fff;
}

/* Mobile select */
.newsSelect {
	width: 180px;
	/* border: 1px solid #016b8e; */
	border: 1px solid var(--teal-2);
	border-radius: 6px;
	padding: 8px 10px;
	font-weight: 500;
	color: var(--cryo-ink);
	background: #f3fcff
}

/* Grid */
.newsGrid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px 22px;
}

@media (max-width: 1439.98px) {
	.newsGrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.newsGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.newsSection {
		padding-top: 4.2rem;
	}

	.newsdropdown {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		padding: 15px 15px;
		background: #f3fcff;
	}

	.newsGrid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.newsTabsWrap {
		justify-content: flex-start;
	}

	.newsSelect {
		width: 100%;
	}
}

.newsCard {
	display: flex;
	flex-direction: column;
}

/* Checker placeholder like your designs */
.newsThumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	background:
		linear-gradient(45deg, #eef1f4 25%, transparent 25%) 0 0/40px 40px,
		linear-gradient(-45deg, #eef1f4 25%, transparent 25%) 0 0/40px 40px,
		linear-gradient(45deg, transparent 75%, #eef1f4 75%) 0 0/40px 40px,
		linear-gradient(-45deg, transparent 75%, #eef1f4 75%) 0 0/40px 40px,
		#fafbfc;
	box-shadow: 0 0 0 1px rgba(230, 238, 243, .9) inset;
    background-image: url(https://redbrassadvertising.com/cryo.com/wp-content/uploads/2026/03/logo.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.newsMeta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	margin-bottom: 6px;
}

.newsPill {
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 999px;
	background: var(--cryo-pill);
	color: var(--cryo-teal);
	font-weight: 700;
}

.newsDate {
	font-size: 11px;
	color: var(--cryo-muted);
	font-weight: 500;
}

.newsTitle {
	color: var(--cryo-ink);
	font-weight: 800;
	/* 	font-size: 16px; */
	line-height: 1.25;
	margin: 0 0 8px;
	max-width: 38ch;
}

.newsExcerpt {
	color: var(--cryo-muted);
	font-size: 12px;
	line-height: 1.5;
	margin: 0 0 10px;
	max-width: 55ch;
}

.newsLink {
	color: var(--cryo-teal);
	font-weight: 700;
	font-size: 12px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.newsLink:hover {
	text-decoration: underline;
}

/* Pagination */
.newsPager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 50px;
	flex-wrap: wrap;
}

.pagerLink {
	color: var(--cryo-teal);
	font-weight: 700;
	font-size: 12px;
	text-decoration: none;
	padding: 6px 8px;
}

.pagerNums {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pagerNum {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border: 1px solid transparent;
	border-radius: 4px;
	color: var(--cryo-teal);
	font-weight: 700;
	font-size: 12px;
	text-decoration: none;
}

.pagerNum.is-active {
	/* border-color: #9ac0ce; */
	border-color: var(--cryo-muted);
	background: #fff;
}

.pagerDots {
	/* color: #9aa7b2; */
	color: var(--cryo-muted);
	font-weight: 700;
}

.newsContainer {
	max-width: 820px;
}

.backLink {
	color: var(--cryo-teal);
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}

.backLink:hover {
	text-decoration: underline;
}

.metaRow {
	display: flex;
	align-items: center;
	gap: .6rem;
	flex-wrap: wrap;
	margin-top: 12px;
	color: var(--cryo-muted);
	font-size: 14px;
}

.pill {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--cryo-pill);
	color: var(--cryo-pill-text);
	font-weight: 700;
	font-size: 12px;
	line-height: 1.4;
}

.newsTitle {
	font-weight: 400;
	letter-spacing: .2px;
	margin-top: 10px;
	/*font-size: clamp(32px, 4.1vw, 54px);*/
	line-height: 1.06;
}

.authorRow {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-top: 14px;
	color: var(--cryo-muted);
	font-size: 14px;
}

.authorAvatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var(--cryo-border);
}

.featureWrap {
	margin-top: 20px;
}

.featureImg {
    width: 100%;
    border-radius: 18px;
    background: var(--cryo-border);
    border: 1px solid var(--cryo-border);
    display: block;
    max-height: 700px;
    max-width: max-content;
    margin: auto;
    }

.imgCaption {
	margin-top: 10px;
	font-size: 12px;
	/* color: #93a1ad; */
	color: var(--cryo-muted);
}

/* Rich content typography */
.richContent {
	margin-top: 26px;
	font-size: 15px;
	line-height: 1.75;
	/* color: #2a3a45; */
	color: var(--cryo-ink);
}

.richContent h2,
.richContent h3,
.richContent h4 {
	color: var(--cryo-ink);
	font-weight: 400;
	letter-spacing: .2px;
	line-height: 1.15;
	margin: 22px 0 10px;
}

.richContent h2 {
	font-size: clamp(26px, 3.2vw, 34px);
}

.richContent h3 {
	font-size: clamp(22px, 2.6vw, 28px);
}

.richContent h4 {
	font-size: 18px;
	font-weight: 500;
}

.richContent p {
	margin: 0 0 16px;
	/* color: #4d5c67; */
	color: var(--muted);
}

.richContent a {
    color: var(--cryo-teal);
    font-weight: 500;
    overflow-wrap: anywhere;
}

.richContent ul,
.richContent ol {
	margin: 0 0 18px 18px;
	/* color: #4d5c67; */
	color: var(--muted);
}

.richContent li {
	margin: 4px 0;
}

/* Buttons like your mock */


.actionsRow {
	margin-top: 26px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Mobile spacing like screenshot */
@media (max-width: 575.98px) {
	.newsContainer {
		padding-left: 18px;
		padding-right: 18px;
	}

	.featureImg {
		border-radius: 16px;
	}

	.actionsRow .btn {
		width: 100%;
		justify-content: center;
	}
}



/* =========================
TERMS & CONDITIONS PAGE
========================= */

.legalPage {
	background: #fff;
	padding: 60px 0 70px;
}

.legalWrap {
	/* 	max-width: 720px; */
	margin: 0 auto;
}

.legalBack {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: var(--cryo-teal);
	text-decoration: none;
	margin-bottom: 14px;
}

.legalBack:hover {
	text-decoration: underline;
}

.legalTitle {
	font-size: clamp(2.4rem, 4.2vw, 3.4rem);
	line-height: 1.05;
	font-weight: 400;
	color: var(--cryo-ink);
	margin: 0 0 26px;
}

/* Rich text feel (like your screenshot) */
.legalContent {
	color: rgba(7, 48, 68, .78);
	font-size: 14px;
	line-height: 1.7;
}

.legalContent h2 {
	font-size: clamp(1.9rem, 3vw, 2.4rem);
	color: var(--cryo-ink);
	font-weight: 400;
	margin: 26px 0 14px;
	letter-spacing: -.01em;
}

.legalContent h3 {
	font-size: 20px;
	color: var(--cryo-ink);
	font-weight: 500;
	margin: 22px 0 10px;
}

.legalContent h4 {
	font-size: 16px;
	color: var(--cryo-ink);
	font-weight: 500;
	margin: 18px 0 8px;
}

.legalContent h5 {
	font-size: 13px;
	color: var(--cryo-ink);
	font-weight: 700;
	margin: 16px 0 8px;
}

.legalContent p {
	margin: 0 0 16px;
}

.legalContent a {
	color: var(--cryo-teal);
	/* 	text-decoration: underline; */
}

.legalContentDiv{
	display: inline-grid;
	row-gap: 1rem;	
}

.legalContent a:hover {
	text-decoration: none;
}

/* Lists spacing */
.legalContent ul,
.legalContent ol {
	margin: 10px 0 18px 20px;
	padding: 0;
}

.legalContent li {
	margin: 4px 0;
}

/* Buttons */
.legalBtns {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 18px;
	max-width: 320px;
}

.legalBtnPrimary {
	background: var(--cryo-teal);
	color: #fff !important;
	border-radius: 10px;
	padding: 12px 16px;
	font-weight: 500;
	text-align: left;
}

.legalBtnPrimary:hover {
	opacity: .92;
	border: 1px solid;
	color: var(----text) !important;
}

.legalBtnSecondary {
	background: transparent;
	border: 1px solid var(--cryo-teal);
	color: var(--cryo-teal) !important;
	border-radius: 10px;
	padding: 12px 16px;
	font-weight: 500;
	text-align: left;
}

.legalBtnSecondary:hover {
	background: rgba(10, 106, 132, .08);
}

/* Mobile */
@media (max-width: 767px) {
	.legalPage {
		padding: 42px 0 52px;
	}

	.legalWrap {
		max-width: 100%;
	}

	.legalBtns {
		max-width: 100%;
	}

	.legalBtnPrimary,
	.legalBtnSecondary {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
}


/* =========================
404 PAGE
========================= */
.errPage {
	background: #fff;
	padding: 70px 0 90px;
}

.errWrap {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.errCode {
	font-size: clamp(3.2rem, 7vw, 4.6rem);
	line-height: 1;
	font-weight: 400;
	color: var(--cryo-ink);
	margin-bottom: 10px;
}

.errTitle {
	font-size: 16px;
	font-weight: 700;
	color: var(--cryo-ink);
	margin: 0 0 18px;
}

.errText {
	max-width: 760px;
	margin: 0 auto 26px;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(7, 48, 68, .72);
}

.errBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--cryo-teal);
	color: #fff !important;
	border-radius: 10px;
	padding: 12px 18px;
	font-weight: 500;
	min-width: 220px;
}

.errBtn:hover {
	opacity: .92;
	border: 1px solid;
	color: var(----text) !important;
}

/* Mobile */
@media (max-width: 767px) {
	.errPage {
		padding: 46px 0 60px;
	}

	.errWrap {
		text-align: left;
	}

	.errBtn {
		width: 100%;
	}
}


/* ===== ROI Hero ===== */
.roiHero {
	padding: 110px 0;
	background: #fff;
}

.roiHero-inner {
	max-width: 820px;
}

.roiHero-kicker {
	font-size: 14px;
	/* color: #8fa5b2; */
	color: var(--cryo-muted);
	font-weight: 500;
	margin-bottom: 10px;
}

.roiHero-title {
	font-size: 56px;
	line-height: 1.08;
	font-weight: 400;
	/* color: #062b33; */
	color: var(--text);
	/* dark teal-ish */
	margin: 0;
}

.roiHero-desc {
	max-width: 620px;
	font-size: 16px;
	line-height: 1.6;
	/* color: #3b5561; */
	color: var(--teal);
}

/* Button (if you already have .btn-teal, you can remove this block) */
.roiHero-btn {
	min-width: 180px;
}

/* Mobile */
@media (max-width: 767.98px) {
	.roiHero {
		padding: 70px 0;
	}

	.roiHero-title {
		font-size: 36px;
	}

	.roiHero-desc {
		font-size: 15px;
		max-width: 340px;
	}

	.roiHero-btn {
		width: 220px;
	}
}

/* ===== ROI Step 1 styles (scoped) ===== */
.roiStep1 {
	padding: 80px 0;
}

.roiStep1 .roiStep-kicker {
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: none;
	/* color: #9aa7b2; */
	color: var(--cryo-muted);
	margin-bottom: 10px;
}

.roiStep1 .roiStep-title {
	font-size: 52px;
	line-height: 1.12;
	/* color: #0a2d3a; */
	color: var(--text);
	margin: 0 auto 14px;
	max-width: 820px;
	font-weight: 400;
}

.roiStep1 .roiStep-desc {
	max-width: 720px;
	margin: 0 auto;
	/* color: #6b7b86; */
	color: var(--cryo-muted);
	font-size: 15px;
	line-height: 1.6;
}

.roiEquipGrid {
	margin-top: 46px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	align-items: start;
}

.roiEquipCard {
	cursor: pointer;
	user-select: none;
	display: block;
}

.roiEquipCard input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.roiEquipCard-inner {
	border-radius: 16px;
	padding: 18px;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
	border: 2px solid transparent;
	height: 100%;
}

.roiEquipImg {
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.roiEquipImg img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.roiEquipName {
	margin-top: 14px;
	text-align: center;
	color: var(--text);
	font-weight: 500;
	font-size: 16px;
}

/* hover */
.roiEquipCard:hover .roiEquipCard-inner {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(10, 45, 58, 0.08);
}

/* selected */
.roiEquipCard input:checked+.roiEquipCard-inner {
	/* border-color: #00779a; */
	border-color: var(--cryo-teal);
	/* teal border */
	box-shadow: 0 14px 30px rgba(0, 119, 154, 0.12);
}

.roiStep-cta {
	margin-top: 28px;
}

/* breakpoints to match screenshot feel */
@media (max-width: 1199.98px) {
	.roiEquipGrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.roiStep1 {
		padding: 56px 0;
	}

	.roiStep1 .roiStep-title {
		font-size: 36px;
	}

	.roiEquipGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	/* Make the last card sit centered as a single one on the last row (like your screenshot) */
	.roiEquipGrid .roiEquipCard:nth-child(5) {
		grid-column: 1 / -1;
		max-width: 280px;
		justify-self: center;
		width: 100%;
	}
}

@media (max-width: 500px) {
	.roiEquipGrid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.roiEquipGrid .roiEquipCard:nth-child(5) {
		max-width: 100%;
	}
}


/* ===== ROI Step 2 (page-only CSS) ===== */
.roiStep2 {
	padding: 64px 0 90px;
}

.roiStep2-head {
	max-width: 920px;
	margin: 0 auto 42px;
}

.roiStep2-step {
	font-size: 14px;
	letter-spacing: 0.02em;
	color: var(--cryo-muted);
	margin-bottom: 10px;
}

.roiStep2-title {
	margin: 0 auto 14px;
	font-size: 52px;
	line-height: 1.1;
	font-weight: 400;
	color: var(--text);
}

.roiStep2-sub {
	margin: 0 auto;
	max-width: 720px;
	color: var(--cryo-muted);
	font-size: 16px;
	line-height: 1.6;
}

.roiStep2-formWrap {
	max-width: 520px;
}

.roiStep2-form {
	background: transparent;
}

.roiQ {
	padding: 18px 0;
}

.roiQ-title {
	margin: 0 0 6px;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 700;
	color: var(--text);
}

.roiQ-help {
	margin: 0 0 10px;
	font-size: 13px;
	color: var(--cryo-muted);
}

.roiQ-label {
	display: block;
	margin: 0 0 6px;
	font-size: 13px;
	color: var(--text);
}

.roiInput {
	height: 48px;
	border: 1px solid var(--cryo-muted);
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 16px;
	color: #0b2b33;
	box-shadow: none !important;
}

.roiInput:focus {
	border-color: var(--teal-2);
}

.roiDivider {
	margin: 0;
	border: 0;
	border-top: 1px solid var(--cryo-pill);
}

.roiActions {
	display: flex;
	gap: 14px;
	justify-content: center;
	padding-top: 22px;
}

.roiBtn {
	min-width: 150px;
	height: 46px;
	border-radius: 10px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

/* ================= ROI PRIMARY ================= */
.roiBtn-primary {
	background: var(--cryo-teal);          /* #016B8E */
	color: #ffffff;
	border: 1px solid var(--cryo-teal);
	transition: all .2s ease;
}

/* Hover */
.roiBtn-primary:hover {
	background: #037DA5;                   /* lighter */
	border-color: #037DA5;
	color: #ffffff;
}

/* Pressed */
.roiBtn-primary:active,
.roiBtn-primary:focus {
	background: #00536F;                   /* darker */
	border-color: #00536F;
	color: #ffffff;
	box-shadow: none;
}

/* Disabled */
.roiBtn-primary:disabled,
.roiBtn-primary.disabled {
	background: #AEBBC2;
	border-color: #AEBBC2;
	color: #ffffff;
	cursor: not-allowed;
}



/* ================= ROI OUTLINE ================= */
.roiBtn-outline {
	background: #ffffff;
	color: var(--cryo-teal);
	border: 1px solid var(--cryo-teal);
	transition: all .2s ease;
}

/* Hover */
.roiBtn-outline:hover {
	background: #F4FBFF;
	border-color: #037DA5;
	color: #037DA5;
}

/* Pressed */
.roiBtn-outline:active,
.roiBtn-outline:focus {
	background: #E2EAEE;
	border-color: #00536F;
	color: #00536F;
	box-shadow: none;
}

/* Disabled */
.roiBtn-outline:disabled,
.roiBtn-outline.disabled {
	background: #ffffff;
	border-color: #C9D4DA;
	color: #AEBBC2;
	cursor: not-allowed;
}

/* Mobile look like your screenshot */
@media (max-width: 767px) {
	.roiStep2 {
		padding: 44px 0 70px;
	}

	.roiStep2-title {
		font-size: 38px;
	}

	.roiStep2-sub {
		font-size: 15px;
		padding: 0 6px;
	}

	.roiStep2-formWrap {
		max-width: 100%;
	}

	.roiActions {
		justify-content: space-between;
	}

	.roiBtn {
		min-width: 0;
		flex: 1;
	}
}



/* page container */
.roiWrap {
	padding: 72px 0 84px;
}

.roiTopTag {
	font-size: 12px;
	letter-spacing: .2px;
	/* color: #9db0b8; */
	color: var(--cryo-muted);
	text-align: center;
	margin-bottom: 8px;
}

.roiTitle {
	text-align: center;
	font-size: 44px;
	line-height: 1.1;
	color: var(--ink);
	margin: 0;
	font-weight: 400;
}

.roiCallout {
	text-align: center;
	color: var(--muted);
	font-size: 13px;
	margin-top: 10px;
}

.roiCallout strong {
	/* color: #45616b; */
	color: var(--cryo-ink);
	font-weight: 500;
}

.roiQuote {
	text-align: center;
	/* color: #9db0b8; */
	color: var(--cryo-muted);
	font-size: 12px;
	margin-top: 6px;
}

/* product image */
.roiProduct {
	margin: 34px auto 18px;
	max-width: 360px;
	width: 100%;
	display: block;
}

/* metric cards */
.roiCards {
	max-width: 760px;
	margin: 0 auto;
}

.roiCard {
	border-radius: 14px;
	padding: 16px 18px;
	background: var(--soft);
	border: 1px solid transparent;
	text-align: center;
	height: 100%;
}

.roiCard.is-primary {
	background: var(--teal);
	color: #fff;
	border-color: var(--teal);
}

.roiCardValue {
	font-size: 26px;
	line-height: 1.1;
	font-weight: 700;
	margin: 0;
}

.roiCardLabel {
	font-size: 12px;
	opacity: .95;
	margin-top: 2px;
}

.roiCard.is-primary .roiCardLabel {
	opacity: .9;
}

.roiActions {
	max-width: 760px;
	margin: 18px auto 0;
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-roi {
	border-radius: 8px;
	padding: 9px 14px;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	line-height: 1;
}

.btn-roi-outline {
	background: #fff;
	border: 1px solid #b9cbd4;
	/* color: #2f4b56; */
	color: var(--cryo-ink);
}

.btn-roi-outline:hover {
	background: #f7fbfd;
}

.btn-roi-fill {
	background: var(--teal);
	border: 1px solid var(--teal);
	color: #fff;
}

.btn-roi-fill:hover {
	background: var(--teal-2);
	border-color: var(--teal-2);
	color: #fff;
}

/* breakdown */
.roiBreakWrap {
	max-width: 760px;
	margin: 42px auto 0;
}

.roiBreakTitle {
	font-size: 26px;
	color: var(--ink);
	margin: 0 0 6px;
	font-weight: 500;
}

.roiBreakDesc {
	color: var(--muted);
	font-size: 13px;
	margin: 0 0 18px;
}

.roiSection {
	border-top: 1px solid var(--line);
	padding-top: 18px;
	margin-top: 18px;
}

.roiSection h3 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
}

.roiSection p {
	margin: 0 0 12px;
	font-size: 12px;
	color: var(--muted);
}

.roiTable {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
}

.roiTable tr {
	border-bottom: 1px solid var(--line);
}

.roiTable td {
	padding: 10px 0;
	vertical-align: top;
}

.roiKey {
	/* color: #2c4a55; */
	color: var(--cryo-ink);
	font-weight: 500;
}

.roiVal {
	text-align: right;
	/* color: #2c4a55; */
	color: var(--cryo-ink);
	font-weight: 500;
	white-space: nowrap;
}

.roiSmallNote {
	/* color: #9db0b8; */
	color: var(--teal-2);
	font-size: 11px;
	margin-top: 8px;
}

.roiLegal {
	border-top: 1px solid var(--line);
	margin-top: 26px;
	padding-top: 16px;
	/* color: #90a5ae; */
	color: var(--teal-2);
	font-size: 11px;
	line-height: 1.55;
}

/* mobile */
@media (max-width: 767px) {
	.roiWrap {
		padding: 36px 0 64px;
	}

	.roiTitle {
		font-size: 30px;
	}

	.roiProduct {
		max-width: 260px;
		margin-top: 20px;
	}

	.roiActions {
		flex-direction: column;
		align-items: stretch;
	}

	.roiActions .btn-roi {
		width: 100%;
		justify-content: center;
	}

	.roiCards {
		padding: 0 10px;
	}

	.roiBreakWrap {
		padding: 0 10px;
	}
}



/* ===============================
SHOP / COLLECTIONS (CRYO)
CSS ONLY – token based
=============================== */

.shopWrap {
	padding: 28px 0 80px;
}

/* Layout */
.shopLayout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
	align-items: start;
}

/* ===============================
FILTERS
=============================== */
.shopFilters {
	position: sticky;
	top: 110px;
	/* header height */
}

.shopFilters-title {
	font-size: 13px;
	font-weight: 500;
	color: var(--cryo-ink);
	margin-bottom: 12px;
}

.filterList {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.filterItem {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--cryo-ink);
	cursor: pointer;
}

.filterItem input {
	width: 16px;
	height: 16px;
	accent-color: var(--cryo-teal);
}

/* ===============================
PRODUCT GRID
=============================== */
.shopGrid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px 36px;
}

/* Card */
.productCard a {
	text-decoration: none;
	color: inherit;
	display: block;
}

/* Image */
.productImg {
	aspect-ratio: 1 / 1;
	background: var(--soft-2);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow .25s ease, outline .25s ease;
}

.productImg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Hover */
.productCard:hover .productImg {
	outline: 2px solid rgba(10, 106, 132, 0.2);
	outline-offset: 0;
}

/* Body */
.productBody {
	padding-top: 12px;
}

.productTitle {
	font-size: 15px;
	font-weight: 500;
	color: var(--cryo-ink);
	margin: 0 0 6px;
}

/* Price */
.productPrice {
	display: flex;
	gap: 10px;
	align-items: baseline;
	font-size: 12px;
}

.productPrice del {
	color: var(--cryo-muted);
}

.productPrice .now {
	color: var(--cryo-teal);
	font-weight: 500;
}

/* ===============================
RESPONSIVE
=============================== */
@media (max-width: 991px) {
	.shopLayout {
		grid-template-columns: 200px 1fr;
		gap: 24px;
	}

	.shopGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 20px;
	}
}

@media (max-width: 767px) {
	.shopWrap {
		padding: 20px 0 60px;
	}

	.shopLayout {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.shopFilters {
		position: static;
	}

	.shopGrid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.productImg {
		border-radius: 16px;
	}
}


/* ===== Product Detail (top) ===== */
.pdWrap {
	padding: 28px 0 58px;
}

.pdGrid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: 44px;
	align-items: start;
}

.pdMedia {
	border-radius: var(--radius);
	background: var(--soft-2);
	overflow: hidden;
	min-height: 560px;
}

.pdMedia img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pdTitle {
	font-size: 30px;
	line-height: 1.15;
	font-weight: 400;
	color: var(--cryo-teal);
	letter-spacing: .1px;
	margin: 0 0 10px;
}

.pdPriceRow {
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.pdPriceNow {
	color: var(--cryo-teal);
	font-weight: 500;
	font-size: 15px;
}

.pdPriceWas {
	color: var(--muted);
	font-size: 15px;
	text-decoration: line-through;
}

.pdBody {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.55;
}

.pdBody h6 {
	margin: 14px 0 8px;
	color: var(--cryo-ink);
	font-weight: 500;
	font-size: 13px;
}

.pdBody ul {
	margin: 0 0 12px 0;
	padding-left: 18px;
}

.pdBody li {
	margin: 2px 0;
}

.pdPayRow {
	display: flex;
	gap: 14px;
	align-items: stretch;
	margin: 14px 0 18px;
	/* flex-wrap: wrap; */
}

.pdPayCard {
	border: 1px solid var(--cryo-border);
	border-radius: 10px;
	background: #fff;
	padding: 10px 10px;
	min-width: 260px;
	flex: 1 1 260px;
	font-size: 10.5px;
	color: var(--muted);
	line-height: 1.35;
	max-width: 50%;
}

.pdPayCard strong {
	color: var(--cryo-ink);
	font-weight: 500;
}

.pdPayLogo {
	display: inline-block;
	margin-left: 6px;
	max-width: 50px;
	margin-top: 5px;
}

.display-contents {
	display: inline;
}

.pdActionRow {
	margin-top: 6px;
}

/* ===== Related products ===== */
.relWrap {
	padding: 56px 0 64px;
	background: #fff;
}

.relHead {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 18px;
}

.relTitle {
	font-size: 36px;
	font-weight: 400;
	color: var(--cryo-ink);
	margin-bottom: 10px;
}

.relDesc {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
	margin: 0 auto 14px;
	max-width: 560px;
}


/* product card */
.pCard {
	padding: 6px 10px 10px;
}

.pCardMedia {
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--soft-2);
	aspect-ratio: 1 / 1;
}

.pCardMedia img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pCardTitle {
	margin: 12px 0 6px;
	font-size: 18px;
	font-weight: 500;
	color: var(--cryo-ink);
}

.pCardPrice {
	display: flex;
	gap: 10px;
	align-items: baseline;
	flex-wrap: wrap;
	font-size: 12px;
}

.pWas {
	color: var(--muted);
	text-decoration: line-through;
}

.pNow {
	color: var(--cryo-teal);
	font-weight: 500;
}

/* Owl controls */
.owl-theme .owl-nav {
	margin-top: 10px;
}

.owl-theme .owl-nav [class*="owl-"] {
	background: transparent !important;
	color: var(--teal) !important;
	border: 1px solid var(--cryo-border);
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	margin: 6px 6px !important;
}

.owl-theme .owl-dots .owl-dot span {
	background: var(--cryo-border);
}

.owl-theme .owl-dots .owl-dot.active span {
	background: var(--teal);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
	.pdGrid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.pdMedia {
		min-height: 360px;
	}

	.relTitle {
		font-size: 30px;
	}
}

@media (max-width: 575px) {
	.pdTitle {
		font-size: 26px;
	}

	.pdMedia {
		min-height: 320px;
	}

	.relWrap {
		padding-top: 44px;
	}

	.relTitle {
		font-size: 28px;
	}

	.pCard {
		padding: 6px 6px 10px;
	}
}

.nav-link::after {
	margin-left: 0.0rem;
	vertical-align: .150em;
	color: #016B8E;
}

.country-btn::after {
	margin-left: 1rem;
	vertical-align: .150em;
}

.benefits-img-img {
	max-width: 100%;
	border-radius: 18px;
}

@media (min-width: 1400px) {
	main, .woocommerce-message,
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1370px;
	}
}


@media (min-width: 767px) and (max-width: 991px) {
	.cryo-title,
	.equipIntro-title,
	.treatments-title,
	.benefits-title,
	.how-title,
	.split-title,
	.experts-title,
	.testi-title,
	.news-title,
	.prefooter-title
	{
		font-size:33px;
	}

	.treat-name {
		font-size: 20px;
	}

	.experts-grid,
	.treat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.treatments-actions {
		margin-bottom: 40px;
	}

	.footer-form {
		max-width: 100%;
	}
}

@media (min-width: 991px) and (max-width: 1200px) {
	.equip-actions{
		justify-content: space-between;
	}
}

@media (max-width: 767px) {
	.news-carousel .item,
	.experts-carousel .item,
	.how-carousel .item,
	.treat-carousel .item{
		padding:0;
	}
	main, .woocommerce-message,
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		--bs-gutter-x: 40px;
	}


	.cryo-subtitle {
		padding-bottom: 2rem;
	}
	.cryo-stats {
		padding-top: 22px;
	}

	.how-actions .btn {
		margin-bottom: 2.5rem;
	}


	.footer-copy{
		order: 2;
	}
	.footer-bottom-links{
		order: 1;
	}
}

main {
	margin: 2rem auto;
	display: block;
}

.woocommerce-message {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-right: auto;
	margin-left: auto;
	padding-left:5%;
}

@media (min-width: 576px) {
	.woocommerce-message {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.woocommerce-message {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.woocommerce-message {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.woocommerce-message {
		max-width: 1140px;
	}
}
@media (min-width: 1270px) {
	.woocommerce-message {
		max-width: 100%;
	}
}

.navbar-brand{
	z-index: 1;
}

.key-features {
	padding-top: 70px;
}

.feature-item {
	max-width: 340px;
	margin: 0 auto;
}

.feature-icon {
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.feature-text {
	color: #002B3B;
	font-size: 16px;
	line-height: 1.25;
	font-weight: 400;
}

.treatCard.is-hidden {
	display: none !important;
}


/* 2 items = 2 */
.equipBenefits-grid.count-3 {
	grid-template-columns: repeat(12, 1fr);
}
.equipBenefits-grid.count-3 .benefitCard {
	grid-column: span 6;
}


/* 3 items = 3 */
.equipBenefits-grid.count-3 {
	grid-template-columns: repeat(12, 1fr);
}
.equipBenefits-grid.count-3 .benefitCard {
	grid-column: span 4;
}


/* 5 items = 3 + 2 */
.equipBenefits-grid.count-5 {
	grid-template-columns: repeat(12, 1fr);
}
.equipBenefits-grid.count-5 .benefitCard {
	grid-column: span 4;
}
.equipBenefits-grid.count-5 .benefitCard:nth-child(n+4) {
	grid-column: span 6;
}

/* 6 items = 3 + 3 */
.equipBenefits-grid.count-6 {
	grid-template-columns: repeat(12, 1fr);
}

.equipBenefits-grid.count-6 .benefitCard {
	grid-column: span 4;
}

/* 7 items = 4 + 3 */
.equipBenefits-grid.count-7 {
	grid-template-columns: repeat(12, 1fr);
}

.equipBenefits-grid.count-7 .benefitCard {
	grid-column: span 3; /* 4 items in first row */
}

.equipBenefits-grid.count-7 .benefitCard:nth-child(n+5) {
	grid-column: span 4; /* 3 items in second row → full width */
}

/* Variation row */
.variations tr{
    display:flex;
    align-items:center;
    gap:0;
    margin-bottom:15px;
}

/* Label box (left side) */
.variations th.label{
    background:#f5f7f8;
    border:1px solid #d7e0e5;
    border-right:none;
    padding:12px 18px;
    font-size:14px;
    font-weight:500;
    min-width:170px;
    display:flex;
    align-items:center;
}

/* Select wrapper */
.variations td.value{
    display:flex;
    align-items:center;
}

/* Select dropdown */
.variations select{
    height:46px;
    padding:0 14px;
    border:1px solid #d7e0e5;
    border-radius:0 6px 6px 0;
    font-size:14px;
    min-width:260px;
    background:#fff;
    appearance:none;
}

/* Clear link */
.reset_variations{
    margin-left:10px;
    font-size:13px;
}

.woocommerce div.product form.cart .variations{ margin-bottom:0!important; }

.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled,
.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-disabled{ display:flex; gap: 1rem; }

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #0f89bb !important;
    font-weight: 500;
    font-size: 26px;
    margin-left: .5rem;
    margin-bottom: 1rem;
    display: block;
}

a.equipMiniLink {
    display: contents;
}


.locationBookingButton{
    margin: auto;
    display: block;
    max-width: 90%;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.scienceImg img {
    border-radius: 8px;
}
.benefitCard-desc {
    FONT-WEIGHT: 100;
    margin-top: 12px;
    FONT-SIZE: small;
    color: #e5e5e5;
}

.wp-block-woocommerce-checkout,
.woocommerce{
    max-width:90%;
    margin-left:auto;
    margin-right:auto;
    display:block;
}

a.checkout-button.button.alt.wc-forward{ margin-top:1rem; }
/* =========================
   Classic WooCommerce Checkout Styling
========================= */

.woocommerce-checkout .col2-set {
    display: flex;
    /*gap: 40px;*/
    /*align-items: flex-start;*/
    /*flex-wrap: wrap;*/
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    float: none !important;
    width: 50% !important;
}

/*.woocommerce-checkout #customer_details {*/
/*    flex: 1 1 60%;*/
/*    max-width: 60%;*/
/*}*/

/*.woocommerce-checkout #order_review_heading,*/
/*.woocommerce-checkout #order_review {*/
/*    flex: 1 1 35%;*/
/*    max-width: 35%;*/
/*}*/

.woocommerce-checkout h3 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 600;
    color: #111;
}

.woocommerce-checkout .woocommerce-billing-fields,
/*.woocommerce-checkout .woocommerce-shipping-fields,*/
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}
.woocommerce-checkout .woocommerce-additional-fields{
    border-color:#fff;
}

.woocommerce-checkout form .form-row {
    margin-bottom: 18px;
}

.woocommerce-checkout form .form-row label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #222;
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select,
.woocommerce-checkout .select2-container--default .select2-selection--single {
    width: 100%;
    min-height: 54px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px;
    background: #fff;
    box-shadow: none;
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.woocommerce-checkout form .form-row textarea {
    min-height: 120px;
    padding-top: 14px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 16px 0;
    border-bottom: 1px solid #ececec;
    font-size: 16px;
    color: #222;
    vertical-align: top;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
    font-weight: 600;
}

.woocommerce-checkout #payment {
    background: transparent !important;
    border: 0 !important;
    margin-top: 24px;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: 0 !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    list-style: none;
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 14px;
    background: #fff;
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.woocommerce-checkout #payment div.payment_box {
    background: #f8f8f8 !important;
    border-radius: 10px;
    margin-top: 14px !important;
    padding: 16px !important;
    color: #333;
}

.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}

.woocommerce-checkout .place-order {
    padding-top: 20px !important;
}

.woocommerce-checkout #place_order {
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 12px;
    background: #0d8ddb;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 24px;
    transition: 0.3s ease;
}

.woocommerce-checkout #place_order:hover {
    opacity: 0.9;
}

.woocommerce-checkout .woocommerce-privacy-policy-text,
.woocommerce-checkout .form-row.terms {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message {
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-login-toggle {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .woocommerce-checkout .col2-set {
        display: block;
    }

    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        max-width: 100%;
        width: 100%;
    }

    .woocommerce-checkout h3 {
        font-size: 28px;
    }
}

.formActions{ display:block; }

/* Standard range: 992px to 1200px */
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-social {
        flex-wrap: wrap;
    }
    .navbar .navbar-collapse {
        justify-content: left;
        margin-left: 0px;
    }
}
