/* =========================================
   NEW ARRIVALS PAGE
   ========================================= */

.hop-new-arrivals-page {
	width: 100%;
}

.hop-new-arrivals-hero {
	padding: 60px 0 40px;
}

.hop-new-arrivals-hero .hop-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}

/* FORCE text left / image right */
.hop-new-arrivals-hero__grid {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 48px !important;
	flex-wrap: nowrap !important;
}

.hop-new-arrivals-hero__content {
	flex: 1 1 0%;
	max-width: 720px;
	min-width: 0;
}

.hop-new-arrivals-hero__image {
	flex: 0 0 420px !important;
	max-width: 420px !important;
	width: 420px !important;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.hop-new-arrivals-hero__image img {
	display: block;
	width: 100% !important;
	max-width: 420px !important;
	height: auto !important;
	object-fit: cover;
	border-radius: 18px;
}

.hop-new-arrivals-hero__eyebrow {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.4;
	color: #7b726d;
}

.hop-new-arrivals-hero h1 {
	margin: 0 0 18px;
	font-size: clamp(42px, 5vw, 76px);
	line-height: 1.05;
	font-weight: 400;
	color: #2f2928;
}

.hop-new-arrivals-hero__lead {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #6b6460;
	max-width: 620px;
}

/* Cards section */
.hop-section {
	padding: 30px 0 90px;
}

.hop-section .hop-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}

.hop-grid.hop-grid--3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.hop-card {
	background: #fff;
	border: 1px solid #ece4df;
	overflow: hidden;
}

.hop-card__content {
	padding: 22px 20px 24px;
}

.hop-card__content h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 400;
	color: #2f2928;
}

.hop-card__content p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: #6f6662;
}

/* Make placeholder area consistent */
.hop-card .hop-image-placeholder--small,
.hop-card img {
	display: block;
	width: 100%;
	height: 240px;
	object-fit: cover;
}

/* Tablet */
@media (max-width: 991px) {
	.hop-new-arrivals-hero__grid {
		gap: 32px !important;
	}

	.hop-new-arrivals-hero__image {
		flex: 0 0 280px !important;
		max-width: 280px !important;
		width: 280px !important;
	}

	.hop-new-arrivals-hero__image img {
		max-width: 280px !important;
	}

	.hop-grid.hop-grid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Mobile */
@media (max-width: 767px) {
	.hop-new-arrivals-hero {
		padding: 42px 0 28px;
	}

	.hop-new-arrivals-hero .hop-container,
	.hop-section .hop-container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.hop-new-arrivals-hero__grid {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 24px !important;
	}

	.hop-new-arrivals-hero__content {
		max-width: 100%;
	}

	.hop-new-arrivals-hero__image {
		width: 100% !important;
		max-width: 260px !important;
		flex: 0 0 auto !important;
	}

	.hop-new-arrivals-hero__image img {
		max-width: 260px !important;
	}

	.hop-new-arrivals-hero h1 {
		font-size: 44px;
		line-height: 1.08;
	}

	.hop-grid.hop-grid--3 {
		grid-template-columns: 1fr;
	}
}