/*

TemplateMo 599 Noir Fashion
https://templatemo.com/tm-599-noir-fashion

Mobile-optimised revision — fixes all common phone resolutions (320px–430px+)

*/

@charset "utf-8";

/* ─── Reset & Base ─────────────────────────────────────────────────────────── */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #0a0a0a;
	--accent: #33c5ff;
	--accent-hover: #1180ff;
	--text-light: #ffffff;
	--text-muted: #999;
	--bg-dark: #000;
	--bg-section: #0a0a0a;
}

html {
	scroll-behavior: smooth;
	/* Prevent iOS bounce from showing a white edge on dark sites */
	background: #000;
}

section {
	scroll-margin-top: 70px;
}

body {
	font-family: 'Roboto Condensed', sans-serif;
	background: var(--bg-dark);
	color: var(--text-light);
	/* Prevent horizontal overflow on any phone */
	overflow-x: hidden;
	/* Respect notch / Dynamic Island safe areas */
	padding-left: env(safe-area-inset-left);
	padding-right: env(safe-area-inset-right);
}

/* ─── Navigation ───────────────────────────────────────────────────────────── */

nav {
	position: fixed;
	width: 100%;
	padding: 20px 50px;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	animation: slideDown 0.8s ease;
	transition: all 0.3s ease;
}

nav.scrolled {
	padding: 15px 50px;
	background: rgba(0, 0, 0, 0.98);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	flex-wrap: wrap;
	gap: 20px;
}

.logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.logo-link:hover {
	transform: scale(1.05);
}

.logo-svg {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

/* Isolated box model to anchor absolute coordinates cleanly */
.logo-shadow-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.logo-text {
	position: relative;
	font-size: 35px;
	font-weight: 900;
	margin-bottom: 3px;
	letter-spacing: -2px;
	background: linear-gradient(135deg, #fff, var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: auto;
	display: block; /* Changes from inline to clear spacing blocks */
}

.logo-text::after {
	content: attr(data-text);
	position: absolute;
	left: 3px;  /* Moves shadow 3px right over main text */
	top: 3px;   /* Moves shadow 3px down over main text */
	width: 100%;
	height: 100%;
	z-index: 1;
	
	/* Reset background clip layers completely */
	background: none !important;
	-webkit-background-clip: initial !important;
	background-clip: initial !important;

	/* Render custom cyan shadow tone onto text mask */
	color: rgba(39, 241, 255, 0.5) !important;
	-webkit-text-fill-color: rgba(39, 241, 255, 0.5) !important;

	/* Soft drop shadow glow edges */
	filter: blur(1px);
	pointer-events: none;
}

.nav-links {
	display: flex;
	gap: 30px;
	list-style: none;
	align-items: center;
}

.nav-links a {
	color: var(--text-light);
	text-decoration: none;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	position: relative;
	transition: all 0.3s ease;
	padding: 5px 10px;
	opacity: 0.7;
}

.nav-links a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent);
	opacity: 0;
	transform: skewX(-10deg);
	transition: all 0.3s ease;
	z-index: -1;
}

.nav-links a:hover {
	color: white;
	opacity: 1;
}

.nav-links a:hover::before {
	opacity: 1;
}

.nav-links a.active {
	color: white;
	opacity: 1;
}

.nav-links a.active::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 2px;
	background: var(--accent);
}

.nav-cta {
	background: var(--accent);
	color: white !important;
	padding: 10px 25px !important;
	border-radius: 25px;
	font-weight: 600;
	opacity: 1 !important;
}

.nav-cta:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(51, 197, 255, 0.3);
}

.nav-cta::before {
	display: none;
}

/* Container holds the list of grid items stacked vertically */
.tools-grid {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Space between each equipment row */
    margin: 40px 0;
}

/* Individual layout row */
.grid-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* Space between text column and picture circle */
}

/* Alternating flip layout style: targets every even entry */
.grid-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Text box alignment configuration */
.grid-text {
    flex: 1;
}

