@charset "utf-8";

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

/* CSS Variables */
:root {
	--primary: #ffffff;
	--accent: #e63946;
	--accent-hover: #d62839;
	--accent-light: rgba(230, 57, 70, 0.1);
	--text-dark: #1a202c;
	--text-muted: #718096;
	--bg-light: #f8fafc;
	--bg-section: #ffffff;
	--border-light: #e2e8f0;
	--shadow-light: rgba(0, 0, 0, 0.05);
	--shadow-medium: rgba(0, 0, 0, 0.1);
	--shadow-large: rgba(0, 0, 0, 0.15);
	--gradient-primary: linear-gradient(135deg, var(--text-dark), var(--accent));
	--gradient-accent: linear-gradient(135deg, var(--accent), #f28482);
	--border-radius: 16px;
	--transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
	scroll-behavior: smooth;
}

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

body {
            font-family: 'Inter', 'Arial', sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            padding: 22px 50px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            animation: slideDown 0.8s ease;
            transition: var(--transition);
            border-bottom: 1px solid transparent;
        }

        nav.scrolled {
            padding: 16px 50px;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 32px var(--shadow-light);
            border-bottom-color: var(--border-light);
        }

        .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: var(--transition);
            position: relative;
        }

        .logo-link:hover {
            transform: translateY(-2px);
        }

        .logo-svg {
            width: 44px;
            height: 44px;
            margin-right: 12px;
            transition: var(--transition);
        }

        .logo-link:hover .logo-svg {
            transform: rotate(15deg);
        }

        .logo-text {
            font-size: 30px;
            font-weight: 900;
            letter-spacing: -1.5px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            position: relative;
            transition: var(--transition);
            padding: 8px 12px;
            opacity: 0.85;
            border-radius: 8px;
        }

        .nav-links a:hover {
            color: var(--accent);
            opacity: 1;
            background: var(--accent-light);
            transform: translateY(-1px);
        }

        .nav-links a.active {
            color: var(--accent);
            opacity: 1;
            background: var(--accent-light);
        }

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

/* Hero Section */
.hero {
	min-height: 100vh;
	height: auto;
	position: relative;
	overflow: hidden;
	background: var(--bg-light);
	padding: 100px 0 80px;
	display: flex;
	align-items: center;
}

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

.hero-bg::before {
	content: '';
	position: absolute;
	width: 150%;
	height: 150%;
	top: -25%;
	left: -25%;
	animation: spin 20s linear infinite;
	opacity: 0.05;
}

/* Optimize hero-bg animation on mobile */
@media (max-width: 767px) {
	.hero-bg::before {
		animation-duration: 30s;
		opacity: 0.03;
	}
}

.hero-bg::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

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

	to {
		transform: rotate(360deg);
	}
}

.hero-container {
	min-height: calc(100vh - 180px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 50px);
	position: relative;
	z-index: 2;
	align-items: center;
	gap: clamp(30px, 5vw, 80px);
}

.hero-left {
	padding-right: clamp(20px, 4vw, 60px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-badge {
	display: inline-block;
	padding: 8px 20px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 30px;
	animation: slideInLeft 1s ease;
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}

.hero-badge::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 100%;
	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;
	color: var(--text-dark);
}

.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, var(--accent), #f28482);
	background-clip: text;
	-webkit-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: clamp(16px, 2.2vw, 18px);
	line-height: 1.7;
	color: var(--text-muted);
	margin-bottom: clamp(30px, 4vw, 40px);
	animation: fadeIn 1s ease 0.6s backwards;
	max-width: 90%;
}

.hero-stats {
	display: flex;
	gap: clamp(30px, 4vw, 50px);
	margin-bottom: clamp(35px, 5vw, 50px);
	animation: fadeIn 1s ease 0.8s backwards;
	flex-wrap: wrap;
}

.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;
	border-radius: 4px;
}

.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.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(230, 57, 70, 0.3);
}

.cta-button.outline {
	background: transparent;
	color: var(--text-dark);
	border: 1px solid var(--border-light);
	backdrop-filter: blur(10px);
}

.cta-button.outline:hover {
	background: rgba(230, 57, 70, 0.05);
	border-color: var(--accent);
	transform: translateY(-2px);
}

.hero-right {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.hero-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: auto;
	min-height: 500px;
	max-height: 650px;
	aspect-ratio: 5 / 6;
}

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

/* =============================================
   HERO WITH BACKGROUND IMAGE - SEWING MACHINE
   ============================================= */

.hero-with-bg {
	background: url("../images/top-down-view-of-sewing.jpg") center center / cover no-repeat;
}

.hero-with-bg .hero-bg {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.65) 50%, rgba(15, 23, 42, 0.75) 100%);
}

.hero-with-bg .hero-bg::before {
	display: none;
}

.hero-with-bg .hero-bg::after {
	display: none;
}

/* Text colors for dark background */
.hero-with-bg .hero-title {
	color: #ffffff;
}

.hero-with-bg .hero-description {
	color: rgba(255, 255, 255, 0.85);
}

.hero-with-bg .stat-number {
	color: #ffffff;
}

.hero-with-bg .stat-label {
	color: rgba(255, 255, 255, 0.7);
}

.hero-with-bg .atelier-pill {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.95);
}

.hero-with-bg .cta-button.outline {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.4);
}

.hero-with-bg .cta-button.outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.6);
}

/* Hero Enhancements */
.hero-enhanced {
	position: relative;
	overflow: hidden;
}

.hero-enhanced::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 150px;
	z-index: 2;
	pointer-events: none;
}

.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: 3px;
	background: rgba(0, 0, 0, 0.2);
	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(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 255, 255, 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(255, 255, 255, 0.9);
	border: 1px solid var(--border-light);
	backdrop-filter: blur(10px);
	color: var(--text-dark);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	animation: fadeInScale 1s ease backwards;
	border-radius: 4px;
	box-shadow: 0 4px 12px var(--shadow-light);
}

.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(0, 0, 0, 0.2);
	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;
	color: var(--text-dark);
}

.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: 30px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 12px 30px;
	background: transparent;
	border: 1px solid var(--border-light);
	color: var(--text-muted);
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s ease;
	font-size: 12px;
	border-radius: 4px;
}

.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-link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

.collection-card {
	position: relative;
	background: white;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
	border-radius: 16px;
	box-shadow: 0 4px 20px var(--shadow-light);
}

.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: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.collection-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card Overlay */
.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(26, 32, 44, 0.9));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 2;
}

.collection-card:hover .card-overlay {
	opacity: 1;
}

