/*

TemplateMo 599 Noir Fashion

https://templatemo.com/tm-599-noir-fashion

*/

@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #1b2e4b;
	--accent: #e8732a;
	--accent-hover: #d4631a;
	--text-light: #1b2e4b;
	--text-muted: #64748b;
	--bg-dark: #ffffff;
	--bg-section: #f0f4f8;
}

html {
	scroll-behavior: smooth;
}

section {
	scroll-margin-top: 70px;
}

body {
	font-family: 'Arial', sans-serif;
	background: var(--bg-dark);
	color: var(--text-light);
	overflow-x: hidden;
}

/* Navigation */
nav {
	position: fixed;
	width: 100%;
	padding: 20px 50px;
	z-index: 1000;
	background: linear-gradient(180deg, rgba(200, 220, 240, 0.98), rgba(180, 200, 220, 0.95));
	backdrop-filter: blur(10px);
	animation: slideDown 0.8s ease;
	transition: all 0.3s ease;
	box-shadow: 
		inset 0 1px 0 rgba(255, 255, 255, 0.8),
		inset 0 -1px 0 rgba(0, 0, 0, 0.1);
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

nav.scrolled {
	padding: 15px 50px;
	background: linear-gradient(180deg, rgba(190, 210, 230, 0.98), rgba(170, 190, 210, 0.95));
	box-shadow: 
		inset 0 1px 0 rgba(255, 255, 255, 0.8),
		inset 0 -1px 0 rgba(0, 0, 0, 0.15),
		0 5px 20px rgba(0, 0, 0, 0.15);
}

.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-img {
	height: 50px;
	width: 160px;
	margin-right: 20px;
	object-fit: contain;
	display: block;
}

.logo-svg {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.logo-text {
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -2px;
	background: linear-gradient(135deg, #fff, var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nav-links {
	display: flex;
	gap: 30px;
	list-style: none;
	align-items: center;
}

.nav-links a {
	color: #ffffff;
	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(232, 115, 42, 0.3);
}

.nav-cta::before {
	display: none;
}

/* Tablet screens */
@media (max-width: 900px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 120px;
	}

	.hero-left {
		padding-right: 0;
		max-width: 600px;
		margin: 0 auto;
	}

	.hero-stats {
		justify-content: center;
	}

	.hero-right {
		display: none;
	}

	.grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.featured-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.featured-hero {
		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;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.footer-brand {
		grid-column: span 2;
	}
}

/* Medium screens - stack navigation */
@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;
	}

	.hero-image-wrapper {
		max-width: 500px;
		height: 320px;
	}

	.tag {
		display: none;
	}

	.featured-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.collections,
	.featured,
	.contact {
		padding-top: 120px;
	}

	section {
		scroll-margin-top: 100px;
	}
}

/* Mobile Menu */
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
}

.menu-toggle span {
	width: 25px;
	height: 2px;
	background: var(--primary);
	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;
	background: rgba(27, 46, 75, 0.98);
	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: #ffffff;
	text-decoration: none;
	font-size: 24px;
	letter-spacing: 3px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
	color: var(--accent);
	transform: translateX(10px);
}

.mobile-nav-close {
	position: absolute;
	top: 24px;
	right: 24px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.mobile-nav-close:hover {
	background: rgba(232, 115, 42, 0.4);
}

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	overflow: hidden;
	background: #ffffff;
}