.tagline {
    font-style: italic;
    color: var(--accent, #33b4ff);
    margin-top: 7px;
	margin-bottom:22px;
}

/* Image circle element optimization */
.grid-img {
    width: 500px; /* Upscaled from 150px for grid presence */
    height: 420px;
    object-fit: cover;
    border-radius: 5%;
    flex-shrink: 0; /* Prevents flexbox from squeezing the circle shape */
    box-shadow: 0 8px 24px rgba(0,0,0,0.2); /* Enhances depth */
}

/* Responsive breakpoint handling for small mobile views */
@media (max-width: 768px) {
    .grid-item, .grid-item:nth-child(even) {
        flex-direction: column-reverse; /* Places picture directly over the text title */
        text-align: center;
        gap: 20px;
    }
    
    .grid-img {
        width: 150px;
        height: 150px;
    }
}

/* ─── Tablet (769px – 1070px) ──────────────────────────────────────────────── */

@media (max-width: 1070px) and (min-width: 769px) {
	nav {
		padding: 15px 30px;
	}

	.nav-container {
		flex-direction: column;
		gap: 15px;
	}

	.nav-links {
		width: 100%;
		justify-content: center;
	}

	.nav-links a {
		font-size: 12px;
	}

	nav.scrolled {
		padding: 10px 30px;
	}

	.hero-container {
		padding: 0 30px;
	}

	.hero-title {
		font-size: 60px;
		text-transform: uppercase;
	}

	.hero-left {
		padding-right: 0;
		padding-top: 100px;
		margin-top: auto;
	}

	.hero-image-wrapper {
		max-width: 400px;
		padding-top: 0;
	}

	.tag {
		display: none;
	}

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

	.collections,
	.featured,
	.contact {
		padding-top: 120px;
	}

	section {
		scroll-margin-top: 100px;
	}
}

@media (max-width: 900px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 120px;
		padding-bottom: 80px;
	}

	.hero-left {
		padding-right: 0;
		max-width: 600px;
		padding-top: 100px;
		margin-top: auto;
	}

	.hero-stats {
		justify-content: center;
	}

	.hero-right {
		display: none;
	}

	.grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}

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

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

	.featured-content {
		padding: 30px;
	}

	.featured-content h2 {
		font-size: 32px;
	}

	.feature-highlights {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.featured-image-section {
		height: 400px;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.testimonial-card {
		padding: 25px;
	}
}

/* ─── Mobile Menu ──────────────────────────────────────────────────────────── */

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
	/* Minimum 44×44px tap target (Apple HIG) */
	min-width: 44px;
	min-height: 44px;
	justify-content: center;
	align-items: flex-end;
}

.menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--text-light);
	margin: 3px 0;
	transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	/* Respect notch at top */
	padding-top: env(safe-area-inset-top);
	background: rgba(0, 0, 0, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transition: right 0.3s ease;
	z-index: 999;
}

.mobile-nav.active {
	right: 0;
}

.mobile-nav-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 30px;
	list-style: none;
}

.mobile-nav-links a {
	color: var(--text-light);
	text-decoration: none;
	font-size: 24px;
	letter-spacing: 3px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	/* Comfortable tap target */
	padding: 10px 20px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
	color: var(--accent);
	transform: translateX(10px);
}

/* ─── Hero Section ─────────────────────────────────────────────────────────── */

.hero {
	height: auto;
	position: relative;
	padding-bottom: 60px;
	min-height: auto;
	background: #000;
}

.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 1;
}

.hero-bg::before {
	content: '';
	position: absolute;
	width: 150%;
	height: 150%;
	top: -25%;
	left: -25%;
	background: conic-gradient(from 180deg at 50% 50%, #ff3366 0deg, #000 60deg, #ff3366 120deg, #000 180deg, #ff3366 240deg, #000 300deg, #ff3366 360deg);
	animation: spin 20s linear infinite;
	opacity: 0.15;
}

.hero-bg::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

.hero-container {
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
	position: relative;
	z-index: 2;
	align-items: center;
	overflow: visible;
}

.hero-left {
	padding-right: 60px;
	padding-top: 100px;
	margin-top: auto;
}

.hero-badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(255, 51, 102, 0.1);
	border: 1px solid var(--accent);
	color: var(--accent);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 30px;
	animation: slideInLeft 1s ease;
	position: relative;
	overflow: hidden;
}

.hero-badge::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.5), transparent);
	left: -30px;
	animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
	0%   { left: -30px; }
	100% { left: calc(100% + 30px); }
}

.hero-title {
	font-size: clamp(50px, 7vw, 90px);
	text-transform: uppercase;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 25px;
	position: relative;
}

.hero-title .line {
	display: block;
	overflow: hidden;
	padding-bottom: 8px;
	margin-bottom: -8px;
}