.overlay-content {
	text-align: center;
	color: white;
	transform: translateY(20px);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card:hover .overlay-content {
	transform: translateY(0);
}

.eye-icon {
	margin-bottom: 12px;
	animation: pulse 2s infinite;
}

.overlay-text {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.collection-card:hover .collection-thumbnail img {
	transform: scale(1.1) rotate(2deg);
}

.collection-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 50px rgba(230, 57, 70, 0.25);
}

.card-content {
	padding: 28px;
	background: white;
}

.card-badge {
	display: inline-block;
	padding: 6px 14px;
	background: linear-gradient(135deg, var(--accent), #f28482);
	color: white;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
	border-radius: 20px;
	font-weight: 700;
	box-shadow: 0 2px 10px rgba(230, 57, 70, 0.3);
}

.card-title {
	font-size: 24px;
	margin-bottom: 10px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.3;
}

.card-subtitle {
	color: var(--text-muted);
	letter-spacing: 0.5px;
	font-size: 14px;
	margin-bottom: 14px;
	line-height: 1.6;
}

.card-price {
	font-size: 20px;
	color: var(--accent);
	font-weight: 700;
	margin-top: 8px;
}

/* No Collections Message */
.no-collections-message {
	grid-column: 1 / -1;
	text-align: center;
	padding: 100px 40px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 20px var(--shadow-light);
}

.no-collections-message svg {
	color: var(--text-muted);
	opacity: 0.3;
	margin-bottom: 20px;
}

.no-collections-message p {
	font-size: 20px;
	color: var(--text-dark);
	font-weight: 600;
	margin-bottom: 8px;
}

.no-collections-message small {
	font-size: 14px;
	color: var(--text-muted);
}

/* Collection Modal */
.collection-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.collection-modal.active {
	display: flex;
	opacity: 1;
	animation: modalFadeIn 0.4s ease;
}

.modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(26, 32, 44, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
}

.modal-container {
	position: relative;
	max-width: 1100px;
	width: 90%;
	max-height: 90vh;
	background: white;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
	z-index: 2;
	animation: modalSlideUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	background: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
	background: var(--accent);
	transform: rotate(90deg) scale(1.1);
	box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.modal-close:hover svg {
	stroke: white;
}

.modal-close svg {
	stroke: var(--text-dark);
	transition: stroke 0.3s ease;
}

.modal-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow-y: auto;
	max-height: 90vh;
}

.modal-image {
	position: relative;
	height: 100%;
	min-height: 500px;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	overflow: hidden;
}

.modal-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-badge {
	position: absolute;
	top: 30px;
	left: 30px;
	padding: 10px 20px;
	background: linear-gradient(135deg, var(--accent), #f28482);
	color: white;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 30px;
	box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.modal-info {
	padding: 60px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.modal-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 20px;
	line-height: 1.2;
	letter-spacing: -1px;
}

.modal-description {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-muted);
	margin-bottom: 40px;
}

.modal-price-section {
	border-top: 1px solid var(--border-light);
	padding-top: 30px;
	margin-top: auto;
}

.modal-price {
	font-size: 36px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 24px;
}

.modal-cta-button {
	width: 100%;
	padding: 18px 32px;
	background: linear-gradient(135deg, var(--accent), #f28482);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.modal-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.modal-cta-button svg {
	transition: transform 0.3s ease;
}

.modal-cta-button:hover svg {
	transform: translateY(3px);
}

/* Animations */
@keyframes modalFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

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

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

/* 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;
	color: var(--text-dark);
}

.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: white;
	border: 1px solid var(--border-light);
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px var(--shadow-light);
}

.highlight-item:hover {
	background: white;
	border-color: var(--accent);
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent), #f28482);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 24px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
}

.highlight-icon::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 ease, height 0.6s ease;
}

.highlight-item:hover .highlight-icon::before {
	width: 100px;
	height: 100px;
}

.highlight-icon svg {
	width: 28px;
	height: 28px;
	color: white;
	stroke: white;
	position: relative;
	z-index: 2;
	transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.highlight-item:hover .highlight-icon svg {
	transform: scale(1.1);
}

.highlight-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.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: white;
	box-shadow: 0 10px 30px var(--shadow-light);
}

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

.featured-img {
	background: var(--bg-light);
	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: var(--bg-light);
	font-size: 18px;
}

.featured-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, transparent 30%, rgba(230, 57, 70, 0.1) 50%, transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.8s 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(230, 57, 70, 0.3);
}

/* 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;
	color: var(--text-dark);
}

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

.testimonial-card {
	padding: 40px;
	background: white;
	border: 1px solid var(--border-light);
	border-radius: 12px;
	position: relative;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px var(--shadow-light);
}

.testimonial-card:hover {
	background: white;
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	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), #f28482);
	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-dark);
}

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

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

/* Contact Section */
.contact {
	padding: 120px 50px 100px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 30%, rgba(230, 57, 70, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(230, 57, 70, 0.02) 0%, transparent 50%);
	pointer-events: none;
}

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

.contact-header {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
}

.contact-header::before {
	content: '';
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
	border-radius: 2px;
}

.contact-header .section-title {
	color: var(--text-dark);
	font-size: 56px;
	font-weight: 800;
	letter-spacing: -2px;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.contact-header .section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), #f28482);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: left;
	animation: lineExpand 1s ease forwards;
}

@keyframes lineExpand {
	to { transform: scaleX(1); }
}

.contact-header .section-subtitle {
	color: var(--text-muted);
	font-size: 18px;
	letter-spacing: 0.5px;
}

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

.contact-form-wrapper {
	background: white;
	padding: 60px;
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(0, 0, 0, 0.03);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-wrapper::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
	animation: rotate 30s linear infinite;
	pointer-events: none;
}

.contact-form-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), #f28482, var(--accent));
	background-size: 200% 100%;
	animation: gradientSlide 3s ease infinite;
	border-radius: 24px 24px 0 0;
}

.contact-form-wrapper:hover {
	transform: translateY(-8px);
	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.12),
		0 0 0 1px rgba(230, 57, 70, 0.1);
}

.form-group {
	margin-bottom: 28px;
	position: relative;
	z-index: 1;
}

.form-group label {
	display: block;
	margin-bottom: 10px;
	color: var(--text-dark);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	transition: color 0.3s ease;
}

.form-group:focus-within label {
	color: var(--accent);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 18px 20px;
	background: var(--bg-light);
	border: 2px solid var(--border-light);
	color: var(--text-dark);
	font-size: 16px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: 'Arial', sans-serif;
	border-radius: 12px;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	background: white;
	border-color: var(--accent);
	box-shadow:
		0 0 0 4px rgba(230, 57, 70, 0.1),
		0 10px 30px rgba(230, 57, 70, 0.15);
	transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-muted);
	opacity: 0.7;
}

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

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

.form-submit {
	background: linear-gradient(135deg, var(--accent) 0%, #c43d48 100%);
	color: white;
	padding: 20px 50px;
	border: none;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow:
		0 10px 30px rgba(230, 57, 70, 0.3),
		0 0 0 0 rgba(230, 57, 70, 0.4);
}

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

.form-submit::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.7s ease;
}

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

.form-submit:hover::after {
	left: 100%;
}

.form-submit:hover {
	transform: translateY(-3px);
	box-shadow:
		0 20px 50px rgba(230, 57, 70, 0.4),
		0 0 0 4px rgba(230, 57, 70, 0.1);
}

.form-submit:active {
	transform: translateY(-1px);
}

.contact-info {
	padding: 60px;
	background: white;
	border: 1px solid var(--border-light);
	border-radius: 24px;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(0, 0, 0, 0.03);
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), #f28482, var(--accent));
	background-size: 200% 100%;
	animation: gradientSlide 3s ease infinite;
}

.contact-info:hover {
	transform: translateY(-8px);
	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.12),
		0 0 0 1px rgba(230, 57, 70, 0.1);
}

.info-item {
	margin-bottom: 50px;
	display: flex;
	align-items: start;
	gap: 24px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 24px;
	border-radius: 16px;
	background: transparent;
}

.info-item:last-child {
	margin-bottom: 0;
}

.info-item:hover {
	transform: translateX(8px);
	background: var(--bg-light);
}

.info-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--accent) 0%, #f28482 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
	box-shadow:
		0 10px 30px rgba(230, 57, 70, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
	overflow: hidden;
}

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

.info-item:hover .info-icon::before {
	width: 140px;
	height: 140px;
}

