/*
Theme Name: K2K Fashion
Theme URI: https://example.test/
Author: K2K Fashion
Description: A mobile-first luxury Storefront theme for a Bangladeshi saree store.
Version: 1.0.0
Requires at least: 6.7
Requires PHP: 8.2
Text Domain: k2k-saree-house
*/

:root {
	--k2k-maroon: #2d3878;
	--k2k-maroon-dark: #20295f;
	--k2k-gold: #c9a84c;
	--k2k-champagne: #e8d9a0;
	--k2k-ivory: #faf8f3;
	--k2k-cream: #f5f0e6;
	--k2k-ink: #2d2d2d;
	--k2k-muted: #65615a;
	--k2k-line: #e4ded1;
	--k2k-success: #2f6846;
	--k2k-shadow: 0 20px 50px rgba(60, 11, 21, 0.1);
	--k2k-radius: 18px;
	--k2k-heading: Georgia, "Times New Roman", "Noto Serif Bengali", serif;
	--k2k-body: Inter, "Hind Siliguri", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--k2k-ivory);
	color: var(--k2k-ink);
	font-family: var(--k2k-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
	top: 32px;
}

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

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

.container {
	width: min(1180px, calc(100% - 32px));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.announcement-bar {
	background: var(--k2k-maroon-dark);
	color: #fff7e8;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
	padding: 9px 16px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 253, 249, 0.96);
	border-bottom: 1px solid rgba(185, 147, 76, 0.25);
	backdrop-filter: blur(14px);
}

.header-main {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: 78px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	width: 92px;
	height: 76px;
	line-height: 0;
}

.brand-logo {
	display: block;
	width: 92px;
	height: auto;
	max-height: 76px;
	object-fit: contain;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	background: var(--k2k-maroon);
	color: var(--k2k-champagne);
	border: 1px solid var(--k2k-gold);
	border-radius: 50% 50% 46% 54%;
	font-family: var(--k2k-heading);
	font-size: 15px;
	letter-spacing: 0.05em;
}

.brand-copy strong,
.brand-copy span {
	display: block;
}

.brand-copy strong {
	font-family: var(--k2k-heading);
	font-size: 21px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.1;
}

.brand-copy span {
	color: var(--k2k-muted);
	font-size: 9px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.primary-nav {
	display: flex;
	justify-content: center;
}

.primary-nav ul,
.footer-menu,
.mobile-menu-panel ul {
	display: flex;
	gap: 28px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a {
	position: relative;
	font-size: 14px;
	font-weight: 600;
}

.primary-nav a::after {
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 0;
	height: 1px;
	background: var(--k2k-gold);
	content: "";
	transition: width 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item a::after {
	width: 100%;
}

.primary-nav .menu-item-has-children {
	position: relative;
}

.menu-item-heading {
	display: flex;
	align-items: center;
	gap: 2px;
}

.site-header .menu-submenu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	width: 28px;
	min-height: 32px;
	padding: 0;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: var(--k2k-navy);
	cursor: pointer;
}

.site-header .is-enhanced .menu-submenu-toggle {
	display: inline-flex;
}

.menu-submenu-toggle:hover,
.menu-submenu-toggle:focus-visible {
	outline: 2px solid var(--k2k-gold);
	outline-offset: 1px;
}

.menu-chevron {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	transition: transform 180ms ease;
}

.menu-submenu-toggle[aria-expanded="true"] .menu-chevron {
	transform: rotate(180deg);
}

.site-header .k2k-submenu[hidden] {
	display: none;
}

.primary-nav .k2k-submenu {
	position: absolute;
	z-index: 20;
	top: calc(100% + 18px);
	left: 50%;
	display: grid;
	visibility: hidden;
	min-width: 240px;
	gap: 0;
	padding: 9px;
	transform: translate(-50%, 8px);
	border: 1px solid var(--k2k-line);
	border-radius: 6px;
	background: #fff;
	box-shadow: var(--k2k-shadow);
	opacity: 0;
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.primary-nav .k2k-submenu::before {
	position: absolute;
	top: -19px;
	left: 0;
	width: 100%;
	height: 19px;
	content: "";
}

.primary-nav:not(.is-enhanced) .menu-item-has-children:hover > .k2k-submenu,
.primary-nav:not(.is-enhanced) .menu-item-has-children:focus-within > .k2k-submenu,
.primary-nav .menu-item-has-children.is-open > .k2k-submenu {
	visibility: visible;
	transform: translate(-50%, 0);
	opacity: 1;
}

.primary-nav .k2k-submenu .k2k-submenu {
	top: -10px;
	left: 100%;
	transform: none;
}

.primary-nav .k2k-submenu .menu-item-heading > a {
	flex: 1;
}

.primary-nav .k2k-submenu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 11px;
	font-size: 13px;
	white-space: nowrap;
}

.primary-nav .k2k-submenu a::after {
	display: none;
}

.primary-nav .k2k-submenu a:hover,
.primary-nav .k2k-submenu a:focus-visible {
	background: var(--k2k-ivory);
	color: var(--k2k-navy);
}

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

.header-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 10px;
	border: 1px solid var(--k2k-line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}

.cart-count {
	display: grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	margin-left: 5px;
	background: var(--k2k-maroon);
	color: white;
	border-radius: 50%;
	font-size: 10px;
}

.mobile-menu {
	display: none;
}

.mobile-menu summary {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--k2k-line);
	border-radius: 50%;
	cursor: pointer;
	list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
	display: none;
}

.mobile-menu-panel {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 22px 24px 28px;
	background: var(--k2k-ivory);
	border-bottom: 1px solid var(--k2k-line);
	box-shadow: var(--k2k-shadow);
	max-height: calc(100dvh - 150px);
	overflow-y: auto;
}

.mobile-menu-panel ul {
	align-items: stretch;
	flex-direction: column;
	gap: 0;
}

.mobile-menu-panel a {
	display: block;
	padding: 13px 0;
	border-bottom: 1px solid var(--k2k-line);
}

.mobile-menu-panel .menu-item-heading > a {
	flex: 1;
}

.mobile-menu-panel .menu-submenu-toggle {
	flex-basis: 44px;
	width: 44px;
	min-height: 44px;
}

.mobile-menu-panel .k2k-submenu {
	padding-left: 18px;
}

.mobile-menu-panel .k2k-submenu a {
	padding-block: 10px;
	color: var(--k2k-muted);
	font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
	.menu-chevron,
	.primary-nav .k2k-submenu {
		transition: none;
	}
}

.site-main {
	min-height: 55vh;
}

.hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 80% 20%, rgba(232, 215, 175, 0.42), transparent 25%),
		linear-gradient(120deg, #fffaf2 0%, #f8ede8 55%, #efe0cc 100%);
}

.hero::before,
.hero::after {
	position: absolute;
	content: "";
	pointer-events: none;
}

.hero::before {
	right: -110px;
	top: -140px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(185, 147, 76, 0.3);
	border-radius: 50%;
	box-shadow: 0 0 0 50px rgba(185, 147, 76, 0.06), 0 0 0 100px rgba(101, 20, 36, 0.03);
}

.hero::after {
	left: -70px;
	bottom: -120px;
	width: 240px;
	height: 240px;
	background: repeating-linear-gradient(45deg, transparent 0 13px, rgba(185, 147, 76, 0.12) 13px 14px);
	transform: rotate(12deg);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 54px;
	min-height: 640px;
	padding-block: 70px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--k2k-maroon);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 34px;
	height: 1px;
	background: var(--k2k-gold);
	content: "";
}