.hero-title .line span {
    display: inline-block;
    animation: slideDown 1s ease backwards;
    animation-fill-mode: backwards;
}

.hero-title .line:nth-child(1) span { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.3s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.4s; }

.logo-colors {
	background: #0DCAF2;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: auto;
}

.hero-title .accent {
	background: #E5E61C;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding-right: 20px;
	padding-bottom: 5px;
	text-align:center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: auto;
	display: block; /* Changes from inline to clear spacing blocks */
	
}

@keyframes slideUp {
	from { transform: translateY(100%); opacity: 0; }
	to   { transform: translateY(0);    opacity: 1; }
}

@keyframes slideInLeft {
	from { transform: translateX(-50px); opacity: 0; }
	to   { transform: translateX(0);     opacity: 1; }
}

.hero-description {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-muted);
	margin-bottom: 40px;
	animation: fadeIn 1s ease 0.6s backwards;
}

.hero-stats {
	display: flex;
	gap: 50px;
	margin-bottom: 50px;
	animation: fadeIn 1s ease 0.8s backwards;
}

.stat {
	position: relative;
	text-align: center;
}

.stat-number {
	font-size: 32px;
	font-weight: 900;
	color: var(--accent);
	display: block;
	margin-bottom: 5px;
	text-align: center;
}

.stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted);
	text-align: center;
}

.cta-group {
	display: flex;
	gap: 20px;
	animation: fadeIn 1s ease 1s backwards;
}

.cta-button {
	padding: 18px 40px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	font-size: 13px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	display: inline-block;
}

.cta-button.primary {
	background: var(--accent);
	color: rgb(0, 0, 0);
	border-radius: 4px;
}

.cta-button.primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.cta-button.primary:hover::before {
	width: 300px;
	height: 300px;
}

.cta-button.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(51, 197, 255, 0.3);
}

.cta-button.outline {
	background: transparent;
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 4px;
}

.cta-button.outline:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.hero-right {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 600px;
	padding-top: 30px;
}

.hero-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.carousel-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
	transform: scale(1.1);
}

.carousel-slide.active {
	opacity: 1;
	transform: scale(1);
	animation: kenburns 12s ease-out;
}

@keyframes kenburns {
	0%   { transform: scale(1); }
	100% { transform: scale(1.05); }
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.indicator {
	width: 40px;
	height: 12px;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 3px;
}

.indicator.active {
	background: var(--accent);
	width: 60px;
}

.carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
	pointer-events: none;
}

.floating-tags {
	display: flex;
	flex-direction: row;
	gap: 15px;
	position: static;
	width: 100%;
	height: auto;
	margin-top: 15px;
	justify-content: center;
	padding-top: 50px;
}

.tag {
	padding: 8px 16px;
	background: rgba(0, 0, 0, 0.8);
	/* 1. Set the main border first */
	border: 1px solid var(--accent);
	/* 2. Layer the accent border on top of it */

	backdrop-filter: blur(10px);
	border-radius: 6px;
	-webkit-backdrop-filter: blur(10px);
	color: white;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: static;
	/* 3. Stops the tags from stretching to match each other */
	flex: 0 1 auto;
	text-align: center;
	animation: fadeInScale 1s ease backwards;
}

.tag:nth-child(1) { animation-delay: 1.2s; }
.tag:nth-child(2) { animation-delay: 1.4s; }
.tag:nth-child(3) { animation-delay: 1.6s; }

@keyframes fadeInScale {
	from { transform: scale(0.8); opacity: 0; }
	to   { transform: scale(1);   opacity: 1; }
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s ease infinite;
	z-index: 3;
}

.scroll-indicator span {
	display: block;
	width: 30px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 25px;
	position: relative;
}

