/* ========================================
   HOMEPAGE STYLES - PROFESSIONAL CHEF KNIVES
   Modern Industrial Design inspired layout
   ======================================== */

/* ========================================
   COLOUR PALETTE - MODERN INDUSTRIAL DESIGN
   ======================================== */
:root {
	--deep-teal: #1a4d5c;
	--dark-teal: #0f3643;
	--warm-beige: #e8dcc4;
	--light-beige: #f5f0e6;
	--pure-white: #FFFFFF;
	--accent-red: #e74c3c;
	--charcoal: #2C2C2C;
	--soft-gray: #6B6B6B;
	--light-gray: #E5E5E5;
	--medium-gray: #b8b8b8;
}

/* ========================================
   HERO SECTION
   ======================================== */
.heroSection {
	position: relative;
	width: 100%;
	min-height: 650px;
	background: linear-gradient(135deg, var(--deep-teal) 0%, var(--dark-teal) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
	overflow: hidden;
}

.heroOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/images/hero-professional-chef-knives.jpg');
	background-size: cover;
	background-position: center right;
	opacity: 0.25;
	z-index: 1;
}

.heroContent {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	padding: 80px 60px;
	color: var(--pure-white);
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.heroContent > div:first-child {
	max-width: 600px;
}

.heroTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 52px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--pure-white);
}

.heroSubtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.7;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.9);
}

.heroButton {
	display: inline-block;
	background-color: var(--accent-red);
	color: var(--pure-white);
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0.5px;
	padding: 16px 40px;
	border-radius: 2px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.heroButton:hover {
	background-color: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ========================================
   USP SECTION
   ======================================== */
.uspSection {
	background-color: var(--pure-white);
	padding: 80px 20px;
	border-bottom: 1px solid var(--light-gray);
}

.uspContainer {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
}

.uspItem {
	text-align: center;
}

.uspIcon {
	font-size: 48px;
	color: var(--accent-red);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
}

.uspTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 12px;
}

.uspText {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--soft-gray);
	line-height: 1.6;
}

/* ========================================
   SECTION HEADERS (Reusable)
   ======================================== */
.sectionHeader {
	text-align: center;
	margin-bottom: 56px;
}

.sectionTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 16px;
}

.sectionSubtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--soft-gray);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

.sectionFooter {
	text-align: center;
	margin-top: 48px;
}

/* ========================================
   FEATURED COLLECTIONS SECTION
   ======================================== */
.featuredCollectionsSection {
	background-color: var(--light-beige);
	padding: 90px 20px;
}

.collectionsGrid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 280px);
	gap: 20px;
}

.collectionCard {
	position: relative;
	overflow: hidden;
	border-radius: 0;
	transition: all 0.4s ease;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	text-decoration: none;
}

.collectionCard.featured {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.collectionCardImage {
	width: 100%;
	height: 100%;
	background-color: var(--warm-beige);
	position: relative;
	overflow: hidden;
}

.collectionCardImage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.4s ease;
}

.collectionCard:hover .collectionCardImage img {
	transform: scale(1.05);
}

.collectionCardOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(26, 77, 92, 0.3) 0%, rgba(26, 77, 92, 0.85) 100%);
	transition: all 0.4s ease;
}

.collectionCard:hover .collectionCardOverlay {
	background: linear-gradient(to bottom, rgba(26, 77, 92, 0.4) 0%, rgba(26, 77, 92, 0.9) 100%);
}

.collectionCardContent {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 32px;
	z-index: 2;
}

.collectionCardTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: var(--pure-white);
	margin-bottom: 12px;
	line-height: 1.3;
}

.collectionCard.featured .collectionCardTitle {
	font-size: 36px;
}

.collectionCardCTA {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--pure-white);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.collectionCard:hover .collectionCardCTA {
	gap: 12px;
	color: var(--warm-beige);
}

.viewAllButton {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--charcoal);
	text-decoration: none;
	padding: 14px 36px;
	border: 2px solid var(--charcoal);
	border-radius: 2px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.viewAllButton:hover {
	background-color: var(--charcoal);
	color: var(--pure-white);
	transform: translateY(-2px);
}