.info-icon svg {
	width: 32px;
	height: 32px;
	color: white;
	stroke: white;
	position: relative;
	z-index: 2;
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-item:hover .info-icon {
	transform: scale(1.15) rotate(-8deg);
	box-shadow:
		0 15px 40px rgba(230, 57, 70, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.info-item:hover .info-icon svg {
	transform: scale(1.2) rotate(8deg);
}

.info-content h3 {
	font-size: 19px;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 700;
	color: var(--text-dark);
}

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

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

.info-content a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}

.info-content a:hover::after {
	width: 100%;
}

.info-content a:hover {
	color: #c43d48;
}

/* Map Section */
.map-section {
	position: relative;
	height: 500px;
	background: white;
	overflow: hidden;
	margin-top: 80px;
	border-radius: 24px;
	border: 1px solid var(--border-light);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(0, 0, 0, 0.03);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-section:hover {
	transform: translateY(-8px);
	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.12),
		0 0 0 1px rgba(230, 57, 70, 0.1);
}

.map-container {
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
}

.map-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
		rgba(230, 57, 70, 0.05) 0%,
		transparent 50%,
		rgba(230, 57, 70, 0.03) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 1;
}

.map-section:hover .map-container::before {
	opacity: 1;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 24px;
	filter: grayscale(10%) contrast(1.05);
	transition: filter 0.4s ease;
}

.map-section:hover .map-container iframe {
	filter: grayscale(0%) contrast(1.1);
}

@keyframes gradientSlide {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

/* Footer */
footer {
	background: white;
	padding: 80px 50px 30px;
	border-top: 1px solid var(--border-light);
}

.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, var(--text-dark), var(--accent));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

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

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

.social-link {
	width: 45px;
	height: 45px;
	border: 2px solid var(--border-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.social-link svg {
	width: 24px;
	height: 24px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 2;
}

/* Telegram - синий по умолчанию */
.social-link.telegram svg {
	fill: #0088cc;
}

/* Telegram - синий градиент */
.social-link.telegram::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #0088cc, #1da1f2);
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.social-link.telegram:hover::before {
	opacity: 1;
}

.social-link.telegram:hover {
	border-color: #0088cc;
	box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.social-link.telegram:hover svg {
	fill: white;
}

/* Instagram - радужный градиент */
.social-link.instagram svg {
	fill: #E1306C;
}

.social-link.instagram::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.social-link.instagram:hover::before {
	opacity: 1;
}

.social-link.instagram:hover {
	border-color: #fd1d1d;
	box-shadow: 0 8px 25px rgba(253, 29, 29, 0.4);
}

.social-link.instagram:hover svg {
	fill: white;
}

/* YouTube - красный градиент */
.social-link.youtube svg {
	fill: #ff0000;
}

.social-link.youtube::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #ff0000, #cc0000);
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.social-link.youtube:hover::before {
	opacity: 1;
}

.social-link.youtube:hover {
	border-color: #ff0000;
	box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.social-link.youtube:hover svg {
	fill: white;
}

.social-link:hover {
	transform: translateY(-5px) scale(1.05);
}

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

.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 var(--border-light);
	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: var(--bg-light);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: var(--text-muted);
	border: 1px solid var(--border-light);
}

/* 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 Styles */
/* Tablet screens */
@media (max-width: 900px) {
	.hero {
		padding: 100px 0 60px;
		min-height: auto;
	}

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 0 clamp(20px, 5vw, 40px);
		gap: 40px;
		min-height: auto;
	}

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

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

	.hero-right {
		display: flex;
		max-width: 450px;
		margin: 0 auto;
		order: -1;
	}

	.hero-image-wrapper {
		max-width: 450px;
		min-height: 450px;
		max-height: 550px;
	}

	.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;
	}
}

/* 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 clamp(20px, 4vw, 40px);
		gap: 50px;
	}

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

	.hero-image-wrapper {
		max-width: 420px;
		min-height: 480px;
		max-height: 580px;
	}

	.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(--text-dark);
	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(255, 255, 255, 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: var(--text-dark);
	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 Styles */
@media (max-width: 768px) {
	nav {
		padding: 15px 20px;
	}

	.nav-links {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.mobile-nav {
		display: block;
	}

	.hero {
		padding: 100px 0 50px;
	}

	.hero-container {
		grid-template-columns: 1fr;
		padding: 0 clamp(20px, 5vw, 30px);
		text-align: center;
		gap: 35px;
	}

	.hero-left {
		padding-right: 0;
	}

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

	.hero-stats {
		justify-content: center;
		gap: 30px;
		flex-wrap: wrap;
	}

	.stat-number {
		font-size: clamp(24px, 5vw, 32px);
	}

	.hero-right {
		display: flex;
		max-width: 100%;
		order: -1;
	}

	.hero-image-wrapper {
		max-width: 100%;
		min-height: 400px;
		max-height: 500px;
	}

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

	.cta-button {
		width: 220px;
		text-align: center;
		padding: 16px 30px;
	}

	.collections,
	.featured,
	.contact {
		padding: 80px 20px 50px;
	}

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

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

	.collection-thumbnail {
		height: 250px;
	}

	.card-content {
		padding: 20px;
	}

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

	.featured-content {
		padding: 25px;
	}

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

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

	.contact-form-wrapper {
		padding: 30px;
	}

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

	.contact-info {
		padding: 30px 20px;
	}

	.map-section {
		height: 300px;
		margin-top: 40px;
	}

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

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


/* =========================================
   ABOUT PAGE (about.html) STYLES
   ========================================= */
.about-hero {
	padding-top: 140px;
	padding-bottom: 100px;
	background: linear-gradient(135deg, rgba(26, 32, 44, 0.96), rgba(26, 32, 44, 0.85)), url('images/noir-fashion-hero-01.avif') center/cover no-repeat;
	color: var(--primary);
	position: relative;
	overflow: hidden;
	border-bottom-left-radius: 48px;
	border-bottom-right-radius: 48px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.about-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent 70%);
	border-radius: 50%;
	animation: pulseGlow 8s ease-in-out infinite;
}

.about-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(230, 57, 70, 0.1), transparent 70%);
	border-radius: 50%;
	animation: pulseGlow 10s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
	0%, 100% {
		opacity: 0.5;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.1);
	}
}

.about-hero-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 2;
}

.about-hero-copy {
	animation: fadeInUp 0.8s ease-out;
}

.about-hero-copy h1 {
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.1;
	margin-bottom: 24px;
	background: linear-gradient(135deg, #ffffff, #f8b4b4);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
	letter-spacing: -1px;
}

.about-hero-copy p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 32px;
}

.atelier-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin: 30px auto 28px;
	color: rgba(255, 255, 255, 0.95);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	animation: fadeInUp 0.6s ease-out 0.3s backwards;
	text-align: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.atelier-pill:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-3px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.hero-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.meta-card {
	padding: 24px;
	border-radius: var(--border-radius);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(15px);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.8s ease-out backwards;
}

.meta-card:nth-child(1) {
	animation-delay: 0.2s;
}

.meta-card:nth-child(2) {
	animation-delay: 0.3s;
}

.meta-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s ease;
}

.meta-card:hover::before {
	left: 100%;
}

.meta-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.meta-card strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: white;
	margin-bottom: 8px;
	margin-top: 8px;
}

.meta-card p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.meta-label {
	display: block;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 8px;
	font-weight: 600;
}

.about-hero-media {
	display: grid;
	gap: 20px;
	animation: fadeInRight 0.8s ease-out;
}

.media-primary {
	height: 400px;
}

.media-secondary {
	height: 200px;
}

.media-primary,
.media-secondary {
	position: relative;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.media-primary:hover,
.media-secondary:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.media-primary img,
.media-secondary img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.media-primary:hover img,
.media-secondary:hover img {
	transform: scale(1.1);
}

.media-badge {
	position: absolute;
	left: 24px;
	bottom: 24px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--text-dark);
	padding: 18px 24px;
	border-radius: 16px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	z-index: 3;
}

.media-badge:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.media-badge strong {
	display: block;
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 4px;
	background: linear-gradient(135deg, var(--text-dark), var(--accent));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.media-stat {
	position: absolute;
	right: 24px;
	top: 24px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 32, 44, 0.9));
	color: white;
	padding: 16px 20px;
	border-radius: 12px;
	text-align: right;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	transition: all 0.3s ease;
	z-index: 3;
}