.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.hero-bg::before {
	content: '';
	position: absolute;
	width: 150%;
	height: 150%;
	top: -25%;
	left: -25%;
	background: conic-gradient(from 180deg at 50% 50%, #e8732a 0deg, #f0f4f8 60deg, #1b2e4b 120deg, #f0f4f8 180deg, #e8732a 240deg, #f0f4f8 300deg, #1b2e4b 360deg);
	animation: spin 20s linear infinite;
	opacity: 0.08;
}

.hero-bg::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, transparent 0%, rgba(240, 244, 248, 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;
}

.hero-left {
	padding-right: 60px;
}

.hero-badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(232, 115, 42, 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(232, 115, 42, 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);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 25px;
	position: relative;
}

.hero-title .line {
	display: block;
	overflow: hidden;
}

.hero-title .line span {
	display: inline-block;
	animation: slideUp 1s ease 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;
}

.hero-title .accent {
	background: linear-gradient(90deg, #e8732a, #f4a261);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-style: italic;
}

@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;
}

.stat-number {
	font-size: 36px;
	font-weight: 900;
	color: var(--accent);
	display: block;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-muted);
}

.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: white;
}

.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.3s, height 0.3s;
}

.cta-button.primary:hover::before {
	width: 300px;
	height: 300px;
}

.cta-button.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 40px rgba(232, 115, 42, 0.3);
}

.cta-button.outline {
	background: transparent;
	color: var(--text-light);
	border: 1px solid rgba(27, 46, 75, 0.3);
	backdrop-filter: blur(10px);
}

.cta-button.outline:hover {
	background: rgba(27, 46, 75, 0.05);
	border-color: rgba(27, 46, 75, 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: 700px;
	height: 450px;
}

.hero-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(27, 46, 75, 0.3);
}

.carousel-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease-in-out, transform 0.6s 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: 3px;
	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(27, 46, 75, 0.2) 0%, transparent 50%, rgba(27, 46, 75, 0.3) 100%);
	pointer-events: none;
}

.floating-tags {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.tag {
	position: absolute;
	padding: 8px 16px;
	background: rgba(27, 46, 75, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: white;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	animation: fadeInScale 1s ease backwards;
}

.tag:nth-child(1) {
	top: 20%;
	left: -50px;
	animation-delay: 1.2s;
}

.tag:nth-child(2) {
	top: 40%;
	right: -60px;
	animation-delay: 1.4s;
}

.tag:nth-child(3) {
	bottom: 30%;
	left: -40px;
	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(27, 46, 75, 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 */
.category-tabs {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 50px;
	flex-wrap: wrap;
	padding: 0 20px;
}

.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;
}

.tab-btn.active,
.tab-btn:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
	transform: translateY(-2px);
}

/* Color variant dots */
.card-colors {
	display: flex;
	gap: 6px;
	margin: 8px 0 4px;
	flex-wrap: wrap;
}

.color-dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform 0.15s ease, border-color 0.15s ease;
	flex-shrink: 0;
}

.color-dot:hover {
	transform: scale(1.25);
}

.color-dot.active {
	border-color: #1a1a2e;
	transform: scale(1.15);
}

/* Modal variant swatches */
.modal-variants {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding: 8px 0;
}

.modal-swatch {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}

.modal-swatch-dot {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 3px solid transparent;
	transition: transform 0.15s ease, border-color 0.15s ease;
}

.modal-swatch:hover .modal-swatch-dot {
	transform: scale(1.2);
}

.modal-swatch.active .modal-swatch-dot {
	border-color: #1a1a2e;
}

.modal-swatch-label {
	font-size: 10px;
	color: #888;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.pagination-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 36px 0 8px;
}

.page-btn {
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid var(--text-muted);
	background: transparent;
	color: var(--text-muted);
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-btn:hover:not(.disabled) {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
	transform: translateY(-2px);
}

.page-btn.active {
	background: var(--accent);
	border-color: var(--accent);
	color: white;
}

.page-btn.disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
}

.collection-card {
	position: relative;
	background: transparent;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.25s ease;
	opacity: 0;
	animation: fadeInUp 0.3s ease forwards;
	border-radius: 8px;
	border: none;
}

.collection-card:nth-child(1) {
	animation-delay: 0.05s;
}

.collection-card:nth-child(2) {
	animation-delay: 0.1s;
}

.collection-card:nth-child(3) {
	animation-delay: 0.15s;
}

.collection-card:nth-child(4) {
	animation-delay: 0.2s;
}

.collection-card:nth-child(5) {
	animation-delay: 0.25s;
}

.collection-card:nth-child(6) {
	animation-delay: 0.3s;
}

.collection-card:nth-child(7) {
	animation-delay: 0.35s;
}

.collection-card:nth-child(8) {
	animation-delay: 0.4s;
}

.collection-thumbnail {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	opacity: 1;
	transition: transform 0.25s ease, opacity 0.25s 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(232, 115, 42, 0.1) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.4s ease;
}

.collection-card:hover .collection-thumbnail::after {
	transform: translateX(100%);
}

.collection-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.collection-card:hover .collection-thumbnail {
	transform: scale(1.05);
	opacity: 0.8;
}

.collection-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(232, 115, 42, 0.15);
}