.scroll-indicator span::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 10px;
	animation: scrollDot 2s ease infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50%       { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDot {
	0%   { top: 10px; opacity: 1; }
	50%  { top: 30px; opacity: 0.5; }
	100% { top: 10px; opacity: 1; }
}

/* ─── Collections Grid ─────────────────────────────────────────────────────── */

.collections {
	padding: 120px 50px 100px;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 48px;
	letter-spacing: -2px;
	margin-bottom: 20px;
}

.section-subtitle {
	color: var(--text-muted);
	font-size: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.category-tabs {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 12px 30px;
	background: transparent;
	border: 1px solid var(--text-muted);
	color: var(--text-muted);
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s ease;
	font-size: 12px;
	/* Comfortable tap target */
	min-height: 44px;
}

.tab-btn.active,
.tab-btn:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
	transform: translateY(-2px);
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 25px;
}

.collection-card {
	position: relative;
	background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s ease;
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
	border-radius: 8px;
}

.collection-card:nth-child(1) { animation-delay: 0.1s; }
.collection-card:nth-child(2) { animation-delay: 0.2s; }
.collection-card:nth-child(3) { animation-delay: 0.3s; }
.collection-card:nth-child(4) { animation-delay: 0.4s; }
.collection-card:nth-child(5) { animation-delay: 0.5s; }
.collection-card:nth-child(6) { animation-delay: 0.6s; }
.collection-card:nth-child(7) { animation-delay: 0.7s; }
.collection-card:nth-child(8) { animation-delay: 0.8s; }

.collection-thumbnail {
	width: 100%;
	height: 300px;
	background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	opacity: 0.3;
	transition: transform 0.5s ease, opacity 0.5s ease;
	position: relative;
	overflow: hidden;
}

.collection-thumbnail::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 51, 102, 0.1) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.8s ease;
}

.collection-card:hover .collection-thumbnail::after {
	transform: translateX(100%);
}

.collection-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.collection-card:hover .collection-thumbnail {
	transform: scale(1.05);
	opacity: 0.8;
}

.collection-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(51, 197, 255, 0.2);
}

.card-content {
	padding: 25px;
	background: rgba(0, 0, 0, 0.95);
}

.card-badge {
	display: inline-block;
	padding: 4px 12px;
	background: var(--accent);
	color: white;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
	border-radius: 2px;
}

.card-title {
	font-size: 22px;
	margin-bottom: 8px;
	font-weight: 700;
}

.card-subtitle {
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 11px;
	margin-bottom: 12px;
}

.card-price {
	font-size: 18px;
	color: var(--accent);
	font-weight: 600;
}

/* ─── Featured Section ─────────────────────────────────────────────────────── */

.featured {
	padding: 40px 50px 40px;
	background: var(--bg-section);
	position: relative;
	overflow: hidden;
}

.featured::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 30% 70%, var(--accent) 0%, transparent 50%);
	opacity: 0.05;
	z-index: 1;
}

.featured-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.featured-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	margin-bottom: 10px;
}

.featured-content h2 {
	font-size: 48px;
	margin-bottom: 20px;
	letter-spacing: -2px;
}

.featured-content .label {
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 12px;
	margin-bottom: 20px;
	display: block;
}

.featured-content p {
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 30px;
	font-size: 16px;
}

.feature-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.highlight-item {
	padding: 25px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
}

.highlight-item:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: var(--accent);
	transform: translateY(-5px);
}

.highlight-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent), #66aaff);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 24px;
}

.highlight-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: white;
}

.highlight-desc {
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.5;
}

.featured-image-section {
	position: relative;
	height: 500px;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.featured-image-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 2px;
	height: 100%;
}

.featured-img {
	background: linear-gradient(45deg, #333, #222);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 14px;
	transition: transform 0.3s ease;
	position: relative;
	overflow: hidden;
}

.featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

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

.featured-img:hover {
	transform: scale(1.02);
}

.featured-img:first-child {
	grid-row: 1 / 3;
	background: linear-gradient(135deg, #444, #222);
	font-size: 18px;
}

.featured-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 51, 102, 0.1) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.8s ease;
}

.featured-img:hover::before {
	transform: translateX(100%);
}

.feature-cta-wrapper {
	text-align: center;
}

.feature-cta {
	display: inline-block;
	padding: 18px 50px;
	background: var(--accent);
	color: rgb(0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	transition: all 0.3s ease;
	margin: auto;
	margin-top: 20px;
	border-radius: 4px;
	text-align: center;
}

.feature-cta:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(51, 197, 255, 0.4);
}

/* ─── Testimonials ─────────────────────────────────────────────────────────── */

.testimonials {
	margin-top: 60px;
}

.testimonials-header {
	text-align: center;
	margin-bottom: 50px;
}

.testimonials-header h3 {
	font-size: 32px;
	margin-bottom: 15px;
	letter-spacing: -1px;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial-card {
	padding: 40px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateY(-5px);
}

.testimonial-quote {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-light);
	margin-bottom: 25px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent), #66aaff);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	font-size: 18px;
}

.author-info h4 {
	font-size: 16px;
	margin-bottom: 5px;
	color: white;
}