.hero h1,
.section-heading h2,
.story-copy h2,
.page-header h1 {
	font-family: var(--k2k-heading);
	font-weight: 500;
	line-height: 1.04;
}

.hero h1 {
	max-width: 720px;
	margin: 20px 0 22px;
	color: var(--k2k-maroon-dark);
	font-size: clamp(50px, 7vw, 88px);
	letter-spacing: -0.035em;
}

.hero h1 em {
	color: var(--k2k-gold);
	font-weight: 400;
}

.hero-lead {
	max-width: 590px;
	margin: 0 0 32px;
	color: #5f5155;
	font-size: 18px;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button,
button.button,
input.button,
.storefront a.button,
.storefront button.button,
.storefront input.button,
.wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 24px;
	background: var(--k2k-maroon) !important;
	color: white !important;
	border: 1px solid var(--k2k-maroon) !important;
	border-radius: 999px !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.storefront a.button:hover,
.storefront button.button:hover {
	background: var(--k2k-maroon-dark) !important;
	box-shadow: 0 12px 24px rgba(101, 20, 36, 0.2);
	transform: translateY(-2px);
}

.button-outline {
	background: transparent !important;
	color: var(--k2k-maroon) !important;
	border-color: rgba(101, 20, 36, 0.35) !important;
}

.hero-art {
	position: relative;
	min-height: 500px;
}

.saree-fold {
	position: absolute;
	inset: 8% 8% 2% 12%;
	overflow: hidden;
	background:
		linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.16) 33%, transparent 37%),
		repeating-linear-gradient(90deg, rgba(255, 220, 140, 0.12) 0 1px, transparent 1px 34px),
		linear-gradient(145deg, #39468d 0%, #20295f 48%, #5360a2 100%);
	border: 1px solid rgba(255, 227, 166, 0.55);
	border-radius: 48% 48% 14% 14%;
	box-shadow: 0 36px 70px rgba(60, 11, 21, 0.28);
	transform: rotate(4deg);
}

.saree-fold::before {
	position: absolute;
	inset: 28px;
	border: 2px solid var(--k2k-gold);
	border-radius: inherit;
	content: "";
}

.saree-fold::after {
	position: absolute;
	left: -10%;
	right: -10%;
	bottom: 38px;
	height: 92px;
	background:
		repeating-linear-gradient(45deg, transparent 0 12px, rgba(255, 220, 140, 0.5) 12px 13px),
		linear-gradient(rgba(185, 147, 76, 0.16), rgba(185, 147, 76, 0.16));
	border-block: 1px solid var(--k2k-gold);
	content: "";
}

.hero-seal {
	position: absolute;
	right: 1%;
	top: 12%;
	display: grid;
	place-items: center;
	width: 122px;
	height: 122px;
	padding: 18px;
	background: var(--k2k-ivory);
	color: var(--k2k-maroon);
	border: 1px solid var(--k2k-gold);
	border-radius: 50%;
	box-shadow: var(--k2k-shadow);
	font-family: var(--k2k-heading);
	font-size: 15px;
	line-height: 1.15;
	text-align: center;
	transform: rotate(-8deg);
}

