.site-main--shop {
	width: min(100% - 32px, 1240px);
	margin: 0 auto;
	padding: 58px 0 72px;
	color: var(--rk-white);
}

.site-main--shop > .widget,
.site-main--shop > aside,
.woocommerce-sidebar,
.widget-area,
.woocommerce .widget {
	display: none;
}

.woocommerce .woocommerce-breadcrumb {
	margin: 0 0 18px;
	color: var(--rk-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--rk-soft-text);
	transition: color 180ms ease;
}

.woocommerce .woocommerce-breadcrumb a:hover,
.woocommerce .woocommerce-breadcrumb a:focus {
	color: var(--rk-accent);
}

.woocommerce-products-header {
	margin-bottom: 22px;
}

.woocommerce-products-header__title.page-title {
	margin: 0;
	color: var(--rk-white);
	font-size: 48px;
	line-height: 0.95;
	text-transform: uppercase;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin: 0 0 28px;
}

.woocommerce .woocommerce-result-count {
	color: var(--rk-muted);
	font-size: 14px;
	font-weight: 800;
	line-height: 46px;
}

.woocommerce .woocommerce-ordering {
	float: right;
}

.woocommerce .woocommerce-ordering select {
	min-height: 46px;
	padding: 0 42px 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background:
		linear-gradient(45deg, transparent 50%, var(--rk-accent) 50%) calc(100% - 18px) 20px / 6px 6px no-repeat,
		linear-gradient(135deg, var(--rk-accent) 50%, transparent 50%) calc(100% - 12px) 20px / 6px 6px no-repeat,
		var(--rk-card);
	color: var(--rk-white);
	font-weight: 800;
	outline: 0;
	appearance: none;
	transition: border-color var(--rk-motion-fast) ease, box-shadow var(--rk-motion-fast) ease, background-color var(--rk-motion-fast) ease;
}

.woocommerce .woocommerce-ordering select:focus {
	border-color: var(--rk-accent);
	box-shadow: var(--rk-focus-glow);
}

.woocommerce ul.products {
	clear: both;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 24px;
	width: 100%;
	padding: 0;
	margin: 0;
}

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

.woocommerce ul.products li.product {
	display: flex;
	flex-direction: column;
	width: auto !important;
	margin: 0 !important;
	padding: 0;
	border: 1px solid var(--rk-border);
	border-radius: 14px;
	background: var(--rk-card);
	overflow: hidden;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
	transition: transform var(--rk-motion) var(--rk-ease), box-shadow var(--rk-motion) ease, border-color var(--rk-motion-fast) ease;
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 184, 0, 0.45);
	box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4), 0 0 26px rgba(255, 184, 0, 0.08);
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link img,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link img {
	display: block;
	width: 100%;
	height: 260px;
	margin: 0 0 18px;
	background: #0f0f0f;
	object-fit: contain;
	object-position: center;
	transition: transform 320ms var(--rk-ease);
}

