.ohs-hero {
	position: relative;
	background: #EDEDED;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 500px;
	min-height: 500px;
	padding: 0 48px;
	box-sizing: border-box;
	color: #333333;
	font-family: 'Archivo', sans-serif;
	overflow: hidden;
	width: 100%;
}

.ohs-main-content {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
	padding: 0 80px;
	box-sizing: border-box;
}

.ohs-slider-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: rgba(224, 224, 224, 0.45);
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.03);
	cursor: pointer;
	color: #333333;
	transition: background 0.2s ease, transform 0.2s ease;
	flex-shrink: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.ohs-slider-nav:hover {
	background: rgba(200, 200, 200, 0.6);
	transform: translateY(-50%) scale(1.05);
}

.ohs-slider-prev {
	left: 16px;
}

.ohs-slider-next {
	right: 16px;
}

.ohs-content-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	width: 100%;
}

.ohs-text-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	flex: 1;
	max-width: 480px;
	z-index: 2;
	min-width: 0;
}

.ohs-subtitle {
	font-family: 'Archivo', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(18px, 1.8vw, 24px);
	line-height: 1.34;
	color: #893DAE;
	margin: 0 0 16px 0;
	white-space: normal;
	word-wrap: break-word;
}

.ohs-title {
	font-family: 'Archivo', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: clamp(32px, 4.5vw, 64px);
	line-height: 1.12;
	color: #333333;
	margin: 0 0 24px 0;
	white-space: normal;
	word-wrap: break-word;
	width: 100%;
}

.ohs-desc {
	font-family: 'Archivo', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.6;
	color: #333333;
	margin: 0 0 40px 0;
	white-space: normal;
	word-wrap: break-word;
}

.ohs-btn-wrap {
	margin-top: 0px;
}

.ohs-btn-primary {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 16px 52px;
	gap: 10px;
	height: 52px;
	background: #333333;
	border-radius: 0px 16px 16px 16px;
	font-family: 'Archivo', sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 19px;
	line-height: 1.6;
	color: #FFFFFF;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	border: none;
	cursor: pointer;
	box-sizing: border-box;
}

.ohs-btn-primary:hover {
	background: #1a1a1a;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ohs-image-content {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 550px;
	max-width: 700px;
	min-width: 0;
}

.ohs-main-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: opacity 650ms ease;
}

.ohs-main-image.is-bg-fading {
	opacity: 0;
}

.ohs-search-wrap {
	display: none;
}

.ohs-bottom {
	display: none;
}

.ohs-cards-wrap {
	position: relative;
	width: 100%;
}