.trust-strip {
	background: var(--k2k-maroon-dark);
	color: white;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-item {
	padding: 22px 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
}

.trust-item:last-child {
	border-right: 0;
}

.trust-item strong,
.trust-item span {
	display: block;
}

.trust-item strong {
	color: var(--k2k-champagne);
	font-family: var(--k2k-heading);
	font-size: 18px;
	font-weight: 500;
}

.trust-item span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section {
	padding-block: 92px;
}

.section-soft {
	background: var(--k2k-cream);
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 38px;
}

.section-heading h2 {
	margin: 9px 0 0;
	color: var(--k2k-maroon-dark);
	font-size: clamp(36px, 5vw, 56px);
}

.text-link {
	color: var(--k2k-maroon);
	border-bottom: 1px solid var(--k2k-gold);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.category-card {
	position: relative;
	min-height: 310px;
	overflow: hidden;
	padding: 24px;
	background: var(--card-color, var(--k2k-maroon));
	color: white;
	border-radius: var(--k2k-radius);
	box-shadow: 0 12px 30px rgba(60, 11, 21, 0.08);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.category-card::before,
.category-card::after {
	position: absolute;
	content: "";
}

.category-card::before {
	right: -45px;
	top: -45px;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
	box-shadow: 0 0 0 25px rgba(255, 255, 255, 0.05);
}

.category-card::after {
	left: 0;
	right: 0;
	bottom: 48px;
	height: 62px;
	background: repeating-linear-gradient(45deg, transparent 0 12px, rgba(255, 227, 166, 0.35) 12px 13px);
	border-block: 1px solid rgba(255, 227, 166, 0.5);
}

.category-card:hover {
	box-shadow: 0 22px 48px rgba(60, 11, 21, 0.15);
	transform: translateY(-5px);
}

.category-card small,
.category-card strong {
	position: relative;
	z-index: 1;
	display: block;
}

.category-card small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.category-card strong {
	max-width: 180px;
	margin-top: 9px;
	font-family: var(--k2k-heading);
	font-size: 31px;
	font-weight: 500;
	line-height: 1.1;
}

.storefront ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px 18px;
	margin: 0;
}

.storefront ul.products::before,
.storefront ul.products::after {
	display: none;
}

.storefront ul.products li.product,
.storefront-page ul.products li.product {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding-bottom: 18px;
	background: white;
	border: 1px solid var(--k2k-line);
	border-radius: 14px;
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.storefront ul.products li.product:hover {
	box-shadow: var(--k2k-shadow);
	transform: translateY(-4px);
}

.storefront ul.products li.product a img {
	width: 100%;
	aspect-ratio: 4 / 5;
	margin: 0 0 18px;
	object-fit: cover;
	background: linear-gradient(145deg, #f5f0e6, #2d3878);
}

.storefront ul.products li.product .storefront-product-title,
.storefront ul.products li.product .price,
.storefront ul.products li.product .button {
	margin-inline: 17px;
}

.storefront ul.products li.product .storefront-product-title {
	padding: 0;
	font-family: var(--k2k-heading);
	font-size: 21px;
	font-weight: 500;
}

.storefront ul.products li.product .price,
.storefront div.product p.price,
.storefront div.product span.price {
	color: var(--k2k-maroon);
	font-size: 16px;
	font-weight: 800;
}

.storefront ul.products li.product .button {
	min-height: 42px;
	margin-top: 11px;
	padding: 9px 15px;
	font-size: 10px !important;
}

.storefront span.onsale {
	min-width: auto;
	min-height: auto;
	padding: 7px 11px;
	background: var(--k2k-gold);
	border-radius: 999px;
	line-height: 1;
}

.story-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: center;
	gap: 68px;
}

.story-art {
	position: relative;
	min-height: 490px;
	background:
		repeating-linear-gradient(45deg, transparent 0 18px, rgba(232, 215, 175, 0.22) 18px 20px),
		linear-gradient(145deg, var(--k2k-maroon-dark), #3f4b8f);
	border-radius: 45% 45% 12px 12px;
	box-shadow: var(--k2k-shadow);
}

.story-art::after {
	position: absolute;
	inset: 34px;
	border: 1px solid var(--k2k-gold);
	border-radius: inherit;
	content: "";
}

.story-copy h2 {
	margin: 13px 0 22px;
	color: var(--k2k-maroon-dark);
	font-size: clamp(42px, 5vw, 62px);
}

.story-copy p {
	color: var(--k2k-muted);
	font-size: 17px;
}

.story-points {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin: 28px 0 34px;
}

.story-point {
	padding: 17px;
	background: white;
	border: 1px solid var(--k2k-line);
	border-radius: 12px;
}

.story-point strong {
	display: block;
	color: var(--k2k-maroon);
	font-family: var(--k2k-heading);
	font-size: 19px;
}

.concierge {
	padding-block: 72px;
	background: var(--k2k-maroon);
	color: white;
}

.concierge-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.concierge h2 {
	margin: 0 0 7px;
	font-family: var(--k2k-heading);
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 500;
}

.concierge p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.concierge .button {
	background: var(--k2k-champagne) !important;
	color: var(--k2k-maroon-dark) !important;
	border-color: var(--k2k-champagne) !important;
}

.page-header {
	padding: 64px 0 38px;
	background: var(--k2k-cream);
	text-align: center;
}

.page-header h1 {
	margin: 0;
	color: var(--k2k-maroon-dark);
	font-size: clamp(42px, 6vw, 70px);
}

.content-wrap,
.storefront-page-wrap {
	padding-block: 64px 90px;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.storefront div.product {
	display: flow-root;
}

.storefront div.product div.images img {
	border-radius: 15px;
}

.storefront div.product div.images .storefront-product-gallery__image > a {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	background: var(--k2k-cream);
	border-radius: 15px;
	overflow: hidden;
}

.storefront div.product div.images .storefront-product-gallery__image > a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.storefront div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-top: 8px;
}

.storefront div.product div.images .flex-control-thumbs li {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.storefront div.product div.images .flex-control-thumbs li img {
	box-sizing: border-box;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border: 1px solid transparent;
	border-radius: 10px;
}

.storefront div.product div.images .flex-control-thumbs li img.flex-active {
	border-color: var(--k2k-gold);
}

.storefront div.product .product_title {
	color: var(--k2k-maroon-dark);
	font-family: var(--k2k-heading);
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 500;
	line-height: 1.08;
}

.k2k-stitching-box {
	margin: 22px 0;
	padding: 20px;
	background: var(--k2k-cream);
	border: 1px solid var(--k2k-champagne);
	border-radius: 14px;
}

.k2k-stitching-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
}

.k2k-stitching-toggle input {
	width: 20px;
	height: 20px;
	accent-color: var(--k2k-maroon);
}

.k2k-stitching-fields {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 18px;
}

.k2k-stitching-fields[hidden] {
	display: none;
}

.k2k-stitching-fields label {
	display: grid;
	gap: 5px;
	font-size: 12px;
	font-weight: 700;
}

.k2k-stitching-fields .k2k-measurement-confirm {
	display: flex;
	align-items: center;
	grid-column: 1 / -1;
	gap: 8px;
	padding: 11px 12px;
	background: #fff;
	border: 1px solid #d8ccc2;
	border-radius: 9px;
}

.k2k-measurement-confirm input {
	width: 18px;
	height: 18px;
	accent-color: var(--k2k-maroon);
}

.k2k-stitching-time {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--k2k-muted);
	font-size: 11px;
}

.k2k-authenticity {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 12px 0 18px;
	padding: 11px 13px;
	background: #f0f7f2;
	color: #2f6846;
	border: 1px solid #cfe2d4;
	border-radius: 9px;
	font-size: 12px;
	font-weight: 700;
}

.k2k-authenticity > span:first-child {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	background: #2f6846;
	color: #fff;
	border-radius: 50%;
}

.k2k-product-service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: 18px 0 12px;
}

.k2k-product-service-grid > div {
	display: grid;
	gap: 3px;
	padding: 11px;
	background: var(--k2k-cream);
	border: 1px solid var(--k2k-line);
	border-radius: 9px;
}

.k2k-product-service-grid small {
	color: var(--k2k-muted);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.k2k-product-service-grid strong {
	color: var(--k2k-maroon-dark);
	font-size: 11px;
}

.k2k-product-whatsapp,
.k2k-video-open {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 8px 13px;
	background: transparent;
	color: #247653;
	border: 1px solid #247653;
	border-radius: 7px;
	font-size: 10px;
	font-weight: 800;
	cursor: pointer;
}

.k2k-video-open {
	width: 100%;
	justify-content: center;
	margin-top: 10px;
	color: var(--k2k-maroon);
	border-color: var(--k2k-maroon);
}

.k2k-video-dialog {
	width: min(760px, calc(100% - 28px));
	padding: 42px 14px 14px;
	background: #111;
	border: 0;
	border-radius: 12px;
}

.k2k-video-dialog::backdrop {
	background: rgba(13, 14, 25, 0.82);
}

.k2k-video-dialog > button {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: 0;
	border-radius: 50%;
	font-size: 22px;
	cursor: pointer;
}

.k2k-video-dialog video {
	display: block;
	width: 100%;
	max-height: 72vh;
	background: #000;
}

.k2k-fabric-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 24px;
	margin: 0;
}

.k2k-fabric-specs div {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid var(--k2k-line);
}

.k2k-fabric-specs dt {
	color: var(--k2k-muted);
	font-size: 11px;
	font-weight: 700;
}

.k2k-fabric-specs dd {
	margin: 0;
	color: var(--k2k-ink);
	font-size: 12px;
	font-weight: 700;
}

.k2k-mobile-purchase {
	display: none;
}

.k2k-stitching-fields input,
.k2k-stitching-fields select,
.storefront form .form-row input.input-text,
.storefront form .form-row textarea,
.storefront form .form-row select {
	min-height: 48px;
	padding: 10px 13px;
	background: white;
	border: 1px solid #d8ccc2;
	border-radius: 9px;
}

.storefront table.shop_table {
	border-color: var(--k2k-line);
	border-radius: 13px;
}

.storefront-message,
.storefront-info {
	border-top-color: var(--k2k-gold);
	background: var(--k2k-cream);
}

.storefront-message::before,
.storefront-info::before {
	color: var(--k2k-maroon);
}

.site-footer {
	padding: 72px 0 26px;
	background: #171d49;
	color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 60px;
}

.footer-brand {
	color: white;
	font-family: var(--k2k-heading);
	font-size: 31px;
}

.footer-logo {
	display: block;
	width: 132px;
	height: auto;
	padding: 8px;
	background: rgba(255, 253, 249, 0.96);
	border: 1px solid rgba(201, 168, 76, 0.48);
	border-radius: 8px;
}

.footer-grid h3 {
	margin-top: 0;
	color: var(--k2k-champagne);
	font-family: var(--k2k-heading);
	font-size: 20px;
	font-weight: 500;
}

.footer-menu {
	align-items: flex-start;
	flex-direction: column;
	gap: 9px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 48px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 12px;
}

.footer-bottom a {
	color: var(--k2k-champagne);
	font-weight: 800;
}

.k2k-whatsapp-float {
	position: fixed;
	right: max(18px, env(safe-area-inset-right));
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 60;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 48px;
	padding: 10px 16px 10px 10px;
	background: #1f8f5f;
	color: #fff;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(23, 80, 56, 0.28);
	font-size: 12px;
	text-decoration: none;
}

.k2k-whatsapp-float span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.16);
	border-radius: 50%;
}

