:root {
	--black: #1F252D;
}

/*
*** PAGES ***
*/

.site {
	width: 1600px;
	margin: 0 auto;
	padding: 4vw 4% 10vw;
	max-width: 100%; 
}

/*
*** HEADER ***
*/

.drpco-logo {
	width: 200px;
	height: auto;
	display: block;
}

.drpco-logo-image {
	width: 100%;
	height: auto;
	display: block;
}

.svsw-attr-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.drpco-site-header {
	width: 100%;
	background: #ffffff;
	box-sizing: border-box;
}

.drpco-site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
}

.drpco-logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
}

.drpco-logo-image {
	display: block;
	width: 220px;
	max-width: 100%;
	height: auto;
}

.drpco-header-menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.drpco-header-menu a {
	color: var(--black, #20242b);
	text-decoration: none;
}

.drpco-header-menu a:hover {
	opacity: 0.65;
}

.drpco-header-order-link {
	font-size: 17px;
	font-weight: 400;
	line-height: 1;
}

.drpco-account-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.drpco-account-icon {
	display: block;
	width: 30px;
	height: 30px;
}

.drpco-account-text {
	font-size: 17px;
	font-weight: 400;
	line-height: 1;
}

.drpco-cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--black);
}

.drpco-cart-icon {
	display: block;
	width: 36px;
	height: 36px;
}

.drpco-cart-count {
	position: absolute;
	top: -11px;
	right: -13px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 25px;
	height: 25px;
	padding: 0 6px;
	border-radius: 100px;
	background: var(--black);
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	box-sizing: border-box;
}

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

.drpco-header-menu a:focus-visible,
.drpco-logo:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 5px;
}

.svsw-swatch-content.svsw-type-radio:has(input[name*="Quantity"]) {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.svsw-swatch-radio:has(input[name*="Quantity"]) {
	word-spacing: 12px;
	display: flex;
	align-items: center;
	gap: 3px;
	width: var(--option-width);
	padding: 14px 13px;
	border: 2px solid var(--black);
	background: #ffffff;
	color: var(--black);
	box-sizing: border-box;
	cursor: pointer;
	transition:background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.svsw-swatch-radio:has(input[name*="Quantity"]) input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.svsw-swatch-radio:has(input[name*="Quantity"])::before {
	content: "";
	display: block;
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
	border: 2px solid currentColor;
	border-radius: 50%;
	background: white;
	box-sizing: border-box;
}

.svsw-swatch-radio:has(input[name*="Quantity"]) label {
	display: block;
	flex: 1;
	margin: 0;
	color: inherit;
	font-size: 16px !important;
	font-weight: 300;
	line-height: 1;
	white-space: nowrap;
	text-align: justify;
	text-align-last: justify;
	cursor: pointer;
}

.svsw-swatch-radio.svsw-selected:has(input[name*="Quantity"]) {
	background: var(--black);
	color: #ffffff;
}

.svsw-swatch-radio.svsw-selected:has(input[name*="Quantity"])::before {
	border-color: #ffffff;
	background: #ffffff;
	box-shadow: inset 0 0 0 5px var(--black);
}

.svsw-swatch-radio:has(input[name*="Quantity"]):hover {
	background: var(--black);
	color: #ffffff;
}


@media screen and (max-width: 700px) {
.drpco-logo-image {width: 165px;}
.drpco-header-menu {gap: 18px;}
.drpco-account-text {display: none;}
.drpco-header-order-link {font-size: 15px;}
.drpco-account-icon {width: 27px; height: 27px;}
.drpco-cart-icon {width: 32px; height: 32px;}
}

@media screen and (max-width: 500px) {
.svsw-swatch-radio:has(input[name*="Quantity"]) {--option-width: 100%; max-width: 340px;}
}