/* ========================================
   LATEST PRODUCTS SECTION
   ======================================== */
.latestProductsSection {
	background-color: var(--pure-white);
	padding: 90px 20px;
}

.productsGrid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.productCard {
	background-color: var(--pure-white);
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	position: relative;
}

.productCard:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,0.15);
	transform: translateY(-4px);
}

.productCardLink {
	text-decoration: none;
	display: block;
}

.productBadge {
	position: absolute;
	top: 16px;
	right: 16px;
	background-color: var(--accent-red);
	color: var(--pure-white);
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 2px;
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.productCardImage {
	width: 100%;
	height: 280px;
	background-color: var(--light-beige);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.productCardImage img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
	padding: 20px;
}

.productCard:hover .productCardImage img {
	transform: scale(1.05);
}

.productCardContent {
	padding: 28px;
}

.productBrand {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: var(--medium-gray);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
}

.productCardTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 14px;
	line-height: 1.4;
	min-height: 50px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

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

.ratingScore {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--deep-teal);
}

.ratingLabel {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--soft-gray);
}

.productPrice {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.priceWas {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: var(--medium-gray);
	text-decoration: line-through;
}

.priceNow {
	font-family: 'Montserrat', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: var(--deep-teal);
}

.productCTA {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--deep-teal);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.productCard:hover .productCTA {
	gap: 12px;
	color: var(--accent-red);
}

/* ========================================
   ABOUT SECTION - ALTERNATING LAYOUT
   ======================================== */
.aboutSection {
	background-color: var(--pure-white);
	padding: 90px 20px;
}

.aboutContainer {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.aboutImage {
	position: relative;
}

.aboutImage img {
	width: 100%;
	border-radius: 0;
	box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.aboutContent {
	padding: 20px 0;
}

.aboutTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 38px;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 28px;
	line-height: 1.3;
}

.aboutContent p {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--soft-gray);
	line-height: 1.8;
	margin-bottom: 20px;
}

.aboutButton {
	display: inline-block;
	background-color: var(--accent-red);
	color: var(--pure-white);
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 16px 36px;
	border-radius: 2px;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: 16px;
}

.aboutButton:hover {
	background-color: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* ========================================
   ALL COLLECTIONS SECTION
   ======================================== */
.allCollectionsSection {
	background-color: var(--light-beige);
	padding: 90px 20px;
}

.allCollectionsGrid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.collectionPill {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 28px;
	background-color: var(--pure-white);
	border-radius: 0;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.collectionPill:hover {
	background-color: var(--deep-teal);
	border-color: var(--deep-teal);
	transform: translateX(4px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.collectionPillTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--charcoal);
	transition: color 0.3s ease;
}

.collectionPill:hover .collectionPillTitle {
	color: var(--pure-white);
}

.collectionPill i {
	color: var(--medium-gray);
	font-size: 14px;
	transition: color 0.3s ease;
}

.collectionPill:hover i {
	color: var(--pure-white);
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */
.whyChooseSection {
	background-color: var(--pure-white);
	padding: 90px 20px;
}

.whyChooseContainer {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}

.whyChooseTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 38px;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 24px;
}

.whyChooseIntro {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--soft-gray);
	line-height: 1.8;
	margin-bottom: 32px;
}

.whyChooseList {
	list-style: none;
	padding: 0;
	margin: 0;
}

.whyChooseList li {
	display: flex;
	gap: 20px;
	margin-bottom: 28px;
	align-items: flex-start;
}

.whyChooseIcon {
	font-size: 32px;
	flex-shrink: 0;
}

.whyChooseText {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: var(--soft-gray);
	line-height: 1.7;
}

.whyChooseText strong {
	color: var(--charcoal);
	font-weight: 700;
	display: block;
	margin-bottom: 6px;
}

.highlightBox {
	background-color: var(--light-beige);
	padding: 48px;
	border-radius: 0;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.highlightTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 28px;
}

.highlightList {
	list-style: none;
	padding: 0;
	margin: 0;
}

.highlightList li {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: var(--soft-gray);
	line-height: 1.8;
	margin-bottom: 20px;
	padding-left: 28px;
	position: relative;
}

.highlightList li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--accent-red);
	font-size: 24px;
	line-height: 1.2;
}