@media (max-width: 980px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.primary-nav {
		display: none;
	}

	.mobile-menu {
		display: block;
	}

	.header-main {
		grid-template-columns: auto 1fr auto;
		gap: 12px;
	}

	.mobile-menu {
		order: -1;
	}

	.hero-grid,
	.story-grid {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		min-height: auto;
		padding-block: 54px 30px;
	}

	.hero-art {
		min-height: 430px;
	}

	.category-grid,
	.storefront ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-item:nth-child(2) {
		border-right: 0;
	}

	.trust-item:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}
}

@media (max-width: 640px) {
	.single-product {
		padding-bottom: 76px;
	}

	.k2k-product-service-grid,
	.k2k-fabric-specs {
		grid-template-columns: 1fr;
	}

	.k2k-mobile-purchase {
		position: fixed;
		left: 10px;
		right: 10px;
		bottom: max(10px, env(safe-area-inset-bottom));
		z-index: 80;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 10px 11px 10px 14px;
		background: rgba(255, 253, 249, 0.97);
		border: 1px solid var(--k2k-line);
		border-radius: 11px;
		box-shadow: 0 14px 40px rgba(37, 30, 28, 0.22);
		backdrop-filter: blur(12px);
	}

	.k2k-mobile-purchase > span {
		display: grid;
	}

	.k2k-mobile-purchase small {
		color: var(--k2k-muted);
		font-size: 8px;
		font-weight: 700;
		text-transform: uppercase;
	}

	.k2k-mobile-purchase strong {
		color: var(--k2k-maroon-dark);
		font-size: 13px;
	}

	.k2k-mobile-purchase button {
		min-height: 40px;
		padding: 8px 15px;
		background: #2d3878;
		color: #fff;
		border: 0;
		border-radius: 6px;
		font-size: 10px;
		font-weight: 800;
		text-transform: uppercase;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
	.container {
		width: min(100% - 24px, 1180px);
	}

	.announcement-bar {
		font-size: 10px;
	}

	.header-main {
		min-height: 68px;
	}

	.brand-mark {
		width: 38px;
		height: 38px;
	}

	.brand-copy strong {
		font-size: 17px;
	}

	.brand-copy span,
	.header-icon.account-link {
		display: none;
	}

	.header-icon {
		min-width: 40px;
		height: 40px;
		padding-inline: 8px;
	}

	.hero h1 {
		font-size: clamp(47px, 16vw, 68px);
	}

	.hero-lead {
		font-size: 16px;
	}

	.hero-art {
		min-height: 350px;
	}

	.saree-fold {
		inset: 6% 7% 2% 7%;
	}

	.hero-seal {
		right: 0;
		width: 96px;
		height: 96px;
		font-size: 12px;
	}

	.section {
		padding-block: 66px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 27px;
	}

	.category-grid {
		gap: 12px;
	}

	.category-card {
		min-height: 230px;
		padding: 18px;
	}

	.category-card strong {
		font-size: 25px;
	}

	.storefront ul.products {
		gap: 16px 10px;
	}

	.storefront ul.products li.product .storefront-product-title {
		font-size: 17px;
	}

	.storefront ul.products li.product .price,
	.storefront ul.products li.product .button {
		margin-inline: 12px;
	}

	.storefront ul.products li.product .button {
		width: calc(100% - 24px);
		margin-top: 9px;
		font-size: 9px !important;
	}

	.story-art {
		min-height: 360px;
	}

	.story-points,
	.k2k-stitching-fields {
		grid-template-columns: 1fr;
	}

	.concierge-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* Editorial homepage inspired by South Asian textile storytelling. */
.home .container {
	width: min(1360px, calc(100% - 48px));
}

.home .announcement-bar {
	padding-block: 10px;
	background: #2d3878;
	color: #e8d9a0;
	letter-spacing: 0.16em;
}

.home .site-header {
	background: rgba(255, 253, 249, 0.98);
}

.home .header-main {
	min-height: 84px;
}

.home .brand-copy strong {
	font-size: 24px;
}

.editorial-hero {
	position: relative;
	min-height: min(720px, calc(100svh - 120px));
	overflow: hidden;
	background: #20295f;
	color: white;
}

.editorial-slides,
.editorial-slide,
.editorial-slide-image,
.editorial-slide-shade {
	position: absolute;
	inset: 0;
}

.editorial-slide {
	z-index: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 700ms ease;
}

.editorial-slide.is-active {
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
}

.editorial-slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 25%;
	transform: scale(1.015);
	transition: transform 8s ease;
}

.editorial-slide.is-active .editorial-slide-image {
	transform: scale(1.055);
}

.editorial-slide-shade {
	background:
		linear-gradient(90deg, rgba(23, 30, 76, 0.92) 0%, rgba(38, 48, 105, 0.76) 28%, rgba(45, 56, 120, 0.25) 58%, rgba(22, 28, 68, 0.04) 100%),
		linear-gradient(0deg, rgba(24, 30, 72, 0.34), transparent 48%);
}

.editorial-slide-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: min(720px, calc(100svh - 120px));
}

.editorial-slide-copy {
	width: min(620px, 48vw);
	padding-bottom: 26px;
}

.editorial-kicker {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #e8d9a0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.23em;
	text-transform: uppercase;
}

.editorial-kicker::before {
	width: 44px;
	height: 1px;
	background: currentColor;
	content: "";
}

.editorial-slide h1 {
	max-width: 610px;
	margin: 24px 0 20px;
	font-family: var(--k2k-heading);
	font-size: clamp(56px, 6.1vw, 92px);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 0.98;
}

.editorial-slide-copy > p {
	max-width: 520px;
	margin: 0 0 34px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	line-height: 1.75;
}

.button.button-gold,
.concierge .button.button-gold {
	min-height: 54px;
	padding-inline: 28px;
	background: #c9a84c !important;
	color: #2d3878 !important;
	border-color: #c9a84c !important;
}

.button.button-gold span {
	margin-left: 13px;
	font-size: 18px;
	transition: transform 180ms ease;
}

.button.button-gold:hover span {
	transform: translateX(4px);
}

.editorial-hero-controls {
	position: absolute;
	right: max(24px, calc((100% - 1360px) / 2));
	bottom: 30px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 13px;
	color: white;
}

.slider-arrow {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: rgba(255, 255, 255, 0.08);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 50%;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
	background: #c9a84c;
	color: #2d3878;
}

.slider-dots {
	display: flex;
	align-items: center;
	gap: 7px;
	padding-inline: 6px;
}

.slider-dot {
	width: 7px;
	height: 7px;
	padding: 0;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	cursor: pointer;
}

.slider-dot.is-active {
	background: #c9a84c;
	border-color: #c9a84c;
	box-shadow: 0 0 0 4px rgba(211, 175, 81, 0.16);
}

.slider-count {
	min-width: 58px;
	font-size: 11px;
	letter-spacing: 0.14em;
}

.slider-count strong {
	color: #e8d9a0;
	font-size: 14px;
}

.benefit-marquee {
	overflow: hidden;
	padding-block: 14px;
	background: #2d3878;
	color: white;
}