.media-stat:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.media-stat span {
	font-size: 36px;
	font-weight: 900;
	display: block;
	line-height: 1;
	background: linear-gradient(135deg, #ffffff, var(--accent));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.media-stat p {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 4px;
	opacity: 0.8;
}

.atelier-story,
.mission-section,
.why-choose,
.atelier-process,
.team-section,
.numbers-section {
	padding: 120px 40px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.atelier-story {
	padding-top: 160px;
}

.about-hero-copy,
.story-content,
.mission-section,
.why-choose,
.team-section {
	position: relative;
}

.section-header {
	animation: fadeInUp 0.6s ease-out;
}

.section-header .section-title {
	position: relative;
}

.section-header .section-subtitle {
	display: inline-block;
	margin-bottom: 16px;
	padding: 6px 16px;
	background: rgba(230, 57, 70, 0.1);
	border-radius: 20px;
	color: var(--accent);
	font-weight: 600;
}

.story-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: start;
	position: relative;
}

.story-content {
	animation: fadeInLeft 0.8s ease-out;
}

.story-content p {
	margin-bottom: 24px;
	color: var(--text-muted);
	font-size: 18px;
	line-height: 1.8;
}

.atelier-quote {
	margin-top: 32px;
	padding: 24px 28px;
	border-left: 4px solid var(--accent);
	font-style: italic;
	background: linear-gradient(135deg, var(--bg-light), rgba(230, 57, 70, 0.03));
	border-radius: 0 16px 16px 0;
	position: relative;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.atelier-quote::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 60px;
	color: var(--accent);
	opacity: 0.2;
	font-family: Georgia, serif;
}

.atelier-quote:hover {
	transform: translateX(8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	border-left-width: 5px;
}

.story-timeline {
	display: flex;
	flex-direction: column;
	gap: 24px;
	animation: fadeInRight 0.8s ease-out;
}

.timeline-card {
	padding: 28px;
	border-radius: var(--border-radius);
	background: var(--bg-section);
	box-shadow: 0 15px 35px var(--shadow-light);
	border: 1px solid var(--border-light);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
}

.timeline-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--accent), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.timeline-card:hover {
	transform: translateY(-6px) translateX(8px);
	box-shadow: 0 20px 45px rgba(26, 32, 44, 0.12);
	border-color: rgba(230, 57, 70, 0.3);
}

.timeline-card:hover::before {
	opacity: 1;
}

.timeline-year {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: var(--accent);
	font-weight: 700;
	margin-bottom: 12px;
	display: inline-block;
	padding: 4px 12px;
	background: rgba(230, 57, 70, 0.1);
	border-radius: 4px;
}

.timeline-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: var(--text-dark);
	font-weight: 700;
}

.timeline-card p {
	color: var(--text-muted);
	line-height: 1.7;
	font-size: 15px;
}

.mission-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	position: relative;
}

.mission-card {
	padding: 32px;
	border-radius: var(--border-radius);
	border: 1px solid var(--border-light);
	background: var(--bg-section);
	box-shadow: 0 20px 45px var(--shadow-light);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.6s ease-out backwards;
}

.mission-card:nth-child(1) {
	animation-delay: 0.1s;
}

.mission-card:nth-child(2) {
	animation-delay: 0.2s;
}

.mission-card:nth-child(3) {
	animation-delay: 0.3s;
}

.mission-card:nth-child(4) {
	animation-delay: 0.4s;
}

.mission-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.05), transparent);
	transition: left 0.6s ease;
}

.mission-card:hover::after {
	left: 100%;
}

.mission-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 55px rgba(26, 32, 44, 0.15);
	border-color: rgba(230, 57, 70, 0.2);
}

.mission-card h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: var(--text-dark);
	font-weight: 700;
}

.mission-card p {
	color: var(--text-muted);
	line-height: 1.7;
	font-size: 15px;
}

.mission-card--primary {
	grid-column: span 2;
	background: linear-gradient(135deg, var(--text-dark), #0f1115);
	color: white;
	position: relative;
	overflow: hidden;
}

.mission-card--primary::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent 70%);
	animation: rotate 20s linear infinite;
}

.mission-card--primary > * {
	position: relative;
	z-index: 2;
}

.mission-card--primary .section-subtitle {
	color: rgba(255, 255, 255, 0.7);
}

.mission-card--primary h2 {
	font-size: clamp(32px, 4vw, 46px);
	margin: 10px 0 20px;
	line-height: 1.2;
}

.mission-card--primary p {
	color: rgba(255, 255, 255, 0.85);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
	margin-top: 40px;
}

.why-card {
	padding: 32px;
	border-radius: var(--border-radius);
	background: white;
	border: 1px solid var(--border-light);
	box-shadow: 0 20px 45px var(--shadow-light);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.6s ease-out backwards;
}

.why-card:nth-child(1) {
	animation-delay: 0.1s;
}

.why-card:nth-child(2) {
	animation-delay: 0.2s;
}

.why-card:nth-child(3) {
	animation-delay: 0.3s;
}

.why-card:nth-child(4) {
	animation-delay: 0.4s;
}

.why-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), transparent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.why-card:hover::before {
	transform: scaleX(1);
}

.why-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 55px rgba(26, 32, 44, 0.15);
	border-color: rgba(230, 57, 70, 0.3);
	background: linear-gradient(135deg, white, rgba(230, 57, 70, 0.02));
}

.why-card h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: var(--text-dark);
	font-weight: 700;
}

.why-card p {
	color: var(--text-muted);
	line-height: 1.7;
	font-size: 15px;
}

.why-icon {
	font-size: 32px;
	margin-bottom: 16px;
	display: inline-block;
	transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
	transform: scale(1.1) rotate(5deg);
}

.atelier-process {
	background: linear-gradient(135deg, var(--bg-light), rgba(230, 57, 70, 0.02));
	border-radius: 40px;
	padding: 80px 40px;
	position: relative;
	overflow: hidden;
}

.atelier-process::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(230, 57, 70, 0.08), transparent 70%);
	border-radius: 50%;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 40px;
	position: relative;
	z-index: 2;
}

.process-card {
	padding: 32px;
	border-radius: var(--border-radius);
	background: white;
	border: 1px solid var(--border-light);
	box-shadow: 0 15px 35px var(--shadow-light);
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	animation: fadeInUp 0.6s ease-out backwards;
}

.process-card:nth-child(1) {
	animation-delay: 0.1s;
}

.process-card:nth-child(2) {
	animation-delay: 0.2s;
}

.process-card:nth-child(3) {
	animation-delay: 0.3s;
}

.process-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), transparent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.process-card:hover::after {
	transform: scaleX(1);
}

.process-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(26, 32, 44, 0.15);
	border-color: rgba(230, 57, 70, 0.3);
}

.process-card h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: var(--text-dark);
	font-weight: 700;
}

.process-card p {
	color: var(--text-muted);
	line-height: 1.7;
	font-size: 15px;
}

.process-step {
	font-size: 36px;
	font-weight: 900;
	background: linear-gradient(135deg, var(--accent), #f28482);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	margin-bottom: 12px;
	transition: transform 0.3s ease;
}

.process-card:hover .process-step {
	transform: scale(1.1);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.team-card {
	border-radius: 24px;
	overflow: hidden;
	background: white;
	border: 1px solid var(--border-light);
	box-shadow: 0 30px 55px var(--shadow-light);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	animation: fadeInUp 0.6s ease-out backwards;
}

.team-card:nth-child(1) {
	animation-delay: 0.1s;
}

.team-card:nth-child(2) {
	animation-delay: 0.2s;
}

.team-card:nth-child(3) {
	animation-delay: 0.3s;
}

.team-card:nth-child(4) {
	animation-delay: 0.4s;
}

.team-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent, rgba(26, 32, 44, 0.4));
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
	pointer-events: none;
}

.team-card:hover::before {
	opacity: 1;
}

.team-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 40px 70px rgba(26, 32, 44, 0.2);
	border-color: rgba(230, 57, 70, 0.3);
}

.team-card img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: transform 0.6s ease;
	display: block;
}

.team-card:hover img {
	transform: scale(1.1);
}

.team-info {
	padding: 28px;
	position: relative;
	z-index: 2;
	background: white;
}

.team-info h3 {
	margin-bottom: 6px;
	font-size: 20px;
	font-weight: 700;
	color: var(--text-dark);
}