.woocommerce ul.products li.product:hover a.woocommerce-loop-product__link img,
.woocommerce ul.products li.product:hover a.woocommerce-LoopProduct-link img {
	transform: scale(1.035);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
	margin-left: 18px;
	margin-right: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	display: -webkit-box;
	min-height: 46px;
	margin-top: 0;
	margin-bottom: 10px;
	overflow: hidden;
	color: var(--rk-white);
	font-family: var(--rk-heading-font);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.1;
	text-transform: uppercase;
	text-rendering: geometricPrecision;
	-webkit-font-smoothing: antialiased;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.woocommerce ul.products li.product .price {
	min-height: 26px;
	margin-top: 0;
	margin-bottom: 18px;
	color: var(--rk-accent);
	font-weight: 900;
	line-height: 1.3;
}

.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .button {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	margin-bottom: 18px;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid var(--rk-accent);
	border-radius: 8px;
	background: var(--rk-accent);
	color: var(--rk-black);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 10px 22px rgba(255, 184, 0, 0.16);
	transition: transform var(--rk-motion-fast) var(--rk-ease), box-shadow var(--rk-motion-fast) ease, background var(--rk-motion-fast) ease, color var(--rk-motion-fast) ease, filter var(--rk-motion-fast) ease;
}

.woocommerce ul.products li.product .add_to_cart_button::before {
	display: inline-block;
	flex: 0 0 19px;
	width: 19px;
	height: 19px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M6.5%208.5h11l-1%2010h-9l-1-10Z'/%3E%3Cpath%20d='M9%208.5a3%203%200%200%201%206%200'/%3E%3Cpath%20d='M8.5%2012h7'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M6.5%208.5h11l-1%2010h-9l-1-10Z'/%3E%3Cpath%20d='M9%208.5a3%203%200%200%201%206%200'/%3E%3Cpath%20d='M8.5%2012h7'/%3E%3C/svg%3E") center / contain no-repeat;
	content: "";
}

.woocommerce ul.products li.product .add_to_cart_button:hover,
.woocommerce ul.products li.product .button:hover {
	transform: translateY(-1px);
	background: var(--rk-accent-dark);
	color: var(--rk-black);
	box-shadow: 0 14px 28px rgba(255, 184, 0, 0.22);
}

.woocommerce ul.products li.product .add_to_cart_button:active,
.woocommerce ul.products li.product .button:active {
	transform: translateY(0) scale(0.985);
	box-shadow: 0 9px 18px rgba(255, 184, 0, 0.16);
}

.woocommerce ul.products li.product .added_to_cart {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	margin: -8px 18px 18px;
	padding: 9px 13px;
	border: 1px solid rgba(255, 184, 0, 0.58);
	border-radius: 8px;
	background: rgba(255, 184, 0, 0.05);
	color: var(--rk-accent);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.woocommerce ul.products li.product .added_to_cart:hover,
.woocommerce ul.products li.product .added_to_cart:focus {
	transform: translateY(-1px);
	border-color: var(--rk-accent);
	background: rgba(255, 184, 0, 0.12);
	color: var(--rk-accent);
}

.single-product .product {
	color: var(--rk-soft-text);
}

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

.single-product div.product .product_title {
	margin: 0 0 16px;
	color: var(--rk-white);
	font-family: var(--rk-heading-font);
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 0.95;
	text-transform: uppercase;
}

.single-product div.product p.price,
.single-product div.product span.price {
	margin: 0 0 22px;
	color: var(--rk-accent);
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 900;
	line-height: 1;
}

.single-product div.product .summary {
	padding: 10px 0 0;
}

.single-product div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 24px 0 22px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.single-product div.product form.cart .quantity {
	margin: 0;
}

.single-product div.product form.cart .qty {
	min-height: 54px;
	border-radius: 8px;
}

.single-product div.product .single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 24px;
	border: 1px solid var(--rk-accent) !important;
	border-radius: 8px;
	background: var(--rk-accent) !important;
	color: var(--rk-black) !important;
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 14px 28px rgba(255, 184, 0, 0.2);
	transition: transform var(--rk-motion-fast) var(--rk-ease), background var(--rk-motion-fast) ease, box-shadow var(--rk-motion-fast) ease, filter var(--rk-motion-fast) ease;
}

.single-product div.product .single_add_to_cart_button::before {
	display: inline-block;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M6.5%208.5h11l-1%2010h-9l-1-10Z'/%3E%3Cpath%20d='M9%208.5a3%203%200%200%201%206%200'/%3E%3Cpath%20d='M8.5%2012h7'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M6.5%208.5h11l-1%2010h-9l-1-10Z'/%3E%3Cpath%20d='M9%208.5a3%203%200%200%201%206%200'/%3E%3Cpath%20d='M8.5%2012h7'/%3E%3C/svg%3E") center / contain no-repeat;
	content: "";
}

.single-product div.product .single_add_to_cart_button:hover,
.single-product div.product .single_add_to_cart_button:focus {
	transform: translateY(-2px);
	background: var(--rk-accent-dark) !important;
	box-shadow: 0 18px 34px rgba(255, 184, 0, 0.26);
}

.single-product div.product .single_add_to_cart_button:active {
	transform: translateY(0) scale(0.985);
	box-shadow: 0 10px 22px rgba(255, 184, 0, 0.18);
}

.single-product .rk-buy-now-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	flex-basis: 100%;
	width: fit-content;
	min-height: 54px;
	padding: 0 24px;
	border: 1px solid rgba(255, 184, 0, 0.5);
	border-radius: 8px;
	background: rgba(255, 184, 0, 0.06);
	color: var(--rk-accent);
	font-size: 0.9rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform var(--rk-motion-fast) var(--rk-ease), border-color var(--rk-motion-fast) ease, background var(--rk-motion-fast) ease, color var(--rk-motion-fast) ease, box-shadow var(--rk-motion-fast) ease;
}

.single-product .rk-buy-now-button:hover,
.single-product .rk-buy-now-button:focus {
	transform: translateY(-2px);
	border-color: var(--rk-accent);
	background: rgba(255, 184, 0, 0.12);
	color: var(--rk-accent-dark);
	box-shadow: 0 14px 28px rgba(255, 184, 0, 0.12);
}

.single-product .rk-buy-now-button:active {
	transform: translateY(0) scale(0.985);
}

.single-product div.product .product_meta {
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--rk-muted);
	font-size: 13px;
	font-weight: 800;
}

.single-product div.product .product_meta a {
	color: var(--rk-accent);
	text-decoration: none;
}

.single-product div.product div.images img {
	border-radius: 8px;
	background: #0f0f0f;
	transition: transform 320ms var(--rk-ease);
}

.single-product div.product div.images .woocommerce-product-gallery__image {
	overflow: hidden;
	border-radius: 8px;
}

.single-product div.product div.images .woocommerce-product-gallery__image:hover img {
	transform: scale(1.035);
}

.single-product .woocommerce-tabs {
	clear: both;
	padding-top: 46px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 0 0 22px;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: visible;
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs::after {
	display: none !important;
	border: 0 !important;
	box-shadow: none !important;
	content: none !important;
}

.single-product .woocommerce-tabs ul.tabs li {
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 8px !important;
	background: #111 !important;
	box-shadow: none !important;
	overflow: hidden;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
	border: 0 !important;
	box-shadow: none !important;
	content: none !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 13px 18px !important;
	color: var(--rk-soft-text) !important;
	font-family: var(--rk-heading-font);
	font-weight: 900;
	letter-spacing: 0.04em;
	line-height: 1;
	text-decoration: none !important;
	text-transform: uppercase;
}

.single-product .woocommerce-tabs ul.tabs li.active {
	transform: translateY(-1px);
	border-color: rgba(255, 184, 0, 0.58) !important;
	background: #151515 !important;
	box-shadow: inset 0 -3px 0 var(--rk-accent) !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
	color: var(--rk-white) !important;
}

.single-product .woocommerce-Tabs-panel {
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--rk-soft-text);
	box-shadow: none !important;
}

.rk-product-description-block {
	display: grid;
	gap: 18px;
}

.rk-product-description-section {
	padding: 22px;
	border: 1px solid var(--rk-border);
	border-radius: 8px;
	background: var(--rk-card);
}

.rk-product-description-section h2,
.single-product .related.products > h2 {
	margin: 0 0 16px;
	color: var(--rk-white);
	font-family: var(--rk-heading-font);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1;
	text-transform: uppercase;
}