.benefit-track {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	min-width: max-content;
	margin-inline: auto;
	padding-inline: 24px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.benefit-track i {
	color: #c9a84c;
	font-size: 9px;
	font-style: normal;
}

.heritage-intro {
	background: #faf8f3;
}

.heritage-layout {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 10vw;
	align-items: end;
}

.heritage-heading h2,
.craft-statement h2 {
	margin: 16px 0 0;
	font-family: var(--k2k-heading);
	font-size: clamp(44px, 5vw, 70px);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.04;
}

.heritage-copy p {
	margin: 0 0 24px;
	color: var(--k2k-muted);
	font-size: 17px;
	line-height: 1.85;
}

.heritage-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 68px;
	border-block: 1px solid var(--k2k-line);
}

.heritage-stats div {
	padding: 24px 30px;
	border-right: 1px solid var(--k2k-line);
}

.heritage-stats div:last-child {
	border-right: 0;
}

.heritage-stats strong,
.heritage-stats span {
	display: block;
}

.heritage-stats strong {
	color: var(--k2k-maroon);
	font-family: var(--k2k-heading);
	font-size: 37px;
	font-weight: 400;
	line-height: 1;
}

.heritage-stats span {
	margin-top: 8px;
	color: var(--k2k-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.collection-section {
	padding-top: 38px;
}

.editorial-heading h2 {
	font-size: clamp(42px, 5vw, 62px);
}

.collection-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.collection-card {
	position: relative;
	min-height: 520px;
	overflow: hidden;
	background: #20295f;
}

.collection-card img,
.collection-card-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.collection-card img {
	object-fit: cover;
	transition: transform 600ms ease;
}

.collection-card-shade {
	background: linear-gradient(0deg, rgba(39, 8, 15, 0.88) 0%, rgba(39, 8, 15, 0.12) 58%, transparent 100%);
}

.collection-card:hover img {
	transform: scale(1.045);
}

.collection-card-copy {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: block;
	padding: 28px;
	color: white;
}

.collection-card-copy small,
.collection-card-copy strong,
.collection-card-copy em {
	display: block;
}

.collection-card-copy small {
	color: rgba(255, 255, 255, 0.66);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.collection-card-copy strong {
	margin-top: 5px;
	font-family: var(--k2k-heading);
	font-size: 38px;
	font-weight: 400;
}

.collection-card-copy em {
	margin-top: 14px;
	color: #e8d9a0;
	font-size: 10px;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.product-edit .storefront ul.products li.product,
.product-edit.storefront ul.products li.product {
	padding-bottom: 15px;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.product-edit .storefront ul.products li.product:hover {
	box-shadow: none;
}

.product-edit .storefront ul.products li.product a img {
	margin-bottom: 16px;
	border-radius: 0;
}

.product-edit .storefront ul.products li.product .storefront-product-title {
	min-height: 56px;
	margin-inline: 0;
	font-size: 19px;
	line-height: 1.35;
}

.product-edit .storefront ul.products li.product .price {
	margin: 8px 0 0;
}

.product-edit .storefront ul.products li.product .button {
	margin: 13px 0 0;
	background: transparent !important;
	color: var(--k2k-maroon) !important;
	border-color: rgba(101, 20, 36, 0.34) !important;
}

.craft-statement {
	position: relative;
	overflow: hidden;
	padding-block: 110px;
	background:
		radial-gradient(circle at 85% 30%, rgba(201, 168, 76, 0.18), transparent 28%),
		repeating-linear-gradient(45deg, transparent 0 34px, rgba(255, 255, 255, 0.018) 34px 35px),
		#20295f;
	color: white;
	text-align: center;
}

.craft-statement-inner {
	max-width: 1020px;
}

.eyebrow-light {
	color: #e8d9a0;
}

.craft-statement h2 {
	max-width: 940px;
	margin-inline: auto;
}

.craft-statement p {
	max-width: 760px;
	margin: 27px auto 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 17px;
}

.craft-points {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 38px;
}

.craft-points span {
	padding: 12px 18px;
	border: 1px solid rgba(228, 198, 110, 0.35);
	border-radius: 999px;
	color: #f7e7bb;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.concierge .eyebrow {
	margin-bottom: 11px;
}

@media (max-width: 980px) {
	.editorial-hero,
	.editorial-slide-inner {
		min-height: 660px;
	}

	.editorial-slide-copy {
		width: min(620px, 68vw);
	}

	.heritage-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.heritage-copy {
		max-width: 680px;
	}

	.collection-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.collection-card {
		min-height: 480px;
	}

	.craft-points {
		flex-wrap: wrap;
	}
}

@media (max-width: 640px) {
	.home .container {
		width: min(100% - 28px, 1360px);
	}

	.home .announcement-bar {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.home .header-main {
		min-height: 70px;
	}

	.editorial-hero,
	.editorial-slide-inner {
		min-height: min(680px, calc(100svh - 104px));
	}

	.editorial-slide-image {
		object-position: 68% center;
	}

	.editorial-slide-shade {
		background: linear-gradient(0deg, rgba(25, 32, 80, 0.95) 0%, rgba(38, 48, 105, 0.79) 38%, rgba(45, 56, 120, 0.15) 76%, rgba(23, 29, 71, 0.05) 100%);
	}

	.editorial-slide-inner {
		align-items: flex-end;
		padding-bottom: 108px;
	}

	.editorial-slide-copy {
		width: 100%;
		padding: 0;
	}

	.editorial-kicker {
		font-size: 9px;
	}

	.editorial-slide h1 {
		max-width: 360px;
		margin-block: 16px 14px;
		font-size: clamp(46px, 13.4vw, 64px);
	}

	.editorial-slide-copy > p {
		max-width: 360px;
		margin-bottom: 24px;
		font-size: 14px;
		line-height: 1.55;
	}

	.editorial-slide-copy .button {
		min-height: 47px;
		padding-inline: 20px;
		font-size: 10px !important;
	}

	.editorial-hero-controls {
		left: 14px;
		right: 14px;
		bottom: 24px;
		justify-content: center;
	}

	.slider-arrow {
		display: none;
	}

	.benefit-marquee {
		overflow-x: auto;
		scrollbar-width: none;
	}

	.benefit-track {
		justify-content: flex-start;
	}

	.heritage-stats {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 42px;
	}

	.heritage-stats div {
		padding: 20px 14px;
	}

	.heritage-stats div:nth-child(2) {
		border-right: 0;
	}

	.heritage-stats div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--k2k-line);
	}

	.heritage-stats strong {
		font-size: 31px;
	}

	.heritage-stats span {
		font-size: 8px;
	}

	.collection-section {
		padding-top: 18px;
	}

	.collection-grid {
		gap: 9px;
	}

	.collection-card {
		min-height: 310px;
	}

	.collection-card-copy {
		padding: 16px;
	}

	.collection-card-copy small {
		font-size: 8px;
	}

	.collection-card-copy strong {
		font-size: 27px;
	}

	.collection-card-copy em {
		margin-top: 9px;
		font-size: 8px;
	}

	.product-edit .storefront ul.products li.product .storefront-product-title {
		min-height: 52px;
		font-size: 16px;
	}

	.product-edit .storefront ul.products li.product .button {
		width: 100%;
	}

	.craft-statement {
		padding-block: 78px;
	}

	.craft-statement h2 {
		font-size: 45px;
	}

	.craft-points {
		align-items: center;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.editorial-slide,
	.editorial-slide-image,
	.collection-card img {
		transition: none;
	}
}

/* Consistent commerce actions and card heights. */
.storefront ul.products li.product,
.storefront-page ul.products li.product {
	display: flex;
	flex-direction: column;
}

.storefront ul.products li.product .storefront-product-link,
.storefront-page ul.products li.product .storefront-product-link {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.storefront ul.products li.product .storefront-product-title {
	min-height: 3.15em;
	line-height: 1.45;
}

.k2k-product-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 116px));
	gap: 6px;
	justify-content: start;
	margin-top: auto;
	padding: 12px 17px 0;
}

.k2k-product-actions .added_to_cart {
	display: none;
}

.storefront .k2k-product-actions .button,
.product-edit .storefront ul.products li.product .k2k-product-actions .button {
	width: 100%;
	min-height: 36px;
	margin: 0 !important;
	padding: 7px 8px;
	background: transparent !important;
	color: #2d3878 !important;
	border: 1px solid #2d3878 !important;
	border-radius: 5px !important;
	font-size: 8.5px !important;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.storefront .k2k-product-actions .button:hover,
.product-edit .storefront ul.products li.product .k2k-product-actions .button:hover {
	background: #2d3878 !important;
	color: white !important;
	box-shadow: none;
}

.storefront .k2k-product-actions .k2k-buy-now,
.product-edit .storefront ul.products li.product .k2k-product-actions .k2k-buy-now,
.storefront .k2k-single-buy-now {
	background: #c9a84c !important;
	color: #2d3878 !important;
	border-color: #c9a84c !important;
}

.storefront .k2k-product-actions .k2k-buy-now:hover,
.product-edit .storefront ul.products li.product .k2k-product-actions .k2k-buy-now:hover,
.storefront .k2k-single-buy-now:hover {
	background: #b7953f !important;
	color: #20295f !important;
	border-color: #b7953f !important;
}

.storefront div.product form.cart {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.storefront div.product form.cart::before,
.storefront div.product form.cart::after {
	display: none;
}

.storefront div.product form.cart div.quantity {
	float: none;
	margin: 0;
}

.storefront div.product form.cart .k2k-stitching-box {
	box-sizing: border-box;
	flex: 0 0 100%;
	width: 100%;
}

.storefront div.product form.cart .quantity .qty {
	box-sizing: border-box;
	width: 58px;
	height: 38px;
	min-height: 38px;
	margin: 0;
	padding: 0 8px;
	line-height: 36px;
}

.storefront div.product form.cart .single_add_to_cart_button,
.storefront div.product form.cart .k2k-single-buy-now {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	float: none;
	width: 116px;
	height: 38px;
	min-height: 38px;
	margin: 0 !important;
	padding: 0 10px;
	border-radius: 5px !important;
	font-size: 11px !important;
	line-height: 1 !important;
	white-space: nowrap;
}

.cart-count {
	background: #c9a84c;
	color: #20295f;
	transition: transform 180ms ease;
}

.k2k-checkout-remove-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 7px;
	padding: 2px 0;
	background: transparent;
	color: #2d3878;
	border: 0;
	border-bottom: 1px solid rgba(45, 56, 120, 0.35);
	border-radius: 0;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	cursor: pointer;
}

.k2k-checkout-remove-item span {
	font-size: 17px;
	font-weight: 400;
	line-height: 0.8;
}

.k2k-checkout-remove-item:hover,
.k2k-checkout-remove-item:focus-visible {
	color: #9b2c2c;
	border-color: currentColor;
}

.k2k-checkout-remove-item:focus-visible {
	outline: 2px solid #c9a84c;
	outline-offset: 3px;
}

@media (max-width: 640px) {
	.k2k-product-actions {
		grid-template-columns: minmax(0, 126px);
		padding-inline: 12px;
	}

	.product-edit .storefront ul.products li.product .k2k-product-actions .button {
		width: 100%;
	}

	.storefront div.product form.cart .single_add_to_cart_button,
	.storefront div.product form.cart .k2k-single-buy-now {
		width: 116px;
		margin: 0 !important;
	}
}

@media (max-width: 359px) {
	.storefront div.product form.cart {
		width: 100%;
	}

	.storefront div.product form.cart .quantity .qty {
		width: 54px;
	}

	.storefront div.product form.cart .single_add_to_cart_button,
	.storefront div.product form.cart .k2k-single-buy-now {
		flex: 1 1 0;
		width: auto;
		min-width: 0;
	}
}

/* Header product search. */
.header-actions {
	gap: 8px;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.header-actions .header-icon {
	position: relative;
	width: 44px;
	min-width: 44px;
	height: 44px;
	padding: 5px;
	background: transparent;
	color: #062d5a;
	border: 2px solid transparent;
	border-radius: 7px;
	transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-actions .header-icon svg {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.header-actions .header-icon:hover,
.header-actions .header-icon:focus-visible {
	color: #062d5a;
	opacity: 0.72;
	transform: translateY(-1px);
}

.site-header.is-search-open .header-search-toggle,
.storefront-account .header-actions .account-link {
	color: #062d5a;
	border-color: transparent;
	box-shadow: none;
}

.header-actions .cart-count.is-empty {
	display: none;
}

.header-actions .cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 17px;
	height: 17px;
	margin: 0;
	font-size: 8px;
}

.header-search-toggle {
	background: transparent;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.header-action-symbol {
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
}

.header-action-label {
	margin-left: 5px;
}

.header-search-panel {
	max-height: 0;
	background: #fffaf2;
	border-top: 1px solid transparent;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	transform: translateY(-12px);
	transition: max-height 320ms ease, opacity 220ms ease, transform 320ms ease, border-color 220ms ease;
}

.site-header.is-search-open .header-search-panel {
	max-height: 150px;
	border-top-color: var(--k2k-line);
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.header-search-inner {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr) 42px;
	align-items: center;
	gap: 24px;
	min-height: 116px;
}

.header-search-copy {
	display: grid;
	gap: 3px;
}

.header-search-copy span {
	color: var(--k2k-gold);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.header-search-copy strong {
	color: var(--k2k-maroon-dark);
	font-family: var(--k2k-heading);
	font-size: 21px;
	font-weight: 500;
}

.header-product-search {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 6px 7px 6px 19px;
	background: #fff;
	border: 1px solid #dfd2c5;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(75, 29, 38, 0.08);
}

.header-product-search > span {
	color: var(--k2k-maroon);
	font-size: 22px;
}

.header-product-search input[type="search"] {
	min-width: 0;
	height: 44px;
	padding: 0;
	background: transparent;
	color: var(--k2k-ink);
	border: 0;
	outline: 0;
	font: inherit;
	font-size: 15px;
}

.header-product-search input[type="search"]::placeholder {
	color: #94867d;
}

.header-product-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 9px 20px;
	background: var(--k2k-maroon);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	cursor: pointer;
}

.header-product-search:focus-within {
	border-color: var(--k2k-gold);
	box-shadow: 0 0 0 3px rgba(185, 147, 76, 0.13), 0 14px 34px rgba(75, 29, 38, 0.1);
}

.header-search-close {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	background: transparent;
	color: var(--k2k-maroon-dark);
	border: 1px solid #dfd2c5;
	border-radius: 50%;
	font-size: 27px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.header-search-close:hover {
	color: var(--k2k-gold);
	border-color: var(--k2k-gold);
	transform: rotate(8deg);
}

/* Customer login, registration and account dashboard. */
.storefront-account .page-header {
	padding-block: 52px 34px;
	background: linear-gradient(135deg, #fbf3e7 0%, #fffdf9 58%, #f6ead9 100%);
}

.storefront-account .content-wrap {
	width: min(100% - 40px, 1120px);
	padding-block: 54px 88px;
}

.k2k-account-welcome {
	display: grid;
	grid-template-columns: minmax(260px, 0.75fr) minmax(300px, 1.25fr);
	gap: 8px 50px;
	margin-bottom: 26px;
	padding: 28px 32px;
	background: var(--k2k-maroon-dark);
	color: #fff;
	border-radius: 14px;
	box-shadow: 0 18px 45px rgba(74, 19, 31, 0.14);
}

.k2k-account-welcome p {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--k2k-champagne);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.k2k-account-welcome h2 {
	margin: 0;
	color: #fff;
	font-family: var(--k2k-heading);
	font-size: clamp(28px, 3vw, 39px);
	font-weight: 500;
	line-height: 1.08;
}

.k2k-account-welcome > span {
	align-self: end;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.65;
}

.storefront-account #customer_login {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.storefront-account #customer_login::before,
.storefront-account #customer_login::after {
	display: none;
}

.storefront-account #customer_login .u-column1,
.storefront-account #customer_login .u-column2 {
	box-sizing: border-box;
	float: none;
	width: auto;
	padding: 30px;
	background: #fff;
	border: 1px solid var(--k2k-line);
	border-radius: 14px;
	box-shadow: 0 12px 34px rgba(56, 35, 31, 0.05);
}

.storefront-account #customer_login h2 {
	margin: 0 0 20px;
	color: var(--k2k-maroon-dark);
	font-family: var(--k2k-heading);
	font-size: 32px;
	font-weight: 500;
}

.storefront-account form.login,
.storefront-account form.register {
	margin: 0;
	padding: 0;
	border: 0;
}

.storefront-account form .form-row {
	margin-bottom: 16px;
}

.storefront-account form .form-row label {
	margin-bottom: 6px;
	color: var(--k2k-ink);
	font-size: 12px;
	font-weight: 700;
}

.storefront-account form .form-row input.input-text {
	box-sizing: border-box;
	width: 100%;
	min-height: 50px;
}

.storefront-account .storefront-login-remember {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0 14px 10px 0;
}

.storefront-account .storefront-login-submit,
.storefront-account .storefront-register-submit,
.storefront-account .storefront-button {
	min-height: 44px;
	background: var(--k2k-maroon) !important;
	color: #fff !important;
	border-radius: 999px !important;
}

.storefront-account .storefront-lost-password {
	margin-bottom: 0;
	font-size: 12px;
	font-weight: 700;
}

.storefront-account.logged-in .entry-content > .storefront {
	display: grid;
	grid-template-columns: 245px minmax(0, 1fr);
	gap: 24px;
	min-width: 0;
}

.storefront-account.logged-in .entry-content > .storefront::before,
.storefront-account.logged-in .entry-content > .storefront::after {
	display: none;
}

.storefront-account .storefront-account-navigation,
.storefront-account .storefront-account-content {
	float: none;
	width: auto;
	min-width: 0;
}

.storefront-account .storefront-account-navigation {
	padding: 14px;
	background: var(--k2k-maroon-dark);
	border-radius: 13px;
}

.storefront-account .storefront-account-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.storefront-account .storefront-account-navigation a {
	display: block;
	padding: 12px 14px;
	color: rgba(255, 255, 255, 0.75);
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
}

.storefront-account .storefront-account-navigation a:hover,
.storefront-account .storefront-account-navigation .is-active a {
	background: rgba(255, 255, 255, 0.1);
	color: var(--k2k-champagne);
}

.storefront-account .storefront-account-content {
	box-sizing: border-box;
	min-height: 360px;
	padding: 30px;
	background: #fff;
	border: 1px solid var(--k2k-line);
	border-radius: 13px;
	box-shadow: 0 12px 34px rgba(56, 35, 31, 0.05);
}

.storefront-account .storefront-account-content > *:first-child {
	margin-top: 0;
}

@media (max-width: 820px) {
	.header-search-inner {
		grid-template-columns: minmax(0, 1fr) 42px;
		gap: 12px;
	}

	.header-search-copy {
		display: none;
	}

	.storefront-account.logged-in .entry-content > .storefront {
		grid-template-columns: 1fr;
	}

	.storefront-account .storefront-account-navigation ul {
		display: flex;
		gap: 5px;
		max-width: 100%;
		overflow-x: auto;
	}

	.storefront-account .storefront-account-navigation li {
		flex: 0 0 auto;
	}
}

@media (max-width: 640px) {
	.brand {
		width: 64px;
		height: 58px;
	}

	.brand-logo {
		width: 64px;
		max-height: 58px;
	}

	.header-actions {
		gap: 4px;
		padding: 0;
	}

	.header-icon.account-link {
		display: inline-flex;
	}

	.header-action-label {
		display: none;
	}

	.header-icon {
		position: relative;
		width: 36px;
		min-width: 36px;
		height: 36px;
		padding: 0;
	}

	.header-actions .header-icon {
		width: 36px;
		min-width: 36px;
		height: 36px;
		padding: 4px;
	}

	.header-actions .header-icon svg {
		width: 25px;
		height: 25px;
	}

	.header-icon .cart-count {
		position: absolute;
		top: -4px;
		right: -4px;
		min-width: 17px;
		height: 17px;
		margin: 0;
		font-size: 8px;
	}

	.site-header.is-search-open .header-search-panel {
		max-height: 190px;
	}

	.header-search-inner {
		grid-template-columns: minmax(0, 1fr) 38px;
		gap: 8px;
		min-height: 104px;
	}

	.header-product-search {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 7px;
		min-height: 52px;
		padding: 4px 5px 4px 13px;
	}

	.header-product-search > span {
		font-size: 18px;
	}

	.header-product-search input[type="search"] {
		height: 42px;
		font-size: 13px;
	}

	.header-product-search button {
		width: 42px;
		min-height: 42px;
		padding: 0;
		font-size: 0;
	}

	.header-product-search button span {
		font-size: 16px;
	}

	.header-search-close {
		width: 38px;
		height: 38px;
		font-size: 24px;
	}

	.storefront-account .content-wrap {
		width: min(100% - 24px, 1120px);
		padding-block: 34px 62px;
	}

	.k2k-account-welcome,
	.storefront-account #customer_login {
		grid-template-columns: 1fr;
	}

	.k2k-account-welcome {
		gap: 12px;
		padding: 24px 21px;
	}

	.k2k-account-welcome h2,
	.k2k-account-welcome > span {
		grid-column: auto;
	}

	.storefront-account #customer_login .u-column1,
	.storefront-account #customer_login .u-column2,
	.storefront-account .storefront-account-content {
		padding: 23px 20px;
	}

	.storefront-account .storefront-account-navigation {
		margin-bottom: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.header-search-panel,
	.header-search-close {
		transition: none;
	}
}

/* Airy, touch-friendly storefront pagination. */
.storefront nav.storefront-pagination {
	clear: both;
	margin: 42px 0 12px;
	padding: 0;
	text-align: center;
}

.storefront nav.storefront-pagination ul {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none !important;
	white-space: normal;
}

.storefront nav.storefront-pagination ul li {
	margin: 0;
	border: 0;
	border-radius: 50%;
	list-style: none !important;
	overflow: visible;
}

.storefront nav.storefront-pagination ul li::marker {
	content: "";
}

.storefront nav.storefront-pagination ul li a,
.storefront nav.storefront-pagination ul li span {
	display: grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 11px;
	background: #fff;
	color: #062d5a;
	border: 1px solid #d9d3c7;
	border-radius: 50%;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.storefront nav.storefront-pagination ul li a:hover,
.storefront nav.storefront-pagination ul li a:focus-visible {
	background: var(--k2k-cream);
	color: #062d5a;
	border-color: var(--k2k-gold);
	transform: translateY(-2px);
}

.storefront nav.storefront-pagination ul li span.current {
	background: #062d5a;
	color: #fff;
	border-color: #062d5a;
	box-shadow: 0 8px 18px rgba(6, 45, 90, 0.18);
}

@media (max-width: 640px) {
	.storefront nav.storefront-pagination {
		margin-top: 32px;
	}

	.storefront nav.storefront-pagination ul {
		gap: 6px;
	}

	.storefront nav.storefront-pagination ul li a,
	.storefront nav.storefront-pagination ul li span {
		min-width: 38px;
		height: 38px;
		padding-inline: 8px;
		font-size: 13px;
	}
}

/* Minimal customer authentication, matched to the storefront top bar. */
.site-header.is-search-open .header-search-toggle,
.storefront-account .header-actions .account-link {
	color: #062d5a;
	border-color: transparent;
	box-shadow: none;
}

.storefront-account:not(.logged-in) .page-header {
	display: none;
}

.storefront-account:not(.logged-in) .site-main {
	background: #f3f3f3;
}

.storefront-account:not(.logged-in) .content-wrap {
	width: min(100% - 32px, 960px);
	min-height: 650px;
	padding-block: 72px 94px;
}

.k2k-auth-shell {
	max-width: 880px;
	margin: 0 auto;
}

.k2k-auth-panel[hidden] {
	display: none;
}

.k2k-auth-panel.is-active {
	animation: k2k-auth-reveal 240ms ease both;
}

@keyframes k2k-auth-reveal {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.k2k-auth-heading {
	margin-bottom: 38px;
	text-align: center;
}

.k2k-auth-heading p {
	margin: 0 0 8px;
	color: var(--k2k-gold);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.19em;
	text-transform: uppercase;
}

.k2k-auth-heading h2 {
	margin: 0;
	color: #062d5a;
	font-family: var(--k2k-body);
	font-size: clamp(34px, 4.5vw, 48px);
	font-weight: 400;
	letter-spacing: 0.2em;
	line-height: 1.2;
	text-transform: uppercase;
}

.k2k-auth-heading span {
	display: block;
	margin-top: 22px;
	color: #343434;
	font-size: 17px;
}

.storefront-account form.k2k-auth-form {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0;
	border: 0;
}

.k2k-auth-field {
	position: relative;
	display: block;
	margin: 0;
}

.k2k-auth-field > .k2k-auth-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.storefront-account .k2k-auth-field input.input-text,
.storefront-account .k2k-auth-field input[type="text"],
.storefront-account .k2k-auth-field input[type="tel"],
.storefront-account .k2k-auth-field input[type="email"],
.storefront-account .k2k-auth-field input[type="password"] {
	box-sizing: border-box;
	width: 100%;
	height: 62px;
	min-height: 62px;
	padding: 0 25px;
	background: transparent;
	color: #222;
	border: 1px solid #cfcfcf;
	border-radius: 0;
	outline: 0;
	font-size: 16px;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.storefront-account .k2k-auth-field input:focus {
	background: #fff;
	border-color: #062d5a;
	box-shadow: 0 0 0 2px rgba(6, 45, 90, 0.08);
}

.k2k-password-field input {
	padding-right: 205px !important;
}

.k2k-password-field > a {
	position: absolute;
	top: 50%;
	right: 24px;
	color: #666;
	font-size: 13px;
	font-weight: 500;
	transform: translateY(-50%);
}

.k2k-auth-form .show-password-input {
	display: none !important;
}

.storefront-account .k2k-auth-submit,
.storefront-account button.k2k-auth-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	min-height: 60px;
	margin: 4px 0 0 !important;
	padding: 0 24px !important;
	background: #062d5a !important;
	color: #fff !important;
	border: 1px solid #062d5a !important;
	border-radius: 0 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	letter-spacing: 0.18em;
	text-align: center;
	text-transform: uppercase;
}

.storefront-account .k2k-auth-submit:hover {
	background: var(--k2k-maroon-dark) !important;
	border-color: var(--k2k-maroon-dark) !important;
}

.k2k-auth-switch {
	margin: 15px 0 0;
	color: #6b6b6b;
	font-size: 16px;
	text-align: center;
}

.k2k-auth-switch a {
	color: #062d5a;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--k2k-gold);
	text-underline-offset: 4px;
}

/* Compact, centred product purchase buttons. */
.k2k-product-actions {
	grid-template-columns: repeat(2, minmax(0, 104px));
	justify-content: center;
	gap: 7px;
	padding-inline: 10px;
}

.storefront .k2k-product-actions .button,
.product-edit .storefront ul.products li.product .k2k-product-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding-inline: 7px;
	font-size: 10.5px !important;
	letter-spacing: 0.04em;
	line-height: 1.1 !important;
	text-align: center;
}

.storefront div.product form.cart .single_add_to_cart_button,
.storefront div.product form.cart .k2k-single-buy-now {
	width: 108px;
	font-size: 12px !important;
	text-align: center;
}

@media (max-width: 640px) {
	.storefront-account:not(.logged-in) .content-wrap {
		width: min(100% - 24px, 960px);
		min-height: 570px;
		padding-block: 48px 70px;
	}

	.k2k-auth-heading {
		margin-bottom: 28px;
	}

	.k2k-auth-heading h2 {
		font-size: 32px;
	}

	.k2k-auth-heading span {
		margin-top: 16px;
		font-size: 14px;
	}

	.storefront-account .k2k-auth-field input.input-text,
	.storefront-account .k2k-auth-field input[type="text"],
	.storefront-account .k2k-auth-field input[type="tel"],
	.storefront-account .k2k-auth-field input[type="email"],
	.storefront-account .k2k-auth-field input[type="password"] {
		height: 56px;
		min-height: 56px;
		padding-inline: 17px;
		font-size: 14px;
	}

	.k2k-password-field input {
		padding-right: 160px !important;
	}

	.k2k-password-field > a {
		right: 15px;
		font-size: 11px;
	}

	.k2k-auth-switch {
		font-size: 14px;
	}

	.k2k-product-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 5px;
		padding-inline: 8px;
	}

	.storefront .k2k-product-actions .button,
	.product-edit .storefront ul.products li.product .k2k-product-actions .button {
		width: 100%;
		font-size: 9.5px !important;
	}

	.storefront div.product form.cart .single_add_to_cart_button,
	.storefront div.product form.cart .k2k-single-buy-now {
		width: 108px;
		font-size: 12px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.k2k-auth-panel.is-active {
		animation: none;
	}
}
