/* ==========================================================
   HOME PAGE  —  desktop first, then ≤1050, ≤767, ≤480
   ========================================================== */

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.home-hero {
	position: relative;
	min-height: 650px;
	background-color: #f5f5f5;
	background-position: top right;
	background-repeat: no-repeat;
	background-size: auto;
	display: flex;
	align-items: flex-start;
}
.home-hero__body {
	display: flex;
	align-items: flex-start;
	padding-top: 100px;
	padding-bottom: 100px;
}
.home-hero__card {
	width: min(610px, 60%);
	background: #f5f5f5;
	border-left:   10px solid #fff;
	border-bottom: 10px solid #fff;
	padding: 50px;
}
.home-hero__eyebrow {
	font-size: 15px;
	color: #4b4f58;
	margin: 0 0 14px;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.home-hero__title {
	font-size: 45px;
	line-height: 1.05;
	font-weight: 700;
	text-transform: uppercase;
	color: #3d4760;
	margin: 0 0 22px;
}
.home-hero__sub {
	font-size: 15px;
	line-height: 1.7;
	color: #4b4f58;
	margin: 0 0 34px;
}
.home-hero__card .button {
	background: transparent;
	color: #111318;
	border: 1px solid #111318;
	padding: 10px 24px;
	min-height: 42px;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .08em;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.home-hero__card .button:hover {
	background: #111318;
	color: #fff;
}

/* ----------------------------------------------------------
   BEST SELLERS BANNER (horizontal: image + content + photos)
   ---------------------------------------------------------- */
.best-sellers-banner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	min-height: 360px;
}
.best-sellers-banner__image {
	background-size: cover;
	background-position: center;
}
.best-sellers-banner__content {
	background: #f5f5f5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 50px 40px;
	text-align: center;
}
.best-sellers-banner__content > p {
	font-size: 13px;
	color: #4b4f58;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin: 0 0 10px;
}
.best-sellers-banner__content h2 {
	font-size: 40px;
	line-height: 1.1;
	font-weight: 700;
	margin: 0 0 28px;
	text-transform: uppercase;
	color: #3d4760;
}
.best-sellers-banner__photos {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 4px;
	background: #e8e8e8;
}
.best-sellers-banner__photo {
	background-size: cover;
	background-position: center;
}

/* ----------------------------------------------------------
   PRODUCT SECTIONS
   ---------------------------------------------------------- */
.home-products { padding-block: 80px; }
.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 38px;
}
.section-heading h2 {
	font-size: 30px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: .02em;
	color: #3d4760;
}
.section-heading .text-link { font-size: 13px; }

/* ----------------------------------------------------------
   FEATURE BANNER (FIRST TIME promo)
   ---------------------------------------------------------- */