.rk-product-description-content,
.rk-product-benefits,
.rk-product-specs {
	color: var(--rk-soft-text);
	font-weight: 700;
	line-height: 1.6;
}

.rk-product-description-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.rk-product-benefits {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.rk-product-benefits li::before {
	margin-right: 8px;
	color: var(--rk-accent);
	content: "✓";
}

.rk-product-specs {
	display: grid;
	gap: 10px;
	margin: 0;
}

.rk-product-specs div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rk-product-specs dt {
	color: var(--rk-white);
	font-weight: 900;
}

.rk-product-specs dd {
	margin: 0;
	color: var(--rk-muted);
	text-align: right;
}

.single-product .related.products {
	clear: both;
	margin-top: 52px;
	padding-top: 38px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.single-product #reviews,
.single-product #review_form_wrapper {
	color: var(--rk-soft-text);
}

.single-product #reviews #comments,
.single-product #review_form {
	padding: 22px;
	border: 1px solid var(--rk-border);
	border-radius: 8px;
	background: var(--rk-card);
	box-shadow: none;
}

.single-product #review_form_wrapper {
	margin-top: 18px;
}

.single-product .woocommerce-Reviews-title,
.single-product #reply-title {
	display: block;
	margin: 0 0 16px;
	color: var(--rk-white);
	font-family: var(--rk-heading-font);
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1;
	text-transform: uppercase;
}

.single-product .woocommerce-noreviews {
	margin: 0;
	color: var(--rk-muted);
	font-weight: 800;
}

.single-product #reviews ol.commentlist {
	padding: 0;
	margin: 0;
	list-style: none;
}

.single-product #reviews ol.commentlist li {
	margin: 0 0 14px;
}

.single-product #reviews ol.commentlist li .comment-text {
	margin: 0;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 8px;
	background: #111;
	color: var(--rk-soft-text);
	box-shadow: none;
}

.single-product #reviews ol.commentlist li img.avatar {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #111;
}

.single-product #reviews .star-rating,
.single-product #reviews .star-rating::before,
.single-product #reviews .star-rating span::before {
	color: var(--rk-accent);
}

.single-product #reviews label {
	display: block;
	margin-bottom: 8px;
	color: var(--rk-soft-text);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.single-product #reviews input[type="text"],
.single-product #reviews input[type="email"],
.single-product #reviews textarea,
.single-product #reviews select {
	width: 100%;
	min-height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: #121212;
	color: var(--rk-white);
	font-weight: 700;
	outline: 0;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.single-product #reviews textarea {
	min-height: 138px;
	padding: 14px 16px;
}

.single-product #reviews input[type="text"],
.single-product #reviews input[type="email"],
.single-product #reviews select {
	padding: 0 14px;
}

.single-product #reviews input:focus,
.single-product #reviews textarea:focus,
.single-product #reviews select:focus {
	border-color: var(--rk-accent);
	background: #161616;
	box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.12), inset 0 0 0 1px rgba(255, 184, 0, 0.05);
}

.single-product #reviews .comment-form-rating {
	margin: 0 0 16px;
}

.single-product #reviews p.stars {
	display: inline-flex;
	gap: 6px;
	margin: 2px 0 0;
}

.single-product #reviews p.stars a {
	color: var(--rk-accent);
	transition: transform 160ms ease, color 160ms ease, filter 160ms ease;
}

.single-product #reviews p.stars a:hover,
.single-product #reviews p.stars a:focus,
.single-product #reviews p.stars.selected a {
	transform: translateY(-1px);
	color: var(--rk-accent-dark);
	filter: drop-shadow(0 0 8px rgba(255, 184, 0, 0.18));
}

.single-product #reviews #submit {
	min-height: 48px;
	padding: 0 20px;
	border: 1px solid var(--rk-accent);
	border-radius: 8px;
	background: var(--rk-accent);
	color: var(--rk-black);
	font-size: 0.86rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 12px 24px rgba(255, 184, 0, 0.18);
	transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.single-product #reviews #submit:hover,
.single-product #reviews #submit:focus {
	transform: translateY(-1px);
	background: var(--rk-accent-dark);
	box-shadow: 0 16px 30px rgba(255, 184, 0, 0.24);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	border: 1px solid var(--rk-accent);
	border-radius: 8px;
	background: var(--rk-accent);
	color: var(--rk-black);
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: transform var(--rk-motion-fast) var(--rk-ease), background var(--rk-motion-fast) ease, color var(--rk-motion-fast) ease, box-shadow var(--rk-motion-fast) ease, filter var(--rk-motion-fast) ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--rk-accent-dark);
	color: var(--rk-black);
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(255, 184, 0, 0.2);
}

.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active,
.woocommerce #respond input#submit:active {
	transform: translateY(0) scale(0.985);
	box-shadow: 0 8px 18px rgba(255, 184, 0, 0.14);
}

.woocommerce-cart .site-main--shop,
.woocommerce-checkout .site-main--shop,
.woocommerce-account .site-main--shop {
	width: min(100% - 32px, 1180px);
	padding: 58px 0 76px;
}

