:root {
	--bg: #f8f7f3;
	--surface: #ffffff;
	--ink: #0f1014;
	--muted: #6f7279;
	--border: #e5e1d8;
	--accent: #0f1014;
	--accent-2: #e44463;
	--shadow-soft: 0 18px 45px rgba(15, 16, 20, 0.08);
	--shadow-hover: 0 24px 60px rgba(15, 16, 20, 0.12);
	--radius: 18px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: 'Manrope', 'Open Sans', sans-serif;
	font-weight: 400;
	color: var(--ink);
	font-size: 14px;
	line-height: 1.6;
	width: 100%;
	background: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Playfair Display', 'Manrope', serif;
	font-weight: 600;
	color: var(--ink);
	margin: 0 0 0.35em;
}

h1 {
	font-size: 40px;
	line-height: 1.1;
}

h2 {
	font-size: 32px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
}

p {
	margin: 0 0 12px;
	color: var(--muted);
}

a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: var(--accent-2);
}

img {
	max-width: 100%;
}

.fa {
	font-size: 14px;
}

.container {
	max-width: 1180px;
	width: 100%;
}

.btn {
	padding: 10px 18px;
	font-weight: 600;
	border-radius: 999px;
	border: 1px solid transparent;
	text-transform: none;
}

.btn-lg {
	padding: 14px 24px;
}

.btn-sm {
	padding: 8px 14px;
	font-size: 12px;
}

.btn-primary {
	background: linear-gradient(120deg, var(--accent), var(--accent-2));
	border-color: var(--accent);
	color: #fff;
	box-shadow: 0 10px 30px rgba(15, 16, 20, 0.18);
}

.btn-primary:hover {
	color: #fff;
	background: linear-gradient(120deg, var(--accent), #c92c54);
}

.btn-default,
.btn-ghost {
	background: transparent;
	border-color: var(--border);
	color: var(--ink);
}

.btn-ghost {
	border-color: rgba(15, 16, 20, 0.18);
}

.btn-ghost:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.btn:focus {
	outline: none;
	box-shadow: none;
}

.form-control {
	border-radius: 14px;
	border: 1px solid var(--border);
	box-shadow: none;
	padding: 10px 14px;
	height: auto;
}

.form-control:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(228, 68, 99, 0.12);
}

#top.utility-bar {
	background: linear-gradient(90deg, rgba(15, 16, 20, 0.92), rgba(15, 16, 20, 0.82));
	border: none;
	margin: 0 0 10px 0;
	color: #f3f2ef;
}

.utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 10px 0;
}

.utility-left {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.utility-text {
	color: #dad7cf;
}

.pill {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.22);
	color: #fff;
}

.pill-new {
	background: rgba(228, 68, 99, 0.18);
	border-color: rgba(228, 68, 99, 0.4);
	color: #fff;
}

.pill-outline {
	border: 1px solid var(--accent);
	color: var(--accent);
	background: transparent;
}

.pill-ghost {
	border: 1px dashed var(--border);
	color: var(--ink);
}

.utility-right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.utility-link {
	color: #f3f2ef;
	display: inline-flex;
	gap: 6px;
	align-items: center;
	font-weight: 600;
}

.utility-link:hover {
	color: #fff;
}

.utility-picker #currency .btn-link,
.utility-picker #language .btn-link {
	color: #f3f2ef;
	border: none;
	padding: 0;
}

.utility-picker .dropdown-menu {
	border-radius: 12px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	backdrop-filter: blur(10px);
	background: rgba(248, 247, 243, 0.9);
	border-bottom: 1px solid var(--border);
}

.header-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 18px 0 16px;
}

.brand {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 180px;
}

.brand-mark img {
	max-height: 54px;
}

.brand-text {
	font-size: 22px;
	font-weight: 700;
	color: var(--accent);
}

.brand-tagline {
	font-size: 11px;
	letter-spacing: 0.1em;
	color: var(--muted);
	text-transform: uppercase;
}

.header-search {
	flex: 1;
}

#search {
	width: 100%;
	margin-bottom: 0;
}

#search .form-control {
	border-radius: 14px 0 0 14px;
	border-right: none;
	background: #fff;
}

#search .btn {
	border-radius: 0 14px 14px 0;
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
	padding: 10px 16px;
}

#search .btn:hover {
	background: var(--accent-2);
	border-color: var(--accent-2);
}

.search-prompts {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.search-prompts span {
	background: #fff;
	border: 1px dashed var(--border);
	border-radius: 999px;
	padding: 6px 12px;
	font-size: 12px;
	color: var(--muted);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.icon-link {
	color: var(--accent);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 10px 12px;
	display: inline-flex;
	gap: 8px;
	align-items: center;
	font-weight: 600;
}

.icon-link:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.cart-wrapper #cart {
	width: auto;
}

#cart {
	margin-bottom: 0;
}

#cart .btn {
	border-radius: 12px;
	background: var(--accent);
	border: none;
	padding: 10px 14px;
}

#cart .btn:hover {
	background: var(--accent-2);
}

#cart .dropdown-menu {
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
}

.nav-shell {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: #fff;
}

