/*
Theme Name: Watch Collection
Description: A responsive WooCommerce storefront for clocks and considered home furnishings.
Author: Local Storefront Team
Version: 5.0.0
Requires PHP: 7.2
Tested up to: 6.9
Requires at least: 5.0
Tags: e-commerce, one-column, custom-logo, custom-menu, featured-images, full-width-template
Text Domain: watch-collection
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

@font-face {
	font-display: swap;
	font-family: "Manrope";
	font-style: normal;
	font-weight: 300 700;
	src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
	font-display: swap;
	font-family: "Red Hat Display";
	font-style: normal;
	font-weight: 400 500;
	src: url("assets/fonts/red-hat-display-latin.woff2") format("woff2");
}

:root {
	--watch-ink: #111;
	--watch-paper: #fff;
	--watch-soft: #f5f5f3;
	--watch-line: #dadad7;
	--watch-muted: #666;
	--watch-accent: #5d2320;
	--watch-header-height: 96px;
	--watch-gutter: clamp(20px, 3.5vw, 56px);
	--watch-max: 1600px;
	--watch-font-body: "Manrope", sans-serif;
	--watch-font-accent: "Red Hat Display", sans-serif;
	--watch-type-body: .875rem;
	--watch-type-xs: .6875rem;
	--watch-type-sm: .75rem;
	--watch-type-lg: 1.125rem;
	--watch-type-h1: 2.5rem;
	--watch-type-h2: 2rem;
	--watch-type-h3: 1.5rem;
	--watch-type-h4: 1.375rem;
	--watch-type-h5: 1.125rem;
	--watch-type-h6: 1rem;
	--watch-body-tracking: -.01em;
	--watch-heading-tracking: -.025em;
}

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

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	background: var(--watch-paper);
	color: var(--watch-ink);
	font-family: var(--watch-font-body);
	font-size: var(--watch-type-body);
	letter-spacing: var(--watch-body-tracking);
	line-height: 1.6;
	margin: 0;
	min-width: 320px;
	overflow-x: hidden;
}

body.watch-collection-panel-open {
	overflow: hidden;
}

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

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

button,
summary,
a {
	-webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
h4,
ul,
ol {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	font-family: var(--watch-font-body);
	font-weight: 700;
	letter-spacing: var(--watch-heading-tracking);
	overflow-wrap: anywhere;
}

h1 {
	font-size: var(--watch-type-h1);
	line-height: 1.1;
}

h2 {
	font-size: var(--watch-type-h2);
	line-height: 1.1;
}

h3 {
	font-size: var(--watch-type-h3);
	line-height: 1.2;
}

h4 {
	font-size: var(--watch-type-h4);
	line-height: 1.3;
}

button,
select,
summary {
	cursor: pointer;
}

:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
}

.screen-reader-text:focus {
	background: #fff;
	clip: auto !important;
	clip-path: none;
	color: #000;
	height: auto;
	left: 10px;
	padding: 12px 16px;
	top: 10px;
	width: auto;
	z-index: 100001;
}

.watch-collection-header {
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
	height: var(--watch-header-height);
	position: sticky;
	top: 0;
	transition: background .25s ease, color .25s ease, box-shadow .25s ease;
	z-index: 1000;
}

.watch-collection-header.is-overlay {
	background: linear-gradient(to bottom, rgba(0, 0, 0, .42), rgba(0, 0, 0, 0));
	border-bottom-color: rgba(255, 255, 255, .25);
	color: #fff;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.watch-collection-header.is-scrolled {
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
	color: #111;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
}

.admin-bar .watch-collection-header.is-scrolled {
	top: 32px;
}

.watch-collection-header-inner {
	align-items: center;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	height: 100%;
	margin: 0 auto;
	max-width: var(--watch-max);
	padding: 0 var(--watch-gutter);
}

.watch-collection-brand {
	align-items: center;
	display: flex;
	font-family: var(--watch-font-body);
	font-size: clamp(16px, 1.6vw, 24px);
	font-weight: 700;
	justify-content: center;
	letter-spacing: .08em;
	max-width: 260px;
	text-align: center;
	text-transform: uppercase;
}

.watch-collection-brand img {
	max-height: 54px;
	max-width: 220px;
	width: auto;
}

.watch-collection-desktop-nav,
.watch-collection-header-actions,
.watch-collection-mobile-actions {
	align-items: center;
	display: flex;
}

.watch-collection-desktop-nav {
	gap: clamp(16px, 1.6vw, 30px);
	justify-self: start;
}

.watch-collection-desktop-nav > a,
.watch-collection-mega-trigger > a {
	align-items: center;
	display: flex;
	font-size: var(--watch-type-body);
	font-weight: 400;
	gap: 7px;
	height: var(--watch-header-height);
	letter-spacing: var(--watch-body-tracking);
	white-space: nowrap;
}

.watch-collection-desktop-nav a:hover,
.watch-collection-desktop-nav a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 5px;
}

.watch-collection-mega-trigger > a i,
.watch-collection-currency i {
	font-size: 8px;
}

.watch-collection-header-actions {
	gap: clamp(8px, 1vw, 18px);
	justify-self: end;
}

.watch-collection-mobile-actions {
	display: none;
	gap: 6px;
}

.watch-collection-icon-button,
.watch-collection-currency {
	background: transparent;
	border: 0;
	color: inherit;
}

.watch-collection-icon-button {
	align-items: center;
	display: inline-flex;
	font-size: 18px;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
	position: relative;
}

.watch-collection-currency {
	font-size: 12px;
	font-weight: 700;
}

.watch-collection-cart-count {
	align-items: center;
	background: #111;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 9px;
	height: 17px;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 4px;
	width: 17px;
}

.is-overlay:not(.is-scrolled) .watch-collection-cart-count {
	background: #fff;
	color: #111;
}

.watch-collection-mega-menu {
	background: #fff;
	box-shadow: 0 18px 30px rgba(0, 0, 0, .09);
	color: #111;
	display: grid;
	grid-template-columns: minmax(220px, .7fr) 2fr;
	left: 0;
	opacity: 0;
	padding: 42px var(--watch-gutter) 50px;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: var(--watch-header-height);
	transform: translateY(-8px);
	transition: opacity .18s ease, transform .18s ease;
	visibility: hidden;
	z-index: 1002;
}

.is-scrolled .watch-collection-mega-menu {
	top: var(--watch-header-height);
}

.admin-bar .is-scrolled .watch-collection-mega-menu {
	top: calc(var(--watch-header-height) + 32px);
}

.watch-collection-mega-trigger:hover .watch-collection-mega-menu,
.watch-collection-mega-trigger:focus-within .watch-collection-mega-menu {
	opacity: 1;
	pointer-events: auto;
	transform: none;
	visibility: visible;
}

.watch-collection-mega-links {
	align-content: start;
	display: grid;
	gap: 12px;
	padding-right: 40px;
}

.watch-collection-mega-links h2 {
	font-size: 28px;
	margin-bottom: 12px;
}

.watch-collection-mega-links a {
	font-size: 14px;
}

.watch-collection-mega-links a:last-child {
	font-weight: 700;
	margin-top: 10px;
	text-decoration: underline;
	text-underline-offset: 5px;
}

.watch-collection-mega-cards {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, 1fr);
}

.watch-collection-mega-cards a {
	font-size: 14px;
}

.watch-collection-mega-cards img {
	aspect-ratio: 1.38;
	margin-bottom: 12px;
	object-fit: cover;
	width: 100%;
}

.watch-collection-panel-backdrop {
	background: rgba(0, 0, 0, .46);
	inset: 0;
	position: fixed;
	z-index: 1998;
}

.watch-collection-panel-backdrop[hidden] {
	display: none;
}

.watch-collection-side-panel,
.watch-collection-account-panel {
	background: #fff;
	bottom: 0;
	box-shadow: -12px 0 40px rgba(0, 0, 0, .14);
	color: #111;
	overflow-y: auto;
	padding: 28px 34px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(105%);
	transition: transform .28s cubic-bezier(.3, .7, .2, 1);
	width: min(440px, 100%);
	z-index: 1999;
}

.watch-collection-side-panel.is-open,
.watch-collection-account-panel.is-open {
	transform: none;
}

.watch-collection-panel-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 32px;
}

.watch-collection-panel-header h2,
.watch-collection-account-panel h2 {
	font-size: 28px;
	margin: 0;
}

.watch-collection-round-button {
	align-items: center;
	background: transparent;
	border: 1px solid #d5d5d5;
	border-radius: 50%;
	color: #111;
	display: flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.watch-collection-search-form,
.watch-collection-search-page-form {
	border-bottom: 1px solid #111;
	display: grid;
	grid-template-columns: 1fr 44px;
}

.watch-collection-search-form input,
.watch-collection-search-page-form input {
	background: transparent;
	border: 0;
	font-size: 17px;
	min-width: 0;
	padding: 14px 2px;
}

.watch-collection-search-form button,
.watch-collection-search-page-form button {
	background: transparent;
	border: 0;
	font-size: 18px;
}

.watch-collection-panel-links {
	display: grid;
	gap: 15px;
	margin-top: 44px;
}

.watch-collection-panel-links span {
	color: var(--watch-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.watch-collection-panel-links a {
	border-bottom: 1px solid var(--watch-line);
	font-size: 17px;
	padding-bottom: 12px;
}

.watch-collection-account-panel {
	left: 50%;
	max-height: 520px;
	padding: 48px;
	right: auto;
	top: 50%;
	transform: translate(-50%, -44%) scale(.98);
	transition: opacity .22s ease, transform .22s ease, visibility .22s;
	visibility: hidden;
	width: min(650px, calc(100% - 32px));
	bottom: auto;
	opacity: 0;
}

.watch-collection-account-panel.is-open {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	visibility: visible;
}

.watch-collection-account-panel > .watch-collection-round-button {
	position: absolute;
	right: 22px;
	top: 22px;
}

.watch-collection-account-panel > p {
	color: var(--watch-muted);
	max-width: 480px;
}

.watch-collection-panel-primary,
.watch-collection-filter-actions button,
.watch-collection-empty-state > a,
.watch-collection-light-button {
	align-items: center;
	border: 1px solid #111;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: .03em;
	min-height: 50px;
	padding: 0 26px;
}

.watch-collection-panel-primary,
.watch-collection-filter-actions button,
.watch-collection-empty-state > a {
	background: #111;
	color: #fff;
}

.watch-collection-account-shortcuts {
	border-top: 1px solid var(--watch-line);
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr 1fr;
	margin-top: 34px;
	padding-top: 28px;
}

.watch-collection-account-shortcuts a {
	align-items: center;
	background: var(--watch-soft);
	display: flex;
	gap: 12px;
	padding: 18px;
}

.watch-collection-mobile-menu {
	left: 0;
	right: auto;
	transform: translateX(-105%);
	width: min(420px, 100%);
}

.watch-collection-mobile-menu nav > a,
.watch-collection-mobile-nav-group > button {
	align-items: center;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--watch-line);
	color: #111;
	display: flex;
	font-size: 19px;
	justify-content: space-between;
	padding: 18px 0;
	text-align: left;
	width: 100%;
}

.watch-collection-mobile-submenu {
	background: #fff;
	inset: 0;
	overflow-y: auto;
	padding: 28px 34px;
	position: absolute;
	transform: translateX(100%);
	transition: transform .25s ease;
	z-index: 4;
}

.watch-collection-mobile-submenu.is-open {
	transform: none;
}

.watch-collection-mobile-submenu > button {
	background: transparent;
	border: 0;
	display: flex;
	font-size: 18px;
	font-weight: 700;
	gap: 14px;
	margin: 10px 0 30px;
	min-height: 44px;
	padding: 0;
}

.watch-collection-mobile-submenu > a {
	border-bottom: 1px solid var(--watch-line);
	display: block;
	padding: 12px 0;
}

.watch-collection-mobile-submenu-cards {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
	margin-top: 24px;
}

.watch-collection-mobile-submenu-cards img {
	aspect-ratio: 1;
	margin-bottom: 8px;
	object-fit: cover;
}

.watch-collection-mobile-menu-footer {
	border-top: 1px solid var(--watch-line);
	margin-top: 40px;
	padding-top: 24px;
}

.watch-collection-mobile-menu-footer > div:last-child {
	display: flex;
	justify-content: space-between;
	margin-top: 22px;
}

.watch-collection-social-links {
	display: flex;
	gap: 4px;
	margin-left: -14px;
}

.watch-collection-social-links a,
.watch-collection-footer-socials a {
	align-items: center;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.watch-collection-mini-cart-content ul {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.watch-collection-mini-cart-content .mini_cart_item {
	border-bottom: 1px solid var(--watch-line);
	min-height: 94px;
	padding: 0 20px 18px 86px;
	position: relative;
}

.watch-collection-mini-cart-content .mini_cart_item + .mini_cart_item {
	padding-top: 18px;
}

.watch-collection-mini-cart-content .mini_cart_item img {
	left: 0;
	position: absolute;
	top: 0;
	width: 70px;
}

.watch-collection-mini-cart-content .remove {
	position: absolute;
	right: 0;
	top: 0;
}

.watch-collection-mini-cart-content .woocommerce-mini-cart__empty-message {
	color: var(--watch-muted);
	font-size: 18px;
	padding: 70px 0;
	text-align: center;
}

.watch-collection-hero {
	align-items: flex-end;
	color: #fff;
	display: flex;
	height: min(645px, 100svh);
	justify-content: center;
	overflow: hidden;
	padding: 0 var(--watch-gutter) 108px;
	position: relative;
}

.watch-collection-hero video,
.watch-collection-hero-shade {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.watch-collection-hero video {
	object-fit: cover;
}

.watch-collection-hero-shade {
	background: linear-gradient(to bottom, rgba(0, 0, 0, .1) 25%, rgba(0, 0, 0, .52) 100%);
}

.watch-collection-hero-video-toggle {
	align-items: center;
	background: rgba(17, 17, 17, .42);
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 50%;
	bottom: 24px;
	color: #fff;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	position: absolute;
	right: var(--watch-gutter);
	width: 44px;
	z-index: 2;
}

.watch-collection-hero-video-toggle:hover,
.watch-collection-hero-video-toggle:focus-visible {
	background: rgba(17, 17, 17, .72);
	border-color: #fff;
}

.watch-collection-hero-video-toggle:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.watch-collection-hero-content {
	max-width: 800px;
	position: relative;
	text-align: center;
}

.watch-collection-hero-content > p:first-child {
	font-size: 12.8px;
	font-weight: 600;
	letter-spacing: .3em;
	line-height: 1.4;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.watch-collection-hero h1 {
	font-family: var(--watch-font-body);
	font-size: 48px;
	font-weight: 700;
	letter-spacing: .25em;
	line-height: 1.1;
	margin-bottom: 16px;
	text-transform: uppercase;
	white-space: nowrap;
}

.watch-collection-hero h1 + p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 28px;
}

.watch-collection-light-button {
	background: #fff;
	border-color: #fff;
	color: #111;
	font-size: 12.8px;
	font-weight: 400;
	letter-spacing: -.01em;
	line-height: 1.6;
	min-width: 150px;
}

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

.watch-collection-category-section {
	background: #fff;
	padding: 58px 0 92px;
}

.watch-collection-section-heading {
	align-items: end;
	display: flex;
	justify-content: flex-start;
	margin: 0 auto 36px;
	max-width: var(--watch-max);
	padding: 0 var(--watch-gutter);
}

.watch-collection-section-heading h2 {
	font-size: 35px;
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.6;
	margin: 0;
}

.watch-collection-scroller-controls {
	display: flex;
	gap: 10px;
	margin-left: 30px;
}

.watch-collection-scroller-controls button {
	align-items: center;
	background: transparent;
	border: 1px solid #aaa;
	border-radius: 50%;
	display: flex;
	height: 46px;
	justify-content: center;
	width: 46px;
}

.watch-collection-category-scroller {
	display: grid;
	gap: 18px;
	grid-auto-columns: min(400px, calc(100vw - 48px));
	grid-auto-flow: column;
	margin: 0 auto;
	max-width: var(--watch-max);
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 0 var(--watch-gutter) 18px;
	scrollbar-width: thin;
	scroll-snap-type: inline mandatory;
}

.watch-collection-category-card {
	background-color: #e9e9e6;
	background-image: var(--category-room);
	background-position: center;
	background-size: cover;
	height: 515px;
	overflow: hidden;
	position: relative;
	scroll-snap-align: start;
}

.watch-collection-category-card::after {
	background: linear-gradient(to bottom, rgba(255, 255, 255, .95), rgba(255, 255, 255, .15) 46%, rgba(0, 0, 0, .12));
	content: "";
	inset: 0;
	position: absolute;
}

.watch-collection-category-card img {
	bottom: 0;
	left: 50%;
	max-height: 65%;
	max-width: 88%;
	object-fit: contain;
	position: absolute;
	transform: translateX(-50%);
	z-index: 2;
}

.watch-collection-category-copy {
	padding: 34px 30px;
	position: relative;
	z-index: 3;
}

.watch-collection-category-copy h3 {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -.015px;
	line-height: 1.6;
	margin-bottom: 8px;
}

.watch-collection-category-copy p {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -.16px;
	line-height: 1.6;
	margin-bottom: 16px;
}

.watch-collection-category-copy a,
.watch-collection-editorial-copy em {
	border-bottom: 1px solid currentColor;
	font-family: var(--watch-font-accent);
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: -.16px;
	line-height: 1;
	padding-bottom: 3px;
	text-transform: none;
}

.watch-collection-editorial-panel {
	align-items: center;
	background-image: var(--editorial-image);
	background-position: center;
	background-size: cover;
	color: #fff;
	display: flex;
	height: min(820px, 86vw);
	justify-content: center;
	position: relative;
}

.watch-collection-editorial-shade {
	background: rgba(0, 0, 0, .28);
	inset: 0;
	position: absolute;
	transition: background .3s ease;
}

.watch-collection-editorial-panel:hover .watch-collection-editorial-shade {
	background: rgba(0, 0, 0, .38);
}

.watch-collection-editorial-copy {
	display: grid;
	justify-items: center;
	max-width: 750px;
	padding: var(--watch-gutter);
	position: relative;
	text-align: center;
}

.watch-collection-editorial-copy strong {
	font-family: var(--watch-font-body);
	font-size: clamp(50px, 6vw, 88px);
	font-weight: 400;
	line-height: 1;
}

.watch-collection-editorial-copy > span {
	font-size: clamp(17px, 1.6vw, 23px);
	margin: 18px 0 32px;
}

.watch-collection-catalog,
.watch-collection-search-results,
.watch-collection-product-page {
	margin: 0 auto;
	max-width: var(--watch-max);
	padding: 0 var(--watch-gutter) 110px;
}

.watch-collection-catalog {
	background: #f7f7f6;
}

.watch-collection-catalog-header,
.watch-collection-search-header {
	margin: 0 auto;
	max-width: 1000px;
	padding: 60px 20px 50px;
	text-align: center;
}

.watch-collection-catalog-header h1,
.watch-collection-search-header h1 {
	font-family: var(--watch-font-body);
	font-size: var(--watch-type-h2);
	font-weight: 700;
	letter-spacing: var(--watch-heading-tracking);
	line-height: 1.1;
	margin-bottom: 18px;
}

.watch-collection-catalog-header > div,
.watch-collection-search-header span {
	color: var(--watch-muted);
	font-size: var(--watch-type-body);
}

.watch-collection-search-header p {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.watch-collection-catalog-divider {
	border-top: 1px solid var(--watch-line);
}

.watch-collection-catalog-toolbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 70px 0 20px;
}

.watch-collection-catalog-toolbar > div {
	align-items: center;
	display: flex;
	gap: 20px;
}

.watch-collection-filter-open {
	align-items: center;
	background: transparent;
	border: 0;
	display: flex;
	font-size: var(--watch-type-body);
	font-weight: 400;
	gap: 9px;
	min-height: 44px;
	padding: 8px 0;
}

.watch-collection-filter-open span {
	align-items: center;
	background: #111;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 10px;
	height: 19px;
	justify-content: center;
	width: 19px;
}

.woocommerce-result-count {
	color: var(--watch-muted);
	font-size: 12px;
	margin: 0;
}

.watch-collection-catalog-toolbar .woocommerce-result-count {
	display: none;
}

.watch-collection-catalog-ordering {
	font-size: var(--watch-type-body);
}

.watch-collection-catalog-ordering > span {
	font-weight: 700;
}

.woocommerce-ordering {
	margin: 0;
}

.woocommerce-ordering select {
	background: transparent;
	border: 0;
	font-weight: 400;
	padding: 8px 20px 8px 3px;
}

.watch-collection-catalog-ordering .woocommerce-ordering select {
	background: #efefed !important;
	border: 0 !important;
	border-radius: 22px !important;
	min-height: 44px;
	padding: 8px 34px 8px 14px;
}

ul.products,
.watch-collection-search-grid,
.related.products ul.products {
	display: grid;
	gap: 54px 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.watch-collection-product-card {
	margin: 0 !important;
	min-width: 0;
	width: auto !important;
}

.watch-collection-product-card-media {
	background: #f4f4f2;
	display: block;
	overflow: hidden;
	position: relative;
}

.watch-collection-product-card-media::before {
	content: "";
	display: block;
	padding-top: 112%;
}

.watch-collection-product-card-media > img {
	height: 100% !important;
	inset: 0;
	object-fit: contain;
	padding: 7%;
	position: absolute;
	transition: opacity .3s ease, transform .4s ease;
	width: 100% !important;
}

.watch-collection-product-hover-image {
	opacity: 0;
}

.watch-collection-product-card-media:hover .watch-collection-product-hover-image {
	opacity: 1;
}

.watch-collection-product-card-media:hover .watch-collection-product-primary-image {
	opacity: 0;
}

.watch-collection-product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	left: 13px;
	position: absolute;
	top: 13px;
	z-index: 4;
}

.watch-collection-product-badges span {
	background: #111;
	color: #fff;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1;
	padding: 4px 8px;
	text-transform: uppercase;
}

.watch-collection-product-badges .is-in-stock {
	background: #fff;
	color: #111;
}

.watch-collection-product-badges .is-sold-out {
	background: #777;
}

.watch-collection-card-measurements {
	background: rgba(255, 255, 255, .93);
	bottom: 0;
	font-size: 11.5px;
	font-weight: 500;
	left: 0;
	letter-spacing: -.16px;
	line-height: 1;
	padding: 10px 13px;
	position: absolute;
	right: 0;
	text-align: center;
	z-index: 4;
}

.watch-collection-product-card-copy {
	padding-top: 16px;
	text-align: center;
}

.watch-collection-product-card-copy h2 {
	font-family: var(--watch-font-body);
	font-size: 12.8px;
	font-weight: 400;
	letter-spacing: -.16px;
	line-height: 1.5;
	margin-bottom: 6px;
}

.watch-collection-product-card-price {
	font-size: 11.52px;
	font-weight: 400;
	letter-spacing: -.16px;
	line-height: 1.6;
}

.price del {
	color: #8b8b8b;
	font-weight: 400;
	margin-right: 6px;
}

.price ins {
	background: transparent;
	color: var(--watch-accent);
	text-decoration: none;
}

.woocommerce-pagination,
.navigation.pagination {
	margin-top: 60px;
	text-align: center;
}

.woocommerce-pagination ul,
.nav-links {
	display: flex;
	gap: 8px;
	justify-content: center;
	list-style: none;
	padding: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span,
.page-numbers {
	align-items: center;
	border: 1px solid var(--watch-line);
	display: inline-flex;
	height: 44px;
	justify-content: center;
	min-width: 44px;
}

.woocommerce-pagination .current,
.page-numbers.current {
	background: #111;
	color: #fff;
}

.watch-collection-filter-panel details {
	border-bottom: 1px solid var(--watch-line);
}

.watch-collection-filter-panel summary,
.watch-collection-product-accordions summary {
	align-items: center;
	display: flex;
	font-weight: 700;
	justify-content: space-between;
	list-style: none;
	padding: 21px 0;
}

.watch-collection-filter-panel summary::-webkit-details-marker,
.watch-collection-product-accordions summary::-webkit-details-marker {
	display: none;
}

details[open] > summary i {
	transform: rotate(180deg);
}

.watch-collection-filter-options {
	display: grid;
	gap: 12px;
	padding: 0 0 22px;
}

.watch-collection-filter-options label {
	display: flex;
	gap: 10px;
}

.watch-collection-price-filter {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
	padding-bottom: 22px;
}

.watch-collection-price-filter span {
	display: block;
	font-size: 11px;
	margin-bottom: 5px;
}

.watch-collection-price-filter input {
	border: 1px solid var(--watch-line);
	padding: 10px;
	width: 100%;
}

.watch-collection-filter-actions {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr 2fr;
	padding-top: 30px;
}

.watch-collection-filter-actions a {
	text-align: center;
	text-decoration: underline;
}

.watch-collection-filter-actions button {
	width: 100%;
}

.watch-collection-product-page {
	padding-top: 48px;
}

.watch-collection-product-breadcrumb {
	display: none;
}

.watch-collection-product-breadcrumb span {
	margin: 0 8px;
}

.watch-collection-product-layout {
	display: grid;
	gap: clamp(40px, 4vw, 56px);
	grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
}

.watch-collection-product-main-image {
	aspect-ratio: 1;
	background: #f3f3f1;
	min-height: 0;
	position: relative;
}

.watch-collection-product-main-image > img {
	height: 100%;
	inset: 0;
	object-fit: contain;
	padding: 5%;
	position: absolute;
	width: 100%;
}

.watch-collection-gallery-zoom {
	align-items: center;
	background: #fff;
	border: 0;
	border-radius: 50%;
	display: flex;
	height: 46px;
	justify-content: center;
	position: absolute;
	right: 18px;
	top: 18px;
	width: 46px;
	z-index: 5;
}

.watch-collection-gallery-thumbnails {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: 12px;
}

.watch-collection-gallery-thumbnails button {
	background: #f3f3f1;
	border: 1px solid transparent;
	padding: 6px;
}

.watch-collection-gallery-thumbnails button.is-active {
	border-color: #111;
}

.watch-collection-gallery-thumbnails img {
	aspect-ratio: 1;
	object-fit: contain;
	width: 100%;
}

.watch-collection-product-summary {
	align-self: start;
	padding-top: 24px;
	position: sticky;
	top: calc(var(--watch-header-height) + 20px);
}

.admin-bar .watch-collection-product-summary {
	top: calc(var(--watch-header-height) + 52px);
}

.watch-collection-product-summary h1 {
	font-size: var(--watch-type-h3);
	font-weight: 700;
	letter-spacing: var(--watch-heading-tracking);
	line-height: 1.2;
	margin-bottom: 20px;
}

.watch-collection-product-price {
	align-items: baseline;
	display: flex;
	font-size: var(--watch-type-lg);
	font-weight: 400;
	gap: 12px;
	letter-spacing: var(--watch-body-tracking);
	line-height: 1.6;
	margin-bottom: 30px;
}

.watch-collection-product-price ins {
	order: -1;
}

.watch-collection-measurement-grid {
	border-bottom: 1px solid var(--watch-line);
	border-top: 1px solid var(--watch-line);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 24px;
}

.watch-collection-measurement-grid > div {
	align-items: center;
	border-right: 1px solid var(--watch-line);
	display: grid;
	grid-template-areas: "icon value" "icon label";
	grid-template-columns: 30px 1fr;
	justify-items: start;
	padding: 7px 6px;
	text-align: center;
}

.watch-collection-measurement-grid > div:last-child {
	border-right: 0;
}

.watch-collection-measurement-grid i {
	grid-area: icon;
	font-size: 16px;
	justify-self: center;
	margin: 0;
}

.watch-collection-measurement-grid span {
	color: var(--watch-muted);
	font-family: var(--watch-font-accent);
	font-size: 8.8px;
	font-weight: 700;
	grid-area: label;
	letter-spacing: .22em;
	line-height: 1;
	text-transform: uppercase;
}

.watch-collection-measurement-grid strong {
	font-size: 12.8px;
	grid-area: value;
	letter-spacing: -.01em;
	line-height: 1.1;
}

.stock {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: var(--watch-body-tracking);
	margin-bottom: 15px;
	text-transform: none;
}

.stock.in-stock::before,
.stock.out-of-stock::before {
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 8px;
	margin-right: 8px;
	width: 8px;
}

.stock.in-stock::before {
	background: #2c7b38;
}

.stock.out-of-stock::before {
	background: #8b2323;
}

.watch-collection-product-purchase form.cart {
	display: grid;
	gap: 12px;
	grid-template-columns: 92px 1fr;
	margin-bottom: 28px;
}

.watch-collection-product-purchase .quantity input {
	border: 1px solid #111;
	height: 54px;
	text-align: center;
	width: 100%;
}

.single_add_to_cart_button,
.woocommerce button.button,
.woocommerce a.button,
.wc-block-components-button,
.wp-element-button {
	background: #111 !important;
	border: 1px solid #111 !important;
	border-radius: 0 !important;
	color: #fff !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	min-height: 50px;
	padding: 13px 24px !important;
}

.woocommerce button.single_add_to_cart_button {
	height: 54px;
	font-size: 12.8px !important;
	font-weight: 400 !important;
	letter-spacing: -.01em;
}

@media (min-width: 750px) {
	.stock {
		font-size: 16px;
	}
}

.single_add_to_cart_button:disabled,
.button:disabled {
	cursor: not-allowed;
	opacity: .45;
}

.watch-collection-product-assurances {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, 1fr);
	margin: 22px 0 28px;
}

.watch-collection-product-assurances > div {
	align-items: start;
	display: flex;
	font-size: 10px;
	gap: 9px;
	line-height: 1.4;
}

.watch-collection-product-assurances i {
	font-size: 16px;
	margin-top: 2px;
}

.watch-collection-product-assurances strong {
	display: block;
	font-size: 11px;
}

.watch-collection-product-accordions {
	border-top: 1px solid var(--watch-line);
}

.watch-collection-product-accordions details {
	border-bottom: 1px solid var(--watch-line);
}

.watch-collection-product-accordions details > div {
	color: #454545;
	font-size: var(--watch-type-body);
	line-height: 1.6;
	padding-bottom: 25px;
}

.watch-collection-product-accordions summary {
	font-size: var(--watch-type-body);
	font-weight: 700;
	line-height: 1.6;
}

.watch-collection-product-description > :last-child {
	margin-bottom: 0;
}

.watch-collection-related-products {
	margin-top: 110px;
}

.watch-collection-related-products h2 {
	font-size: clamp(30px, 3vw, 42px);
	margin-bottom: 35px;
	text-align: center;
}

.watch-collection-related-products ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.watch-collection-gallery-dialog {
	background: #f4f4f2;
	border: 0;
	height: 92vh;
	padding: 30px;
	width: 92vw;
}

.watch-collection-gallery-dialog::backdrop {
	background: rgba(0, 0, 0, .78);
}

.watch-collection-gallery-dialog img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.watch-collection-gallery-dialog button {
	align-items: center;
	background: #fff;
	border: 0;
	border-radius: 50%;
	display: flex;
	height: 44px;
	justify-content: center;
	position: absolute;
	right: 18px;
	top: 18px;
	width: 44px;
}

.watch-collection-page-shell {
	margin: 0 auto;
	max-width: 1120px;
	min-height: 50vh;
	padding: 0 var(--watch-gutter) 110px;
}

.watch-collection-page-header {
	padding: 86px 0 50px;
	text-align: center;
}

.watch-collection-page-header p {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.watch-collection-page-header h1 {
	font-size: clamp(42px, 5vw, 68px);
	margin: 0;
}

.watch-collection-page-content {
	font-size: 16px;
}

.watch-collection-page-content > :where(p, h2, h3, ul, ol, .wp-block-group) {
	margin-left: auto;
	margin-right: auto;
	max-width: 780px;
}

.watch-collection-page-content h2 {
	font-size: 34px;
	margin-top: 50px;
}

.watch-collection-page-content h3 {
	font-size: 24px;
	margin-top: 34px;
}

.watch-collection-page-content a:not(.button) {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.watch-collection-page-content > .watch-collection-compliance-content {
	margin-left: auto;
	margin-right: auto;
	max-width: 780px;
}

.watch-collection-compliance-section {
	border-top: 1px solid var(--watch-line);
	padding: 34px 0;
}

.watch-collection-compliance-section:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.watch-collection-compliance-section h2 {
	font-size: 30px;
	margin: 0 0 14px;
}

.watch-collection-compliance-section > :last-child,
.watch-collection-contact-card dd > :last-child {
	margin-bottom: 0;
}

.watch-collection-contact-card dl {
	border-bottom: 1px solid var(--watch-line);
	margin: 0;
}

.watch-collection-contact-card dt,
.watch-collection-contact-card dd {
	border-top: 1px solid var(--watch-line);
	margin: 0;
	padding: 18px 0;
}

.watch-collection-contact-card dt {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	padding-bottom: 0;
	text-transform: uppercase;
}

.watch-collection-compliance-faq .watch-collection-faq-item h2 {
	font-size: 24px;
}

.watch-collection-compliance-notice {
	border: 1px solid var(--watch-line);
	margin-bottom: 30px;
	padding: 18px 20px;
}

.watch-collection-commercial-item-reference {
	color: var(--watch-muted);
	font-size: 12px;
}

.watch-collection-archive-description {
	color: var(--watch-muted);
	font-size: 16px;
	margin: 20px auto 0;
	max-width: 680px;
}

.watch-collection-archive-description > :last-child {
	margin-bottom: 0;
}

.watch-collection-post-list {
	display: grid;
	gap: 58px 30px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.watch-collection-post-card {
	border-bottom: 1px solid var(--watch-line);
}

.watch-collection-post-card-media {
	background: var(--watch-soft);
	display: block;
	overflow: hidden;
}

.watch-collection-post-card-media img {
	aspect-ratio: 4 / 3;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.watch-collection-post-card-copy {
	padding: 24px 0 38px;
}

.watch-collection-post-meta {
	color: var(--watch-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.watch-collection-post-card h2 {
	font-size: clamp(24px, 3vw, 34px);
	margin-bottom: 14px;
}

.watch-collection-post-excerpt {
	color: var(--watch-muted);
	font-size: 15px;
}

.watch-collection-post-excerpt > :last-child {
	margin-bottom: 18px;
}

.watch-collection-post-read-more {
	font-size: 13px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.watch-collection-single-post {
	max-width: 1120px;
}

.watch-collection-post-breadcrumb {
	align-items: center;
	color: var(--watch-muted);
	display: flex;
	font-size: 12px;
	gap: 9px;
	padding-top: 30px;
}

.watch-collection-post-breadcrumb [aria-current="page"] {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.watch-collection-post-featured-image {
	margin: 0 auto 54px;
	max-width: 960px;
}

.watch-collection-post-featured-image img {
	width: 100%;
}

.watch-collection-post-footer,
.watch-collection-post-navigation,
.watch-collection-comments {
	margin-left: auto;
	margin-right: auto;
	max-width: 780px;
}

.watch-collection-post-footer {
	border-top: 1px solid var(--watch-line);
	font-size: 13px;
	margin-top: 48px;
	padding-top: 24px;
}

.watch-collection-post-footer p:last-child {
	margin-bottom: 0;
}

.watch-collection-post-navigation {
	border-bottom: 1px solid var(--watch-line);
	border-top: 1px solid var(--watch-line);
	display: grid;
	font-size: 13px;
	font-weight: 700;
	grid-template-columns: 1fr 1fr;
	margin-top: 48px;
	padding: 22px 0;
}

.watch-collection-post-navigation > div:last-child {
	text-align: right;
}

.watch-collection-comments {
	margin-top: 54px;
}

.watch-collection-comments h2 {
	font-size: 28px;
}

.watch-collection-comment-list {
	list-style: none;
	margin: 0 0 48px;
	padding: 0;
}

.watch-collection-comment-list .children {
	list-style: none;
	margin-left: 28px;
}

.watch-collection-comment-list .comment-body {
	border-bottom: 1px solid var(--watch-line);
	padding: 24px 0;
}

.watch-collection-comment-list .comment-meta,
.watch-collection-comment-list .reply {
	font-size: 12px;
}

.watch-collection-comment-list .reply a {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.watch-collection-comments label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 6px;
}

.watch-collection-comments input:not([type="checkbox"]),
.watch-collection-comments textarea {
	border: 1px solid var(--watch-line);
	min-height: 44px;
	padding: 10px 12px;
	width: 100%;
}

.watch-collection-comments textarea {
	min-height: 150px;
	resize: vertical;
}

.watch-collection-comments .form-submit input {
	background: #111;
	border-color: #111;
	color: #fff;
	cursor: pointer;
	font-weight: 700;
	padding: 0 26px;
	width: auto;
}

.watch-collection-search-page-form {
	margin: 0 auto 55px;
	max-width: 650px;
}

.watch-collection-empty-state {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 420px;
	padding: 60px 20px;
	text-align: center;
}

.watch-collection-empty-state > i {
	font-size: 45px;
	margin-bottom: 20px;
}

.watch-collection-empty-state h1,
.watch-collection-empty-state h2 {
	font-size: clamp(34px, 4vw, 58px);
	margin-bottom: 15px;
}

.watch-collection-empty-state p {
	color: var(--watch-muted);
	max-width: 520px;
}

.watch-collection-empty-state > a {
	margin-top: 18px;
}

.watch-collection-404 {
	min-height: 70vh;
}

.watch-collection-404 > span {
	font-family: "Red Hat Display", sans-serif;
	font-size: 80px;
	line-height: 1;
	margin-bottom: 15px;
}

.woocommerce-notices-wrapper,
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
	list-style: none;
	margin: 18px auto;
	max-width: 1120px;
	padding: 16px 20px;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
	background: #f2f2ef;
	border-left: 3px solid #111;
}

.woocommerce-error {
	border-left-color: #9d2929;
}

.woocommerce-form-row,
.form-row {
	margin-bottom: 18px;
}

.woocommerce label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 7px;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.select2-container .select2-selection--single {
	background: #fff;
	border: 1px solid #bbb;
	border-radius: 0;
	min-height: 48px;
	padding: 11px 12px;
	width: 100%;
}

.woocommerce textarea {
	min-height: 120px;
}

.woocommerce table {
	border-collapse: collapse;
	width: 100%;
}

.woocommerce th,
.woocommerce td {
	border-bottom: 1px solid var(--watch-line);
	padding: 15px 10px;
	text-align: left;
}

.woocommerce-cart-form,
.cart_totals,
.checkout.woocommerce-checkout,
.woocommerce-order,
.woocommerce-MyAccount-content {
	margin-left: auto;
	margin-right: auto;
	max-width: 1120px;
}

.cart_totals {
	margin-right: 0;
	margin-top: 35px;
	max-width: 480px;
}

.cart_totals h2,
#order_review_heading,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
	font-size: 27px;
}

.checkout.woocommerce-checkout {
	display: grid;
	gap: 55px;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
}

.checkout #customer_details {
	grid-row: span 2;
}

.checkout .col2-set .col-1,
.checkout .col2-set .col-2 {
	float: none;
	width: 100%;
}

.checkout #order_review {
	background: var(--watch-soft);
	padding: 24px;
}

.woocommerce-checkout-payment ul {
	list-style: none;
	padding: 0;
}

.woocommerce-privacy-policy-text {
	font-size: 12px;
}

.wc-block-cart,
.wc-block-checkout {
	margin: 0 auto;
	max-width: 1180px;
}

.watch-collection-account-auth {
	display: grid;
	gap: 1px;
	grid-template-columns: 1fr 1fr;
	margin: 0 auto;
	max-width: 1040px;
}

.watch-collection-account-auth-panel {
	border: 1px solid var(--watch-line);
	padding: clamp(28px, 5vw, 58px);
}

.watch-collection-account-auth-panel.is-register {
	background: var(--watch-soft);
}

.watch-collection-account-auth-panel h2,
.watch-collection-account-dashboard h2 {
	font-size: 38px;
	margin-bottom: 14px;
}

.watch-collection-account-auth-panel > p:not(.watch-collection-account-eyebrow) {
	color: var(--watch-muted);
	margin-bottom: 30px;
}

.watch-collection-account-eyebrow {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.watch-collection-account-form-row {
	align-items: center;
	display: flex;
	font-size: 12px;
	justify-content: space-between;
	margin-bottom: 22px;
}

.watch-collection-account-form-row label {
	align-items: center;
	display: flex;
	margin: 0;
}

.watch-collection-account-form button {
	width: 100%;
}

.woocommerce-account .woocommerce {
	margin: 0 auto;
	max-width: 1120px;
}

.woocommerce-MyAccount-navigation {
	border-bottom: 1px solid var(--watch-line);
	margin-bottom: 35px;
}

.woocommerce-MyAccount-navigation ul {
	display: flex;
	gap: 24px;
	list-style: none;
	overflow-x: auto;
	padding: 0;
}

.woocommerce-MyAccount-navigation li {
	flex: 0 0 auto;
	padding-bottom: 12px;
}

.woocommerce-MyAccount-navigation li.is-active {
	border-bottom: 2px solid #111;
	font-weight: 700;
}

.watch-collection-account-dashboard {
	display: grid;
	gap: 50px;
	grid-template-columns: .8fr 1.2fr;
}

.watch-collection-account-dashboard > section p:not(.watch-collection-account-eyebrow) {
	color: var(--watch-muted);
}

.watch-collection-account-actions {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
}

.watch-collection-account-actions a {
	align-items: center;
	border: 1px solid var(--watch-line);
	display: flex;
	gap: 15px;
	padding: 22px;
}

.watch-collection-account-actions a:hover {
	border-color: #111;
}

.watch-collection-account-actions i {
	font-size: 20px;
}

.watch-collection-account-actions span,
.watch-collection-account-actions small {
	display: block;
}

.watch-collection-account-actions small {
	color: var(--watch-muted);
}

.watch-collection-account-logout {
	grid-column: 1 / -1;
}

.watch-collection-footer {
	background: #111;
	color: #fff;
	padding: 78px var(--watch-gutter) 25px;
}

.watch-collection-footer-grid {
	display: grid;
	gap: clamp(36px, 5vw, 80px);
	grid-template-columns: 1.45fr .75fr .85fr 1fr;
	margin: 0 auto;
	max-width: var(--watch-max);
}

.watch-collection-footer h2 {
	color: #fff;
	font-family: "Manrope", sans-serif;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 22px;
}

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

.watch-collection-footer li,
.watch-collection-footer-contact p {
	font-size: 12px;
	margin-bottom: 11px;
}

.watch-collection-footer-contact {
	min-width: 0;
}

.watch-collection-footer-contact p,
.watch-collection-footer-contact a {
	overflow-wrap: anywhere;
}

.watch-collection-footer a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.watch-collection-footer-brand {
	align-items: center;
	display: inline-flex;
	gap: 18px;
	max-width: 100%;
}

.watch-collection-footer-brand:hover {
	text-decoration: none;
}

.watch-collection-footer-logo {
	max-height: 60px;
	max-width: 320px;
	object-fit: contain;
	width: auto;
}

.watch-collection-footer-brand.is-symbol .watch-collection-footer-logo {
	filter: grayscale(1) contrast(100);
	height: 60px;
	mix-blend-mode: screen;
	width: 60px;
}

.watch-collection-footer-wordmark {
	font-family: var(--watch-font-body);
	font-size: clamp(25px, 2.25vw, 38px);
	font-weight: 700;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
}

.watch-collection-footer-signup > h2 {
	font-size: 19px;
	margin-bottom: 8px;
	margin-top: 30px;
}

.watch-collection-footer-signup > p {
	color: #aaa;
	font-size: 12px;
	max-width: 400px;
}

.watch-collection-newsletter {
	border-bottom: 1px solid #777;
	display: grid;
	grid-template-columns: 1fr 45px;
	margin-top: 24px;
	max-width: 430px;
	position: relative;
}

.watch-collection-newsletter input,
.watch-collection-newsletter button {
	background: transparent;
	border: 0;
	color: #fff;
	min-height: 48px;
}

.watch-collection-newsletter input {
	min-width: 0;
	outline: 0;
}

.watch-collection-newsletter button {
	cursor: pointer;
}

.watch-collection-newsletter:focus-within {
	border-bottom-color: #fff;
}

.watch-collection-newsletter-status {
	font-size: 11px;
	left: 0;
	position: absolute;
	top: calc(100% + 5px);
}

.watch-collection-newsletter.has-error .watch-collection-newsletter-status {
	color: #ffacac;
}

.watch-collection-newsletter.has-notice .watch-collection-newsletter-status {
	color: #d2d2d2;
}

.watch-collection-footer-socials {
	display: flex;
	gap: 0;
	margin-left: -14px;
	margin-top: 30px;
}

.watch-collection-footer-bottom {
	align-items: center;
	border-top: 1px solid #3b3b3b;
	display: flex;
	font-size: 10px;
	justify-content: space-between;
	margin: 65px auto 0;
	max-width: var(--watch-max);
	padding-top: 22px;
}

.watch-collection-footer-bottom p {
	margin: 0;
}

.watch-collection-footer-bottom nav {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.watch-collection-inline-search {
	display: flex;
	gap: 10px;
	max-width: 500px;
}

.watch-collection-inline-search input {
	border: 1px solid var(--watch-line);
	flex: 1;
	padding: 12px;
}

.watch-collection-inline-search button {
	background: #111;
	border: 0;
	color: #fff;
	padding: 0 22px;
}

@media (max-width: 1180px) {
	.watch-collection-desktop-nav {
		gap: 14px;
	}

	.watch-collection-desktop-nav > a,
	.watch-collection-mega-trigger > a {
		font-size: var(--watch-type-sm);
	}

	.watch-collection-currency {
		display: none;
	}

	.watch-collection-product-layout {
		gap: 45px;
	}

	.watch-collection-product-main-image {
		min-height: 560px;
	}

	.watch-collection-product-assurances {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 700px) {
	:root {
		--watch-type-body: 1rem;
		--watch-type-xs: .75rem;
		--watch-type-sm: .875rem;
		--watch-type-lg: 1.25rem;
		--watch-type-h1: 3rem;
		--watch-type-h2: 2.5rem;
		--watch-type-h3: 2rem;
		--watch-type-h4: 1.625rem;
		--watch-type-h5: 1.25rem;
		--watch-type-h6: 1.125rem;
	}
}

@media (min-width: 1400px) {
	:root {
		--watch-type-h1: 3.75rem;
		--watch-type-h2: 3rem;
		--watch-type-h3: 2.25rem;
		--watch-type-h4: 2rem;
		--watch-type-h5: 1.5rem;
		--watch-type-h6: 1.25rem;
	}
}

@media (max-width: 980px) {
	:root {
		--watch-header-height: 70px;
	}

	.admin-bar .watch-collection-header.is-scrolled {
		top: 46px;
	}

	.watch-collection-header-inner {
		grid-template-columns: 1fr auto 1fr;
	}

	.watch-collection-desktop-nav,
	.watch-collection-desktop-only,
	.watch-collection-currency {
		display: none;
	}

	.watch-collection-mobile-actions {
		display: flex;
	}

	.watch-collection-header-actions {
		gap: 0;
	}

	.watch-collection-brand {
		font-size: 17px;
		max-width: 210px;
	}

	.watch-collection-brand img {
		max-height: 42px;
		max-width: 180px;
	}

	.watch-collection-hero {
		height: min(810px, 100svh);
		min-height: 650px;
	}

	.watch-collection-product-layout {
		grid-template-columns: 1fr;
	}

	.watch-collection-product-summary {
		padding-top: 0;
		position: static;
	}

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

	.watch-collection-footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.watch-collection-footer-signup {
		grid-column: 1 / -1;
	}

	.checkout.woocommerce-checkout {
		grid-template-columns: 1fr;
	}

	.watch-collection-account-dashboard {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.admin-bar .watch-collection-header.is-scrolled {
		top: 0;
	}

	.watch-collection-header-inner {
		padding: 0 12px;
	}

	.watch-collection-brand span {
		max-width: 150px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.watch-collection-hero {
		align-items: center;
		height: 560px;
		min-height: 0;
		padding: 50px var(--watch-gutter) 0;
	}

	.watch-collection-hero h1 {
		font-size: var(--watch-type-h1);
		letter-spacing: .12em;
		white-space: normal;
	}

	.watch-collection-hero h1 + p {
		font-size: var(--watch-type-body);
	}

	.watch-collection-hero-video-toggle {
		bottom: 16px;
		right: 16px;
	}

	.watch-collection-light-button {
		background: transparent;
		color: #fff;
	}

	.watch-collection-category-section {
		padding: 58px 0 62px;
	}

	.watch-collection-section-heading {
		align-items: center;
		margin-bottom: 54px;
	}

	.watch-collection-section-heading h2 {
		font-size: var(--watch-type-h2);
	}

	.watch-collection-scroller-controls {
		display: none;
	}

	.watch-collection-category-scroller {
		grid-auto-columns: calc(100vw - 44px);
		padding-left: 20px;
		padding-right: 20px;
	}

	.watch-collection-category-card {
		height: 470px;
	}

	.watch-collection-editorial-panel {
		height: 118vw;
		max-height: 690px;
		min-height: 520px;
	}

	.watch-collection-editorial-copy strong {
		font-size: 48px;
	}

	.watch-collection-catalog,
	.watch-collection-search-results,
	.watch-collection-product-page {
		padding-left: 16px;
		padding-right: 16px;
	}

	.watch-collection-catalog-header,
	.watch-collection-search-header {
		padding: 58px 8px 38px;
	}

	.watch-collection-catalog-header h1,
	.watch-collection-search-header h1 {
		font-size: var(--watch-type-h2);
	}

	.watch-collection-catalog-toolbar {
		align-items: stretch;
		gap: 10px;
	}

	.watch-collection-catalog-toolbar > div {
		gap: 8px;
	}

	.watch-collection-catalog-ordering > span,
	.watch-collection-catalog-toolbar .woocommerce-result-count {
		display: none;
	}

	ul.products,
	.watch-collection-search-grid {
		gap: 36px 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.watch-collection-product-card-media::before {
		padding-top: 128%;
	}

	.watch-collection-product-card-media > img {
		padding: 5%;
	}

	.watch-collection-product-badges {
		gap: 3px;
		left: 7px;
		top: 7px;
	}

	.watch-collection-product-badges span {
		font-size: 12px;
		line-height: 1.2;
		padding: 5px 6px;
	}

	.watch-collection-card-measurements {
		font-size: 12px;
		line-height: 1.2;
		padding: 7px 3px;
	}

	.watch-collection-product-card-copy {
		padding-top: 10px;
	}

	.watch-collection-product-card-copy h2 {
		font-size: 12.8px;
	}

	.watch-collection-product-card-price {
		font-size: 12px;
	}

	.watch-collection-product-page {
		padding-left: 0;
		padding-right: 0;
		padding-top: 0;
	}

	.watch-collection-product-breadcrumb {
		font-size: 12px;
		margin-bottom: 15px;
	}

	.watch-collection-product-main-image {
		aspect-ratio: 1;
		min-height: 0;
	}

	.watch-collection-product-main-image > img {
		padding: 0;
	}

	.watch-collection-gallery-thumbnails {
		background: rgba(17, 17, 17, .55);
		border-radius: 24px;
		display: flex;
		gap: 0;
		margin: -42px auto 28px;
		padding: 0 4px;
		position: relative;
		width: max-content;
		z-index: 4;
	}

	.watch-collection-gallery-thumbnails button {
		background: transparent;
		border: 0;
		flex: 0 0 44px;
		height: 44px;
		padding: 0;
		position: relative;
		width: 44px;
	}

	.watch-collection-gallery-thumbnails button::before {
		background: rgba(255, 255, 255, .45);
		border-radius: 50%;
		content: "";
		height: 8px;
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 8px;
	}

	.watch-collection-gallery-thumbnails button.is-active::before {
		background: #fff;
	}

	.watch-collection-gallery-thumbnails img {
		display: none;
	}

	.watch-collection-product-summary,
	.watch-collection-related-products {
		padding-left: 16px;
		padding-right: 16px;
	}

	.watch-collection-product-summary h1 {
		font-size: var(--watch-type-h3);
	}

	.watch-collection-measurement-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.watch-collection-measurement-grid > div {
		border-bottom: 0 !important;
		grid-template-areas: "value" "label";
		grid-template-columns: 1fr;
		justify-items: center;
		padding: 8px 3px;
	}

	.watch-collection-measurement-grid span {
		font-size: 12px;
		letter-spacing: .08em;
	}

	.watch-collection-product-assurances > div,
	.watch-collection-product-assurances strong {
		font-size: 12px;
	}

	.watch-collection-measurement-grid i {
		display: none;
	}

	.watch-collection-related-products {
		margin-top: 75px;
	}

	.watch-collection-page-shell {
		padding-left: 18px;
		padding-right: 18px;
	}

	.watch-collection-page-header {
		padding: 58px 0 36px;
	}

	.watch-collection-page-header h1 {
		font-size: 40px;
	}

	.watch-collection-page-header p {
		font-size: 12px;
	}

	.watch-collection-post-list {
		gap: 44px;
		grid-template-columns: 1fr;
	}

	.watch-collection-post-featured-image {
		margin-bottom: 38px;
	}

	.watch-collection-comment-list .children {
		margin-left: 16px;
	}

	.watch-collection-account-auth {
		grid-template-columns: 1fr;
	}

	.watch-collection-account-auth-panel {
		padding: 30px 22px;
	}

	.watch-collection-account-actions {
		grid-template-columns: 1fr;
	}

	.woocommerce-MyAccount-navigation ul {
		gap: 16px;
	}

	.woocommerce-cart-form table,
	.woocommerce-cart-form tbody,
	.woocommerce-cart-form tr,
	.woocommerce-cart-form td {
		display: block;
	}

	.woocommerce-cart-form thead {
		display: none;
	}

	.woocommerce-cart-form tr {
		border-bottom: 1px solid var(--watch-line);
		padding: 18px 0;
	}

	.woocommerce-cart-form td {
		border: 0;
		text-align: right;
	}

	.woocommerce-cart-form td::before {
		float: left;
		font-weight: 700;
	}

	.watch-collection-footer {
		padding-top: 55px;
	}

	.watch-collection-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.watch-collection-footer-signup,
	.watch-collection-footer-contact {
		grid-column: 1 / -1;
	}

	.watch-collection-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		font-size: 12px;
		gap: 14px;
		margin-top: 45px;
	}

	.watch-collection-cart-count,
	.watch-collection-filter-open span,
	.watch-collection-empty-cart-icon b {
		font-size: 12px;
	}

	.watch-collection-cart-count {
		height: 20px;
		width: 20px;
	}

	.watch-collection-filter-options label {
		align-items: center;
		min-height: 44px;
	}

	.watch-collection-price-filter span {
		font-size: 12px;
	}

	.watch-collection-price-filter input {
		min-height: 44px;
	}
}

@media (max-width: 480px) {
	.watch-collection-side-panel,
	.watch-collection-mobile-submenu {
		padding: 22px 20px;
	}

	.watch-collection-account-panel {
		padding: 42px 24px 28px;
	}

	.watch-collection-product-main-image {
		min-height: 380px;
	}

	.watch-collection-product-purchase form.cart {
		grid-template-columns: 78px 1fr;
	}

	.watch-collection-related-products ul.products {
		gap: 30px 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.watch-collection-footer-grid {
		gap: 38px 24px;
	}
}

/* WooCommerce cart drawer and cart page. */
.watch-collection-cart-panel {
	border-radius: 4px;
	bottom: 16px;
	height: calc(100dvh - 32px);
	overflow: hidden;
	padding: 0;
	right: 0;
	top: 16px;
	transform: translateX(calc(100% + 32px));
	width: min(648px, calc(100% - 32px));
}

