/*
Theme Name: TW SHOP Minimog Child
Theme URI: https://twshopuk.shop/
Author: THE WALKING SHOP LIMITED
Version: 1.6.4
Template: minimog
Text Domain: twshop-minimog-child
*/

:root {
	--twshop-ink: #24343b;
	--twshop-paper: #f5f4ee;
	--twshop-stone: #cbd9d6;
	--twshop-sage: #6e9d9a;
	--twshop-line: rgba(29, 29, 27, 0.14);
}

* {
	box-sizing: border-box;
}

body.twshop-home,
body.twshop-site-page {
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	color: var(--twshop-ink);
	background: #fff;
	font-family: Jost, Arial, sans-serif;
}

.twshop-home a,
.twshop-site-page a {
	color: inherit;
	text-decoration: none;
}

.twshop-shell {
	width: min(100% - 48px, 1440px);
	margin-inline: auto;
}

.twshop-announcement {
	padding: 9px 16px;
	color: #fff;
	background: var(--twshop-ink);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-align: center;
	text-transform: uppercase;
}

.twshop-header {
	position: relative;
	z-index: 20;
	border-bottom: 1px solid var(--twshop-line);
	background: rgba(255, 255, 255, 0.96);
}

.twshop-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 78px;
	gap: 32px;
}

.twshop-nav,
.twshop-actions {
	display: flex;
	align-items: center;
	gap: 25px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.twshop-nav a,
.twshop-actions a {
	position: relative;
	padding-block: 28px;
}

.twshop-nav a::after,
.twshop-actions a::after {
	position: absolute;
	right: 0;
	bottom: 22px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.twshop-nav a:hover::after,
.twshop-actions a:hover::after {
	transform: scaleX(1);
}

.twshop-currency {
	position: relative;
}

.twshop-currency summary {
	padding-block: 28px;
	font-size: 12px;
	font-weight: 600;
	list-style: none;
	cursor: pointer;
}

.twshop-currency summary::-webkit-details-marker {
	display: none;
}

.twshop-currency summary::after {
	margin-left: 5px;
	content: "⌄";
}

.twshop-currency__menu {
	position: absolute;
	top: calc(100% - 12px);
	right: 0;
	z-index: 25;
	display: grid;
	min-width: 112px;
	padding: 8px;
	border: 1px solid var(--twshop-line);
	background: #fff;
	box-shadow: 0 18px 42px rgba(20, 20, 18, 0.12);
}

.twshop-currency__menu a {
	padding: 9px 12px;
	white-space: nowrap;
}

.twshop-currency__menu a[aria-current="true"] {
	background: var(--twshop-paper);
	font-weight: 700;
}

.twshop-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: Georgia, "Times New Roman", serif;
	text-align: center;
	white-space: nowrap;
}

.twshop-logo__mark {
	width: 34px;
	height: 34px;
	object-fit: contain;
}

.twshop-logo__wordmark {
	font-size: 22px;
	letter-spacing: 0.16em;
}

.twshop-actions {
	justify-content: flex-end;
}

.twshop-search {
	position: relative;
}

.twshop-search summary {
	position: relative;
	padding-block: 28px;
	list-style: none;
	cursor: pointer;
}

.twshop-search summary::-webkit-details-marker {
	display: none;
}

.twshop-search summary::after {
	position: absolute;
	right: 0;
	bottom: 22px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.twshop-search[open] summary::after,
.twshop-search summary:hover::after {
	transform: scaleX(1);
}

.twshop-search__panel {
	position: absolute;
	top: calc(100% - 1px);
	right: 0;
	z-index: 30;
	width: min(440px, calc(100vw - 32px));
	padding: 24px;
	border: 1px solid var(--twshop-line);
	background: #fff;
	box-shadow: 0 24px 64px rgba(29, 29, 27, 0.14);
}

.twshop-search__form {
	display: grid;
	gap: 10px;
}

.twshop-search__form label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.twshop-search__field {
	display: grid;
	grid-template-columns: 1fr auto;
}

.twshop-search__field input {
	min-width: 0;
	height: 48px;
	padding: 0 14px;
	border: 1px solid var(--twshop-ink);
	border-right: 0;
	border-radius: 0;
	background: #fff;
	font: inherit;
}

.twshop-search__field button {
	min-width: 96px;
	height: 48px;
	padding: 0 18px;
	border: 1px solid var(--twshop-ink);
	border-radius: 0;
	color: #fff;
	background: var(--twshop-ink);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

.twshop-cart-count {
	display: inline-grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	margin-left: 4px;
	border-radius: 999px;
	color: #fff;
	background: var(--twshop-ink);
	font-size: 10px;
	line-height: 1;
}

.twshop-mobile-menu {
	display: none;
}

.twshop-hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: clamp(860px, 58.2vw, 1180px);
	overflow: hidden;
	color: #fff;
	background: #6b6a65;
	isolation: isolate;
}

.twshop-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.twshop-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.twshop-hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(17, 17, 15, 0.42) 0%, rgba(17, 17, 15, 0.1) 48%, transparent 75%),
		linear-gradient(0deg, rgba(17, 17, 15, 0.2), transparent 45%);
	content: "";
}