.author-info p {
	font-size: 14px;
	color: var(--text-muted);
}

.testimonial-rating {
	position: absolute;
	top: 20px;
	right: 20px;
	color: var(--accent);
	font-size: 14px;
}

/* ─── Newsletter ───────────────────────────────────────────────────────────── */

.newsletter {
	padding: 120px 50px 100px;
	background: linear-gradient(135deg, var(--accent), #0055bb);
	text-align: center;
}

.newsletter-content {
	max-width: 600px;
	margin: 0 auto;
}

.newsletter h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.newsletter p {
	font-size: 18px;
	margin-bottom: 40px;
	opacity: 0.9;
}

.newsletter-form {
	display: flex;
	gap: 10px;
	max-width: 500px;
	margin: 0 auto;
}

.newsletter-input {
	flex: 1;
	padding: 18px 25px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	font-size: 16px;
	transition: all 0.3s ease;
	/* Prevent iOS zoom on focus (font-size must be ≥16px — already met) */
}

.newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.2);
	border-color: white;
}

.newsletter-btn {
	padding: 18px 40px;
	background: white;
	color: var(--accent);
	border: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-height: 44px;
}

.newsletter-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ─── Contact ──────────────────────────────────────────────────────────────── */

.contact {
	padding: 80px 50px 100px;
	background: var(--bg-section);
}

.contact-container {
	max-width: 1400px;
	margin: 0 auto;
}

.contact-header {
	text-align: center;
	margin-bottom: 60px;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.contact-form-wrapper {
	background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
	padding: 50px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.contact-form-wrapper::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
	opacity: 0.05;
	animation: rotate 30s linear infinite;
}

.form-group {
	margin-bottom: 25px;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--text-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: white;
	/* ≥16px prevents iOS auto-zoom */
	font-size: 16px;
	transition: all 0.3s ease;
	font-family: 'Helvetica', sans-serif;
	/* iOS rounds inputs by default — keep flat */
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--accent);
	box-shadow: 0 0 20px rgba(51, 197, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-submit {
	background: var(--accent);
	color: white;
	padding: 18px 50px;
	border: none;
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	position: relative;
	overflow: hidden;
	/* Comfortable tap target */
	min-height: 44px;
}

.form-submit::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.form-submit:hover::before {
	width: 300px;
	height: 300px;
}

.form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(51, 197, 255, 0.4);
}

.contact-info {
	padding: 50px;
	background: linear-gradient(135deg, rgba(51, 197, 255, 0.08), rgba(51, 197, 255, 0.02));
	border-radius: 10px;
	border: 1px solid rgba(51, 197, 255, 0.1);
}

.info-item {
	margin-top: 30px;
	margin-bottom: 30px;
	display: flex;
	align-items: start;
	gap: 20px;
	transition: all 0.3s ease;
}

.info-item:hover {
	transform: translateX(5px);
}

.info-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent), #66aaff);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
	box-shadow: 0 5px 15px rgba(51, 197, 255, 0.2);
}

.info-content h3 {
	font-size: 18px;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 700;
}

.info-content p {
	color: var(--text-muted);
	line-height: 1.8;
	font-size: 15px;
}

.info-content a {
	color: var(--accent);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
}

.info-content a:hover {
	color: var(--accent-hover);
	text-decoration: underline;
}

/* ─── Map ──────────────────────────────────────────────────────────────────── */

.map-section {
	position: relative;
	height: 400px;
	background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
	overflow: hidden;
	margin-top: 60px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-container {
	width: 100%;
	height: 100%;
	position: relative;
	background: #111;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 8px;
	filter: brightness(0.8) contrast(1.2) invert(1) hue-rotate(180deg) saturate(0.3);
}

.map-placeholder {
	text-align: center;
	color: var(--text-muted);
	width: 100%;
	height: 100%;
}

/* ─── Footer ───────────────────────────────────────────────────────────────── */

footer {
	background: #000;
	padding: 80px 50px 30px;
	border-top: 1px solid #222;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-brand h3 {
	font-size: 32px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #fff, var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-brand p {
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 30px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-link {
	width: 44px;
	height: 44px;
	border: 1px solid var(--text-muted);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
	transform: translateY(-3px);
}

.footer-column h4 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 25px;
	color: white;
}

.footer-column ul {
	list-style: none;
}

.footer-column a {
	color: var(--text-muted);
	text-decoration: none;
	display: block;
	padding: 8px 0;
	transition: all 0.3s ease;
}

.footer-column a:hover {
	color: var(--accent);
	transform: translateX(5px);
}

.footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 30px;
	border-top: 1px solid #222;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-bottom p {
	color: var(--text-muted);
	font-size: 14px;
}