.highlightList li strong {
	color: var(--charcoal);
	font-weight: 700;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faqSection {
	background-color: var(--pure-white);
	padding: 90px 20px;
	border-top: 1px solid var(--light-gray);
}

.faqContainer {
	max-width: 900px;
	margin: 0 auto;
}

.faqItem {
	border-bottom: 1px solid var(--light-gray);
	padding: 28px 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faqItem:hover {
	background-color: rgba(0,0,0,0.01);
}

.faqQuestion {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.faqQuestionText {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--charcoal);
	line-height: 1.4;
}

.faqIcon {
	font-size: 24px;
	color: var(--charcoal);
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.faqItem.active .faqIcon {
	transform: rotate(45deg);
}

.faqAnswer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faqItem.active .faqAnswer {
	max-height: 500px;
	padding-top: 20px;
}

.faqAnswerText {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: var(--soft-gray);
	line-height: 1.8;
}

/* ========================================
   DOCUMENTS SECTION
   ======================================== */
.documentsSection {
	background-color: var(--light-beige);
	padding: 90px 20px;
}

.documentsGrid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.documentCard {
	background-color: var(--pure-white);
	padding: 48px 32px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.documentCard:hover {
	border-color: var(--accent-red);
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.documentIcon {
	font-size: 64px;
	color: var(--accent-red);
	margin-bottom: 20px;
}

.documentTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--charcoal);
	line-height: 1.4;
}

.documentSubtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: var(--soft-gray);
	margin-top: 4px;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletterSection {
	background: linear-gradient(135deg, var(--deep-teal) 0%, var(--dark-teal) 100%);
	padding: 70px 20px;
}

.newsletterContainer {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.newsletterTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 38px;
	font-weight: 700;
	color: var(--pure-white);
	margin-bottom: 16px;
}

.newsletterText {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: rgba(255,255,255,0.9);
	line-height: 1.7;
}

.newsletterForm {
	display: flex;
	gap: 12px;
}

.newsletterInput {
	flex: 1;
	padding: 18px 24px;
	border: none;
	border-radius: 2px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	color: var(--charcoal);
}

.newsletterInput::placeholder {
	color: var(--medium-gray);
}

.newsletterButton {
	padding: 18px 36px;
	background-color: var(--accent-red);
	color: var(--pure-white);
	border: none;
	border-radius: 2px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.newsletterButton:hover {
	background-color: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ========================================
   CTA SECTION
   ======================================== */
.ctaSection {
	background-color: var(--pure-white);
	padding: 90px 20px;
	text-align: center;
}

.ctaContainer {
	max-width: 900px;
	margin: 0 auto;
}

.ctaTitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: var(--charcoal);
	margin-bottom: 24px;
	line-height: 1.3;
}

.ctaText {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--soft-gray);
	line-height: 1.8;
	margin-bottom: 36px;
}

.ctaButton {
	display: inline-block;
	background-color: var(--accent-red);
	color: var(--pure-white);
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 18px 48px;
	border-radius: 2px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 16px rgba(231, 76, 60, 0.3);
}

.ctaButton:hover {
	background-color: #c0392b;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(231, 76, 60, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop (1400px+) */
@media only screen and (min-width: 1400px) {
	.heroContent {
		max-width: 1600px;
		padding: 100px 80px;
	}

	.uspContainer,
	.collectionsGrid,
	.productsGrid,
	.aboutContainer,
	.allCollectionsGrid,
	.whyChooseContainer,
	.documentsGrid {
		max-width: 1400px;
	}
}

/* Tablet (768px - 1024px) */
@media only screen and (max-width: 1024px) {
	.heroSection {
		min-height: 550px;
	}

	.heroContent {
		padding: 60px 40px;
		gap: 50px;
	}

	.heroTitle {
		font-size: 40px;
	}

	.heroSubtitle {
		font-size: 16px;
	}

	.uspContainer {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}

	.uspIcon {
		font-size: 56px;
		height: 75px;
	}

	.collectionsGrid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
	}

	.collectionCard.featured {
		grid-column: 1 / 3;
		grid-row: auto;
	}

	.productsGrid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}

	.aboutContainer {
		gap: 60px;
	}

	.aboutTitle {
		font-size: 32px;
	}

	.allCollectionsGrid {
		grid-template-columns: repeat(3, 1fr);
	}

	.whyChooseContainer {
		gap: 60px;
	}

	.whyChooseTitle {
		font-size: 32px;
	}

	.documentsGrid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile (< 768px) */
@media only screen and (max-width: 768px) {
	.heroSection {
		min-height: 600px;
	}

	.heroContent {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 50px 30px;
		text-align: center;
	}

	.heroContent > div:first-child {
		max-width: 100%;
	}

	.heroTitle {
		font-size: 36px;
	}

	.heroSubtitle {
		font-size: 16px;
		max-width: 100%;
	}

	.heroButton {
		padding: 16px 36px;
		font-size: 14px;
	}

	.uspSection {
		padding: 60px 20px;
	}

	.uspContainer {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.featuredCollectionsSection,
	.latestProductsSection,
	.aboutSection,
	.allCollectionsSection,
	.whyChooseSection,
	.faqSection,
	.documentsSection,
	.ctaSection {
		padding: 70px 20px;
	}

	.sectionTitle {
		font-size: 32px;
	}

	.sectionSubtitle {
		font-size: 15px;
	}

	.collectionsGrid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 16px;
	}

	.collectionCard.featured {
		grid-column: 1;
		grid-row: auto;
	}

	.collectionCard,
	.collectionCard.featured {
		min-height: 260px;
	}

	.collectionCardTitle {
		font-size: 24px;
	}

	.collectionCard.featured .collectionCardTitle {
		font-size: 30px;
	}

	.productsGrid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.productCardImage {
		height: 260px;
	}

	.aboutContainer {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.aboutImage {
		order: -1;
	}

	.aboutTitle {
		font-size: 28px;
	}

	.aboutContent p {
		font-size: 15px;
	}

	.allCollectionsGrid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.whyChooseContainer {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.whyChooseTitle {
		font-size: 28px;
	}

	.highlightBox {
		padding: 36px 28px;
	}

	.highlightTitle {
		font-size: 22px;
	}

	.faqQuestionText {
		font-size: 16px;
	}

	.faqIcon {
		font-size: 20px;
	}

	.documentsGrid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.documentCard {
		padding: 40px 28px;
	}

	.newsletterSection {
		padding: 60px 20px;
	}

	.newsletterContainer {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.newsletterTitle {
		font-size: 32px;
	}

	.newsletterForm {
		flex-direction: column;
		gap: 12px;
	}

	.newsletterButton {
		width: 100%;
	}

	.ctaTitle {
		font-size: 32px;
	}

	.ctaText {
		font-size: 15px;
	}

	.ctaButton {
		padding: 16px 40px;
		font-size: 14px;
	}
}

/* Small Mobile (< 480px) */
@media only screen and (max-width: 480px) {
	.heroSection {
		min-height: 500px;
	}

	.heroContent {
		padding: 40px 20px;
	}

	.heroTitle {
		font-size: 28px;
	}

	.heroSubtitle {
		font-size: 14px;
	}

	.sectionTitle {
		font-size: 26px;
	}

	.uspIcon {
		font-size: 48px;
		height: 65px;
	}

	.uspTitle {
		font-size: 18px;
	}

	.uspText {
		font-size: 14px;
	}

	.collectionCardContent {
		padding: 24px;
	}

	.productCardTitle {
		font-size: 16px;
		min-height: auto;
	}

	.priceNow {
		font-size: 22px;
	}

	.aboutTitle,
	.whyChooseTitle {
		font-size: 24px;
	}

	.highlightBox {
		padding: 28px 20px;
	}

	.newsletterTitle {
		font-size: 26px;
	}

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