.card-content {
	padding: 25px;
	background: #ffffff;
}

.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: 120px 50px 100px;
	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: 100px;
}

.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(27, 46, 75, 0.03);
	border: 1px solid rgba(27, 46, 75, 0.08);
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
}

.highlight-item:hover {
	background: rgba(232, 115, 42, 0.05);
	border-color: var(--accent);
	transform: translateY(-5px);
}

.highlight-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent), #f4a261);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 24px;
	color: #fff;
}

.highlight-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--text-light);
}

.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, #e2e8f0, #f0f4f8);
}

.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, #e2e8f0, #d0d7de);
	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, #d0d7de, #e2e8f0);
	font-size: 18px;
}

.featured-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(232, 115, 42, 0.1) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.4s ease;
}

.featured-img:hover::before {
	transform: translateX(100%);
}

.feature-cta {
	display: inline-block;
	padding: 18px 50px;
	background: var(--accent);
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 20px;
	border-radius: 4px;
}

.feature-cta:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(232, 115, 42, 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: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	background: #ffffff;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(27, 46, 75, 0.1);
}

.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), #f4a261);
	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: var(--text-light);
}

.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 Section */
.newsletter {
	padding: 120px 50px 100px;
	background: linear-gradient(135deg, var(--accent), #d4631a);
	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;
}

.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;
}

.newsletter-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
	padding: 80px 50px 70px;
	background: var(--bg-section);
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
}

.contact-header {
	text-align: center;
	margin-bottom: 40px;
}

.contact-content {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	margin-bottom: 40px;
}

.contact-form-wrapper {
	background: #ffffff;
	padding: 36px 40px;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 20px rgba(27, 46, 75, 0.08);
}

.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: 18px;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 6px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 14px;
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	color: var(--text-light);
	font-size: 14px;
	transition: all 0.25s ease;
	font-family: 'Arial', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	background: #ffffff;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(232, 115, 42, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #b0bec5;
	font-size: 13px;
}

.form-group textarea {
	resize: vertical;
	min-height: 110px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-submit {
	background: var(--accent);
	color: white;
	padding: 14px 40px;
	border: none;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-top: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.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.3s, height 0.3s;
}

.form-submit:hover::before {
	width: 300px;
	height: 300px;
}

.form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(232, 115, 42, 0.4);
}

/* Email validation */
.email-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.email-input-wrapper input {
	padding-right: 45px;
	width: 100%;
}

.email-status {
	position: absolute;
	right: 14px;
	font-size: 1.1rem;
	transition: all 0.2s ease;
}