.team-info p {
	color: var(--accent);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.team-info span {
	display: block;
	color: var(--text-muted);
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.6;
}

.numbers-section {
	text-align: center;
	background: linear-gradient(135deg, #0f1115, #171b22);
	border-radius: 48px;
	padding: 100px 60px;
	margin-top: 60px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.numbers-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(230, 57, 70, 0.2), transparent 70%);
	border-radius: 50%;
	animation: pulseGlow 8s ease-in-out infinite;
}

.numbers-section .section-header {
	position: relative;
	z-index: 2;
}

.numbers-section .section-title {
	color: white;
}

.numbers-section .section-subtitle {
	color: rgba(255, 255, 255, 0.6);
}

.numbers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 50px;
	position: relative;
	z-index: 2;
}

.number-card {
	padding: 40px 30px;
	border-radius: 24px;
	background: rgba(26, 32, 44, 0.6);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	animation: fadeInUp 0.6s ease-out backwards;
}

.number-card:nth-child(1) {
	animation-delay: 0.1s;
}

.number-card:nth-child(2) {
	animation-delay: 0.2s;
}

.number-card:nth-child(3) {
	animation-delay: 0.3s;
}

.number-card:nth-child(4) {
	animation-delay: 0.4s;
}

.number-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(230, 57, 70, 0.3), transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.number-card:hover::before {
	opacity: 1;
}

.number-card:hover {
	transform: translateY(-10px) scale(1.02);
	background: rgba(26, 32, 44, 0.8);
	border-color: rgba(230, 57, 70, 0.4);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.number {
	display: block;
	font-size: 42px;
	font-weight: 900;
	margin-bottom: 12px;
	background: linear-gradient(135deg, #ffffff, var(--accent));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	transition: transform 0.3s ease;
}

.number-card:hover .number {
	transform: scale(1.1);
}

.number-card p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* About Page Animations */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

@media (max-width: 1024px) {
	.about-hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 40px;
	}

	.about-hero-media {
		order: -1;
	}

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

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

	.mission-card--primary {
		grid-column: span 1;
	}

	.media-primary {
		height: 300px;
	}

	.media-secondary {
		height: 180px;
	}

	.numbers-section {
		padding: 80px 40px;
	}
}

@media (max-width: 768px) {
	.about-hero {
		padding: 120px 20px 60px;
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
	}

	.about-hero-grid {
		padding: 0 20px;
		gap: 30px;
	}

	.about-hero-copy h1 {
		font-size: clamp(28px, 8vw, 48px);
	}

	.about-hero-copy p {
		font-size: 16px;
	}

	.meta-card {
		padding: 20px;
	}

	.media-primary {
		height: 250px;
	}

	.media-secondary {
		height: 150px;
	}

	.media-badge {
		left: 16px;
		bottom: 16px;
		padding: 14px 18px;
	}

	.media-badge strong {
		font-size: 18px;
	}

	.media-stat {
		right: 16px;
		top: 16px;
		padding: 12px 16px;
	}

	.media-stat span {
		font-size: 28px;
	}

	.atelier-story,
	.mission-section,
	.why-choose,
	.atelier-process,
	.team-section,
	.numbers-section {
		padding: 80px 20px;
	}

	.atelier-story {
		padding-top: 100px;
	}

	.story-grid {
		gap: 30px;
	}

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

	.mission-card {
		padding: 24px;
	}

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

	.why-card {
		padding: 24px;
	}

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

	.process-card {
		padding: 24px;
	}

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

	.team-card img {
		height: 240px;
	}

	.numbers-section {
		padding: 60px 30px;
		border-radius: 32px;
	}

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

	.number-card {
		padding: 30px 24px;
	}

	.number {
		font-size: 36px;
	}
}


/* =========================================
   COLLECTIONS PAGE (collections.html) STYLES
   ========================================= */
.collections-hero {
	padding-top: 140px;
	padding-bottom: 100px;
background: linear-gradient(135deg, rgba(26, 32, 44, 0.95), rgba(26, 32, 44, 0.85)), url('{% static 'images/noir-fashion-hero-02.avif' %}') center/cover no-repeat;	text-align: center;
	position: relative;
	overflow: hidden;
	border-bottom-left-radius: 48px;
	border-bottom-right-radius: 48px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.collections-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(230, 57, 70, 0.15), transparent 70%);
	border-radius: 50%;
	animation: pulseGlow 8s ease-in-out infinite;
}

.collections-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(230, 57, 70, 0.1), transparent 70%);
	border-radius: 50%;
	animation: pulseGlow 10s ease-in-out infinite reverse;
}

.collections-hero-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 2;
	animation: fadeInUp 0.8s ease-out;
}

.collections-badge {
	display: inline-block;
	padding: 10px 24px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.collections-badge:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.collections-hero h1 {
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1.1;
	margin-bottom: 24px;
	background: linear-gradient(135deg, #ffffff, #f8b4b4);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
	letter-spacing: -2px;
}

.collections-hero p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 40px;
}

.collections-stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
	margin-top: 50px;
}

.col-stat {
	text-align: center;
	animation: fadeInUp 0.8s ease-out backwards;
}

.col-stat:nth-child(1) {
	animation-delay: 0.2s;
}

.col-stat:nth-child(2) {
	animation-delay: 0.3s;
}

.col-stat:nth-child(3) {
	animation-delay: 0.4s;
}

.col-stat-number {
	display: block;
	font-size: 48px;
	font-weight: 900;
	background: linear-gradient(135deg, #ffffff, var(--accent));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 8px;
}

.col-stat-label {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.7);
}

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

.collections-container {
	position: relative;
}

.collections-header {
	text-align: center;
	margin-bottom: 60px;
	animation: fadeInUp 0.6s ease-out;
}

.collections-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.collections-main .collection-card {
	position: relative;
	background: white;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	opacity: 0;
	animation: fadeInUp 0.6s ease forwards;
	border-radius: 16px;
	box-shadow: 0 10px 30px var(--shadow-light);
	border: 1px solid var(--border-light);
}

.collections-main .collection-card:nth-child(1) {
	animation-delay: 0.1s;
}

.collections-main .collection-card:nth-child(2) {
	animation-delay: 0.2s;
}

.collections-main .collection-card:nth-child(3) {
	animation-delay: 0.3s;
}

.collections-main .collection-card:nth-child(4) {
	animation-delay: 0.4s;
}

.collections-main .collection-card:nth-child(5) {
	animation-delay: 0.5s;
}

.collections-main .collection-card:nth-child(6) {
	animation-delay: 0.6s;
}

.collections-main .collection-card:nth-child(7) {
	animation-delay: 0.7s;
}

.collections-main .collection-card:nth-child(8) {
	animation-delay: 0.8s;
}

.collections-main .collection-thumbnail {
	width: 100%;
	height: 380px;
	background: var(--bg-light);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transition: transform 0.5s ease, opacity 0.5s ease;
}

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

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

.collections-main .collection-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.collection-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(26, 32, 44, 0.85), rgba(230, 57, 70, 0.75));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 2;
}

.collections-main .collection-card:hover .collection-overlay {
	opacity: 1;
}

.collections-main .collection-card:hover .collection-thumbnail {
	transform: scale(1.05);
}

.collections-main .collection-card:hover .collection-thumbnail img {
	transform: scale(1.1);
}

.collection-btn {
	padding: 16px 32px;
	background: white;
	color: var(--text-dark);
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	transform: translateY(20px);
	opacity: 0;
}

.collections-main .collection-card:hover .collection-btn {
	transform: translateY(0);
	opacity: 1;
}

.collection-btn:hover {
	background: var(--accent);
	color: white;
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.collections-main .card-content {
	padding: 28px;
	background: white;
	position: relative;
	z-index: 1;
}

.collections-main .card-badge {
	display: inline-block;
	padding: 6px 14px;
	background: var(--accent);
	color: white;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 14px;
	border-radius: 4px;
	font-weight: 700;
}

.collections-main .card-title {
	font-size: 24px;
	margin-bottom: 8px;
	font-weight: 800;
	color: var(--text-dark);
	transition: color 0.3s ease;
}

.collections-main .collection-card:hover .card-title {
	color: var(--accent);
}

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

.collections-main .card-price {
	font-size: 20px;
	color: var(--accent);
	font-weight: 700;
}

.collections-main .collection-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(26, 32, 44, 0.15);
	border-color: rgba(230, 57, 70, 0.3);
}

