/* =========================================================
   Nautica Web Shop — Footer
   ========================================================= */

.nws-footer {
	width: 100%;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	line-height: 1.6;
}

/* ── Top: logo + colonne ── */
.nws-footer__top {
	padding: 56px 24px 40px;
}

.nws-footer__inner {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 220px repeat(auto-fit, minmax(160px, 1fr));
	gap: 40px 32px;
	align-items: start;
}

/* ── Logo ── */
.nws-footer__logo-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nws-footer__logo-link {
	display: inline-block;
}

.nws-footer__logo {
	max-width: 180px;
	max-height: 70px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: left center;
}

.nws-footer__site-name {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	letter-spacing: -.01em;
}

/* ── Colonne info ── */
.nws-footer__col-title {
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: .1em;
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nws-footer__col-body {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	line-height: 1.7;
	margin-bottom: 12px;
}

.nws-footer__col-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.nws-footer__col-links a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color .2s ease;
}

.nws-footer__col-links a::before {
	content: '›';
	opacity: .5;
	font-size: 16px;
	line-height: 1;
}

.nws-footer__col-links a:hover {
	color: #fff;
}

/* ── Bottom bar ── */
.nws-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 18px 24px;
}

.nws-footer__bottom-inner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

/* ── Menu footer ── */
.nws-footer__nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 0;
}

.nws-footer__nav a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 12px;
	padding: 3px 12px;
	transition: color .2s;
	position: relative;
}

.nws-footer__nav a + a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 12px;
	width: 1px;
	background: rgba(255, 255, 255, 0.2);
}

.nws-footer__nav a:hover {
	color: #fff;
}

.nws-footer__copyright {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

/* ── Mobile ── */
@media (max-width: 768px) {
	.nws-footer__top {
		padding: 36px 20px 28px;
	}

	.nws-footer__inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.nws-footer__logo {
		max-width: 140px;
	}

	.nws-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.nws-footer__nav {
		gap: 4px;
	}

	.nws-footer__nav a {
		padding: 4px 10px;
	}
}