.ohs-cards-arrow {
	display: flex;
	justify-content: center;
	align-items: center;

	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px !important;
	height: 56px !important;
	border-radius: 9999px !important;
	border: 1px solid color-mix(in srgb, var(--Foundation-Grey-G0, #ffffff6b) 45%, transparent);
	background-color: #be1621cb !important;
	color: var(--Foundation-Grey-G0, #fff);
	cursor: pointer;
	z-index: 4;
	line-height: 1;
	font-size: 42px;
}

.ohs-cards-arrow--prev {
	left: 0;
}

.ohs-cards-arrow--next {
	right: 0;
}

.ohs-cards-arrow:hover {
	background: color-mix(in srgb,
			var(--Foundation-Orange-Q300-2, #be1622) 35%,
			transparent);
}

.ohs-cards {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding-bottom: 4px;
	padding-left: 0;
	padding-right: 0;
	scroll-padding-left: 0;
	scroll-padding-right: 0;
	box-sizing: border-box;
	cursor: grab;
	touch-action: auto;
	-ms-overflow-style: none;
	/* IE/Edge Legacy */
	scrollbar-width: none;
	/* Firefox */
}

.ohs-cards::-webkit-scrollbar {
	display: none;
	/* Chrome/Safari */
}

.ohs-cards.is-dragging,
.ohs-cards.is-releasing {
	cursor: grabbing;
	user-select: none;
	scroll-snap-type: none;
	scroll-behavior: auto;
}

.ohs-card {
	position: relative;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	flex: 0 0 389px;
	height: 229px;
	scroll-snap-align: center;
	border-radius: 0px 32px 32px 32px;
	background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 72.6%, #EEEEEE 100%);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transform: translateZ(0);
}

.ohs-card:first-child {
	scroll-snap-align: start;
}

.ohs-card:last-child {
	scroll-snap-align: end;
}

.ohs-card-img img {
	transition: transform 0.22s ease;
	will-change: transform;
}

.ohs-card:hover .ohs-card-img img {
	transform: scale(1.05);
}

.ohs-card-img {
	height: 181px;
	padding: 10px;
	box-sizing: border-box;
}

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

.ohs-card-title {
	padding: 0 16px 16px 16px;
	font-family: 'Archivo', sans-serif;
	font-weight: 400;
	font-size: 19px;
	line-height: 1.6;
	color: #333333;
}

@media (max-width: 768px) {
	.ohs-hero {
		padding: 40px 16px;
		height: auto;
		min-height: auto;
	}
	.ohs-main-content {
		padding: 0 16px;
	}
	.ohs-content-wrapper {
		flex-direction: column-reverse;
		gap: 32px;
	}
	.ohs-text-content {
		max-width: 100%;
		align-items: center;
		text-align: center;
	}
	.ohs-image-content {
		min-height: 250px;
		height: 250px;
		max-width: 100%;
	}
	.ohs-slider-nav {
		display: none;
	}
	.ohs-dots {
		right: 14px;
	}
	.ohs-search-wrap form {
		padding: 10px 10px 10px 16px;
	}
	.ohs-card {
		flex-basis: 80%;
	}
	.ohs-cards {
		padding-left: 0;
		padding-right: 0;
	}
	.ohs-cards-arrow {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ohs-hero::after {
		transition: none;
	}
}

/* ========================================
   LIVE SEARCH DROPDOWN
   ======================================== */
.ohs-live-search-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 8px;
	min-width: min(800px, 100vw);
	width: 100%;
	background: var(--Foundation-Grey-G0, #fff);
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	z-index: 100;
	max-height: 420px;
	overflow-y: auto;
}

.ohs-live-search-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ohs-live-search-item:last-child {
	border-bottom: none;
}

.ohs-live-search-item a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	text-decoration: none;
	color: var(--Foundation-Grey-G900, #1e1e1e);
	transition: background 0.15s ease;
}

.ohs-live-search-item a:hover,
.ohs-live-search-item.is-selected a {
	background: rgba(0, 0, 0, 0.04);
}

.ohs-live-search-thumb {
	width: 50px;
	height: 50px;
	border-radius: 8px;
	object-fit: contain;
	flex-shrink: 0;
	background: #f0f0f0;
}

.ohs-live-search-thumb--empty {
	background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.ohs-live-search-info {
	flex: 1;
	min-width: 0;
}

.ohs-live-search-title {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.3;
	color: var(--Foundation-Grey-G900, #1e1e1e);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ohs-live-search-price {
	font-size: 13px;
	color: var(--Foundation-Orange-Q300-2, #be1622);
	font-weight: 600;
	margin-top: 2px;
}

.ohs-live-search-price del {
	color: #999;
	font-weight: 400;
	margin-right: 6px;
}

.ohs-live-search-price ins {
	text-decoration: none;
}

.ohs-live-search-loading,
.ohs-live-search-empty {
	padding: 24px 16px;
	text-align: center;
	color: #666;
	font-size: 14px;
}

.ohs-live-search-footer {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	background: #fafafa;
}

.ohs-live-search-footer a {
	display: block;
	padding: 14px 16px;
	text-align: center;
	color: var(--Foundation-Orange-Q300-2, #be1622);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.15s ease;
}

.ohs-live-search-footer a:hover {
	background: rgba(0, 0, 0, 0.04);
}

/* Search overlay specific adjustments */
.search-overlay-form .ohs-live-search-dropdown {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
}