.collections-cta {
	padding: 120px 40px;
	background: linear-gradient(135deg, var(--bg-light), rgba(230, 57, 70, 0.03));
	text-align: center;
	position: relative;
	overflow: hidden;
}

.collections-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(230, 57, 70, 0.08), transparent 70%);
	border-radius: 50%;
	animation: pulseGlow 8s ease-in-out infinite;
}

.cta-content {
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	animation: fadeInUp 0.8s ease-out;
}

.collections-cta h2 {
	font-size: clamp(32px, 5vw, 48px);
	margin-bottom: 20px;
	color: var(--text-dark);
	font-weight: 900;
	letter-spacing: -1px;
}

.collections-cta p {
	color: var(--text-muted);
	font-size: 18px;
	line-height: 1.7;
	margin-bottom: 40px;
}

.collections-cta .cta-button {
	margin-top: 20px;
}

/* Collections Page Responsive */
@media (max-width: 1024px) {
	.collections-hero {
		padding: 120px 30px 80px;
	}

	.collections-stats {
		gap: 40px;
	}

	.col-stat-number {
		font-size: 40px;
	}

	.collections-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 24px;
	}

	.collections-main .collection-thumbnail {
		height: 340px;
	}
}

@media (max-width: 768px) {
	.collections-hero {
		padding: 120px 20px 60px;
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
	}

	.collections-hero-content {
		padding: 0 20px;
	}

	.collections-hero h1 {
		font-size: clamp(32px, 8vw, 56px);
	}

	.collections-hero p {
		font-size: 16px;
	}

	.collections-stats {
		gap: 30px;
		flex-direction: column;
	}

	.col-stat-number {
		font-size: 36px;
	}

	.collections-main {
		padding: 80px 20px;
	}

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

	.collections-main .collection-thumbnail {
		height: 300px;
	}

	.collections-cta {
		padding: 80px 20px;
	}

	.collections-cta h2 {
		font-size: 32px;
	}

	.collections-cta p {
		font-size: 16px;
	}
}
/* Modal Responsive Styles */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }

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

    .modal-image {
        min-height: 300px;
        max-height: 400px;
    }

    .modal-info {
        padding: 40px 30px;
    }

    .modal-title {
        font-size: 32px;
    }

    .modal-price {
        font-size: 28px;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        top: 15px;
        right: 15px;
    }
}

/* Collection Card Responsive */
@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .collection-thumbnail {
        height: 280px;
    }

    .card-content {
        padding: 20px;
    }

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

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

    .collection-thumbnail {
        height: 350px;
    }

    .category-tabs {
        gap: 8px;
        flex-wrap: wrap;
    }

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

/* =========================================
   HERO & MAIN SECTIONS RESPONSIVE
   ========================================= */

/* Desktop Optimization (1200px+) */
@media (min-width: 1200px) {
    .hero-container {
        padding: 0 60px;
    }
}