.twshop-hero__content {
	max-width: 680px;
	padding: 0 0 clamp(72px, 9vw, 128px);
}

.twshop-eyebrow {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.twshop-hero h1,
.twshop-editorial h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(48px, 6.4vw, 98px);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 0.96;
}

.twshop-home .twshop-hero h1,
.twshop-home .twshop-editorial h2 {
	color: #fff !important;
}

.twshop-hero p {
	max-width: 500px;
	margin: 24px 0 32px;
	font-size: 17px;
	line-height: 1.6;
}

.twshop-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 31px;
	border: 1px solid var(--twshop-ink);
	color: #fff;
	background: var(--twshop-ink);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition:
		color 180ms ease,
		background 180ms ease;
}

.twshop-button:hover {
	color: var(--twshop-ink);
	background: transparent;
}

.twshop-site-page .twshop-button {
	color: #fff !important;
}

.twshop-site-page .twshop-button:hover {
	color: var(--twshop-ink) !important;
}

.twshop-button--light {
	border-color: #fff;
	color: var(--twshop-ink);
	background: #fff;
}

.twshop-home .twshop-button--light {
	color: var(--twshop-ink) !important;
}

.twshop-button--light:hover {
	color: #fff;
	background: transparent;
}

.twshop-home .twshop-button--light:hover {
	color: #fff !important;
}

body.twshop-home #modal-promo-popup,
body.twshop-site-page #modal-promo-popup {
	display: none !important;
}

body.twshop-home.dialog-body,
body.twshop-site-page.dialog-body {
	overflow: auto !important;
	padding-right: 0 !important;
}

.twshop-section {
	padding-block: clamp(72px, 9vw, 128px);
}

.twshop-section--soft {
	background: var(--twshop-paper);
}

.twshop-section--flush {
	padding-top: 0;
}

.twshop-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 38px;
}

.twshop-section__head h2,
.twshop-story__content h2,
.twshop-newsletter h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 4.2vw, 58px);
	font-weight: 400;
	letter-spacing: -0.03em;
	line-height: 1.04;
}

.twshop-text-link {
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.twshop-category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.twshop-category-card {
	position: relative;
	display: flex;
	align-items: end;
	min-height: min(70vw, 760px);
	overflow: hidden;
	background: #c4c0b9 center 26% / cover no-repeat;
	isolation: isolate;
}

.twshop-category-card::after {
	position: absolute;
	inset: 40% 0 0;
	z-index: -1;
	background: linear-gradient(0deg, rgba(18, 18, 17, 0.52), transparent);
	content: "";
}

.twshop-category-card__content {
	padding: 42px;
	color: #fff;
}

.twshop-category-card h2 {
	margin: 0 0 18px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 400;
}

.twshop-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 38px 18px;
}

.twshop-product {
	position: relative;
	min-width: 0;
}

.twshop-product__image {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #eeeae3;
}

.twshop-product__media {
	display: block;
	width: 100%;
	height: 100%;
}

.twshop-product__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.twshop-product:hover .twshop-product__image img {
	transform: scale(1.035);
}

.twshop-product__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	padding: 7px 10px;
	background: rgba(255, 255, 255, 0.92);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.twshop-product__quick {
	position: absolute;
	right: 12px;
	bottom: 12px;
	left: 12px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	color: #fff !important;
	background: rgba(29, 29, 27, 0.92);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	transform: translateY(120%);
	transition: transform 220ms ease;
}

.twshop-product:hover .twshop-product__quick {
	transform: translateY(0);
}

.twshop-product__meta {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 6px 16px;
	padding-top: 16px;
}

.twshop-product__title {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}

.twshop-product__price {
	font-size: 14px;
	white-space: nowrap;
}

.twshop-product__price del {
	margin-right: 6px;
	color: #8e8e88;
}

.twshop-product__price ins {
	text-decoration: none;
}

.twshop-editorial {
	position: relative;
	display: grid;
	align-items: center;
	min-height: min(72vw, 860px);
	color: #fff;
	background: #8f8e88 center 44% / cover no-repeat;
	isolation: isolate;
}

.twshop-editorial::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(270deg, rgba(17, 17, 15, 0.56), rgba(17, 17, 15, 0.04) 62%);
	content: "";
}