#menu.nav-fashion {
	margin: 0;
	border: none;
	min-height: unset;
}

#menu .navbar-nav > li > a {
	color: var(--ink);
	padding: 14px 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

#menu .navbar-nav > li > a:hover,
#menu .navbar-nav > li.open > a {
	color: var(--accent-2);
	background: transparent;
}

#menu .dropdown-menu {
	padding-bottom: 0;
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 14px 16px;
	box-shadow: var(--shadow-soft);
}

#menu .dropdown-inner {
	display: flex;
	gap: 22px;
}

#menu .dropdown-inner ul {
	display: block;
	min-width: 150px;
}

#menu .dropdown-inner a {
	min-width: 160px;
	display: block;
	padding: 3px 20px;
	clear: both;
	line-height: 20px;
	color: #333333;
	font-size: 12px;
}

#menu .dropdown-inner li a:hover {
	color: var(--accent-2);
}

#menu .see-all {
	display: block;
	margin-top: 0.5em;
	border-top: 1px solid #ddd;
	padding: 3px 20px;
	border-bottom: 1px solid #ddd;
	color: var(--accent);
	font-weight: 700;
}

#menu .see-all:hover,
#menu .see-all:focus {
	text-decoration: none;
	color: var(--accent-2);
	background-color: #f7f7f7;
}

#menu #category {
	float: left;
	padding-left: 15px;
	font-size: 16px;
	font-weight: 700;
	line-height: 40px;
	color: #fff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

#menu .navbar-toggle {
	border-radius: 12px;
	border: 1px solid var(--border);
	color: var(--ink);
	font-size: 15px;
	padding: 8px 9px;
}

.nav-cta {
	display: flex;
	gap: 10px;
	align-items: center;
}

.fashion-hero {
	padding: 48px 0 34px;
}

.hero-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
	align-items: center;
}

.hero-copy h1 {
	font-size: 48px;
}

.hero-copy .lede {
	font-size: 16px;
	max-width: 560px;
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 16px 0;
}

.hero-meta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--muted);
}

.hero-meta i {
	margin-right: 6px;
	color: var(--accent-2);
}

.hero-visual {
	display: flex;
	justify-content: center;
}

.hero-card {
	background: linear-gradient(160deg, #111827, #1f2430);
	color: #fff;
	padding: 28px;
	border-radius: 22px;
	box-shadow: var(--shadow-soft);
	width: 100%;
	max-width: 420px;
}

.hero-card h3 {
	color: #fff;
}

.hero-card p {
	color: #d5d6da;
}

.chips {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.chips span {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	padding: 6px 10px;
	font-size: 12px;
	color: #f2f2f4;
}

.eyebrow {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 6px;
}

.layout-shell {
	padding-bottom: 32px;
}

.home-highlights {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin: 20px 0 26px;
}

.highlight-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 18px 20px;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-soft);
	min-height: 140px;
}

.highlight-card h4 {
	margin-bottom: 6px;
}

.home-collections {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
	margin-bottom: 20px;
}

.collection-tile {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	padding: 22px;
	min-height: 200px;
	color: #0f1014;
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--border);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-tile:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
	color: var(--accent);
}

.collection-tile .tile-copy {
	max-width: 260px;
}