.woocommerce-cart h1,
.woocommerce-checkout h1,
.woocommerce-account h1,
.woocommerce-cart h2,
.woocommerce-checkout h2,
.woocommerce-account h2,
.woocommerce-cart h3,
.woocommerce-checkout h3,
.woocommerce-account h3,
.wc-block-components-title,
.wc-block-components-checkout-step__title,
.wp-block-woocommerce-cart-order-summary-heading-block,
.wp-block-woocommerce-checkout-order-summary-block h2 {
	color: var(--rk-white);
	font-family: var(--rk-heading-font);
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.woocommerce form.checkout,
.woocommerce-cart-form,
.woocommerce .cart-collaterals,
.woocommerce-account .woocommerce,
.wc-block-components-sidebar,
.wc-block-components-main,
.wc-block-cart,
.wc-block-checkout {
	color: var(--rk-soft-text);
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label,
.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-checkbox label,
.wc-block-components-radio-control__label,
.wc-block-components-address-form__address_2-toggle {
	color: var(--rk-soft-text);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea,
.woocommerce-page form .form-row select,
.select2-container--default .select2-selection--single,
.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="text"] {
	min-height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: var(--rk-card);
	color: var(--rk-white);
	font-weight: 700;
	outline: 0;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.woocommerce form .form-row textarea,
.wc-block-components-textarea {
	min-height: 120px;
	padding: 14px 16px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce-page form .form-row input.input-text:focus,
.woocommerce-page form .form-row textarea:focus,
.woocommerce-page form .form-row select:focus,
.select2-container--default.select2-container--open .select2-selection--single,
.wc-block-components-text-input input:focus,
.wc-block-components-textarea:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus {
	border-color: var(--rk-accent);
	background: var(--rk-soft-dark);
	box-shadow: var(--rk-focus-glow);
}

.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder,
.wc-block-components-text-input input::placeholder,
.wc-block-components-textarea::placeholder {
	color: var(--rk-muted);
}

.woocommerce table.shop_table,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce form.login,
.woocommerce form.register,
.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-components-totals-wrapper,
.wc-block-cart-items,
.wc-block-components-order-summary,
.wc-block-checkout__payment-method,
.wc-block-components-address-card {
	border: 1px solid var(--rk-border);
	border-radius: 8px;
	background: var(--rk-card);
	color: var(--rk-soft-text);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: rgba(255, 255, 255, 0.1);
	color: var(--rk-soft-text);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table thead th,
.cart_totals h2,
.woocommerce-checkout-review-order-table th,
.wc-block-components-totals-item__label,
.wc-block-components-order-summary-item__description {
	color: var(--rk-white);
	font-weight: 900;
	text-transform: uppercase;
}

.woocommerce table.shop_table .product-name a,
.wc-block-cart-item__product a,
.wc-block-components-product-name {
	color: var(--rk-white);
	font-weight: 900;
}

.woocommerce table.shop_table .amount,
.woocommerce .cart_totals .amount,
.wc-block-components-totals-item__value,
.wc-block-components-formatted-money-amount {
	color: var(--rk-accent);
	font-weight: 900;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.wc-block-components-notice-banner {
	border: 1px solid rgba(255, 184, 0, 0.36);
	border-radius: 8px;
	background: rgba(255, 184, 0, 0.08);
	color: var(--rk-soft-text);
	font-weight: 800;
}

.woocommerce-error {
	border-color: rgba(255, 77, 77, 0.46);
	background: rgba(255, 77, 77, 0.1);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--rk-accent);
}

.woocommerce-error::before {
	color: var(--rk-error);
}

.woocommerce a.remove {
	color: var(--rk-accent) !important;
	transition: background 180ms ease, color 180ms ease;
}

.woocommerce a.remove:hover {
	background: var(--rk-accent);
	color: var(--rk-black) !important;
}

.woocommerce .quantity .qty {
	min-height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: var(--rk-card);
	color: var(--rk-white);
	font-weight: 900;
}

.woocommerce .coupon .input-text {
	min-height: 46px;
	min-width: 220px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: var(--rk-card);
	color: var(--rk-white);
	font-weight: 700;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #payment #place_order,
.wc-block-components-button:not(.is-link) {
	border: 1px solid var(--rk-accent);
	border-radius: 8px;
	background: var(--rk-accent);
	color: var(--rk-black);
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 12px 24px rgba(255, 184, 0, 0.18);
	transition: transform var(--rk-motion-fast) var(--rk-ease), background var(--rk-motion-fast) ease, color var(--rk-motion-fast) ease, box-shadow var(--rk-motion-fast) ease, filter var(--rk-motion-fast) ease;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #payment #place_order:hover,
.wc-block-components-button:not(.is-link):hover {
	transform: translateY(-1px);
	background: var(--rk-accent-dark);
	color: var(--rk-black);
	box-shadow: 0 16px 30px rgba(255, 184, 0, 0.24);
}

.woocommerce a.button.alt:active,
.woocommerce button.button.alt:active,
.woocommerce input.button.alt:active,
.woocommerce #payment #place_order:active,
.wc-block-components-button:not(.is-link):active {
	transform: translateY(0) scale(0.985);
	box-shadow: 0 9px 20px rgba(255, 184, 0, 0.16);
}

body.woocommerce-cart a.wc-block-components-button.wc-block-cart__submit-button,
body.woocommerce-cart a.wc-block-components-button.wc-block-cart__submit-button.contained,
body.woocommerce-cart .wc-block-cart__submit-button {
	position: relative;
	overflow: hidden;
	width: 100%;
}

body.woocommerce-cart a.wc-block-components-button.wc-block-cart__submit-button .wc-block-components-button__text,
body.woocommerce-cart .wc-block-cart__submit-button .wc-block-components-button__text {
	position: relative;
	z-index: 1;
	color: var(--rk-black);
	font-weight: 900;
	text-align: center;
}

body.woocommerce-cart .wc-block-cart__submit-button::after {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .2), transparent 70%);
	opacity: 0;
	transition: opacity .25s ease;
	content: "";
}

body.woocommerce-cart .wc-block-cart__submit-button:hover::after {
	opacity: 1;
}

.woocommerce a:not(.button),
.wc-block-components-button.is-link,
.wc-block-components-checkout-return-to-cart-button {
	color: var(--rk-accent);
	font-weight: 800;
}

.woocommerce a:not(.button):hover,
.woocommerce a:not(.button):focus,
.wc-block-components-button.is-link:hover,
.wc-block-components-checkout-return-to-cart-button:hover {
	color: var(--rk-accent-dark);
}

.woocommerce #payment,
.woocommerce #payment ul.payment_methods,
.woocommerce #payment div.form-row {
	border-color: rgba(255, 255, 255, 0.1);
	background: var(--rk-card);
	color: var(--rk-soft-text);
}

.woocommerce-privacy-policy-text,
.wc-block-components-checkout-step__description,
.wc-block-components-checkbox__label {
	color: var(--rk-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.woocommerce-checkout .wc-block-components-checkout-step,
.woocommerce-checkout .wc-block-checkout__contact-fields,
.woocommerce-checkout .wc-block-checkout__billing-fields,
.woocommerce-checkout .wc-block-checkout__payment-method,
.woocommerce-checkout .wc-block-components-order-summary,
.woocommerce-checkout .woocommerce-checkout-review-order {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(12, 12, 12, 0.98));
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
}

.woocommerce-checkout .wc-block-components-checkout-step {
	padding: 22px;
}

.woocommerce-checkout .wc-block-checkout__add-note,
.woocommerce-checkout .wc-block-checkout__order-notes {
	color: var(--rk-soft-text);
}

.woocommerce-checkout .wc-block-checkout__add-note .wc-block-components-checkbox {
	margin: 0 0 12px;
}

.woocommerce-checkout .wc-block-checkout__add-note .wc-block-components-checkbox__label {
	color: var(--rk-soft-text);
	font-size: 13px;
	font-weight: 800;
}

.woocommerce-checkout .wc-block-checkout__add-note textarea,
.woocommerce-checkout .wc-block-checkout__order-notes textarea {
	width: 100%;
	min-height: 112px;
	resize: vertical;
}

.woocommerce-checkout .wc-block-components-sidebar,
.woocommerce-checkout .wc-block-components-order-summary,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
	background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(8, 8, 8, 0.98));
}

.woocommerce-checkout .wc-block-components-title,
.woocommerce-checkout .wc-block-components-checkout-step__title,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block h2,
.woocommerce-checkout h1,
.woocommerce-checkout h2,
.woocommerce-checkout h3 {
	color: var(--rk-white);
	font-family: var(--rk-heading-font);
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1;
	text-transform: uppercase;
	text-rendering: geometricPrecision;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .input-text,
.woocommerce-checkout .select2-container--default .select2-selection--single,
.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-textarea,
.woocommerce-checkout .wc-block-components-select .wc-block-components-select__select,
.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.woocommerce-cart input[type="text"],
.woocommerce-cart input[type="email"],
.woocommerce-cart input[type="tel"],
.woocommerce-cart textarea,
.woocommerce-cart select,
.woocommerce-cart .input-text {
	min-height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 8px;
	background-color: #121212 !important;
	color: var(--rk-white) !important;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.woocommerce-checkout .wc-block-components-select .wc-block-components-select__container,
.woocommerce-checkout .wc-block-components-combobox .components-base-control__field,
.woocommerce-checkout .select2-container--default .select2-selection--single,
.woocommerce-checkout .select2-dropdown,
.woocommerce-checkout .select2-search--dropdown .select2-search__field {
	border-color: rgba(255, 255, 255, 0.14) !important;
	background: #121212 !important;
	color: var(--rk-white) !important;
}

.woocommerce-checkout .wc-block-components-select .wc-block-components-select__label,
.woocommerce-checkout .wc-block-components-combobox label,
.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--rk-soft-text) !important;
}

.woocommerce-checkout .wc-block-components-address-form__address_2-toggle {
	order: 50;
	align-self: flex-start;
	margin: 2px 0 16px;
	padding: 0;
	min-height: auto;
	border: 0;
	background: transparent;
	color: var(--rk-accent) !important;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0.03em;
	text-decoration: none;
}

.woocommerce-checkout .wc-block-components-address-form__address_2.wc-block-components-text-input {
	width: 100%;
	margin-bottom: 16px;
}

.woocommerce-checkout .wc-block-components-address-form__address_2.wc-block-components-text-input label {
	color: var(--rk-soft-text) !important;
}

.woocommerce-checkout .wc-block-components-address-form__address_2.wc-block-components-text-input input {
	margin: 0 !important;
	min-height: 48px;
}

.woocommerce-checkout .wc-block-components-address-form__address_2.wc-block-components-text-input input::placeholder {
	color: rgba(255, 255, 255, 0.42) !important;
}

.woocommerce-checkout .wc-block-components-address-form__first_name {
	order: 10;
}

.woocommerce-checkout .wc-block-components-address-form__last_name {
	order: 20;
}

.woocommerce-checkout .wc-block-components-address-form__postcode {
	order: 30;
}

.woocommerce-checkout .wc-block-components-address-form__address_1 {
	order: 40;
}

.woocommerce-checkout .wc-block-components-address-form__address_2 {
	order: 51;
}

.woocommerce-checkout .wc-block-components-address-form__city {
	order: 60;
}

.woocommerce-checkout .wc-block-components-address-form__state {
	order: 70;
}

.woocommerce-checkout .wc-block-components-address-form__phone,
.woocommerce-checkout .wc-block-components-phone-number-input {
	order: 80;
}

.woocommerce-checkout option,
.woocommerce-cart option,
.select2-container--default .select2-results__option {
	background: #121212;
	color: var(--rk-white);
}

.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout .input-text:focus,
.woocommerce-checkout .select2-container--open .select2-selection--single,
.woocommerce-checkout .wc-block-components-text-input input:focus,
.woocommerce-checkout .wc-block-components-textarea:focus,
.woocommerce-checkout .wc-block-components-select .wc-block-components-select__select:focus,
.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.woocommerce-cart input:focus,
.woocommerce-cart textarea:focus,
.woocommerce-cart select:focus {
	border-color: #ffb800 !important;
	background-color: #161616 !important;
	box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.12), inset 0 0 0 1px rgba(255, 184, 0, 0.05);
}

.woocommerce-checkout .wc-block-components-notice-banner,
.woocommerce-checkout .wc-block-components-notice-banner.is-warning,
.woocommerce-checkout .wc-block-components-notice-banner.is-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout #payment div.payment_box,
.woocommerce-checkout .wc-block-checkout__no-payment-methods-notice {
	border: 1px solid rgba(205, 66, 66, 0.36);
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(58, 15, 15, 0.78), rgba(10, 10, 10, 0.96));
	color: rgba(255, 244, 236, 0.92);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), inset 3px 0 0 rgba(255, 184, 0, 0.34);
}

