/* Apple Official Aesthetic Design System */
:root {
	--bg-primary: #000000;
	--bg-secondary: #161617;
	--bg-tertiary: #1d1d1f;
	--bg-light: #f5f5f7;
	--bg-card: #121214;
	--text-primary: #f5f5f7;
	--text-secondary: #86868b;
	--text-dark: #1d1d1f;
	--text-dark-sub: #6e6e73;
	--accent-blue: #2997ff;
	--accent-blue-hover: #0077ed;
	--accent-pill: #0071e3;
	--apple-nav-bg: rgba(22, 22, 23, 0.82);
	--apple-nav-border: rgba(255, 255, 255, 0.08);
	--font-apple: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--radius-apple: 18px;
	--radius-pill: 980px;
	--shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.25);
	--shadow-glow: 0 12px 40px rgba(41, 151, 255, 0.2);
	--trans-smooth: all 0.32s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background-color: var(--bg-primary);
	color: var(--text-primary);
	font-family: var(--font-apple);
	font-size: 17px;
	line-height: 1.47059;
	letter-spacing: -0.022em;
	overflow-x: hidden;
}

button {
	font-family: inherit;
	border: none;
	background: none;
	cursor: pointer;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ================= NAV BAR ================= */
.apple-nav-wrapper {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: var(--apple-nav-bg);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--apple-nav-border);
	transition: background 0.3s ease;
}

.apple-nav-container {
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 22px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-links-list {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 28px;
	height: 100%;
}

.nav-item {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.2s ease, opacity 0.2s ease;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}

.nav-item:hover, .nav-item.active {
	color: #ffffff;
}

.nav-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.85);
	transition: color 0.2s;
	background: none;
	border: none;
	padding: 6px;
	cursor: pointer;
	position: relative;
}

.nav-item-icon:hover {
	color: #ffffff;
}

.bag-badge {
	position: absolute;
	top: 2px;
	right: -2px;
	background: var(--accent-blue);
	color: white;
	font-size: 9px;
	font-weight: 700;
	height: 14px;
	min-width: 14px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 3px;
}

/* Nav Submenu Tray */
.nav-dropdown-tray {
	position: absolute;
	top: 48px;
	left: 0;
	width: 100%;
	background: rgba(22, 22, 23, 0.96);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	padding: 32px 0 44px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
	animation: slideDownFade 0.24s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 998;
}

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

.dropdown-grid {
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
}

.dropdown-section-title {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--text-secondary);
	margin-bottom: 16px;
	font-weight: 600;
}

.dropdown-product-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dropdown-product-item {
	font-size: 20px;
	font-weight: 600;
	color: #f5f5f7;
	transition: color 0.15s;
	display: inline-block;
}

.dropdown-product-item:hover {
	color: var(--accent-blue);
}

.dropdown-quick-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dropdown-link-item {
	font-size: 12px;
	color: #e3e3e8;
	transition: color 0.15s;
	display: flex;
	align-items: center;
	gap: 6px;
}

.dropdown-link-item:hover {
	color: var(--accent-blue);
}

/* Ribbon Banner */
.ribbon-banner {
	background: #1d1d1f;
	color: #f5f5f7;
	padding: 12px 20px;
	text-align: center;
	font-size: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background 0.3s;
}

.ribbon-banner a {
	color: var(--accent-blue);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.ribbon-banner a:hover {
	text-decoration: underline;
}

/* ================= SEARCH OVERLAY ================= */
.search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 60px;
	animation: fadeIn 0.2s ease;
}

.search-box-inner {
	width: 100%;
	max-width: 680px;
	padding: 0 20px;
}

.search-input-wrapper {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 12px 18px;
	gap: 12px;
	margin-bottom: 24px;
}

.search-input-wrapper input {
	flex: 1;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 20px;
	outline: none;
	font-family: inherit;
}

.search-input-wrapper input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.search-quick-title {
	font-size: 12px;
	color: var(--text-secondary);
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-bottom: 12px;
}

.search-suggestions {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.search-suggestion-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #e5e5ea;
	font-size: 15px;
	padding: 10px 14px;
	border-radius: 8px;
	text-align: left;
	transition: background 0.15s, color 0.15s;
}

.search-suggestion-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--accent-blue);
}

/* ================= BAG OVERLAY ================= */
.bag-tray {
	position: absolute;
	top: 48px;
	right: 40px;
	width: 320px;
	background: rgba(26, 26, 28, 0.96);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
	padding: 24px;
	z-index: 999;
	animation: slideDownFade 0.2s ease;
}

.bag-title {
	font-size: 19px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 14px;
}

.bag-items-list {
	max-height: 280px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 20px;
}

.bag-item-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.05);
	padding: 10px;
	border-radius: 10px;
}

.bag-item-card img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 6px;
	background: #252528;
}