.twshop-editorial__content {
	width: min(100% - 48px, 1440px);
	max-width: none;
	padding-block: 100px;
	text-align: right;
}

.twshop-editorial p {
	max-width: 560px;
	margin: 27px 0 36px auto;
	font-size: 17px;
	line-height: 1.65;
}

.twshop-limited-offer {
	padding-block: clamp(42px, 5vw, 76px);
	color: #fff;
	background:
		radial-gradient(circle at 18% 30%, rgba(206, 194, 174, 0.2), transparent 32%),
		#1f211f;
}

.twshop-limited-offer__inner {
	display: grid;
	grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.35fr);
	align-items: center;
	gap: clamp(42px, 8vw, 128px);
}

.twshop-limited-offer__mark {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 340px;
	padding: 42px;
	border: 1px solid rgba(255, 255, 255, 0.28);
}

.twshop-limited-offer__mark strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(110px, 13vw, 220px);
	font-weight: 400;
	letter-spacing: -0.09em;
	line-height: 0.72;
}

.twshop-limited-offer__mark span {
	margin: 0 0 4px 18px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.2em;
}

.twshop-limited-offer__content {
	max-width: 780px;
}

.twshop-limited-offer__content h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(48px, 6vw, 92px);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 0.96;
}

.twshop-limited-offer__content > p:not(.twshop-eyebrow) {
	max-width: 590px;
	margin: 28px 0 34px;
	color: #d7d5ce;
	font-size: 17px;
	line-height: 1.7;
}

.twshop-limited-offer__content > p strong {
	color: #fff;
	letter-spacing: 0.08em;
}

.twshop-coupon-form {
	display: grid;
	grid-template-columns: minmax(180px, 0.45fr) minmax(320px, 1fr);
	align-items: center;
	gap: 22px;
	margin: 34px 0;
	padding: 26px;
	border: 1px solid var(--twshop-line);
	background: #f5f2ec;
}

.twshop-coupon-form label {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
}

.twshop-coupon-form__fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
}

.twshop-coupon-form input {
	min-width: 0;
	height: 50px;
	padding: 0 16px;
	border: 1px solid #c9c5bc;
	border-right: 0;
	background: #fff;
}

.twshop-coupon-form button {
	min-height: 50px;
	padding: 0 24px;
	border: 1px solid var(--twshop-ink);
	color: #fff;
	background: var(--twshop-ink);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.twshop-coupon-form__status {
	min-height: 1.4em;
	margin: 10px 0 0;
	font-size: 13px;
}

.twshop-coupon-form__status[data-state="error"] {
	color: #a12222;
}

.twshop-collections {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.twshop-category-links {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	border-top: 1px solid var(--twshop-line);
}

.twshop-category-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 110px;
	padding: 22px;
	border-right: 1px solid var(--twshop-line);
	border-bottom: 1px solid var(--twshop-line);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
}

.twshop-category-links a:last-child {
	border-right: 0;
}

.twshop-collection-status {
	padding: clamp(42px, 6vw, 78px);
	border: 1px solid var(--twshop-line);
	background: #fff;
	text-align: center;
}

.twshop-collection-status h3 {
	margin: 0 0 12px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 400;
}

.twshop-collection-status p {
	max-width: 580px;
	margin: 0 auto;
	color: #6d6d67;
	font-size: 15px;
	line-height: 1.7;
}

.twshop-collection {
	display: block;
}

.twshop-collection__image {
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #ece8e0;
}

.twshop-collection__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.twshop-collection:hover img {
	transform: scale(1.04);
}

.twshop-collection h3 {
	margin: 14px 0 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 400;
}

.twshop-story {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
	align-items: stretch;
}

.twshop-story__image {
	min-height: 720px;
	background: #b9b3a9 center 30% / cover no-repeat;
}

.twshop-story__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(56px, 7vw, 112px);
	background: var(--twshop-ink);
	color: #fff;
}

.twshop-story__content p {
	margin: 25px 0 33px;
	font-size: 17px;
	line-height: 1.75;
}

.twshop-brand-story {
	display: grid;
	grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
	min-height: 720px;
	background: #ded9d0;
}

.twshop-brand-story__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(56px, 7vw, 112px);
}

.twshop-brand-story__content h2 {
	max-width: 620px;
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 5vw, 76px);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 0.98;
}

.twshop-brand-story__content > p:not(.twshop-eyebrow) {
	max-width: 580px;
	margin: 28px 0 34px;
	color: #4d4d48;
	font-size: 17px;
	line-height: 1.75;
}

.twshop-brand-story__content .twshop-text-link {
	align-self: flex-start;
}