.woocommerce-checkout .wc-block-components-notice-banner.is-error,
.woocommerce-checkout .woocommerce-error {
	border-color: rgba(205, 66, 66, 0.42);
	background: linear-gradient(135deg, rgba(68, 16, 16, 0.82), rgba(10, 10, 10, 0.96));
}

.woocommerce-checkout .wc-block-components-notice-banner__content,
.woocommerce-checkout .wc-block-components-notice-banner__content *,
.woocommerce-checkout #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box p {
	color: rgba(255, 244, 236, 0.92);
	font-weight: 800;
}

.woocommerce-checkout .wc-block-components-notice-banner svg,
.woocommerce-checkout .wc-block-components-notice-banner .wc-block-components-notice-banner__icon,
.woocommerce-checkout .woocommerce-info::before,
.woocommerce-checkout .woocommerce-error::before {
	color: rgba(255, 184, 0, 0.82);
	opacity: 0.9;
	transform: scale(0.92);
}

.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button,
.woocommerce-checkout .wc-block-components-button.is-link,
.woocommerce-checkout a.wc-block-components-checkout-return-to-cart-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid rgba(255, 184, 0, 0.42);
	border-radius: 8px;
	background: rgba(255, 184, 0, 0.06);
	color: var(--rk-accent) !important;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button:hover,
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button:focus,
.woocommerce-checkout .wc-block-components-button.is-link:hover,
.woocommerce-checkout .wc-block-components-button.is-link:focus {
	transform: translateY(-1px);
	border-color: var(--rk-accent);
	background: rgba(255, 184, 0, 0.12);
	color: var(--rk-accent-dark) !important;
}