/* Tablet & Mobile General (max-width: 1199px) */
@media (max-width: 1199px) {
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: clamp(40px, 6vw, 60px);
        padding: 0 clamp(20px, 5vw, 40px);
        min-height: auto;
    }

    .hero-left {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        order: 2;
    }

    .hero-right {
        order: 1;
        max-width: 550px;
        margin: 0 auto;
        display: flex;
    }

    .hero-image-wrapper {
        max-width: 100%;
        min-height: 480px;
        max-height: 580px;
    }

    .hero-title {
        font-size: clamp(42px, 6vw, 56px);
    }

    .hero-stats {
        justify-content: center;
        gap: clamp(30px, 5vw, 50px);
    }

    .cta-group {
        justify-content: center;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
    .hero {
        padding: 110px 0 60px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-right {
        max-width: 480px;
    }

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

    .hero-description {
        font-size: clamp(15px, 2vw, 17px);
        line-height: 1.7;
    }

    .hero-stats {
        gap: clamp(25px, 4vw, 35px);
    }

    .stat-number {
        font-size: clamp(28px, 4vw, 36px);
    }

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

    .hero-image-wrapper {
        min-height: 450px;
        max-height: 520px;
    }

    /* Collections */
    .collections {
        padding: 100px 30px 80px;
    }

    .section-title {
        font-size: 42px;
    }

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

/* Mobile Landscape & Large Mobile (600px - 767px) */
@media (max-width: 767px) {
    /* Hero Section */
    .hero {
        padding: 100px 0 50px;
    }

    .hero-container {
        gap: 35px;
        padding: 0 clamp(15px, 4vw, 25px);
    }

    .hero-right {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 40px);
        letter-spacing: -0.5px;
    }

    .hero-title .line {
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: clamp(14px, 3vw, 16px);
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin: 30px 0;
    }

    .stat {
        flex: 0 1 auto;
        min-width: calc(50% - 10px);
        padding: 18px 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
    }

    .stat-number {
        font-size: clamp(28px, 5vw, 32px);
    }

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

    .atelier-pill {
        font-size: 11px;
        padding: 12px 20px;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 12px;
    }

    .hero-image-wrapper {
        min-height: 380px;
        max-height: 450px;
    }

    .media-badge,
    .media-stat {
        font-size: 12px;
        padding: 12px 16px;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    /* Collections Section */
    .collections {
        padding: 80px 20px 60px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .category-tabs {
        gap: 10px;
        margin-bottom: 35px;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 11px;
    }

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

    .collection-card {
        max-width: 100%;
    }

    .collection-thumbnail {
        height: 300px;
    }

    .card-content {
        padding: 24px;
    }

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

/* Mobile Portrait (480px - 599px) */
@media (max-width: 599px) {
    /* Hero */
    .hero {
        padding: 90px 0 40px;
    }

    .hero-container {
        gap: 30px;
        padding: 0 clamp(15px, 4vw, 20px);
    }

    .hero-right {
        max-width: 100%;
    }

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

    .hero-description {
        font-size: clamp(13px, 3vw, 15px);
    }

    .hero-stats {
        gap: 15px;
        margin: 25px 0;
    }

    .stat {
        min-width: calc(50% - 8px);
        padding: 16px 12px;
    }

    .stat-number {
        font-size: clamp(24px, 5vw, 28px);
    }

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

    .atelier-pill {
        font-size: 10px;
        padding: 10px 18px;
        margin-top: 20px;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 11px;
    }

    .hero-image-wrapper {
        min-height: 340px;
        max-height: 400px;
    }

    /* Collections */
    .collections {
        padding: 70px 16px 50px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .category-tabs {
        gap: 8px;
    }

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

    .collection-thumbnail {
        height: 280px;
    }

    .card-content {
        padding: 20px;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    /* Hero */
    .hero {
        padding: 85px 0 35px;
    }

    .hero-container {
        gap: 25px;
        padding: 0 clamp(12px, 3vw, 16px);
    }

    .hero-right {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(26px, 7vw, 30px);
    }

    .hero-title .line {
        margin-bottom: 6px;
    }

    .hero-description {
        font-size: clamp(12px, 3vw, 14px);
        line-height: 1.5;
        margin-bottom: 25px;
        max-width: 100%;
    }

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

    .stat {
        min-width: calc(50% - 6px);
        padding: 14px 10px;
        border-radius: 10px;
    }

    .stat-number {
        font-size: clamp(22px, 5vw, 26px);
    }

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

    .atelier-pill {
        font-size: 9px;
        padding: 8px 15px;
        margin-top: 18px;
    }

    .hero-image-wrapper {
        min-height: 300px;
        max-height: 360px;
    }

    .cta-group {
        gap: 12px;
    }

    .cta-button {
        padding: 14px 20px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero-image-wrapper {
        max-height: 350px;
        border-radius: 16px;
    }

    .hero-carousel {
        border-radius: 16px;
    }

    .media-badge {
        left: 12px;
        bottom: 12px;
        padding: 10px 14px;
        font-size: 10px;
    }

    .media-badge strong {
        font-size: 13px;
    }

    .media-stat {
        right: 12px;
        top: 12px;
        padding: 10px 14px;
    }

    .media-stat span {
        font-size: 22px;
    }

    .media-stat p {
        font-size: 9px;
    }

    .carousel-indicators {
        bottom: 12px;
        gap: 6px;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    /* Collections */
    .collections {
        padding: 60px 12px 40px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .category-tabs {
        gap: 6px;
        margin-bottom: 30px;
    }

    .tab-btn {
        padding: 8px 14px;
        font-size: 9px;
        letter-spacing: 1px;
    }

    .grid {
        gap: 16px;
    }

    .collection-card {
        border-radius: 12px;
    }

    .collection-thumbnail {
        height: 260px;
    }

    .card-content {
        padding: 18px;
    }

    .card-badge {
        font-size: 9px;
        padding: 5px 12px;
    }

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

    .card-subtitle {
        font-size: 12px;
    }

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

/* Landscape orientation for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 80px 20px 40px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-left {
        text-align: left;
        order: 1;
    }

    .hero-right {
        order: 2;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 15px;
    }

    .stat {
        padding: 12px;
    }

    .hero-image-wrapper {
        max-height: 350px;
    }

    .cta-group {
        flex-direction: row;
    }

    .cta-button {
        width: auto;
        padding: 12px 24px;
    }
}

/* Featured Section Responsive */
@media (max-width: 1023px) {
    .featured {
        padding: 80px 30px;
    }

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

    .featured-content {
        text-align: center;
    }

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

@media (max-width: 767px) {
    .featured {
        padding: 70px 20px;
    }

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

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

@media (max-width: 479px) {
    .featured {
        padding: 60px 12px;
    }

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

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

    .highlight-item {
        padding: 20px;
    }
}

/* =========================================
   CONTACT SECTION RESPONSIVE
   ========================================= */

/* Desktop Large (1440px+) - Optimal viewing */
@media (min-width: 1440px) {
    .contact-container {
        max-width: 1600px;
    }

    .contact-header .section-title {
        font-size: 64px;
    }

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

/* Laptop/Desktop (1024px - 1439px) */
@media (max-width: 1439px) {
    .contact {
        padding: 100px 40px;
    }

    .contact-header .section-title {
        font-size: 52px;
    }

    .contact-content {
        gap: 60px;
    }

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

/* Tablet Landscape (900px - 1023px) */
@media (max-width: 1023px) {
    .contact {
        padding: 80px 30px;
    }

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

    .contact-header .section-title {
        font-size: 48px;
    }

    .contact-header .section-subtitle {
        font-size: 16px;
    }

    .contact-content {
        gap: 50px;
        margin-bottom: 60px;
    }

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

    .info-icon {
        width: 65px;
        height: 65px;
    }

    .info-icon svg {
        width: 30px;
        height: 30px;
    }

    .map-section {
        height: 450px;
        margin-top: 60px;
    }
}

/* Tablet Portrait (768px - 899px) */
@media (max-width: 899px) {
    .contact {
        padding: 70px 25px;
    }

    .contact-header .section-title {
        font-size: 42px;
    }

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

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

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 15px;
    }

    .form-submit {
        padding: 18px 40px;
    }

    .info-item {
        padding: 20px;
    }

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

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

    .map-section {
        height: 400px;
    }
}

/* Mobile Landscape (600px - 767px) */
@media (max-width: 767px) {
    .contact {
        padding: 60px 20px;
    }

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-header::before {
        width: 60px;
        top: -30px;
    }

    .contact-header .section-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .contact-header .section-subtitle {
        font-size: 15px;
    }

    .contact-content {
        gap: 35px;
        margin-bottom: 40px;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 35px;
        border-radius: 20px;
    }

    .contact-form-wrapper::after,
    .contact-info::before {
        height: 3px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px 16px;
        border-radius: 10px;
    }

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

    .form-submit {
        padding: 16px 35px;
        font-size: 13px;
        border-radius: 10px;
    }

    .info-item {
        gap: 20px;
        padding: 18px;
        margin-bottom: 35px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .info-icon svg {
        width: 28px;
        height: 28px;
    }

    .info-content h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .map-section {
        height: 350px;
        margin-top: 50px;
        border-radius: 20px;
    }

    .map-container,
    .map-container iframe {
        border-radius: 20px;
    }
}

/* Mobile Portrait (480px - 599px) */
@media (max-width: 599px) {
    .contact {
        padding: 50px 16px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header .section-title {
        font-size: 32px;
    }

    .contact-header .section-subtitle {
        font-size: 14px;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 30px 25px;
        border-radius: 18px;
    }

    .form-group {
        margin-bottom: 22px;
    }

    .form-group label {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 14px;
        border-radius: 8px;
    }

    .form-submit {
        padding: 15px 30px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        margin-bottom: 30px;
    }

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

    .info-icon {
        width: 70px;
        height: 70px;
    }

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

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

    .map-section {
        height: 300px;
        margin-top: 40px;
        border-radius: 18px;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .contact {
        padding: 40px 12px;
    }

    .contact-header {
        margin-bottom: 35px;
    }

    .contact-header::before {
        width: 50px;
        height: 3px;
    }

    .contact-header .section-title {
        font-size: 28px;
    }

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

    .contact-content {
        gap: 25px;
        margin-bottom: 30px;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .form-group input,
    .form-group textarea {
        padding: 13px;
        font-size: 14px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-submit {
        padding: 14px 25px;
        font-size: 11px;
    }

    .info-item {
        padding: 16px;
        margin-bottom: 25px;
        border-radius: 12px;
    }

    .info-icon {
        width: 65px;
        height: 65px;
        border-radius: 12px;
    }

    .info-icon svg {
        width: 26px;
        height: 26px;
    }

    .info-content h3 {
        font-size: 14px;
        letter-spacing: 1px;
    }

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

    .map-section {
        height: 280px;
        margin-top: 35px;
        border-radius: 16px;
    }

    .map-container,
    .map-container iframe {
        border-radius: 16px;
    }
}

/* Ultra-wide screens (1920px+) - Premium experience */
@media (min-width: 1920px) {
    .contact-container {
        max-width: 1800px;
    }

    .contact-header .section-title {
        font-size: 72px;
    }

    .contact-header .section-subtitle {
        font-size: 20px;
    }

    .contact-content {
        gap: 100px;
    }

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

    .form-group input,
    .form-group textarea {
        font-size: 17px;
        padding: 20px 22px;
    }

    .form-submit {
        padding: 22px 60px;
        font-size: 15px;
    }

    .info-icon {
        width: 80px;
        height: 80px;
    }

    .info-icon svg {
        width: 36px;
        height: 36px;
    }

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

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

    .map-section {
        height: 600px;
    }
}

/* Landscape orientation optimizations */
@media (max-height: 600px) and (orientation: landscape) {
    .contact {
        padding: 40px 20px;
    }

    .contact-header {
        margin-bottom: 30px;
    }

    .contact-header .section-title {
        font-size: 32px;
    }

    .contact-content {
        gap: 30px;
        margin-bottom: 30px;
    }

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

    .map-section {
        height: 300px;
        margin-top: 30px;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .contact-form-wrapper::before,
    .contact::before {
        will-change: transform;
    }

    .form-submit,
    .info-icon {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .contact-form-wrapper:hover,
    .contact-info:hover,
    .map-section:hover {
        transform: none;
    }

    .info-item:hover {
        transform: none;
        background: transparent;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        transform: none;
    }

    /* Увеличенные области нажатия для мобильных */
    .form-submit {
        min-height: 48px;
    }

    .info-icon {
        min-width: 60px;
        min-height: 60px;
    }
}

/* Print styles for Contact section */
@media print {
    .contact {
        background: white;
        padding: 40px 20px;
    }

    .contact::before,
    .contact-form-wrapper::before,
    .contact-form-wrapper::after,
    .contact-info::before {
        display: none;
    }

    .contact-form-wrapper,
    .contact-info {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }

    .map-section {
        display: none;
    }

    .form-submit {
        display: none;
    }
}

/* =========================================
   FAQ PAGE STYLES
   ========================================= */

/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.85)), url('https://images.unsplash.com/photo-1605152276897-4f618f831968?w=1920&q=80') center center / cover no-repeat;
    padding: 160px 50px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.faq-hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 100px 50px;
    background: var(--bg-light);
    min-height: 80vh;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.faq-category-btn {
    padding: 12px 28px;
    background: white;
    border: 2px solid var(--border-light);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: inline-block;
    text-align: center;
    font-family: inherit;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: linear-gradient(135deg, var(--accent), #f28482);
    color: white !important;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.6s ease backwards;
    opacity: 1;
    transform: translateY(0);
}

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

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.15);
    border-color: rgba(230, 57, 70, 0.3);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
}

.faq-question {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #f28482);
    transition: width 0.4s ease;
}

.faq-item.active .faq-question::after {
    width: 100%;
}

.faq-question:hover {
    background: rgba(230, 57, 70, 0.02);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: rotate(0deg);
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--accent);
    transform: rotate(180deg);
}

.faq-item.active .faq-icon svg {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    padding: 0 32px 28px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
    padding-top: 20px;
    animation: fadeIn 0.4s ease 0.2s backwards;
}

/* FAQ CTA */
.faq-cta {
    margin-top: 80px;
    padding: 60px 50px;
    background: linear-gradient(135deg, var(--accent) 0%, #c62828 100%);
    border-radius: 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 10s ease-in-out infinite;
}

.faq-cta h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.faq-cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: white !important;
    color: var(--accent) !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.faq-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.98) !important;
    color: var(--accent) !important;
}

/* FAQ Responsive */
@media (max-width: 1024px) {
    .faq-hero {
        padding: 140px 40px 80px;
    }
    
    .faq-section {
        padding: 80px 40px;
    }
    
    .faq-categories {
        gap: 12px;
    }
    
    .faq-category-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 120px 30px 60px;
    }
    
    .faq-hero-title {
        font-size: clamp(32px, 8vw, 56px);
    }
    
    .faq-hero-subtitle {
        font-size: 18px;
    }
    
    .faq-section {
        padding: 60px 30px;
    }
    
    .faq-categories {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .faq-category-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .faq-question {
        padding: 24px 24px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
    
    .faq-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 24px;
    }
    
    .faq-answer {
        padding: 0 24px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-cta {
        margin-top: 60px;
        padding: 50px 30px;
    }
    
    .faq-cta h3 {
        font-size: 28px;
    }
    
    .faq-cta p {
        font-size: 16px;
    }
    
    .faq-cta-btn {
        padding: 16px 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 100px 20px 50px;
    }
    
    .faq-section {
        padding: 50px 20px;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-category-btn {
        width: 100%;
        text-align: center;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-cta {
        padding: 40px 25px;
    }
    
    .faq-cta h3 {
        font-size: 24px;
    }
    
    .faq-cta-btn {
        padding: 14px 35px;
        font-size: 13px;
    }
}

/* =========================================
   CUSTOM LANGUAGE SELECTOR STYLES
   ========================================= */

.custom-lang-select {
    position: relative;
    min-width: 110px;
    display: block;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

.custom-lang-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}

.lang-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.lang-arrow {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.custom-lang-select:hover .lang-text {
    color: var(--accent);
}

.custom-lang-select:hover .lang-arrow {
    color: var(--accent);
}

.custom-lang-select.active .lang-arrow {
    transform: rotate(180deg);
}

.custom-lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow: hidden;
    max-height: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    min-width: 100%;
}

.custom-lang-select.active .custom-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    max-height: 300px;
    border-color: var(--accent);
    box-shadow: 0 12px 48px rgba(230, 57, 70, 0.25);
}

/* Ensure perfect alignment */
.lang-switcher-wrapper .custom-lang-select {
    width: 100%;
}

.lang-switcher-wrapper .custom-lang-dropdown {
    left: 0;
    right: 0;
    width: 100%;
}

.custom-lang-option {
    padding: 13px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
}

.custom-lang-select.active .custom-lang-option {
    animation: fadeInOption 0.3s ease forwards;
}

.custom-lang-select.active .custom-lang-option:nth-child(1) {
    animation-delay: 0.05s;
}

.custom-lang-select.active .custom-lang-option:nth-child(2) {
    animation-delay: 0.1s;
}

.custom-lang-select.active .custom-lang-option:nth-child(3) {
    animation-delay: 0.15s;
}

@keyframes fadeInOption {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-lang-option:first-child {
    border-radius: 10px 10px 0 0;
}

.custom-lang-option:last-child {
    border-radius: 0 0 10px 10px;
}

.custom-lang-option:hover:not(.active) {
    background: var(--accent-light);
    color: var(--accent);
}

.custom-lang-option.active {
    background: var(--accent);
    color: white;
    font-weight: 700;
}

.custom-lang-option.active::before {
    position: absolute;
    left: 16px;
    font-weight: 700;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.custom-lang-option.active:hover {
    background: var(--accent-hover);
}

/* =========================================
   MOBILE LANGUAGE SWITCHER - COMPACT & CLEAN
   ========================================= */

.mobile-lang-switcher {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    width: 100%;
    list-style: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.mobile-lang-switcher .lang-switcher-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    border: 1.5px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.mobile-lang-switcher .lang-switcher-wrapper:hover {
    border-color: var(--accent);
}

.mobile-lang-switcher .lang-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--accent);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-lang-switcher .custom-lang-select {
    flex: 1;
    position: relative;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.mobile-lang-switcher .custom-lang-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: transparent;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    gap: 8px;
    min-height: 40px;
    box-sizing: border-box;
    width: 100%;
}

.mobile-lang-switcher .custom-lang-selected:hover {
    background: rgba(230, 57, 70, 0.05);
}

.mobile-lang-switcher .custom-lang-select.active .custom-lang-selected {
    background: rgba(230, 57, 70, 0.08);
}

.mobile-lang-switcher .lang-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-lang-switcher .lang-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.mobile-lang-switcher .custom-lang-select.active .lang-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.mobile-lang-switcher .custom-lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1001;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    box-sizing: border-box;
}

.mobile-lang-switcher .custom-lang-select.active .custom-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 250px;
    border-color: var(--accent);
    padding: 6px;
}

.mobile-lang-switcher .custom-lang-option {
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    display: flex;
    align-items: center;
    border-radius: 7px;
    margin-bottom: 3px;
    box-sizing: border-box;
}

.mobile-lang-switcher .custom-lang-option:last-child {
    margin-bottom: 0;
}

.mobile-lang-switcher .custom-lang-option:hover:not(.active) {
    background: var(--accent-light);
    color: var(--accent);
}

.mobile-lang-switcher .custom-lang-option.active {
    background: var(--accent);
    color: white;
    font-weight: 700;
}

.mobile-lang-switcher .custom-lang-option.active:hover {
    background: var(--accent-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-lang-switcher {
        margin-top: 18px;
        padding-top: 18px;
    }

    .mobile-lang-switcher .lang-switcher-wrapper {
        padding: 10px 14px;
        gap: 8px;
    }

    .mobile-lang-switcher .lang-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .mobile-lang-switcher .lang-text {
        font-size: 13px;
    }

    .mobile-lang-switcher .custom-lang-selected {
        padding: 9px 11px;
        min-height: 38px;
    }

    .custom-lang-select {
        min-width: auto;
        width: 100%;
    }
    
    .custom-lang-dropdown {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .mobile-lang-switcher {
        margin-top: 16px;
        padding-top: 16px;
    }

    .mobile-lang-switcher .lang-switcher-wrapper {
        padding: 10px 12px;
        gap: 8px;
    }

    .mobile-lang-switcher .lang-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .mobile-lang-switcher .lang-text {
        font-size: 13px;
    }

    .mobile-lang-switcher .custom-lang-selected {
        padding: 8px 10px;
        min-height: 36px;
    }

    .mobile-lang-switcher .custom-lang-option {
        padding: 10px 12px;
        font-size: 13px;
    }
}