.twshop-brand-story__image {
	min-height: 720px;
	background: #aaa79f center 36% / cover no-repeat;
}

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

.twshop-quote {
	padding: 36px;
	border: 1px solid var(--twshop-line);
	background: #fff;
}

.twshop-stars {
	margin-bottom: 22px;
	font-size: 12px;
	letter-spacing: 0.25em;
}

.twshop-quote blockquote {
	margin: 0 0 28px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	line-height: 1.5;
}

.twshop-quote cite {
	font-size: 11px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.twshop-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-block: 1px solid var(--twshop-line);
}

.twshop-benefit {
	padding: 40px 28px;
	border-right: 1px solid var(--twshop-line);
	text-align: center;
}

.twshop-benefit:last-child {
	border-right: 0;
}

.twshop-benefit strong {
	display: block;
	margin-bottom: 7px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	font-weight: 400;
}

.twshop-benefit span {
	color: #6d6d67;
	font-size: 13px;
}

.twshop-footer {
	padding: 78px 0 34px;
	color: #eeeae3;
	background: #1f211f;
}

.twshop-footer__grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, 0.8fr) 1.35fr;
	gap: 42px;
}

.twshop-footer h3 {
	margin: 0 0 20px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.twshop-footer p,
.twshop-footer li,
.twshop-footer a {
	color: #c9c8c1;
	font-size: 13px;
	line-height: 1.75;
}

.twshop-footer__button {
	display: block;
	margin-top: 16px;
	padding: 0;
	border: 0;
	color: #c9c8c1;
	background: transparent;
	font: inherit;
	cursor: pointer;
}

.twshop-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.twshop-footer address {
	color: #c9c8c1;
	font-size: 13px;
	font-style: normal;
	line-height: 1.75;
}

.twshop-logo--footer {
	justify-content: flex-start;
	margin-bottom: 16px;
	color: #fff !important;
}

.twshop-logo--footer .twshop-logo__mark {
	filter: invert(1);
	mix-blend-mode: screen;
}

.twshop-footer__company > p {
	max-width: 310px;
}

.twshop-footer__care .twshop-footer__button {
	padding-bottom: 4px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.twshop-newsletter h2 {
	margin-bottom: 18px;
	color: #fff;
	font-size: 31px;
}

.twshop-newsletter form {
	display: flex;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.twshop-newsletter input {
	width: 100%;
	padding: 13px 0;
	border: 0;
	outline: 0;
	color: #fff;
	background: transparent;
	font: inherit;
}

.twshop-newsletter input::placeholder {
	color: #aaa9a3;
}

.twshop-newsletter button {
	border: 0;
	color: #fff;
	background: transparent;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.twshop-footer__contact {
	display: inline-block;
	padding-bottom: 4px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.twshop-footer__grid--compact {
	grid-template-columns: 1.4fr repeat(3, 1fr);
}

.twshop-page {
	min-height: 60vh;
	padding-block: clamp(68px, 9vw, 132px);
	background: var(--twshop-paper);
}

.twshop-page__article {
	max-width: 860px;
	margin-inline: auto;
	padding: clamp(32px, 6vw, 76px);
	background: #fff;
	box-shadow: 0 24px 70px rgba(29, 29, 27, 0.06);
}

.twshop-page__article--wide {
	max-width: 1180px;
}

.archive-shop .twshop-page {
	padding-block: clamp(48px, 6vw, 88px);
}

.archive-shop .twshop-page__article--wide {
	max-width: 1360px;
	padding: clamp(28px, 4vw, 52px);
}

.archive-shop .twshop-page__article > h1 {
	margin-bottom: 48px;
}

.archive-shop .minimog-grid-wrapper {
	--grid-columns-desktop: 3 !important;
	--grid-columns-tablet-extra: 2 !important;
	--grid-columns-mobile-extra: 2 !important;
	--grid-gutter-desktop: 34 !important;
	--grid-gutter-tablet-extra: 24 !important;
	--grid-gutter-mobile-extra: 14 !important;
}

.archive-shop .woocommerce-loop-product__title {
	margin-top: 18px !important;
	font-size: 18px !important;
	line-height: 1.35 !important;
}

.archive-shop .product-info .price {
	margin-top: 6px;
	font-size: 16px !important;
}

.woocommerce-pagination {
	margin-top: 64px;
}

.woocommerce-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}

.woocommerce-pagination ul.page-numbers li {
	margin: 0;
	border: 0;
}

.twshop-page__content .woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 46px;
	height: 46px;
	padding: 0 14px;
	border: 1px solid var(--twshop-line);
	color: var(--twshop-ink);
	background: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
}

.twshop-page__content .woocommerce-pagination a.page-numbers:hover,
.woocommerce-pagination span.page-numbers.current {
	border-color: var(--twshop-ink);
	color: #fff;
	background: var(--twshop-ink);
}

.twshop-page__article > h1 {
	margin: 0 0 38px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 6vw, 74px);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1;
}

.twshop-page__content {
	color: #42423e;
	font-size: 16px;
	line-height: 1.78;
}

.twshop-page__content h2 {
	margin: 44px 0 12px;
	color: var(--twshop-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.2;
}

.twshop-page__content p,
.twshop-page__content ul,
.twshop-page__content ol {
	margin: 0 0 18px;
}

.twshop-page__content a {
	border-bottom: 1px solid currentColor;
}

.twshop-page__intro {
	color: var(--twshop-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.45;
}

.twshop-page__content button,
.twshop-page__content .button,
.twshop-page__content input[type="submit"] {
	border: 1px solid var(--twshop-ink);
	border-radius: 0;
	color: #fff;
	background: var(--twshop-ink);
}

.twshop-page__content input,
.twshop-page__content select,
.twshop-page__content textarea {
	border-radius: 0;
}

.twshop-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 58px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	color: #999991;
	font-size: 11px;
	letter-spacing: 0.05em;
}

.twshop-checkout-meta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	white-space: nowrap;
}

.twshop-checkout-meta strong {
	margin-right: 4px;
	color: #c9c8c1;
	font-weight: 500;
}

.twshop-checkout-meta b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 25px;
	padding: 3px 8px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 3px;
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.08em;
}

.twshop-not-found__main {
	display: grid;
	align-items: center;
	min-height: 68vh;
}

.twshop-not-found__card {
	text-align: center;
}

.twshop-not-found__card > p:not(.twshop-eyebrow) {
	max-width: 590px;
	margin: 0 auto;
	color: #5d5d57;
	font-size: 17px;
	line-height: 1.75;
}

.twshop-not-found__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin-top: 34px;
}