.feature-banner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 520px;
}
.feature-banner__media { overflow: hidden; }
.feature-banner__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.feature-banner__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 60px;
	background: #3d4760;
	color: #fff;
	text-align: center;
}
.feature-banner__content > p {
	font-size: 14px;
	margin: 0 0 12px;
	opacity: .85;
	letter-spacing: .04em;
}
.feature-banner__content h2 {
	font-size: 42px;
	line-height: 1.1;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 8px;
}
.feature-banner__content h3 {
	font-size: 50px;
	line-height: 1.1;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 8px;
	color: #fff;
}
.feature-banner__note {
	font-size: 12px;
	opacity: .65;
	margin-bottom: 28px !important;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.feature-banner__content .button--light {
	background: #fff;
	color: #3d4760;
	border: none;
}
.feature-banner__content .button--light:hover {
	background: #f5f5f5;
}

/* ==========================================================
   TABLET  ≤ 1050px
   ========================================================== */
@media (max-width: 1050px) {
	.home-hero { min-height: 520px; background-size: 55% auto; }
	.home-hero__body { padding-top: 80px; padding-bottom: 80px; }
	.home-hero__card { width: min(520px, 64%); padding: 40px; }
	.home-hero__title { font-size: 36px; }

	.best-sellers-banner { min-height: 300px; }
	.best-sellers-banner__content { padding: 36px 28px; }
	.best-sellers-banner__content h2 { font-size: 32px; }

	.feature-banner { min-height: 440px; }
	.feature-banner__content { padding: 60px 40px; }
	.feature-banner__content h2 { font-size: 34px; }
	.feature-banner__content h3 { font-size: 40px; }
}

/* ==========================================================
   MOBILE  ≤ 767px
   ========================================================== */
@media (max-width: 767px) {
	.home-hero {
		min-height: 0;
		background-position: center top;
		background-size: cover;
		padding-top: 200px;
		align-items: flex-start;
	}
	.home-hero__body { padding: 0; width: 100%; }
	.home-hero__card {
		width: 100%;
		border: none;
		border-top: 5px solid #fff;
		padding: 32px 20px 28px;
	}
	.home-hero__title { font-size: 26px; }
	.home-hero__sub { font-size: 14px; }
	.home-hero__card .button { font-size: 12px; padding: 9px 20px; }

	.best-sellers-banner { grid-template-columns: 1fr; min-height: 0; }
	.best-sellers-banner__image { height: 200px; }
	.best-sellers-banner__content { padding: 36px 20px; }
	.best-sellers-banner__content h2 { font-size: 26px; margin-bottom: 20px; }
	.best-sellers-banner__photos { grid-template-columns: 1fr 1fr; height: 180px; }

	.home-products { padding-block: 52px; }
	.section-heading { flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
	.section-heading h2 { font-size: 20px; width: 100%; }
	.section-heading .text-link { font-size: 12px; }

	.feature-banner { grid-template-columns: 1fr; min-height: 0; }
	.feature-banner__media { height: 56vw; min-height: 200px; }
	.feature-banner__content { padding: 48px 20px; }
	.feature-banner__content h2 { font-size: 28px; }
	.feature-banner__content h3 { font-size: 36px; }
	.feature-banner__content > p { font-size: 13px; }
}

/* ==========================================================
   SMALL MOBILE  ≤ 480px
   ========================================================== */
@media (max-width: 480px) {
	.home-hero { padding-top: 160px; }
	.home-hero__card { padding: 26px 16px; }
	.home-hero__title { font-size: 22px; }

	.best-sellers-banner__photos { grid-template-columns: 1fr; height: 120px; }
	.best-sellers-banner__photo:last-child { display: none; }
}

@media (max-width: 767px) {
	.home-hero { min-height: 0; padding-top: 200px; background-position: center top; background-size: 100% auto; background-repeat: no-repeat; background-color: #f5f5f5; }
	.home-hero__body { padding: 0; }
	.home-hero__card { min-height: 330px; padding: 34px 20px 42px; background: #f5f5f5; border-top: 5px solid #fff; }
	.home-hero__eyebrow { margin-bottom: 16px; font-size: 14px; }
	.home-hero__title { max-width: 360px; font-size: 26px; line-height: 1.12; margin-bottom: 24px; }
	.home-hero__sub { max-width: 390px; margin-bottom: 28px; font-size: 14px; line-height: 1.65; }
	.home-hero__card .button { display: inline-flex; min-height: 42px; padding: 10px 22px; border: 1px solid #111318; background: transparent; color: #111318; }
}

@media (max-width: 480px) {
	.home-hero { padding-top: 180px; }
	.home-hero__card { min-height: 310px; padding: 30px 18px 38px; }
	.home-hero__title { font-size: 23px; }
	.home-hero__sub { font-size: 13px; }
}

@media (max-width: 767px) {
	.home-hero,
	.home-hero__body,
	.home-hero__card { height: auto; min-height: 0; overflow: visible; }
	.home-hero__card { padding-bottom: 64px; }
	.home-hero__card .button { position: relative; z-index: 1; height: auto; line-height: 1.2; white-space: nowrap; }
}

@media (max-width: 480px) {
	.home-hero__card { padding-bottom: 56px; }
}