.payment-methods {
	display: flex;
	gap: 15px;
}

.payment-icon {
	width: 40px;
	height: 25px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: var(--text-muted);
}

/* ─── Animations ───────────────────────────────────────────────────────────── */

@keyframes fadeInUp {
	from { transform: translateY(40px); opacity: 0; }
	to   { transform: translateY(0);    opacity: 1; }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE STYLES  (≤768px)
   All rules consolidated into ONE block — no duplicates.
   Covers: iPhone SE (375), iPhone 14/15/16 (390–430), Galaxy S (360–412),
           Pixel (393–412), and most Android mid-range (360–480)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

	/* Safe area padding for notched / Dynamic Island phones */
	body {
		padding-bottom: env(safe-area-inset-bottom);
	}

	/* ── Navigation ── */
	nav {
		padding: 12px 20px;
		/* Add padding for status bar on notched phones */
		padding-top: max(12px, env(safe-area-inset-top));
	}

	nav.scrolled {
		padding: 10px 20px;
		padding-top: max(10px, env(safe-area-inset-top));
	}

	.nav-container {
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: nowrap;
		gap: 0;
	}

	.logo-text {
		font-size: 22px;
	}

	.logo-svg {
		width: 32px;
		height: 32px;
	}

	.nav-links {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.mobile-nav {
		display: block;
		padding-top: env(safe-area-inset-top);
	}

	section {
		scroll-margin-top: 60px;
	}

	/* ── Hero ── */
	.hero {
		/* Ensure content clears the fixed nav on all phone heights */
		min-height: auto; /* dynamic viewport height — avoids iOS address bar */
	}
	.hero-bg {
	position: absolute;
	width: 100%;
	height: 80%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 1;
}

	.hero-container {
		grid-template-columns: 1fr;
		padding: 0 0px;
		padding-bottom: 0px;
		text-align: center;
		align-items: start;
	}

	.hero-left {
		padding-right: 0;
		padding-top: 120px;
		margin-top: 0;
	}

	.hero-badge {
		font-size: 10px;
		letter-spacing: 2px;
		padding: 6px 14px;
		margin-bottom: 20px;
	}

	.hero-title {
		text-transform: uppercase;
		font-size: clamp(36px, 10vw, 58px);
		word-break: break-word;
		margin-bottom: 18px;
		
	}

	.hero-title .accent {

		background: #E5E61C;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		text-transform: uppercase;
		padding-left: 4.5%;
		font-size: clamp(36px, 10vw, 58px);
		word-break: break-word;
		text-align:center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: auto;

	}

	.hero-description {
		font-size: 15px;
		margin: 55px;
	}

	.hero-stats {
		justify-content: center;
		gap: 20px;
		flex-wrap: wrap;
		margin: 0 auto 30px;
		padding: 16px;
		max-width: 100%;
	}

	.stat {
		min-width: 70px;
	}

	.stat-number {
		font-size: 26px;
	}

	.stat-label {
		font-size: 10px;
	}

	.hero-right {
		display: none;
	}

	.floating-tags,
	.tag {
		display: none;
	}

	.cta-group {
		flex-direction: column;
		align-items: center;
		gap: 14px;
	}

	.cta-button {
		width: min(260px, 90vw);
		text-align: center;
		padding: 16px 24px;
		font-size: 12px;
	}

	/* ── Sections ── */
	.collections,
	.featured,
	.contact {
		padding: 40px 16px 0px;
	}

	.section-title {
		font-size: clamp(28px, 8vw, 42px);
		letter-spacing: -1px;
	}

	.section-subtitle {
		font-size: 13px;
	}

	/* ── Category tabs — horizontal scroll ── */
	.category-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: flex-start;
		gap: 10px;
		padding-bottom: 8px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		margin-bottom: 30px;
	}

	.category-tabs::-webkit-scrollbar {
		display: none;
	}

	.tab-btn {
		flex-shrink: 0;
		padding: 10px 20px;
		font-size: 11px;
	}

	/* ── Grid — single column on very small, 2-col from 400px ── */
	.grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.collection-thumbnail {
		height: 220px;
	}

	.card-content {
		padding: 18px;
	}

	.card-title {
		font-size: 18px;
	}

	/* ── Featured ── */
	.featured-hero {
		display: block;
		gap: 0;
	}

	.featured-content {
		text-align: center;
		margin-bottom: 30px;
		padding-top: 0;
	}

	.featured-content h2 {
		font-size: clamp(26px, 8vw, 36px);
		letter-spacing: -1px;
		margin-bottom: 14px;
	}

	.featured-content p {
		font-size: 14px;
	}

	/* Horizontally scrollable highlight cards */
	.feature-highlights {
		display: flex !important;
		flex-direction: row !important;
		grid-template-columns: none !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory;
		gap: 14px;
		margin-bottom: 0;
		padding: 8px 4px 18px;
		scrollbar-width: none;
		-ms-overflow-style: none;
		width: 100%;
	}

	.feature-highlights::-webkit-scrollbar {
		display: none;
	}

	.highlight-item {
		min-width: 50vw !important;
		scroll-snap-align: start;
		padding: 20px;
	}

	.featured-image-section {
		height: 280px;
		margin-bottom: 20px;
	}

	.feature-cta-wrapper {
		margin-top: 20px;
		margin-bottom: 30px;
	}

	.feature-cta {
		padding: 16px 32px;
		width: min(280px, 90vw);
		display: block;
		margin: 0 auto;
	}

	/* ── Testimonials ── */
	.testimonials {
		margin-top: 40px;
	}

	.testimonials-header h3 {
		font-size: 24px;
	}

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

	.testimonial-card {
		padding: 24px 20px;
	}

	.testimonial-quote {
		font-size: 14px;
	}

	/* ── Newsletter ── */
	.newsletter {
		padding: 70px 20px 60px;
	}

	.newsletter h2 {
		font-size: clamp(26px, 8vw, 36px);
		margin-bottom: 14px;
	}

	.newsletter p {
		font-size: 15px;
		margin-bottom: 28px;
	}

	.newsletter-form {
		flex-direction: column;
		gap: 12px;
		max-width: 100%;
	}

	.newsletter-input {
		width: 100%;
		padding: 16px 18px;
	}

	.newsletter-btn {
		width: 100%;
		padding: 16px;
	}

	/* ── Contact form ── */
	.contact {
		padding: 80px 50px 0px;
		background: var(--bg-section);
	}

	.contact-container {
		max-width: 1400px;
		margin: 0 auto;
		padding-top:40px;
	}

	.contact-header {
		text-align: center;
		margin-bottom: 60px;
		padding-top:0 !important;
	}

	.contact-form-wrapper {
		padding: 24px 18px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.form-group input,
	.form-group textarea {
		font-size: 16px; /* must stay ≥16px to prevent iOS zoom */
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-info {
		padding: 24px 18px;
	}

	.info-item {
		margin-bottom: 30px;
		gap: 14px;
	}

	.info-icon {
		width: 48px;
		height: 48px;
		font-size: 20px;
		border-radius: 10px;
	}

	.info-content h3 {
		font-size: 15px;
	}

	.info-content p {
		font-size: 13px;
	}

	/* ── Map ── */
	.map-section {
		height: 240px;
		margin-top: 30px;
		border-radius: 8px;
	}

	/* ── Footer ── */
	footer {
		padding: 50px 20px 0;
		/* Account for home-indicator bar on iPhone */
		padding-bottom: max(20px, env(safe-area-inset-bottom));
	}

	.footer-content {
		display: flex;
		flex-direction: column;
		gap: 32px;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-brand h3 {
		font-size: 26px;
	}

	.social-links {
		justify-content: center;
	}

	.footer-column h4 {
		margin-bottom: 10px;
	}

	.footer-column ul {
		margin-bottom: 0;
	}

	.footer-column a {
		padding: 6px 0;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.payment-methods {
		justify-content: center;
		flex-wrap: wrap;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   EXTRA SMALL  (≤390px) — iPhone SE (375px), older Galaxy/Pixel (360px)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 390px) {
	.hero-title {
		text-transform: uppercase;
		font-size: clamp(32px, 9.5vw, 42px);
	}

	.hero-badge {
		font-size: 9px;
		letter-spacing: 1.5px;
		padding: 5px 12px;
	}

	.hero-stats {
		gap: 12px;
	}

	.stat-number {
		font-size: 22px;
	}

	.cta-button {
		width: 90vw;
		font-size: 11px;
	}

	.highlight-item {
		flex: 0 0 82vw !important;
		min-width: 82vw !important;
	}

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

	.tab-btn {
		padding: 9px 16px;
		font-size: 10px;
	}

	.contact-form-wrapper,
	.contact-info {
		padding: 18px 14px;
	}

	.footer-brand h3 {
		font-size: 22px;
	}

	.newsletter h2 {
		font-size: clamp(22px, 7.5vw, 30px);
	}

	.section-title {
		font-size: clamp(24px, 7.5vw, 34px);
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   LARGE PHONES / LANDSCAPE  (≥769px but short viewport height)
   Handles iPhone landscape, Galaxy Fold outer screen, etc.
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-height: 500px) and (max-width: 900px) {
	.hero {
		min-height: auto;
		padding-top: 70px;
		padding-bottom: 40px;
	}

	.hero-left {
		padding-top: 50px;
	}

	.hero-title {
		font-size: clamp(28px, 5vw, 48px);
	}

	.hero-stats {
		gap: 20px;
		margin-bottom: 20px;
	}

	.hero-description {
		display: none; /* sacrificed on landscape tiny screens */
	}

	.scroll-indicator {
		display: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   2-COLUMN GRID  on phones ≥400px wide — cards look better in pairs
   ═══════════════════════════════════════════════════════════════════════════ */

@media (min-width: 400px) and (max-width: 768px) {
	.grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.collection-thumbnail {
		height: 180px;
	}

	.card-content {
		padding: 14px;
	}

	.card-title {
		font-size: 15px;
	}

	.card-price {
		font-size: 14px;
	}

	.card-badge {
		font-size: 8px;
	}
}
/* ── Mobile ── */
@media (max-width: 860px) {
  .terms-hero {
    padding: 120px 20px 48px;
  }

  .terms-layout {
    grid-template-columns: 1fr;
    padding: 32px 20px 60px;
    gap: 32px;
    overflow: hidden;
  }

  .terms-content {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .terms-section p,
  .terms-section li,
  .highlight-box,
  .terms-intro {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .terms-toc {
    position: static;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 20px;
  }

  .toc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    border-left: none;
  }

  .toc-list li a {
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 8px 4px;
    font-size: 12px;
  }

  .terms-contact-strip {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .terms-section h2 {
    font-size: 20px;
  }

  .terms-intro {
    padding: 20px;
    font-size: 14px;
  }

  .highlight-box {
    padding: 14px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .toc-list {
    grid-template-columns: 1fr;
  }

  .terms-layout {
    padding: 24px 16px 50px;
  }

  .terms-hero {
    padding: 110px 16px 40px;
  }
}

/* ── About / Sustainability Hero ── */
.sustainability-hero .hero-title {
    font-size: clamp(28px, 6vw, 90px);
    overflow: visible;
    word-break: normal;
	text-align:center;
    white-space: normal;
	width:100%;
}

.sustainability-hero .hero-title .line {
    overflow: visible;
	display:block;
	text-align:center;
}

.sustainability-hero .hero-title .line span {
    text-align: center;
    display: block !important;
}

.sustainability-hero-content {
    overflow: visible;
    width: 100%;
    max-width: 900px;
    padding: 140px 40px 80px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .sustainability-hero .hero-title {
        font-size: clamp(26px, 8vw, 60px);
    }

    .sustainability-hero-content {
        padding: 110px 20px 60px;
    }
}

@media (max-width: 390px) {
    .sustainability-hero .hero-title {
        font-size: clamp(22px, 7.5vw, 40px);
    }
}

/* ── Contact form height fix ── */
.contact-content {
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 30px;
	padding-bottom: 30px;
}

/* ── Nav logo responsive scaling ── */

#navbar img[alt="F3D"] {
    width: clamp(40px, 6vw, 55px);
    height: auto;
    margin-right: clamp(8px, 1.5vw, 15px);
}

@media (max-width: 768px) {

    #navbar img[alt="F3D"] {
        width: 40px;
        margin-right: 8px;
    }
}

#navbar img[alt="Finical 3D"] {
    height: clamp(40px, 6vw, 40px);
	width: auto;
    margin-right: clamp(8px, 1.5vw, 15px);
}

@media (max-width: 768px) {

    #navbar img[alt="Finical 3D"] {
        height: 30px;
		width: auto;
        margin-right: 8px;
		margin-left: 5px;
    }
}