.woocommerce-checkout #place_order,
.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wc-block-components-button:not(.is-link) {
	min-height: 48px;
	padding: 0 18px;
	border-color: var(--rk-accent) !important;
	background: var(--rk-accent) !important;
	color: var(--rk-black) !important;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 14px 28px rgba(255, 184, 0, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
}

.woocommerce-checkout #place_order:hover,
.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
.woocommerce-checkout .wc-block-components-button:not(.is-link):hover {
	transform: translateY(-2px);
	background: var(--rk-accent-dark) !important;
	color: var(--rk-black) !important;
	box-shadow: 0 18px 34px rgba(255, 184, 0, 0.26);
	filter: brightness(1.03);
}

.woocommerce-checkout #place_order:active,
.woocommerce-checkout .wc-block-components-checkout-place-order-button:active,
.woocommerce-checkout .wc-block-components-button:not(.is-link):active {
	transform: translateY(0);
	box-shadow: 0 10px 20px rgba(255, 184, 0, 0.18);
}

.woocommerce-checkout .wc-block-checkout__actions,
.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
	align-items: center;
}

.woocommerce-checkout .wc-block-checkout__actions {
	gap: 12px;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button .wc-block-components-button__text,
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button .wc-block-components-button__text {
	line-height: 1;
}

.woocommerce-checkout .wc-block-components-order-summary-item__total-price,
.woocommerce-checkout .wc-block-components-totals-item__value,
.woocommerce-checkout .wc-block-components-formatted-money-amount,
.woocommerce-checkout .order-total .amount,
.woocommerce-checkout .cart-subtotal .amount {
	color: var(--rk-accent) !important;
	font-weight: 900;
}

.woocommerce-checkout .wc-block-components-totals-coupon,
.woocommerce-checkout .wc-block-components-totals-coupon__form {
	color: var(--rk-soft-text);
}

.woocommerce-checkout .wc-block-components-totals-coupon__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	align-items: end;
}

.woocommerce-checkout .wc-block-components-totals-coupon__input input,
.woocommerce-checkout .wc-block-components-totals-coupon__form input[type="text"] {
	min-height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 8px;
	background: #121212 !important;
	color: var(--rk-white) !important;
	font-weight: 800;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.woocommerce-checkout .wc-block-components-totals-coupon__input input::placeholder,
.woocommerce-checkout .wc-block-components-totals-coupon__form input[type="text"]::placeholder {
	color: var(--rk-muted);
}

.woocommerce-checkout .wc-block-components-totals-coupon__input input:focus,
.woocommerce-checkout .wc-block-components-totals-coupon__form input[type="text"]:focus {
	border-color: #ffb800 !important;
	background: #161616 !important;
	box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.12), inset 0 0 0 1px rgba(255, 184, 0, 0.05);
}

