:root {
	--brand-shell-border: #ececec;
	--brand-shell-text: #111827;
	--brand-shell-muted: #6b7280;
	--brand-shell-footer-bg: #111827;
	--brand-shell-footer-text: #d1d5db;
}

.brand-shell-page .col-full {
	max-width: 1240px;
}

/* Header shell */
.brand-shell-masthead.site-header {
	background: #fff;
	border-bottom: 1px solid var(--brand-shell-border);
	padding: 14px 0;
}

.brand-shell-header-inner {
	display: flex;
	align-items: center;
	gap: 28px;
}

.brand-shell-logo {
	font-size: 30px;
	font-weight: 800;
	color: var(--brand-shell-text);
}

.brand-shell-nav {
	flex: 1;
}

.brand-shell-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 28px;
}

.brand-shell-nav a {
	color: var(--brand-shell-text);
	font-size: 28px;
	font-weight: 700;
}

.brand-shell-header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.brand-shell-header-actions .woocommerce-product-search {
	margin: 0;
}

.brand-shell-header-actions input[type='search'] {
	min-width: 280px;
	height: 44px;
	border: 1px solid #d1d5db;
	border-radius: 7px;
	padding: 0 12px;
}

.brand-shell-header-actions button[type='submit'] {
	display: none;
}

.brand-shell-account-link,
.brand-shell-cart-link {
	font-size: 22px;
	line-height: 1;
	color: var(--brand-shell-text);
}

/* Main content shell */
.brand-shell-content-inner {
	padding-top: 28px;
	padding-bottom: 40px;
}

.brand-shell-banner {
	min-height: 420px;
	border-radius: 10px;
	background: linear-gradient(120deg, #fb7185 0%, #f43f5e 35%, #e11d48 100%);
	display: flex;
	align-items: center;
	padding: 56px;
	color: #fff;
}

.brand-shell-banner-content {
	max-width: 620px;
}

.brand-shell-banner h1 {
	margin: 0 0 14px;
	font-size: 48px;
	line-height: 1.15;
	color: #fff;
}

.brand-shell-banner p {
	margin: 0 0 24px;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.92);
}

.brand-shell-banner-btn {
	display: inline-block;
	background: #fff;
	color: #e11d48;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 700;
}

.brand-shell-new-products {
	padding-top: 40px;
}

.brand-shell-new-products h2 {
	font-size: 28px;
	margin: 0 0 20px;
}

/* Footer shell */
.brand-shell-footer.site-footer {
	background: var(--brand-shell-footer-bg);
	color: var(--brand-shell-footer-text);
	padding: 38px 0 24px;
}

.brand-shell-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin-bottom: 16px;
}

.brand-shell-footer-links a {
	color: #cbd5e1;
	font-size: 14px;
}

.brand-shell-footer-links a:hover {
	color: #fff;
}

.brand-shell-footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 14px;
	font-size: 13px;
	color: #9ca3af;
}

@media (max-width: 1024px) {
	.brand-shell-header-inner {
		flex-wrap: wrap;
	}

	.brand-shell-nav {
		order: 3;
		width: 100%;
	}

	.brand-shell-nav ul {
		gap: 16px;
		flex-wrap: wrap;
	}

	.brand-shell-nav a {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	.brand-shell-logo {
		font-size: 24px;
	}

	.brand-shell-header-actions input[type='search'] {
		min-width: 180px;
	}

	.brand-shell-banner {
		min-height: 300px;
		padding: 32px;
	}

	.brand-shell-banner h1 {
		font-size: 34px;
	}

	.brand-shell-banner p {
		font-size: 16px;
	}
}