.collection-neutral {
	background: linear-gradient(135deg, #fff, #f1ede6);
}

.collection-dark {
	background: linear-gradient(135deg, #101319, #1c202a);
	color: #f5f5f7;
}

.collection-blend {
	background: linear-gradient(135deg, #fff1f5, #f5f7ff);
}

.home-badges {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin-bottom: 24px;
}

.badge {
	background: #fff;
	border: 1px dashed var(--border);
	border-radius: 14px;
	padding: 14px 16px;
}

.badge-title {
	display: block;
	font-weight: 700;
	color: var(--accent);
}

.badge-meta {
	display: block;
	font-size: 13px;
	color: var(--muted);
}

.breadcrumb {
	margin: 0 0 20px 0;
	padding: 12px 0;
	background: none;
	border-bottom: 1px solid var(--border);
}

.breadcrumb i {
	font-size: 15px;
}

.breadcrumb > li {
	padding: 0 10px 0 0;
	position: relative;
	white-space: nowrap;
}

.breadcrumb > li + li:before {
	content: "/";
	padding: 0 8px 0 2px;
	color: var(--muted);
}

.product-layout {
	margin-bottom: 18px;
}

.product-thumb {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
}

.product-thumb .image {
	position: relative;
	padding-top: 120%;
	overflow: hidden;
}

.product-thumb .image a {
	display: block;
}

.product-thumb .image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-thumb .caption {
	padding: 14px 16px;
	min-height: auto;
	flex: 1;
}

.product-thumb .caption h4 {
	font-size: 16px;
	margin-bottom: 8px;
}

.product-thumb .caption p {
	color: var(--muted);
	font-size: 13px;
}

.product-thumb .rating {
	padding-bottom: 8px;
	color: #f0a500;
}

.rating .fa-stack {
	font-size: 8px;
}

.rating .fa-star-o {
	color: #999;
	font-size: 15px;
}

.rating .fa-star {
	color: #fc0;
	font-size: 15px;
}

.rating .fa-star + .fa-star-o {
	color: #e69500;
}

.product-thumb .price {
	color: var(--accent);
	font-weight: 700;
	font-size: 16px;
}

.product-thumb .price-new {
	color: var(--accent-2);
	margin-right: 6px;
}

.product-thumb .price-old {
	color: #999;
	text-decoration: line-through;
	margin-left: 6px;
}

.product-thumb .price-tax {
	color: #999;
	font-size: 12px;
	display: block;
}

.product-thumb .button-group {
	border-top: 1px solid var(--border);
	background-color: #f9f7f3;
	overflow: visible;
	display: flex;
	gap: 8px;
	padding: 0 16px 16px;
}

.product-thumb .button-group button {
	width: 100%;
	border: 1px solid var(--border);
	display: inline-block;
	background-color: #f9f7f3;
	color: var(--accent);
	line-height: 1.2;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	padding: 10px;
	border-radius: 12px;
}

.product-thumb .button-group button:first-child {
	background: linear-gradient(120deg, var(--accent), var(--accent-2));
	color: #fff;
	border-color: var(--accent);
}

.product-thumb .button-group button:hover {
	color: var(--accent);
	background-color: #ede9e0;
	text-decoration: none;
	cursor: pointer;
	border-color: var(--accent);
}

.product-layout.product-list .product-thumb {
	flex-direction: row;
}

.product-layout.product-list .product-thumb .image {
	float: none;
	padding: 0;
	width: 38%;
	min-height: 260px;
}

.product-layout.product-list .product-thumb .caption {
	margin-left: 0;
	padding: 22px;
}

.product-layout.product-list .product-thumb .button-group {
	border-left: 1px solid var(--border);
	border-top: none;
	flex-direction: column;
	justify-content: center;
	width: 220px;
}

.product-grid .product-thumb .image {
	float: none;
}

h2.price {
	margin: 0;
}

#content {
	min-height: 320px;
}

#column-left .product-thumb,
#column-right .product-thumb {
	box-shadow: none;
}

.table {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
}

.table > thead > tr > th {
	border-bottom: 1px solid var(--border);
}

.table > tbody > tr > td {
	border-top: 1px solid var(--border);
}

.pagination > li > a,
.pagination > li > span {
	border-radius: 10px;
	margin: 0 4px;
	border: 1px solid var(--border);
	color: var(--accent);
}

.pagination > li > a:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.alert {
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid var(--border);
}

.buttons {
	margin: 1em 0;
}

.panel {
	border-radius: 14px;
	border: 1px solid var(--border);
	box-shadow: none;
}

.panel-heading {
	background: #fff;
	border-bottom: 1px solid var(--border);
	font-weight: 700;
}

.list-group-item {
	border: 1px solid var(--border);
	margin-bottom: 8px;
	border-radius: 10px;
}

footer.fashion-footer {
	margin-top: 34px;
	padding-top: 34px;
	padding-bottom: 22px;
	background-color: #0f1014;
	border-top: 1px solid #1e2029;
	color: #e2e0d8;
}

footer hr {
	border-top: none;
	border-bottom: 1px solid #666;
}

footer a {
	color: #ccc;
}

footer a:hover {
	color: #fff;
}

.footer-hero {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
	color: #fff;
	margin: 0 0 8px;
}

.footer-brand p {
	color: #cfd0d4;
	max-width: 520px;
}

.footer-cta {
	max-width: 320px;
}

.footer-cta-title {
	color: #fff;
	font-weight: 700;
	margin-bottom: 6px;
}

.footer-cta-copy {
	color: #cfd0d4;
	margin-bottom: 10px;
}

.footer-grid {
	padding: 22px 0;
}

.footer-grid h5 {
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.footer-grid a {
	color: #cfd0d4;
}

.footer-grid a:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 14px;
}

.footer-powered {
	color: #cfd0d4;
}

.footer-updates {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #cfd0d4;
}

.footer-note {
	font-size: 13px;
}

.footer-dots span {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #e44463;
	border-radius: 50%;
	margin-right: 4px;
}

hr {
	border-color: var(--border);
}

@media (max-width: 991px) {
	.header-inner {
		flex-direction: column;
		align-items: stretch;
	}

	.header-actions {
		justify-content: flex-start;
	}

	.product-layout.product-list .product-thumb {
		flex-direction: column;
	}

	.product-layout.product-list .product-thumb .image {
		width: 100%;
		min-height: 220px;
		padding-top: 120%;
	}

	.product-layout.product-list .product-thumb .button-group {
		width: 100%;
		border-left: none;
		border-top: 1px solid var(--border);
		flex-direction: row;
	}

	.nav-cta {
		display: none;
	}
}

@media (max-width: 767px) {
	#top.utility-bar {
		display: none;
	}

	.hero-copy h1 {
		font-size: 36px;
	}

	.header-actions {
		flex-wrap: wrap;
	}

	.brand-tagline {
		display: none;
	}

	#menu .navbar-nav > li > a {
		padding: 10px 12px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