.woocommerce-checkout .wc-block-components-totals-coupon__button,
.woocommerce-checkout .wc-block-components-totals-coupon__form button {
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid var(--rk-accent) !important;
	border-radius: 8px;
	background: var(--rk-accent) !important;
	color: var(--rk-black) !important;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 10px 22px rgba(255, 184, 0, 0.18);
	transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.woocommerce-checkout .wc-block-components-totals-coupon__button:hover,
.woocommerce-checkout .wc-block-components-totals-coupon__button:focus,
.woocommerce-checkout .wc-block-components-totals-coupon__form button:hover,
.woocommerce-checkout .wc-block-components-totals-coupon__form button:focus {
	transform: translateY(-1px);
	background: var(--rk-accent-dark) !important;
	color: var(--rk-black) !important;
	box-shadow: 0 14px 28px rgba(255, 184, 0, 0.24);
}

.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #shipping_country_field,
.woocommerce-checkout .wc-block-components-address-form__country,
.woocommerce-checkout .wc-block-components-country-input {
	display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	padding: 12px;
	margin: 0;
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	border-color: #222;
	border-radius: 8px;
	background: #111;
	color: #aaa;
}

.woocommerce-account .woocommerce-MyAccount-content {
	padding: 24px;
}

.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content address,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
	color: #aaa;
}

.woocommerce-account .woocommerce-MyAccount-content strong,
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
	color: #fff;
}

.rk-account-dashboard {
	display: grid;
	gap: 24px;
}

.rk-account-dashboard__header {
	padding-bottom: 4px;
}

.rk-account-dashboard__header p {
	margin: 0 0 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
}

.rk-account-dashboard__header h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 0.98;
}