.watch-collection-cart-panel[aria-busy="true"]::after {
	background: rgba(255, 255, 255, .58);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 8;
}

.watch-collection-cart-close {
	align-items: center;
	background: transparent;
	border: 0;
	color: #111;
	display: flex;
	font-size: 20px;
	height: 44px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 30px;
	top: 24px;
	width: 44px;
	z-index: 10;
}

.watch-collection-mini-cart-content,
.watch-collection-mini-cart {
	height: 100%;
}

.watch-collection-mini-cart {
	display: flex;
	flex-direction: column;
}

.watch-collection-mini-cart-header {
	align-items: center;
	display: flex;
	gap: 12px;
	min-height: 92px;
	padding: 24px 84px 22px 40px;
}

.watch-collection-mini-cart-header h2 {
	font-family: "Manrope", Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.watch-collection-mini-cart-header > span {
	align-items: center;
	background: #111;
	border-radius: 50%;
	display: inline-flex;
	font-size: 11px;
	font-weight: 700;
	height: 24px;
	justify-content: center;
	color: #fff;
	width: 24px;
}

.watch-collection-mini-cart-content .watch-collection-mini-cart-items {
	flex: 1 1 auto;
	list-style: none;
	margin: 0;
	overflow-y: auto;
	padding: 0 40px 28px;
}

.watch-collection-mini-cart-item {
	display: grid;
	gap: 16px;
	grid-template-columns: 96px minmax(0, 1fr) 56px;
	min-height: 112px;
	padding: 0 0 16px;
}

.watch-collection-mini-cart-item + .watch-collection-mini-cart-item {
	border-top: 1px solid #e2e2df;
	padding-top: 16px;
}

.watch-collection-mini-cart-image {
	align-self: start;
	background: #f5f5f3;
	display: block;
	height: 96px;
	overflow: hidden;
	width: 96px;
}

.watch-collection-mini-cart-image img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.watch-collection-mini-cart-details {
	min-width: 0;
}

.watch-collection-mini-cart-name {
	display: block;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 7px;
}

.watch-collection-mini-cart-details .variation {
	color: var(--watch-muted);
	font-size: 11px;
	margin: 0 0 6px;
}

.watch-collection-mini-cart-price,
.watch-collection-cart-product-price {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	gap: 6px;
	line-height: 1.45;
}

.watch-collection-mini-cart-price strong,
.watch-collection-cart-product-price strong {
	font-size: 16px;
	font-weight: 400;
}

.watch-collection-mini-cart-price del,
.watch-collection-cart-product-price del {
	color: #777;
	font-size: 16px;
}

.watch-collection-mini-cart-price > span,
.watch-collection-cart-product-price > span {
	background: #78524c;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .04em;
	padding: 3px 6px;
}

.watch-collection-mini-cart-actions {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.watch-collection-mini-cart-actions input {
	background: #fff;
	border: 1px solid #d5d5d2;
	border-radius: 8px;
	height: 44px;
	padding: 0 4px 0 9px;
	text-align: center;
	width: 48px;
}

.watch-collection-mini-cart-actions .remove {
	color: #555;
	font-size: 11px;
	position: static;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.watch-collection-mini-cart-footer {
	border-top: 1px solid #dededb;
	flex: 0 0 auto;
	padding: 35px 40px 40px;
}

.watch-collection-mini-cart-footer > div,
.watch-collection-cart-summary > div {
	align-items: center;
	display: flex;
	font-size: 14px;
	justify-content: space-between;
	line-height: 1.5;
	margin-bottom: 8px;
}

.watch-collection-mini-cart-footer .is-savings,
.watch-collection-cart-summary .is-savings {
	color: #78524c;
}

.watch-collection-mini-cart-footer .is-savings,
.watch-collection-mini-cart-footer .is-savings strong {
	font-size: 20px;
	font-weight: 700;
}

.watch-collection-mini-cart-footer .is-total,
.watch-collection-cart-summary .is-total {
	border-top: 1px solid #dededb;
	font-size: 18px;
	margin-top: 13px;
	padding-top: 13px;
}

.watch-collection-mini-cart-footer .is-total {
	border-top: 0;
	font-size: 20px;
	margin-top: 14px;
	padding-top: 0;
}

.watch-collection-mini-cart-footer .is-total strong,
.watch-collection-cart-summary .is-total strong {
	font-size: 21px;
}

.watch-collection-mini-cart-footer > p {
	color: #666;
	font-size: 11px;
	margin: 0 0 16px;
}

.watch-collection-mini-cart-footer > p a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.watch-collection-mini-cart-checkout,
.watch-collection-cart-checkout,
.watch-collection-mini-cart-empty > a,
.watch-collection-cart-page-empty > a {
	align-items: center;
	background: #111;
	border-radius: 6px;
	color: #fff;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 10px;
	height: 55px;
	justify-content: center;
	letter-spacing: .02em;
	width: 100%;
}

.watch-collection-mini-cart-view {
	display: none;
	font-size: 11px;
	font-weight: 700;
	margin-top: 11px;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.watch-collection-mini-cart-empty {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	padding: 72px 40px;
	text-align: center;
}

.watch-collection-empty-cart-icon {
	display: inline-block;
	font-size: 42px;
	line-height: 1;
	margin-bottom: 22px;
	position: relative;
}

.watch-collection-empty-cart-icon b {
	align-items: center;
	background: #111;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 12px;
	height: 22px;
	justify-content: center;
	position: absolute;
	right: -10px;
	top: -10px;
	width: 22px;
}

.watch-collection-mini-cart-empty > p {
	font-family: "Red Hat Display", sans-serif;
	font-size: 31px;
	line-height: 1.25;
	margin-bottom: 26px;
}

.watch-collection-mini-cart-empty > a,
.watch-collection-cart-page-empty > a {
	width: 210px;
}

.watch-collection-cart-request-error {
	color: #8b2323;
	font-size: 12px;
	margin: 8px 0 0;
}

.woocommerce-cart .watch-collection-page-shell.is-commerce-page {
	max-width: 1240px;
}

body.woocommerce-cart {
	background: #f7f7f6;
}

.woocommerce-cart .watch-collection-page-header {
	padding: 67px 0 57px;
}

.woocommerce-cart .watch-collection-page-header > p {
	display: none;
}

.woocommerce-cart .watch-collection-page-header h1 {
	font-family: "Manrope", Arial, sans-serif;
	font-size: 42px;
	font-weight: 700;
	line-height: 58px;
	position: relative;
	top: -5px;
}

.watch-collection-cart-layout {
	align-items: start;
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 2fr) minmax(340px, 1fr);
}

.woocommerce-notices-wrapper:empty {
	display: none;
}

.watch-collection-cart-form {
	margin: 0;
	max-width: none;
}

.watch-collection-cart-main {
	left: -9px;
	padding-right: 20px;
	position: relative;
	width: calc(100% + 9px);
}

.watch-collection-cart-form table {
	display: table;
	table-layout: fixed;
}

.watch-collection-cart-form th,
.watch-collection-cart-form td {
	padding-left: 0;
	padding-right: 0;
}

.watch-collection-cart-form th {
	color: #555;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	padding-bottom: 25px;
	padding-top: 0;
	text-transform: uppercase;
}

.watch-collection-cart-form th.product-quantity,
.watch-collection-cart-form td.product-quantity {
	text-align: left;
	width: 173px;
}

.watch-collection-cart-form th.product-subtotal,
.watch-collection-cart-form td.product-subtotal {
	text-align: right;
	width: 104px;
}

.watch-collection-cart-form .cart_item td {
	padding-bottom: 32px;
	padding-top: 32px;
	vertical-align: top;
}

.watch-collection-cart-product {
	display: grid;
	gap: 18px;
	grid-template-columns: 96px minmax(0, 1fr);
}

.watch-collection-cart-product-image {
	background: #f5f5f3;
	display: block;
	height: 96px;
	overflow: hidden;
	width: 96px;
}

.watch-collection-cart-product-image img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.watch-collection-cart-product-name {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 7px;
	text-decoration: none !important;
}

.watch-collection-cart-product-price {
	margin-bottom: 11px;
}

.watch-collection-cart-product-price strong {
	font-size: 16px;
	font-weight: 400;
}

.watch-collection-cart-product-price del {
	font-size: 16px;
}

.watch-collection-cart-remove {
	color: #555;
	font-size: 11px;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.watch-collection-cart-form .quantity input {
	background: #fff;
	border: 1px solid #d4d4d1;
	border-radius: 8px;
	height: 44px;
	margin-left: 9px;
	padding: 0 6px;
	text-align: center;
	width: 48px;
}

.watch-collection-cart-form td.product-subtotal {
	font-size: 14px;
	font-weight: 700;
}

.watch-collection-cart-form-actions {
	display: none;
}

.watch-collection-cart-status,
.watch-collection-order-note-status {
	color: var(--watch-muted);
	font-size: 11px;
	margin: 8px 0 0;
	min-height: 18px;
}

.watch-collection-cart-status:empty {
	display: none;
}

.watch-collection-shipping-estimate {
	border-bottom: 1px solid #dededb;
	margin-top: 0;
}

.watch-collection-shipping-estimate > summary {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	justify-content: space-between;
	list-style: none;
	padding: 30px 0;
}

.watch-collection-shipping-estimate > summary > span {
	align-items: center;
	display: flex;
	font-size: 17px;
	gap: 13px;
}

.watch-collection-shipping-estimate > summary > span i {
	font-size: 20px;
}

.watch-collection-shipping-estimate > summary::-webkit-details-marker {
	display: none;
}

.watch-collection-shipping-estimate[open] > summary i {
	transform: rotate(180deg);
}

.watch-collection-shipping-estimate .woocommerce-shipping-calculator {
	padding-bottom: 24px;
}

.watch-collection-shipping-estimate .shipping-calculator-button {
	font-size: 12px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.watch-collection-cart-summary {
	border: 1px solid #d9d9d6;
	border-radius: 6px;
	margin-top: -29px;
	padding: 40px 46px 30px;
	position: sticky;
	top: 132px;
	transform: translateX(-9px);
	width: calc(100% + 4px);
}

.watch-collection-cart-summary > div {
	font-size: 15px;
	margin-bottom: 17px;
}

.watch-collection-cart-summary .is-savings,
.watch-collection-cart-summary .is-savings strong {
	font-size: 20px;
	font-weight: 700;
}

.watch-collection-cart-summary .is-total {
	border-top: 0;
	font-size: 20px;
	margin-bottom: 0;
	margin-top: 8px;
	padding-top: 0;
}

.watch-collection-cart-taxes {
	color: #666;
	font-size: 11px;
	margin: 6px 0 30px;
}

.watch-collection-cart-taxes a {
	text-decoration: underline !important;
	text-underline-offset: 2px;
}

.watch-collection-cart-summary label {
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 8px;
}

.watch-collection-cart-summary textarea {
	background: transparent;
	border: 1px solid #d4d4d1;
	border-radius: 0;
	font-size: 12px;
	min-height: 110px;
	padding: 10px;
	resize: vertical;
	width: 100%;
}

.watch-collection-cart-checkout {
	margin-top: 18px;
}

.watch-collection-order-note-status:empty {
	display: none;
}

.watch-collection-cart-page-empty {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 390px;
	padding: 50px 20px 80px;
	text-align: center;
}

.watch-collection-cart-page-empty h2 {
	font-size: clamp(32px, 4vw, 48px);
	margin-bottom: 10px;
}

.watch-collection-cart-page-empty p {
	color: var(--watch-muted);
	margin-bottom: 25px;
}

@media (max-width: 767px) {
	.watch-collection-cart-panel {
		bottom: 8px;
		height: calc(100dvh - 16px);
		right: 8px;
		top: 8px;
		width: calc(100% - 16px);
	}

	.watch-collection-cart-close {
		right: 10px;
		top: 13px;
	}

	.watch-collection-mini-cart-header {
		min-height: 70px;
		padding: 19px 64px 15px 20px;
	}

	.watch-collection-mini-cart-header h2 {
		font-size: 21px;
	}

	.watch-collection-mini-cart-header h2 a {
		align-items: center;
		display: inline-flex;
		min-height: 44px;
		min-width: 44px;
	}

	.watch-collection-mini-cart-header > span,
	.watch-collection-mini-cart-details .variation,
	.watch-collection-mini-cart-actions .remove,
	.watch-collection-mini-cart-footer > p,
	.watch-collection-mini-cart-view {
		font-size: 12px;
	}

	.watch-collection-mini-cart-items {
		padding: 0 20px 20px;
	}

	.watch-collection-mini-cart-item {
		gap: 10px;
		grid-template-columns: 76px minmax(0, 1fr) 48px;
		min-height: 90px;
		padding: 0 0 14px;
	}

	.watch-collection-mini-cart-image {
		height: 76px;
		width: 76px;
	}

	.watch-collection-mini-cart-name {
		align-items: flex-start;
		display: flex;
		font-size: 12px;
		margin-bottom: 4px;
		min-height: 44px;
	}

	.watch-collection-mini-cart-actions .remove {
		align-items: center;
		display: inline-flex;
		justify-content: center;
		min-height: 44px;
		min-width: 44px;
	}

	.watch-collection-mini-cart-price strong {
		font-size: 12px;
	}

	.watch-collection-mini-cart-price > span {
		display: none;
	}

	.watch-collection-mini-cart-footer {
		padding: 18px 20px 20px;
	}

	.watch-collection-mini-cart-footer > div {
		margin-bottom: 5px;
	}

	.watch-collection-mini-cart-footer .is-total {
		margin-top: 9px;
		padding-top: 9px;
	}

	.watch-collection-mini-cart-footer > p {
		margin-bottom: 11px;
	}

	.watch-collection-mini-cart-checkout {
		height: 50px;
	}

	.watch-collection-mini-cart-view {
		margin-top: 7px;
	}

	.watch-collection-mini-cart-empty {
		padding: 54px 24px;
	}

	.watch-collection-cart-layout {
		gap: 36px;
		grid-template-columns: 1fr;
	}

	.watch-collection-cart-main {
		left: 0;
		padding-right: 0;
		width: 100%;
	}

	.watch-collection-cart-form table,
	.watch-collection-cart-form tbody,
	.watch-collection-cart-form tr,
	.watch-collection-cart-form td {
		display: block;
	}

	.watch-collection-cart-form thead {
		display: none;
	}

	.watch-collection-cart-form .cart_item {
		display: grid;
		grid-template-columns: 1fr 86px;
		padding: 20px 0;
	}

	.watch-collection-cart-form .cart_item td {
		border: 0;
		padding: 0;
	}

	.watch-collection-cart-form .cart_item td::before {
		content: none;
	}

	.watch-collection-cart-form td.product-name {
		grid-column: 1 / -1;
		margin-bottom: 18px;
		text-align: left;
	}

	.watch-collection-cart-form td.product-quantity {
		text-align: left;
		width: auto;
	}

	.watch-collection-cart-form .quantity input {
		margin-left: 0;
	}

	.watch-collection-cart-form td.product-subtotal {
		align-self: center;
		text-align: right;
		width: auto;
	}

	.watch-collection-cart-product {
		gap: 14px;
		grid-template-columns: 82px minmax(0, 1fr);
	}

	.watch-collection-cart-product-image {
		height: 82px;
		width: 82px;
	}

	.watch-collection-cart-summary {
		margin-top: 0;
		padding: 24px 20px;
		position: static;
		transform: none;
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.watch-collection-header,
	.watch-collection-mega-menu,
	.watch-collection-side-panel,
	.watch-collection-account-panel,
	.watch-collection-mobile-submenu,
	.watch-collection-editorial-shade,
	.watch-collection-product-card-media > img {
		transition: none;
	}
}
