@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Cormorant+Garamond:wght@600;700&display=swap");

:root {
	--bg: #f6f2eb;
	--surface: rgba(255, 255, 255, 0.9);
	--ink: #0d0c11;
	--muted: #6c6a73;
	--border: #ded5c7;
	--accent: #0f1117;
	--accent-2: #d6b06b;
	--accent-soft: rgba(214, 176, 107, 0.22);
	--shadow-soft: 0 24px 65px rgba(13, 12, 17, 0.14);
	--shadow-hover: 0 32px 80px rgba(13, 12, 17, 0.2);
	--radius: 18px;
}

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

body {
	font-family: 'Sora', 'Manrope', 'Open Sans', sans-serif;
	font-weight: 400;
	color: var(--ink);
	font-size: 14px;
	line-height: 1.65;
	width: 100%;
	background: radial-gradient(circle at 20% 20%, #ffffff 0%, #f1e7d7 45%, #ede7de 80%);
}

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

h1 { font-size: 44px; line-height: 1.05; }
h2 { font-size: 34px; }
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%; display: block; }

.fa { font-size: 14px; }

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

.btn {
	padding: 10px 18px;
	font-weight: 600;
	border-radius: 999px;
	border: 1px solid transparent;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 12px;
	transition: all 0.2s ease;
}

.btn-lg { padding: 14px 26px; font-size: 13px; }
.btn-sm { padding: 8px 14px; font-size: 11px; letter-spacing: 0.06em; }

.btn-primary {
	background: linear-gradient(125deg, var(--accent), var(--accent-2));
	border-color: var(--accent);
	color: #fff;
	box-shadow: 0 16px 35px rgba(13, 12, 17, 0.18);
}
.btn-primary:hover { color: #fff; background: linear-gradient(125deg, var(--accent), #c79c59); }

.btn-ghost, .btn-default {
	background: transparent;
	border-color: var(--border);
	color: var(--ink);
}
.btn-ghost:hover, .btn-default: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;
	background: #fff;
}
.form-control:focus {
	border-color: var(--accent-2);
	box-shadow: 0 0 0 3px var(--accent-soft);
}

#top.utility-bar {
	background: rgba(12, 12, 18, 0.92);
	border: none;
	margin: 0 0 10px 0;
	color: #f4f1ea;
	backdrop-filter: blur(8px);
}
.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: #ddd7cb; }

.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.18);
	color: #fff;
}
.pill-new { background: rgba(214, 176, 107, 0.2); border-color: rgba(214, 176, 107, 0.5); }
.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: #f4f1ea; 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: #f4f1ea; border: none; padding: 0; }
.utility-picker .dropdown-menu { border-radius: 12px; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.85);
	border-bottom: 1px solid rgba(0,0,0,0.03);
	box-shadow: 0 12px 40px rgba(13, 12, 17, 0.06);
}
.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: 56px; filter: drop-shadow(0 10px 18px rgba(0,0,0,0.12)); }
.brand-text { font-size: 24px; font-weight: 700; color: var(--accent); letter-spacing: 0.02em; }
.brand-tagline { font-size: 11px; letter-spacing: 0.12em; 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 rgba(13, 12, 17, 0.08); border-radius: 12px; padding: 10px 12px; display: inline-flex; gap: 8px; align-items: center; font-weight: 600; background: rgba(255,255,255,0.9); box-shadow: 0 10px 25px rgba(13, 12, 17, 0.08); }
.icon-link:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--shadow-soft); }

.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: 14px; box-shadow: var(--shadow-soft); border: 1px solid var(--border); }

.nav-shell { border-top: 1px solid rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04); background: rgba(255,255,255,0.92); }
#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.12em; font-size: 12px; }
#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: 16px 18px; box-shadow: var(--shadow-soft); background: #fff; }
#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; line-height: 20px; color: #333; 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: 6px 20px; border-bottom: 1px solid #ddd; color: var(--accent); font-weight: 700; }
#menu .see-all:hover, #menu .see-all:focus { color: var(--accent-2); background-color: #f7f7f7; }
#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: 54px 0 38px; position: relative; }
.fashion-hero::before { content: ""; position: absolute; inset: 10% 5% 5% 45%; background: radial-gradient(circle, rgba(214,176,107,0.16), transparent 55%); filter: blur(60px); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; align-items: center; position: relative; z-index: 1; }
.hero-copy h1 { font-size: 50px; }
.hero-copy .lede { font-size: 16px; max-width: 560px; color: #4a4851; }
.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, #11131b, #1b1f2b); color: #fff; padding: 30px; border-radius: 22px; box-shadow: var(--shadow-soft); width: 100%; max-width: 440px; border: 1px solid rgba(255,255,255,0.08); }
.hero-card h3 { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 26px; }
.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.12em; 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: rgba(255,255,255,0.92); border-radius: var(--radius); padding: 18px 20px; border: 1px solid var(--border); box-shadow: 0 18px 40px rgba(13, 12, 17, 0.08); min-height: 140px; backdrop-filter: blur(6px); }
.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, border-color 0.2s ease; }
.collection-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--accent-2); color: var(--accent); }
.collection-tile .tile-copy { max-width: 260px; }
.collection-neutral { background: linear-gradient(135deg, #fff, #f3ecde); }
.collection-dark { background: linear-gradient(135deg, #0f1119, #1a2030); color: #f5f5f7; }
.collection-blend { background: linear-gradient(135deg, #fdf5ec, #f2f4ff); }

.home-badges { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-bottom: 24px; }
.badge { background: rgba(255,255,255,0.95); border: 1px dashed var(--border); border-radius: 14px; padding: 14px 16px; box-shadow: 0 12px 28px rgba(13, 12, 17, 0.06); }
.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 > 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, border-color 0.2s ease; }
.product-thumb:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--accent-2); }
.product-thumb .image { position: relative; padding-top: 120%; overflow: hidden; }
.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: #f8f3ea; 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: #f8f3ea; color: var(--accent); line-height: 1.2; font-weight: 700; text-align: center; text-transform: uppercase; padding: 10px; border-radius: 12px; letter-spacing: 0.08em; }
.product-thumb .button-group button:first-child { background: linear-gradient(125deg, var(--accent), var(--accent-2)); color: #fff; border-color: var(--accent); }
.product-thumb .button-group button:hover { color: var(--accent); background-color: #efe6d9; border-color: var(--accent-2); }

.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: #0d0c11; border-top: 1px solid #1e1c24; color: #e6e3dc; box-shadow: inset 0 1px 0 rgba(255,255,255,0.04); }
footer hr { border-top: none; border-bottom: 1px solid #666; }
footer a { color: #d7d1c4; }
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; font-family: 'Cormorant Garamond', serif; }
.footer-brand p { color: #cfcfcf; 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: var(--accent-2); 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: 38px; }
	.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; }
}