.single-product .entry-product-meta-shipping,
.single-product .product-trust-badge,
.single-product .live-viewing-visitors {
	display: none !important;
}

.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin-bottom: 28px;
	border-bottom: 1px solid var(--twshop-line);
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
	padding: 14px 0 !important;
	font-size: 12px;
	font-weight: 600 !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
	box-shadow: inset 0 -2px 0 var(--twshop-ink);
}

.twshop-specifications {
	margin: 0 0 22px;
	padding-left: 20px;
}

.twshop-specifications li {
	margin-bottom: 9px;
	line-height: 1.65;
}

.twshop-specification-note {
	margin: 12px 0 0;
}

.twshop-product-information {
	margin-top: 72px;
	padding: 72px 0;
	background: #f4f1eb;
}

.twshop-product-information h2 {
	margin: 0 0 32px;
	font-family: "Times New Roman", serif;
	font-size: clamp(2.25rem, 4vw, 4rem);
	font-weight: 400;
}

.twshop-product-information__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid rgba(26, 26, 24, 0.2);
}

.twshop-product-information details {
	padding: 24px 0;
	border-bottom: 1px solid rgba(26, 26, 24, 0.2);
}

.twshop-product-information details:nth-child(odd) {
	padding-right: 32px;
}

.twshop-product-information details:nth-child(even) {
	padding-left: 32px;
	border-left: 1px solid rgba(26, 26, 24, 0.2);
}

.twshop-product-information summary {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
}

.twshop-product-information summary::after {
	content: "+";
	font-size: 1.3rem;
	font-weight: 400;
}

.twshop-product-information details[open] summary::after {
	content: "−";
}

.twshop-product-information details > :not(summary) {
	margin-top: 18px;
}

.twshop-related-products {
	padding: 88px 0 104px;
	background: #fff;
}

.twshop-related-products .twshop-section__head {
	margin-bottom: 34px;
}

@media (max-width: 760px) {
	.twshop-product-information {
		margin-top: 48px;
		padding: 48px 0;
	}

	.twshop-product-information__grid {
		grid-template-columns: 1fr;
	}

	.twshop-product-information details:nth-child(n) {
		padding-right: 0;
		padding-left: 0;
		border-left: 0;
	}

	.twshop-related-products {
		padding: 56px 0 72px;
	}
}

.twshop-consent[hidden],
.twshop-consent__choices[hidden],
.twshop-consent [hidden] {
	display: none !important;
}

.twshop-consent {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: grid;
	align-items: end;
	justify-items: end;
	padding: 24px;
}

.twshop-consent__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 18, 17, 0.42);
}

.twshop-consent__panel {
	position: relative;
	width: min(100%, 520px);
	padding: 38px;
	background: #fff;
	box-shadow: 0 24px 80px rgba(17, 17, 15, 0.24);
}