.bag-item-info {
	flex: 1;
}

.bag-item-name {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
}

.bag-item-sub {
	font-size: 12px;
	color: var(--text-secondary);
}

.bag-item-price {
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}

/* ================= HERO SECTIONS ================= */
.hero-section {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 55px 20px 30px;
	overflow: hidden;
	box-sizing: border-box;
}

.hero-pro {
	background: radial-gradient(circle at 50% 30%, #151516 0%, #000000 70%);
	color: #f5f5f7;
	border-bottom: 12px solid #000;
}

.hero-16 {
	background: radial-gradient(circle at 50% 40%, #101928 0%, #080d16 70%);
	color: #f5f5f7;
	border-bottom: 12px solid #000;
}

.hero-watch {
	background: radial-gradient(circle at 50% 20%, #1c1c1e 0%, #000000 80%);
	color: #f5f5f7;
	border-bottom: 12px solid #000;
}

.hero-title {
	font-size: clamp(38px, 6.5vw, 64px);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.0625;
	margin-bottom: 6px;
}

.hero-pro-title {
	background: linear-gradient(180deg, #ffffff 30%, #c4ab8e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-size: clamp(20px, 3.5vw, 28px);
	font-weight: 400;
	letter-spacing: 0.004em;
	color: #f5f5f7;
	margin-bottom: 14px;
}

.apple-intelligence-glow {
	background: linear-gradient(90deg, #ff79c6 0%, #bd93f9 25%, #8be9fd 50%, #50fa7b 75%, #ffb86c 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: shineGradient 6s linear infinite;
	font-weight: 600;
}

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

.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.btn-apple-primary {
	background: var(--accent-pill);
	color: #ffffff;
	padding: 10px 22px;
	font-size: 15px;
	font-weight: 500;
	border-radius: var(--radius-pill);
	transition: background 0.2s, transform 0.15s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.btn-apple-primary:hover {
	background: var(--accent-blue-hover);
	transform: scale(1.02);
}

.btn-apple-secondary {
	background: rgba(255, 255, 255, 0.12);
	color: #2997ff;
	border: 1px solid rgba(41, 151, 255, 0.4);
	padding: 10px 22px;
	font-size: 15px;
	font-weight: 500;
	border-radius: var(--radius-pill);
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.btn-apple-secondary:hover {
	background: var(--accent-pill);
	color: #fff;
	border-color: transparent;
}

.hero-tagline {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 20px;
}

/* Color Switcher Pill */
.color-swatch-container {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	padding: 6px 14px;
	border-radius: 20px;
	gap: 12px;
	margin-bottom: 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.color-dot {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform 0.2s, border-color 0.2s;
}

.color-dot:hover {
	transform: scale(1.15);
}

.color-dot.active {
	border-color: #ffffff;
	transform: scale(1.2);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.color-name-label {
	font-size: 13px;
	color: #d2d2d7;
	font-weight: 500;
	margin-left: 4px;
}

/* Visual Phone Showcase Container */
.device-showcase-box {
	position: relative;
	width: 100%;
	max-width: 820px;
	min-height: 380px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

/* Stylized iPhone Pro Render */
.iphone-pro-frame {
	position: relative;
	width: 310px;
	height: 520px;
	border-radius: 46px;
	padding: 10px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 0 4px rgba(255, 255, 255, 0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.screen-content {
	width: 100%;
	height: 100%;
	border-radius: 38px;
	background: #000;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 14px 16px 20px;
}

/* Dynamic Island */
.dynamic-island {
	width: 110px;
	height: 28px;
	background: #000;
	border-radius: 20px;
	margin: 2px auto 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
	box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.1);
	z-index: 10;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dynamic-island:hover, .dynamic-island.expanded {
	width: 220px;
	height: 38px;
}

.island-sound-wave {
	display: flex;
	align-items: center;
	gap: 2px;
	height: 12px;
}

.wave-bar {
	width: 2px;
	background: #50fa7b;
	border-radius: 1px;
	animation: bounceWave 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 7px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 14px; animation-delay: 0.3s; }

@keyframes bounceWave {
	0%, 100% { transform: scaleY(0.4); }
	50% { transform: scaleY(1.2); }
}

/* Camera Control Interactive Bar */
.camera-control-pill {
	position: absolute;
	bottom: -22px;
	right: -8px;
	background: rgba(30, 30, 32, 0.9);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 6px 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
	font-size: 11px;
	color: #fff;
	z-index: 20;
}

.camera-control-pill span {
	color: #ff9f0a;
	font-weight: 600;
}

/* ================= 2-COLUMN BENTO GRID ================= */
.bento-grid-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px 16px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

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

.bento-card {
	background: #161617;
	border-radius: var(--radius-apple);
	padding: 48px 36px 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 520px;
	justify-content: space-between;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform 0.3s ease, border-color 0.3s;
}

.bento-card:hover {
	border-color: rgba(255, 255, 255, 0.18);
}

.bento-card-light {
	background: #f5f5f7;
	color: var(--text-dark);
}

.bento-card-light .bento-card-title,
.bento-card-light .bento-card-sub {
	color: var(--text-dark);
}

.bento-card-title {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.1;
	margin-bottom: 6px;
}

.bento-card-sub {
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 360px;
	margin-bottom: 16px;
}

.bento-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
}

.bento-visual-wrapper {
	width: 100%;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* ================= APPLE INTELLIGENCE LAB INTERACTIVE ================= */
.apple-ai-section {
	max-width: 1280px;
	margin: 40px auto;
	padding: 40px 24px;
	background: linear-gradient(180deg, #111113 0%, #18181b 100%);
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ai-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 36px;
}

.ai-title {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 700;
	margin-bottom: 12px;
}

.ai-subtitle {
	font-size: 19px;
	color: var(--text-secondary);
}

.ai-tabs-row {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.ai-tab-btn {
	padding: 10px 20px;
	border-radius: var(--radius-pill);
	font-size: 14px;
	font-weight: 600;
	color: var(--text-secondary);
	background: rgba(255, 255, 255, 0.06);
	transition: all 0.2s;
}

.ai-tab-btn.active {
	background: #ffffff;
	color: #000000;
	box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

.ai-playground-box {
	background: #000000;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 32px;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

/* Glowing Siri Screen Border Effect */
.siri-glowing-edge {
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: 20px;
	box-shadow: inset 0 0 35px 6px rgba(255, 120, 200, 0.6),
				inset 0 0 60px 10px rgba(100, 180, 255, 0.5),
				inset 0 0 100px 20px rgba(80, 250, 123, 0.3);
	animation: siriPulse 3s ease-in-out infinite alternate;
}

@keyframes siriPulse {
	0% { opacity: 0.6; filter: hue-rotate(0deg); }
	100% { opacity: 1; filter: hue-rotate(90deg); }
}

/* ================= APPLE TV+ STREAM CAROUSEL ================= */
.tv-carousel-section {
	padding: 60px 0 30px;
	overflow: hidden;
	background: #000;
}

.tv-carousel-header {
	max-width: 1280px;
	margin: 0 auto 24px;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.tv-carousel-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding: 10px 24px 30px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.tv-carousel-track::-webkit-scrollbar {
	display: none;
}

.tv-movie-card {
	flex: 0 0 380px;
	height: 220px;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	scroll-snap-align: start;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	background-size: cover;
	background-position: center;
}

.tv-movie-card:hover {
	transform: scale(1.03);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
}

.tv-movie-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
}

.tv-movie-content {
	position: relative;
	z-index: 2;
}

.tv-genre-badge {
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

.tv-movie-title {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.btn-stream-now {
	background: #ffffff;
	color: #000;
	padding: 6px 16px;
	border-radius: var(--radius-pill);
	font-size: 12px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background 0.2s;
}

.btn-stream-now:hover {
	background: #e5e5ea;
}

/* ================= MODAL DIALOGS ================= */
.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	animation: fadeIn 0.2s ease;
}

.modal-card {
	background: #1c1c1e;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 24px;
	max-width: 680px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 36px;
	position: relative;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

.modal-close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: background 0.2s;
}

.modal-close-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Configurator Options */
.config-section-title {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin: 20px 0 10px;
}

.config-grid-options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 16px;
}

.config-option-card {
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 16px;
	cursor: pointer;
	text-align: left;
	transition: all 0.2s;
	background: rgba(255, 255, 255, 0.03);
}

.config-option-card:hover {
	border-color: rgba(255, 255, 255, 0.4);
}

.config-option-card.selected {
	border-color: var(--accent-blue);
	background: rgba(41, 151, 255, 0.08);
}

/* ================= FOOTER ================= */
.apple-footer {
	background: #161617;
	color: var(--text-secondary);
	font-size: 12px;
	line-height: 1.33337;
	padding: 34px 20px 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
	max-width: 1024px;
	margin: 0 auto;
}

.footer-disclaimers {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 18px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 11px;
}

.footer-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	color: #d2d2d7;
	font-size: 12px;
}

.footer-directory {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-bottom: 28px;
}

@media (max-width: 768px) {
	.footer-directory {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.nav-links-list {
		display: none;
	}
	.mobile-menu-btn {
		display: block !important;
	}
}

.footer-col-title {
	font-weight: 600;
	color: #f5f5f7;
	margin-bottom: 10px;
	font-size: 12px;
}

.footer-col-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-col-list li a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.footer-legal-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 18px;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-legal-links {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.footer-legal-links a:hover {
	text-decoration: underline;
}

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