.rk-account-dashboard__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.rk-account-card {
	display: flex;
	align-items: flex-end;
	min-height: 132px;
	padding: 18px;
	border: 1px solid #222;
	border-radius: 8px;
	background: linear-gradient(145deg, #161616, #0c0c0c);
	color: #fff !important;
	text-decoration: none;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 18px 34px rgba(0, 0, 0, 0.2);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.rk-account-card span {
	color: inherit;
	font-family: var(--rk-heading-font);
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.rk-account-card:hover,
.rk-account-card:focus {
	transform: translateY(-2px);
	border-color: rgba(255, 184, 0, 0.62);
	color: #ffb800 !important;
	box-shadow: inset 3px 0 0 #ffb800, 0 18px 38px rgba(0, 0, 0, 0.28), 0 0 24px rgba(255, 184, 0, 0.12);
}

.rk-account-panel {
	padding: 20px;
	border: 1px solid #222;
	border-radius: 8px;
	background: #0d0d0d;
}

.rk-account-panel h3 {
	margin: 0 0 14px;
	color: #fff;
	font-size: 18px;
}

.rk-account-order {
	display: grid;
	gap: 6px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	background: #111;
	text-decoration: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.rk-account-order strong {
	color: #fff;
	font-size: 18px;
}

.rk-account-order span,
.rk-account-empty {
	margin: 0;
	color: #aaa;
	font-weight: 800;
}

.rk-account-order:hover,
.rk-account-order:focus {
	border-color: rgba(255, 184, 0, 0.48);
	box-shadow: 0 0 22px rgba(255, 184, 0, 0.1);
}

.rk-account-actions {
	display: grid;
	gap: 8px;
}

.rk-account-actions a {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 38px;
	color: #fff !important;
	font-weight: 900;
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease;
}

.rk-account-actions a::before {
	color: #ffb800;
	content: "→";
}

.rk-account-actions a:hover,
.rk-account-actions a:focus {
	transform: translateX(2px);
	color: #ffb800 !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 12px 14px;
	border-radius: 8px;
	color: #aaa;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a:focus {
	background: rgba(255, 184, 0, 0.08);
	color: #ffb800;
	box-shadow: 0 0 22px rgba(255, 184, 0, 0.12);
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
	background: rgba(255, 184, 0, 0.14);
	color: #ffb800;
	box-shadow: inset 3px 0 0 #ffb800, 0 0 24px rgba(255, 184, 0, 0.14);
}

.woocommerce-account {
	background: #0b0b0b;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	width: 100%;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #aaa;
	box-shadow: none;
}

.rk-account-dashboard {
	gap: 28px;
	max-width: 1120px;
	margin: 0 auto;
}

.rk-account-dashboard__header {
	display: grid;
	gap: 8px;
	padding: 12px 0 10px;
}

.rk-account-dashboard__header p,
.rk-account-dashboard__header h2 {
	margin: 0;
}

.rk-account-dashboard__header p {
	color: #fff;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
}

.rk-account-dashboard__header h2 {
	color: #aaa;
	font-family: var(--rk-body-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: none;
}

.rk-account-dashboard__cards {
	gap: 16px;
}

.rk-account-card {
	position: relative;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	min-height: 220px;
}

.account-card {
	background: #111;
	border: 1px solid #222;
	border-radius: 10px;
	padding: 24px;
	transition: all 0.2s ease;
}

.rk-account-card i {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 184, 0, 0.32);
	border-radius: 999px;
	color: #ffb800;
	opacity: 0.72;
}

.rk-account-card i::before,
.rk-account-card i::after {
	position: absolute;
	content: "";
}

.rk-account-card--orders i::before {
	inset: 9px 8px;
	border: 2px solid currentColor;
	border-radius: 3px;
}

.rk-account-card--orders i::after {
	top: 13px;
	left: 12px;
	width: 10px;
	height: 2px;
	background: currentColor;
	box-shadow: 0 5px 0 currentColor;
}

.rk-account-card--addresses i::before {
	top: 8px;
	left: 10px;
	width: 12px;
	height: 12px;
	border: 2px solid currentColor;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.rk-account-card--addresses i::after {
	top: 13px;
	left: 15px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
}

.rk-account-card--profile i::before {
	top: 8px;
	left: 12px;
	width: 8px;
	height: 8px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.rk-account-card--profile i::after {
	right: 8px;
	bottom: 8px;
	left: 8px;
	height: 8px;
	border: 2px solid currentColor;
	border-radius: 999px 999px 0 0;
	border-bottom: 0;
}

.rk-account-card strong {
	color: #fff;
	font-family: var(--rk-heading-font);
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
	transition: color 180ms ease;
}

.rk-account-card span {
	margin-top: 8px;
	color: #aaa;
	font-family: var(--rk-body-font);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

.rk-account-card:hover,
.rk-account-card:focus {
	transform: translateY(-4px);
	border-color: #ffb800;
	box-shadow: 0 10px 30px rgba(255, 184, 0, 0.1);
}

.rk-account-card:hover strong,
.rk-account-card:focus strong {
	color: #ffb800;
}

.rk-account-recent {
	display: grid;
	gap: 12px;
}

.rk-account-order {
	grid-template-columns: 88px minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	min-height: 124px;
	padding: 18px;
	border-color: #222;
	background: #111;
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rk-account-order img {
	display: block;
	width: 88px;
	height: 88px;
	border-radius: 8px;
	background: #0b0b0b;
	object-fit: cover;
}

.rk-account-order div {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.rk-account-order strong {
	overflow: hidden;
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rk-account-order span {
	color: #aaa;
	font-size: 14px;
	font-weight: 800;
}

.rk-account-order b {
	color: #ffb800;
	font-size: 18px;
	font-weight: 900;
	white-space: nowrap;
}

.rk-account-order:hover,
.rk-account-order:focus {
	transform: translateY(-2px);
	border-color: rgba(255, 184, 0, 0.42);
	box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28), 0 0 24px rgba(255, 184, 0, 0.1);
}

.rk-account-order--empty {
	display: flex;
	color: #aaa !important;
}

.rk-account-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rk-account-actions a {
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid #222;
	border-radius: 8px;
	background: #111;
	font-size: 13px;
	text-transform: uppercase;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.rk-account-actions a::before {
	content: none;
}

.rk-account-actions a:hover,
.rk-account-actions a:focus {
	transform: translateY(-2px);
	border-color: rgba(255, 184, 0, 0.52);
	color: #ffb800 !important;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26), 0 0 22px rgba(255, 184, 0, 0.1);
}

.woocommerce-account .rk-account-addresses__intro {
	max-width: 760px;
	margin: 0 0 18px;
	color: #aaa;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
}

.rk-account-addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.rk-account-address-card,
.woocommerce-account form.edit-account,
.woocommerce-account .woocommerce-orders-table {
	border: 1px solid #222;
	border-radius: 10px;
	background: #111;
	color: #aaa;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.rk-account-address-card {
	padding: 22px;
}

.rk-account-address-card .woocommerce-Address-title {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.rk-account-address-card h2 {
	margin: 0;
	color: #fff;
	font-size: 24px;
	line-height: 1;
}

.rk-account-address-card .edit {
	color: #ffb800 !important;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-transform: uppercase;
}

.rk-account-address-card address {
	margin: 0;
	color: #aaa;
	font-style: normal;
	font-weight: 700;
	line-height: 1.55;
}

.woocommerce-account .woocommerce-orders-table {
	overflow: hidden;
}

.woocommerce-account .woocommerce-orders-table th,
.woocommerce-account .woocommerce-orders-table td {
	padding: 16px !important;
	border-color: rgba(255, 255, 255, 0.08) !important;
}

.woocommerce-account .woocommerce-orders-table a:not(.button) {
	color: #ffb800;
}

.woocommerce-account form.edit-account {
	padding: 24px;
}

.woocommerce-account form.edit-account fieldset {
	margin: 22px 0 0;
	padding: 20px 0 0;
	border: 0;
	border-top: 1px solid #222;
}

.woocommerce-account form.edit-account legend {
	margin-bottom: 14px;
	color: #fff;
	font-family: var(--rk-heading-font);
	font-size: 22px;
	font-weight: 900;
	text-transform: uppercase;
}

.woocommerce-account #account_display_name_description {
	display: block;
	margin-top: 8px;
	color: #aaa;
	font-size: 12px;
	font-weight: 700;
}

@media (min-width: 1360px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.site-main--shop {
		padding: 46px 0 62px;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
	}

	.woocommerce-products-header__title.page-title {
		font-size: 40px;
	}
}

@media (max-width: 760px) {
	.rk-product-description-grid {
		grid-template-columns: 1fr;
	}

	.single-product div.product .single_add_to_cart_button,
	.single-product .rk-buy-now-button {
		width: 100%;
	}

	.rk-account-dashboard__cards {
		grid-template-columns: 1fr;
	}

	.rk-account-addresses {
		grid-template-columns: 1fr;
	}

	.rk-account-address-card .woocommerce-Address-title {
		display: grid;
	}

	.rk-account-card {
		min-height: 104px;
	}

	.rk-account-order {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.rk-account-order img {
		width: 72px;
		height: 72px;
	}

	.rk-account-order b {
		grid-column: 2;
	}

	.rk-account-actions {
		display: grid;
	}

	.woocommerce .woocommerce-ordering,
	.woocommerce .woocommerce-result-count {
		float: none;
		width: 100%;
	}

	.woocommerce .woocommerce-result-count {
		margin-bottom: 12px;
		line-height: 1.4;
	}

	.woocommerce .woocommerce-ordering select {
		width: 100%;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.woocommerce ul.products li.product a.woocommerce-loop-product__link img,
	.woocommerce ul.products li.product a.woocommerce-LoopProduct-link img {
		height: 190px;
	}

}

@media (max-width: 520px) {
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}
}