.twshop-consent__panel h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 38px;
	font-weight: 400;
	letter-spacing: -0.03em;
}

.twshop-consent__panel > p:not(.twshop-eyebrow) {
	margin: 18px 0 24px;
	color: #55554f;
	font-size: 14px;
	line-height: 1.7;
}

.twshop-consent__close {
	position: absolute;
	top: 14px;
	right: 16px;
	padding: 6px;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.twshop-consent__choices {
	display: grid;
	margin: 0 0 22px;
	border-top: 1px solid var(--twshop-line);
}

.twshop-consent__choices label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 17px 0;
	border-bottom: 1px solid var(--twshop-line);
}

.twshop-consent__choices span,
.twshop-consent__choices small {
	display: block;
}

.twshop-consent__choices small {
	margin-top: 4px;
	color: #74746d;
}

.twshop-consent__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.twshop-consent__actions .twshop-button {
	min-height: 46px;
	padding-inline: 20px;
	cursor: pointer;
}

.twshop-button--outline {
	color: var(--twshop-ink);
	background: #fff;
}

.twshop-consent__manage {
	padding: 10px 4px;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

@media (max-width: 1120px) {
	.twshop-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.twshop-nav {
		display: none;
	}

	.twshop-logo {
		text-align: left;
	}

	.twshop-mobile-menu {
		position: relative;
		display: block;
	}

	.twshop-mobile-menu summary {
		cursor: pointer;
		font-size: 13px;
		font-weight: 600;
		list-style: none;
	}

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

	.twshop-mobile-menu__panel {
		position: absolute;
		top: 37px;
		left: 0;
		display: grid;
		width: 230px;
		padding: 22px;
		border: 1px solid var(--twshop-line);
		background: #fff;
		box-shadow: 0 18px 42px rgba(20, 20, 18, 0.12);
		gap: 16px;
	}

	.twshop-products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.twshop-collections {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.twshop-category-links {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.twshop-footer__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.twshop-newsletter {
		grid-column: span 2;
	}
}

@media (max-width: 1440px) {
	.twshop-hero {
		min-height: clamp(780px, 64vw, 920px);
	}
}

@media (max-width: 760px) {
	.twshop-shell {
		width: min(100% - 28px, 1440px);
	}

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

	.twshop-header__inner {
		min-height: 64px;
		gap: 15px;
	}

	.twshop-logo {
		gap: 6px;
	}

	.twshop-logo__mark {
		width: 27px;
		height: 27px;
	}

	.twshop-logo__wordmark {
		font-size: 16px;
	}

	.twshop-actions a {
		display: none;
	}

	.twshop-actions a:last-child {
		display: block;
		padding-block: 20px;
	}

	.twshop-search {
		position: static;
	}

	.twshop-currency summary {
		padding-block: 20px;
	}

	.twshop-currency__menu {
		top: 54px;
	}

	.twshop-search__panel {
		left: 16px;
		right: 16px;
		width: auto;
	}

	.twshop-hero {
		min-height: min(860px, calc(100svh - 92px));
	}

	.twshop-hero__media img {
		object-position: center 34%;
	}

	.twshop-hero::before {
		background: linear-gradient(0deg, rgba(17, 17, 15, 0.62), transparent 65%);
	}

	.twshop-hero__content {
		padding-bottom: 56px;
	}

	.twshop-hero h1 {
		font-size: 52px;
	}

	.twshop-category-grid,
	.twshop-story,
	.twshop-brand-story {
		grid-template-columns: 1fr;
	}

	.twshop-limited-offer__inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.twshop-limited-offer__mark {
		justify-content: flex-start;
		min-height: 230px;
		padding: 28px;
	}

	.twshop-limited-offer__mark strong {
		font-size: clamp(96px, 35vw, 150px);
	}

	.twshop-limited-offer__content h2 {
		font-size: clamp(42px, 13vw, 58px);
	}

	.twshop-coupon-form {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 20px;
	}

	.twshop-coupon-form__fields {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.twshop-coupon-form input {
		border-right: 1px solid #c9c5bc;
	}

	.twshop-category-card {
		min-height: 620px;
	}

	.twshop-category-card__content {
		padding: 26px;
	}

	.twshop-section__head {
		align-items: start;
		flex-direction: column;
	}

	.twshop-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 12px;
	}

	.twshop-product__quick {
		position: static;
		margin-top: 8px;
		transform: none;
	}

	.twshop-editorial {
		min-height: 720px;
		background-position: 54% 30%;
	}

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

	.twshop-category-links,
	.twshop-footer__grid--compact {
		grid-template-columns: 1fr;
	}

	.twshop-footer__bottom,
	.twshop-not-found__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.twshop-checkout-meta {
		justify-content: flex-start;
	}

	.twshop-category-links a {
		min-height: 80px;
		border-right: 0;
	}

	.twshop-page {
		padding-block: 32px;
	}

	.twshop-page__article {
		padding: 28px 20px;
	}

	.twshop-story__image {
		min-height: 620px;
	}

	.twshop-brand-story__image {
		min-height: 620px;
		order: -1;
	}

	.twshop-story__content {
		padding: 52px 28px;
	}

	.twshop-brand-story__content {
		padding: 52px 28px;
	}

	.twshop-quotes,
	.twshop-benefits,
	.twshop-footer__grid {
		grid-template-columns: 1fr;
	}

	.twshop-benefit {
		border-right: 0;
		border-bottom: 1px solid var(--twshop-line);
	}

	.twshop-benefit:last-child {
		border-bottom: 0;
	}

	.twshop-newsletter {
		grid-column: auto;
	}

	.twshop-footer__bottom {
		flex-direction: column;
	}

	.twshop-consent {
		padding: 12px;
	}

	.twshop-consent__panel {
		padding: 30px 22px 24px;
	}

	.twshop-consent__actions {
		display: grid;
	}
}

/* 1.6.0 — Airy pearl gallery */
.twshop-home main {
	display: flex;
	flex-direction: column;
	background: #f7fbfc;
}

.twshop-home .twshop-hero { order: 1; }
.twshop-home .twshop-benefits { order: 2; }
.twshop-home .twshop-orbit-categories { order: 3; }
.twshop-home #new-arrivals { order: 4; }
.twshop-home .twshop-offer-ribbon { order: 5; }
.twshop-home #best-sellers { order: 6; }
.twshop-home .twshop-story { order: 7; }
.twshop-home .twshop-editorial { order: 8; }
.twshop-home .twshop-section:not([id], .twshop-orbit-categories) { order: 9; }
.twshop-home .twshop-brand-story { order: 10; }

.twshop-hero--mist {
	min-height: clamp(620px, 78vh, 860px);
	margin: 24px;
	border-radius: 0 0 120px 120px;
	overflow: hidden;
}

.twshop-hero--mist::after {
	background: linear-gradient(90deg, rgba(25,50,61,.52), rgba(25,50,61,.04) 70%);
}

.twshop-hero--mist h1 {
	max-width: 680px;
	font-size: clamp(54px, 6.5vw, 100px);
	font-weight: 400;
}

.twshop-orbit-categories {
	padding: 110px 0;
	background: linear-gradient(180deg, #f7fbfc, #e8f2f6);
}

.twshop-orbit-categories .twshop-category-grid {
	grid-template-columns: repeat(2, minmax(0, 520px));
	justify-content: center;
	gap: clamp(30px, 7vw, 110px);
}

.twshop-orbit-categories .twshop-category-card {
	aspect-ratio: 1;
	min-height: 0;
	border-radius: 50%;
	box-shadow: 0 25px 70px rgba(39,74,87,.18);
}

.twshop-offer-ribbon {
	margin: 30px 0;
	background: #bed8e2;
	color: #24343b;
}

.twshop-offer-ribbon .twshop-limited-offer__inner {
	grid-template-columns: .45fr 1.55fr;
}

.twshop-offer-ribbon .twshop-limited-offer__mark {
	color: #24343b;
	border-color: #24343b;
	background: rgba(255,255,255,.42);
}

.twshop-shop-cloud .twshop-page__article--wide {
	max-width: 1320px;
}

.twshop-shop-cloud .twshop-page__content::before {
	content: "All pieces   ·   Necklaces   ·   Earrings   ·   Rings   ·   Bracelets";
	display: block;
	margin-bottom: 42px;
	padding: 16px 24px;
	border: 1px solid #b9d3dc;
	border-radius: 999px;
	color: #426774;
	text-align: center;
	letter-spacing: .04em;
}

.twshop-shop-cloud ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 58px 30px !important;
}

.twshop-product-lightbox .entry-product {
	display: block;
	min-width: 0;
}

.twshop-product-lightbox .entry-product > .woo-single-info {
	display: block;
	width: 100%;
	min-width: 0;
}

.twshop-product-lightbox .entry-product > .woo-single-info > .row {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
	gap: 58px;
	align-items: start;
	width: 100%;
	margin: 0;
	min-width: 0;
}

.twshop-product-lightbox .woo-single-info > .row > .col-woo-single-images {
	flex: none;
	width: 100%;
	max-width: none;
	min-width: 0;
	padding: 0;
}

.twshop-product-lightbox .woo-single-info > .row > .col-woo-single-summary {
	flex: none;
	width: 100%;
	max-width: none;
	min-width: 0;
	padding: 0;
}

.twshop-product-lightbox .col-woo-single-images > .woocommerce-product-gallery {
	float: none !important;
	width: 100% !important;
	max-width: 100%;
	min-width: 0;
	padding: 30px;
	border-radius: 42px;
	background: #edf6f8;
}

.twshop-product-lightbox .flex-control-thumbs {
	display: flex !important;
	gap: 12px;
	margin-top: 18px !important;
}

.twshop-product-lightbox .col-woo-single-summary > .summary {
	float: none !important;
	width: 100% !important;
	max-width: 100%;
	min-width: 0;
	padding-top: 36px;
}

.twshop-product-information--cloud-cards {
	margin: 96px 16px 0;
	padding: 88px 0;
	border-radius: 72px;
	background: linear-gradient(145deg, #edf7fa, #dcecf2);
}

.twshop-product-information--cloud-cards .twshop-product-information__cloud-head {
	max-width: 700px;
	margin: 0 auto 50px;
	text-align: center;
}

.twshop-product-information--cloud-cards .twshop-product-information__cloud-head h2 {
	margin-bottom: 20px;
	color: #274a57;
	font-family: Jost, Arial, sans-serif;
	font-size: clamp(40px, 4.8vw, 68px);
	font-weight: 500;
	line-height: 1.02;
}

.twshop-product-information--cloud-cards .twshop-product-information__cloud-head > p:last-child {
	max-width: 540px;
	margin: 0 auto;
	color: #52717c;
	line-height: 1.75;
}

.twshop-product-information--cloud-cards .twshop-product-information__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	border: 0;
}

.twshop-product-information--cloud-cards .twshop-product-information__grid details:nth-child(n) {
	min-width: 0;
	padding: 24px;
	border: 1px solid #b9d3dc;
	border-radius: 28px;
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 16px 36px rgba(66, 103, 116, .09);
}

.twshop-product-information--cloud-cards summary {
	align-items: center;
	min-height: 48px;
	color: #274a57;
	font-size: 17px;
	letter-spacing: .02em;
}

.twshop-product-information--cloud-cards summary span {
	display: inline-grid;
	flex: 0 0 38px;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-right: 10px;
	border-radius: 999px;
	background: #c8e2ea;
	color: #315864;
	font-size: 10px;
	letter-spacing: .08em;
}

.twshop-product-information--cloud-cards details > :not(summary) {
	color: #496773;
}

.twshop-footer-layered {
	text-align: center;
	background: #dcecf1;
	color: #24343b;
}

.twshop-footer-layered :is(p, li, a, address, .twshop-footer__bottom) {
	color: #425f69;
}

.twshop-footer-layered .twshop-logo--footer {
	color: #24343b !important;
}

.twshop-footer-layered .twshop-logo--footer .twshop-logo__mark {
	filter: none;
	mix-blend-mode: normal;
}

.twshop-footer-layered .twshop-footer__contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	color: #ffffff !important;
	background: #24343b;
}

.twshop-footer-layered .twshop-footer__button {
	min-height: 44px;
	padding: 8px 4px;
	border-bottom-color: rgba(36, 52, 59, .55);
	color: #24343b;
}

.twshop-footer-layered .twshop-footer__bottom {
	border-top-color: rgba(36, 52, 59, .2);
}

.twshop-footer-layered .twshop-checkout-meta strong {
	color: #24343b;
}

.twshop-footer-layered .twshop-checkout-meta b {
	border-color: rgba(36, 52, 59, .35);
	color: #24343b;
	background: rgba(255, 255, 255, .72);
}

.twshop-footer-layered .twshop-footer__grid {
	grid-template-columns: repeat(3, 1fr);
	max-width: 1050px;
	margin-inline: auto;
}

.twshop-footer-layered .twshop-footer__company,
.twshop-footer-layered .twshop-footer__care {
	grid-column: 1 / -1;
	max-width: 680px;
	margin-inline: auto;
}

@media (max-width: 900px) {
	.twshop-hero--mist { margin: 10px; border-radius: 0 0 56px 56px; }
	.twshop-orbit-categories .twshop-category-grid,
	.twshop-product-lightbox .entry-product > .woo-single-info > .row { grid-template-columns: 1fr; }
	.twshop-shop-cloud ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
	.twshop-product-information--cloud-cards {
		margin: 64px 10px 0;
		padding: 64px 0;
		border-radius: 48px;
	}
	.twshop-product-information--cloud-cards .twshop-product-information__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.twshop-footer-layered .twshop-footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	html,
	body {
		overflow-x: clip;
	}

	.twshop-product-information--cloud-cards .twshop-product-information__grid {
		grid-template-columns: 1fr;
	}
}