.email-status.valid  { color: #4CAF50; }
.email-status.invalid { color: #e74c3c; }

.email-hint {
	font-size: 0.8rem;
	color: #e74c3c;
	margin: 5px 0 0;
	min-height: 18px;
}

.form-group.valid input  { border-color: #4CAF50; }
.form-group.invalid input { border-color: #e74c3c; }

/* reCAPTCHA note */
.recaptcha-note {
	text-align: center;
	font-size: 0.78rem;
	color: #aaa;
	margin-top: 12px;
}

.recaptcha-note a {
	color: #aaa;
	text-decoration: underline;
}

/* Spin animation for loading */
@keyframes spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

.spin { display: inline-block; animation: spin 0.8s linear infinite; }

.contact-info {
	padding: 36px 32px;
	background: linear-gradient(135deg, rgba(232, 115, 42, 0.07), rgba(232, 115, 42, 0.01));
	border-radius: 16px;
	border: 1px solid rgba(232, 115, 42, 0.15);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.info-item {
	margin-bottom: 28px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	transition: all 0.3s ease;
}

.info-item:last-child {
	margin-bottom: 0;
}

.info-item:hover {
	transform: translateX(4px);
}

.info-icon {
	width: 46px;
	height: 46px;
	background: linear-gradient(135deg, var(--accent), #f4a261);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(232, 115, 42, 0.25);
	color: #fff;
}

.info-content h3 {
	font-size: 13px;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 700;
	color: var(--primary);
}

.info-content p {
	color: var(--text-muted);
	line-height: 1.7;
	font-size: 13.5px;
}

.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 Section */
.map-section {
	position: relative;
	height: 340px;
	background: linear-gradient(135deg, #e2e8f0, #f0f4f8);
	overflow: hidden;
	margin-top: 30px;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(27, 46, 75, 0.1);
}

.map-container {
	width: 100%;
	height: 100%;
	position: relative;
	background: #f0f4f8;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 8px;
	filter: none;
}

.map-placeholder {
	text-align: center;
	color: var(--text-muted);
	width: 100%;
	height: 100%;
}

/* Footer */
footer {
	background: #1b2e4b;
	padding: 50px 50px 24px;
	border-top: 1px solid #243b5c;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 36px;
}

.footer-brand h3 {
	font-size: 24px;
	margin-bottom: 12px;
	background: linear-gradient(135deg, #fff, var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 13px;
}

.social-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 14px;
}

.social-links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.social-link {
	position: relative;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.04);
}

.social-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 18px rgba(0,0,0,0.35);
	color: #fff;
	border-color: transparent;
}

.social-link--wa:hover  { background: #25D366; }
.social-link--ig:hover  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link--yt:hover  { background: #FF0000; }
.social-link--tiktok:hover { background: #010101; border-color: #69C9D0; }
.social-link--linkedin:hover { background: #0A66C2; }
.social-link--email:hover { background: var(--accent); }

/* tooltip */
.social-tooltip {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) scale(0.85);
	background: rgba(0,0,0,0.85);
	color: #fff;
	font-size: 11px;
	white-space: nowrap;
	padding: 4px 8px;
	border-radius: 4px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 4px solid transparent;
	border-top-color: rgba(0,0,0,0.85);
}

.social-link:hover .social-tooltip {
	opacity: 1;
	transform: translateX(-50%) scale(1);
}

.footer-column h4 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 14px;
	color: #ffffff;
}

.footer-column ul {
	list-style: none;
}

.footer-column a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	display: block;
	padding: 5px 0;
	font-size: 13px;
	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: 20px;
	border-top: 1px solid #243b5c;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
}

.payment-methods {
	display: flex;
	gap: 15px;
}

.payment-icon {
	width: 40px;
	height: 25px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.6);
}

/* Footer Contact List */
.footer-contact {
	list-style: none;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 5px 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	line-height: 1.4;
}

.footer-contact li i {
	color: var(--accent);
	font-size: 14px;
	margin-top: 3px;
	flex-shrink: 0;
}

.footer-contact li a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact li a:hover {
	color: var(--accent);
}

.footer-contact li span {
	color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom Links */
.footer-bottom-links {
	display: flex;
	gap: 20px;
}

.footer-bottom-links a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: var(--accent);
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--accent);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	text-decoration: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(232, 115, 42, 0.4);
	z-index: 999;
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--accent-hover);
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(232, 115, 42, 0.5);
}

/* Product Modal */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal-overlay.active {
	display: flex;
}

.modal-content {
	background: #fff;
	border-radius: 12px;
	max-width: 820px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	display: flex;
	position: relative;
	animation: fadeInUp 0.25s ease forwards;
}

.modal-close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: #f1f1f1;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 15px;
	cursor: pointer;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.modal-close:hover {
	background: #e0e0e0;
}

.modal-image-wrap {
	flex: 1;
	background: #f8f9fa;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 32px 52px;
	min-width: 280px;
	border-radius: 12px 0 0 12px;
	position: relative;
}

.zoom-container {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: grab;
}

.zoom-container.grabbing {
	cursor: grabbing;
}

.modal-image-wrap img {
	max-width: 100%;
	max-height: 380px;
	object-fit: contain;
	transform-origin: center center;
	transition: transform 0.2s ease;
	user-select: none;
	pointer-events: none;
}

.zoom-controls {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
	background: rgba(255,255,255,0.9);
	border-radius: 24px;
	padding: 6px 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.zoom-btn {
	background: none;
	border: none;
	color: #333;
	font-size: 16px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, color 0.15s;
}

.zoom-btn:hover {
	background: var(--accent);
	color: #fff;
}

.modal-info {
	flex: 1;
	padding: 40px 32px 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.modal-badge {
	display: inline-block;
	background: var(--accent);
	color: white;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 20px;
	width: fit-content;
}

.modal-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
	line-height: 1.3;
}

.modal-category {
	font-size: 14px;
	color: #888;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.modal-specs {
	border-top: 1px solid #eee;
	padding-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.modal-spec-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #444;
}

.modal-spec-row span:first-child {
	color: #888;
	font-weight: 500;
}

.modal-spec-row span:last-child {
	font-weight: 600;
	color: #1a1a2e;
}

.modal-actions {
	margin-top: auto;
	padding-top: 8px;
}

.modal-wa-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #25d366;
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
}

.modal-wa-btn:hover {
	background: #1ebe5c;
	transform: translateY(-2px);
}

@media (max-width: 600px) {
	.modal-content {
		flex-direction: column;
	}
	.modal-image-wrap {
		border-radius: 12px 12px 0 0;
		min-width: unset;
		padding: 28px;
	}
	.modal-image-wrap img {
		max-height: 240px;
	}
	.modal-info {
		padding: 24px 20px 28px;
	}
}

/* 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;
	}
}

/* Responsive */
@media (max-width: 768px) {
	nav {
		padding: 12px 20px;
	}

	.nav-links {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.mobile-nav {
		display: block;
	}

	.logo-img {
		height: 40px;
		width: 130px;
	}

	.hero-container {
		grid-template-columns: 1fr;
		padding: 0 20px;
		text-align: center;
	}

	.hero-left {
		padding-right: 0;
		padding-top: 90px;
	}

	.hero-title {
		font-size: 44px;
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-stats {
		justify-content: center;
		gap: 25px;
	}

	.stat-number {
		font-size: 26px;
	}

	.hero-right {
		display: none;
	}

	.cta-group {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.cta-button {
		width: 100%;
		max-width: 280px;
		text-align: center;
		padding: 16px 30px;
	}

	.collections,
	.featured,
	.contact {
		padding: 70px 16px 50px;
	}

	section {
		scroll-margin-top: 60px;
	}

	/* Category tabs — horizontal scroll on mobile */
	.category-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: flex-start;
		gap: 10px;
		padding: 4px 16px 12px;
		margin-bottom: 30px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.category-tabs::-webkit-scrollbar {
		display: none;
	}

	.tab-btn {
		flex-shrink: 0;
		padding: 10px 20px;
		font-size: 11px;
		white-space: nowrap;
		min-height: 42px;
	}

	.grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		padding: 0 4px;
	}

	.collection-thumbnail {
		aspect-ratio: 1 / 1;
		height: auto;
	}

	.card-content {
		padding: 12px 14px 16px;
	}

	.card-title {
		font-size: 14px;
		margin-bottom: 4px;
	}

	.card-subtitle {
		font-size: 10px;
		margin-bottom: 8px;
	}

	.card-price {
		font-size: 13px;
	}

	.card-badge {
		font-size: 8px;
		padding: 3px 8px;
		margin-bottom: 6px;
	}

	.card-colors {
		gap: 5px;
		margin: 6px 0 2px;
	}

	.color-dot {
		width: 14px;
		height: 14px;
	}

	.pagination-container {
		padding: 20px 0 6px;
		gap: 6px;
	}

	.page-btn {
		min-width: 36px;
		height: 36px;
		font-size: 13px;
	}

	.featured-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.featured-content {
		padding: 25px;
	}

	.featured-content h2 {
		font-size: 28px;
	}

	.feature-timeline {
		padding: 20px;
	}

	.timeline-item {
		padding-left: 35px;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.contact-form-wrapper {
		padding: 24px 20px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-info {
		padding: 24px 20px;
	}

	.map-section {
		height: 240px;
		margin-top: 24px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}

	.footer-bottom-links {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
	}

	.back-to-top {
		bottom: 20px;
		right: 16px;
		width: 44px;
		height: 44px;
		font-size: 17px;
	}
}

/* Small phones */
@media (max-width: 480px) {
	.hero-title {
		font-size: 36px;
		line-height: 1.2;
	}

	.hero-left {
		padding-top: 80px;
	}

	.hero-description {
		font-size: 0.9rem;
	}

	.cta-button {
		max-width: 100%;
		font-size: 12px;
		padding: 14px 24px;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.section-subtitle {
		font-size: 0.9rem;
	}

	.collections,
	.featured,
	.contact {
		padding: 60px 12px 40px;
	}

	.grid {
		gap: 10px;
	}

	.card-content {
		padding: 10px 12px 14px;
	}

	.card-title {
		font-size: 13px;
	}

	.contact-form-wrapper {
		padding: 20px 16px;
	}

	.contact-info {
		padding: 20px 16px;
	}

	.info-icon {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.form-submit {
		padding: 13px 24px;
		font-size: 12px;
	}

	.shop-header h2 {
		font-size: 1.8rem;
	}

	.mobile-nav-links a {
		font-size: 20px;
		letter-spacing: 2px;
	}
}

/* E-Commerce / Marketplace Section */
.shop {
	padding: 60px 50px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	position: relative;
	overflow: hidden;
}

.shop::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(232, 115, 42, 0.03) 0%, transparent 50%);
	animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.shop-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.shop-header {
	text-align: center;
	margin-bottom: 35px;
}

.shop-header .label {
	display: inline-block;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 3px;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 15px;
}

.shop-header h2 {
	font-size: 2.2rem;
	color: var(--primary);
	margin-bottom: 12px;
}

.shop-header p {
	font-size: 1rem;
	color: var(--text-muted);
	max-width: 550px;
	margin: 0 auto;
}

.marketplace-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	max-width: 900px;
	margin: 0 auto 50px;
}

.marketplace-card {
	position: relative;
	display: block;
	padding: 35px 30px;
	border-radius: 20px;
	text-decoration: none;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	min-height: 240px;
}

.marketplace-card:hover {
	transform: translateY(-12px) scale(1.02);
}

.marketplace-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	transition: all 0.4s ease;
}

/* Shopee Card */
.shopee-card .marketplace-bg {
	background: linear-gradient(135deg, #ee4d2d 0%, #ff6b4a 50%, #ff8a6b 100%);
}

.shopee-card:hover .marketplace-bg {
	background: linear-gradient(135deg, #d63b1f 0%, #ee4d2d 50%, #ff6b4a 100%);
}

/* Tokopedia Card */
.tokopedia-card .marketplace-bg {
	background: linear-gradient(135deg, #42b549 0%, #5cc863 50%, #7dd884 100%);
}

.tokopedia-card:hover .marketplace-bg {
	background: linear-gradient(135deg, #36963c 0%, #42b549 50%, #5cc863 100%);
}

/* Blibli Card */
.blibli-card .marketplace-bg {
	background: linear-gradient(135deg, #0095DA 0%, #00a8ef 50%, #33bdff 100%);
}

.blibli-card:hover .marketplace-bg {
	background: linear-gradient(135deg, #0080be 0%, #0095DA 50%, #00a8ef 100%);
}

.blibli-card .marketplace-btn {
	color: #0095DA;
}

.marketplace-content {
	position: relative;
	z-index: 2;
	color: #fff;
}

.marketplace-icon {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.marketplace-card:hover .marketplace-icon {
	transform: scale(1.1) rotate(-5deg);
	background: rgba(255, 255, 255, 0.3);
}

.marketplace-icon img {
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.marketplace-name {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: #fff;
}

.marketplace-desc {
	font-size: 0.92rem;
	opacity: 0.9;
	margin-bottom: 14px;
	line-height: 1.5;
	color: #fff;
}

.marketplace-features {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
}

.marketplace-features span {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	background: rgba(255, 255, 255, 0.2);
	padding: 6px 12px;
	border-radius: 30px;
	backdrop-filter: blur(5px);
	color: #fff;
}

.marketplace-features i {
	font-size: 1rem;
}

.marketplace-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #fff;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.88rem;
	transition: all 0.3s ease;
}

.shopee-card .marketplace-btn {
	color: #ee4d2d;
}

.tokopedia-card .marketplace-btn {
	color: #42b549;
}

.marketplace-card:hover .marketplace-btn {
	transform: translateX(5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.marketplace-btn i {
	transition: transform 0.3s ease;
}

.marketplace-card:hover .marketplace-btn i {
	transform: translateX(5px);
}

.marketplace-decoration {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.deco-circle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.deco-circle:first-child {
	width: 300px;
	height: 300px;
	top: -100px;
	right: -100px;
}

.deco-circle:last-child {
	width: 200px;
	height: 200px;
	bottom: -50px;
	right: 50px;
}

.shop-promo {
	margin-top: 16px;
}

.promo-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 30px;
	background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
	border-radius: 14px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
	border: 2px dashed var(--accent);
}

.promo-content i {
	font-size: 1.5rem;
	color: var(--accent);
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.promo-content p {
	font-size: 1.1rem;
	color: var(--primary);
	margin: 0;
}

.promo-content strong {
	color: var(--accent);
}

/* Responsive Marketplace */
@media (max-width: 700px) {
	.marketplace-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.shop {
		padding: 80px 30px;
	}
	
	.shop-header h2 {
		font-size: 2.5rem;
	}
	
	.marketplace-card {
		min-height: 280px;
	}
}

@media (max-width: 576px) {
	.shop {
		padding: 60px 20px;
	}
	
	.shop-header h2 {
		font-size: 2rem;
	}
	
	.marketplace-card {
		padding: 35px 25px;
		min-height: 260px;
	}
	
	.marketplace-icon {
		width: 55px;
		height: 55px;
	}
	
	.marketplace-icon img {
		width: 38px;
		height: 38px;
	}
	
	.marketplace-name {
		font-size: 1.6rem;
	}
	
	.marketplace-features {
		flex-direction: column;
		gap: 10px;
	}
	
	.marketplace-features span {
		justify-content: center;
	}
	
	.promo-content {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}
	
	.deco-circle:first-child {
		width: 200px;
		height: 200px;
	}
	
	.deco-circle:last-child {
		width: 120px;
		height: 120px;
	}
}