/*--Reset--*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/*--Body--*/
body {
	font-family: "Helvetica", "Arial", sans-serif;
	background-color: #fff;
	color: #333;
	line-height: 1.5;
}

/*--Header--*/
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #c00;
	color: #fff;
	padding: 10px 20px;
}
header .logo {
	font-size: 1.5em;
	font-weight: 700;
}
header nav ul {
	display: flex;
	gap: 15px;
	list-style: none;
}
header nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 70%;
}
header nav ul li a img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 35px;
}
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.site-logo {
	margin: 0;
}
.site-nav,
.header-cart {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 1em;
}
.cart-button {
	width: 35px;
}

/*--Hero--*/
.hero img {
	width: 100%;
	display: block;
}

/*--Categories--*/
.categories {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 15px;
	border-bottom: 1px solid #ddd;
}
.categories ul {
	display: flex;
	width: 100%;
	max-width: 1000px;
	justify-content: space-between;
}
.categories li {
	list-style: none;
	width: 100%;
}

/*--Breadcrumb--*/
.breadcrumb {
	margin: 1em 0 0 20px;
}
.subpage .breadcrumb {
	margin: 1em 0 0 0;
}
.breadcrumb li {
	display: inline-block;
	position: relative;
}
.breadcrumb li + li:before {
	display: inline-block;
	content: ">";
	margin-left: 1em;
	margin-right: 1em;
}
.fullwidth-breadcrumb {
	padding: 0 24px;
}

/*--Search--*/
.search-filter {
	display: flex;
	justify-content: space-between;
	padding: 20px;
}
.search-filter input {
	padding: 8px;
	width: 70%;
	max-width: 350px;
}
.search-filter div {
	max-width: 500px;
	width: 100%;
}
.search-filter button {
	padding: 8px 15px;
	background-color: #c00;
	color: #fff;
	border: 0;
	cursor: pointer;
	left: -5px;
	top: 1px;
	position: relative;
}
.search-filter ul {
	display: flex;
	list-style: none;
	height: 1.5em;
}
.search-filter ul li:first-child {
	padding-right: 1em;
}
.search-filter ul li + li {
	border-left: 1px solid #ccc;
}
.search-filter ul li a {
	margin-left: 1em;
	margin-right: 1em;
}

/*--トップ--*/
.top-list-filter {
	padding-top: 12px;
}

/*--Layout Common--*/
.wrap {
	max-width: 1080px;
	margin: 30px auto 50px auto;
}
.wrap h2 {
	text-align: center;
	color: #b60000;
	font-size: 200%;
	margin-bottom: 20px;
}
.subpage .search-filter {
	justify-content: center;
	border-bottom: 1px solid #ccc;
	background: #f2f2f2;
}

/*--Products (General)--*/
.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
	padding: 20px;
}
.product-card {
	border: 1px solid #ddd;
	padding: 10px;
	text-align: center;
}
.product-card img {
	width: 100%;
	height: auto;
}
.product-card h2 {
	font-size: 1em;
	margin: 10px 0;
}
.product-card p {
	font-weight: 700;
}
.product-card button {
	background-color: #c00;
	color: #fff;
	border: 0;
	padding: 8px 12px;
	margin-top: 10px;
	cursor: pointer;
	width: 100%;
}

/*--Footer--*/
footer {
	background-color: #b60000;
	color: #fff;
	padding: 20px;
	text-align: center;
}
footer nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 10px;
	flex-wrap: wrap;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
footer nav ul li a {
	color: #fff;
	text-decoration: none;
}
footer nav + p {
	border-top: 1px solid #fff;
	padding-top: 15px;
}

/*--FAQ--*/
.qaq {
	font-size: 150%;
	font-weight: 700;
	margin: 20px 0;
}
.qaa {
	border: 1px solid #ccc;
	padding: 20px;
	border-radius: 10px;
}

/*--Flow--*/
.flow_ttl {
	font-size: 150%;
	border-bottom: 1px dashed #555;
	padding-bottom: 5px;
}
.flow_ttl span {
	background-color: #b60000;
	border-radius: 50px;
	color: #fff;
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 1.3;
	margin-right: .2em;
}
.flow_txt {
	font-size: 110%;
	margin: 10px 0 40px 0;
}

/*--Contact--*/
.contact p {
	text-align: center;
}
.contact p span.attention {
	font-size: 90%;
	text-align: left;
	margin-top: 10px;
	display: block;
	color: #b60000;
}
.contact table {
	width: 100%;
	max-width: 900px;
	border-spacing: 10px;
	margin-top: 40px;
}
.wpcf7-submit {
	background-color: #b60000;
	color: #fff;
	padding: 10px 40px !important;
	border: 0;
	font-size: 120% !important;
	border-radius: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 160px !important;
}
.contact button {
	background-color: #b60000;
	color: #fff;
	padding: 10px 40px;
	border: 0;
	font-size: 120%;
	border-radius: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.contact table th {
	width: 25%;
	background-color: #f2f2f2;
	padding: 15px 0;
}
.contact table td {
	width: 75%;
	background-color: #fff;
	padding: 15px 0 15px 10px;
}
.contact table td input,
.contact table td textarea {
	width: 100%;
	padding: 5px;
	font-size: 110%;
}
.contact table td textarea {
	height: 100px;
}

/*--Legal--*/
.tokushoho table {
	border-collapse: collapse;
}
.terms h3,
.terms p {
	text-align: left;
	line-height: 1.5;
}
.terms h3 {
	margin: 20px 0;
}
.terms ol {
	margin: 20px 30px;
}
.terms p + p {
	margin-top: 20px;
}
.privacy h2 + p {
	margin-top: 30px;
}

/*--Login--*/
.loginform {
	max-width: 800px;
	background-color: #f2f2f2;
	padding: 70px 100px;
	display: block;
	margin: 40px auto 0;
}
.loginform input {
	font-size: 110%;
	padding: 5px;
	margin: 10px 0 20px;
	width: 100%;
}
.loginform p {
	font-weight: 700;
	font-size: 120%;
}
.loginform button {
	display: block;
	width: 100%;
	max-width: 400px;
	background-color: #b60000;
	padding: 10px 0;
	text-align: center;
	border: 0;
	margin: 30px auto;
	color: #fff;
	font-size: 130%;
}
.loginform ul {
	list-style: none;
	line-height: 2;
}

/*--Woo List (Design Shim)--*/
.page-title-design {
	text-align: center;
	margin: 30px 0 0;
	color: #c00;
	font-size: 200%;
}
section.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
}
.product-card {
	list-style: none;
	background: #fff;
	border: 1px solid #eee;
	padding: 16px;
	text-align: left;
}
.product-card img {
	width: 100%;
	height: auto;
	display: block;
}
.product-card .card_name {
	margin: 8px 0 4px;
	font-weight: 600;
	line-height: 1.5;
}
.product-card .card_name a {
	text-decoration: none;
	color: inherit;
}
.product-card .price {
	margin: 0 0 8px;
	text-align: center;
}
.woocommerce .products ul,
.woocommerce ul.products {
	padding: 22px;
}
.woocommerce-products-header {
	background: transparent;
}
.woocommerce-products-header h1 {
	color: #c00;
	text-align: center;
	width: 100%;
}
.product-card .price .amount {
	font-weight: 700;
}
.product-card .add-to-cart .button {
	display: inline-block;
	padding: 12px 16px 8px;
	border: 0;
	border-radius: 0;
	background: #c00;
	color: #fff;
	font-size: 11px;
	font-weight: 400;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	width: 100%;
}
.product-card .add-to-cart .button:hover {
	background: #c00;
	color: #fff;
}
section.products::before,
section.products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
	content: none !important;
	display: none !important;
}

/*--Archive Head--*/
.lib-archive-head {
	padding: 0 24px;
}
.lib-archive-title {
	text-align: center;
	color: #c00;
	font-weight: 800;
	letter-spacing: .02em;
	margin: 24px 0 12px;
	font-size: clamp(20px, 3.2vw, 32px);
}
.products li.product .price ins,
.product-card .price ins {
	color: #c00;
	font-weight: 700;
}
.products li.product .price del,
.product-card .price del {
	color: #000;
	opacity: .75;
}

/*--Archive Tools--*/
.lib-archive-tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 8px 0 24px;
}
@media ( max-width: 768px ) {
	.lib-archive-tools {
		flex-direction: column;
		align-items: stretch;
	}
}
.lib-search {
	display: flex;
	align-items: center;
	gap: 0;
	max-width: 400px;
	width: 100%;
}
.lib-search input[type="search"] {
	flex: 1 1 auto;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-right: 0;
	min-width: 0;
	font-size: 11px;
}
.lib-search button {
	padding: 7px 16px;
	background: #c00;
	color: #fff;
	border: 0;
	cursor: pointer;
}
.lib-sort {
	white-space: nowrap;
}
.lib-sort .label {
	color: #555;
	margin-right: 6px;
}
.lib-sort a {
	color: #06c;
	text-decoration: underline;
}
.lib-sort a.is-active {
	font-weight: 700;
	text-decoration: none;
}
.lib-sort .sep {
	color: #aaa;
	margin: 0 8px;
}
.woocommerce ul.products li.product.product-card {
	margin-bottom: 24px;
}

/*--Search Header--*/
.lib-search-filter {
	background: #f2f2f2;
	padding: 18px 0;
	border-bottom: 1px solid #ddd;
}
.lib-search-inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 16px;
}
.lib-search-inner form {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 0;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
.lib-search-inner input[type="search"] {
	flex: 1 1 auto;
	height: 35px;
	border: 1px solid #ddd;
	border-right: 0;
	background: #fff;
	padding: 0 12px;
	outline: none;
	border-radius: 0;
	font-size: 11px;
}
.lib-search-inner button[type="submit"] {
	height: 35px;
	border: 0;
	padding: 0 16px;
	background: #c40000;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	border-radius: 0;
	line-height: 35px;
	font-size: 11px;
}
.lib-search-inner input[type="search"]:focus {
	border-color: #bbb;
}
.lib-search-inner button[type="submit"]:hover,
.lib-search-inner button[type="submit"]:focus {
	filter: brightness(.95);
}
@media ( max-width: 768px ) {
	.lib-search-inner form {
		max-width: 88%;
		font-size: 14px;
	}
	.lib-search-inner input[type="search"] {
		font-size: 16px;
	}
}

/*--Checkout--*/
.wc-block-checkout__order-notes,
.wc-block-checkout__guest-checkout-notice {
	display: none;
}

/*--Login Minor--*/
.keep-login {
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
}
.keep-login input {
	width: 24px;
	margin: 5px 0 9px;
	cursor: pointer;
}
button {
	cursor: pointer;
}

/*--Cart--*/
.wc-block-cart__submit-container,
.wc-block-components-checkout-place-order-button {
	padding: 7px 16px;
	background: #c00;
	color: #fff;
	border: 0;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
}
.wc-block-cart__submit-container a {
	text-decoration: none;
}
.wc-block-components-button__text {
	color: #fff;
	text-decoration: none;
}
.wc-block-components-totals-item.wc-block-components-totals-footer-item::before {
	content: '合計';
	font-weight: 700;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
	visibility: hidden;
}

/*--Single Product--*/
.wrap.product .product-top {
	display: grid;
	grid-template-columns: minmax(160px, 250px) 1fr;
	align-items: start;
	gap: 24px;
}
.wrap.product .product-gallery,
.wrap.product .product-summary {
	min-width: 0;
}
.woocommerce-product-gallery,
.entry-summary {
	margin-top: 24px;
}
.entry-summary {
	padding: 32px 16px;
}
.woocommerce div.product div.images .flex-control-thumbs li {
	padding: 8px 4px 0;
}
.entry-summary .price {
	padding: 12px 0;
}
.entry-summary .woocommerce-product-details__short-description {
	padding-bottom: 24px;
}
.woocommerce .quantity .qty {
	height: 38px;
	margin-right: 16px;
}
.woocommerce div.product .product_title {
	font-size: 22px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover {
	background: #c00;
	color: #fff;
	border: 0;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
}
.related.products {
	display: block;
	clear: both;
	padding: 0;
	max-width: 960px;
	margin: 0 auto;
}

.related.products h2 {
	font-size: 22px;
}
.woocommerce span.onsale {
	top: 4em;
	left: .5em;
	background: #c00;
}
.wrap.product .product-gallery,
.woocommerce div.product div.images {
	width: 100%;
	max-width: 250px;
	justify-self: start;
}
.woocommerce div.product div.images img {
	width: 100%;
	height: auto;
}
.woocommerce div.product div.images .flex-control-thumbs img {
	max-width: 80px;
	height: auto;
}
.summary.entry-summary {
	width: calc(100% - 300px) !important;
}
@media ( max-width: 1024px ) {
	.wrap.product .product-top {
		grid-template-columns: 1fr;
	}
	.wrap.product .product-gallery,
	.woocommerce div.product div.images {
		margin-left: auto;
		margin-right: auto;
	}
	.summary.entry-summary {
		width: 100% !important;
		padding: 0;
	}
}

/*--My Account--*/
.woocommerce-MyAccount-navigation {
	margin-bottom: 48px;
}
.woocommerce-MyAccount-navigation li a {
	color: #000;
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
}
.woocommerce-MyAccount-navigation li {
	list-style-type: none;
	border-bottom: 1px solid #ccc;
	padding: 12px 16px;
	background: #fff;
	cursor: pointer;
}
.woocommerce-MyAccount-navigation li:hover {
	background: #c00;
	color: #fff;
}
.woocommerce-MyAccount-navigation li:hover a {
	background: #c00;
	color: #fff;
}
.woocommerce-MyAccount-navigation li.is-active {
	background: #c00;
}
.woocommerce-MyAccount-navigation li.is-active a {
	color: #fff;
}
.woocommerce-MyAccount-navigation li.is-active a::before {
	content: "▶";
}
.woocommerce-Addresses {
	margin-top: 32px;
	display: block;
}
.woocommerce-Address-title {
	background: transparent;
	display: block;
}
.woocommerce-Address-title h2 {
	font-size: 18px;
	text-align: left;
	margin-bottom: 8px;
}
.woocommerce-Address address {
	font-size: 13px;
	font-style: normal;
}

/*--Cart (Empty Cart Button Wrap)--*/
.wc-block-empty-cart-wrap {
	width: 160px;
	text-align: center;
	float: right;
	background: #666;
	border-radius: 20px;
	padding: 10px 12px 6px;
	font-size: 14px;
	margin-top: -24px;
}
.wc-block-empty-cart-wrap a {
	color: #fff;
	text-decoration: none;
}

/*--Prices/State--*/
.is-discounted {
	color: #c00;
}
.single-product .product .price ins {
	color: #c00;
	font-size: 120%;
}
.single-product .product .price del {
	color: #000;
	opacity: .85;
}

/*--Cart/Checkout (Totals Badge)--*/
.wc-block-components-totals-footer-item-tax {
	visibility: hidden;
}
.wc-block-components-totals-item__value[data-tax-number]::after {
	content: " (" attr(data-tax-number) " 消費税込)";
	display: block;
	font-size: 12px;
}

/*--Toast (Custom)--*/
#cart-toast.toast-cart {
	position: fixed;
	top: 48px;
	right: 16px;
	z-index: 9999;
	pointer-events: none;
}
#cart-toast .msg {
	background: rgba(34, 34, 34, .95);
	color: #fff;
	padding: 10px 14px;
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
	font-size: 14px;
	transform: translateY(-12px);
	opacity: 0;
	transition: opacity .25s ease, transform .25s ease;
	display: inline-block;
}
#cart-toast.show .msg {
	opacity: 1;
	transform: translateY(0);
}
@media ( max-width: 480px ) {
	#cart-toast.toast-cart {
		top: 20px;
		right: 10px;
	}
	#cart-toast .msg {
		font-size: 13px;
	}
	.wc-block-cart table.wc-block-cart-items {
		margin: 0 !important;
	}
	.wc-block-cart table.wc-block-cart-items td {
		margin: 0 !important;
	}
	.wc-block-cart-item__wrap {
		padding: 0 16px;
	}
	.wc-block-empty-cart-wrap {
		margin: 20px 0; !important;
	}
}

/*--Toast (Unified)--*/
#wc-addtocart-toast {
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 99999;
	display: none;
	background: rgba(0, 0, 0, .85);
	color: #fff;
	padding: 12px 16px;
	border-radius: 10px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
	font-size: 14px;
	line-height: 1.4;
	pointer-events: none;
	transition: transform .2s ease, opacity .2s ease;
	transform: translateY(-8px);
	opacity: 0;
}
#wc-addtocart-toast.is-visible {
	display: block;
	transform: translateY(0);
	opacity: 1;
}

/*--Empty Cart--*/
.wc-block-cart__empty-cart__title {
	font-size: 22px !important;
	color: #000 !important;
}
.wp-block-woocommerce-empty-cart-block {
	margin-top: 32px;
}
.lib-empty-cart-h2 {
	font-size: 28px !important;
	margin-top: 64px;
}
.lib-empty-cart .wc-block-grid__products {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
	justify-items: stretch;
}
@media ( max-width: 1280px ) {
	.lib-empty-cart .wc-block-grid__products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
.wc-block-grid__product .wc-block-grid__product-add-to-cart, .wc-block-grid__product .wc-block-grid__product-onsale, .wc-block-grid__product .wc-block-grid__product-price, .wc-block-grid__product .wc-block-grid__product-rating {
	margin: 0 !important;
}

@media ( max-width: 1024px ) {
	.lib-empty-cart .wc-block-grid__products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media ( max-width: 768px ) {
	.lib-empty-cart .wc-block-grid__products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 16px;
	}
}
.lib-empty-cart .wc-block-grid__product {
	max-width: 100% !important;
	list-style: none;
	background: #fff;
	border: 1px solid #eee;
	padding: 16px;
	text-align: left;
	justify-self: stretch !important;
	width: 100% !important;
	display: flex;
	flex-direction: column;
	min-width: 0;
	box-sizing: border-box;
}
.lib-empty-cart .wc-block-grid__product-link {
	display: block;
	width: 100%;
	text-decoration: none;
	color: inherit;
}
.lib-empty-cart .wc-block-grid__product-image {
	width: 160px;
	max-width: 100%;
	margin: 0 auto 8px;
}
.lib-empty-cart .wc-block-grid__product-image img {
	width: 100%;
	height: auto;
	display: block;
}
.lib-empty-cart .wc-block-grid__product-title {
	margin: 8px 0 4px;
	font-weight: 600;
	line-height: 1.5;
	font-size: 13px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.lib-empty-cart .wc-block-grid__product-price {
	margin: 0 0 8px;
	text-align: center;
	font-size: 14px;
}
.lib-empty-cart .wc-block-grid__product-price ins {
	color: #c00;
	font-weight: 700;
}
.lib-empty-cart .wc-block-grid__product-price del {
	color: #000;
	opacity: .75;
}
.lib-empty-cart .wc-block-grid__product-add-to-cart {
	margin-top: auto;
}
.lib-empty-cart .wc-block-grid__product-add-to-cart .wp-block-button__link {
	display: inline-block;
	width: 100%;
	padding: 12px 16px 8px;
	border: 0;
	border-radius: 0;
	background: #c00;
	color: #fff;
	font-size: 11px;
	font-weight: 400;
	text-decoration: none;
	text-align: center;
}
.lib-empty-cart .wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
	background: #c00;
	color: #fff;
}
.lib-empty-cart .wc-block-grid__product-onsale {
	top: 6px;
	left: 6px;
}

/*--SP (<=800px)--*/
@media ( max-width: 768px ) {
	.search-filter {
		display: block;
	}
	.search-filter div,
	.search-filter {
		display: block;
		width: 100%;
	}
	.search-filter div {
		margin: 0 auto 20px;
		text-align: center;
	}
	.categories ul {
		flex-wrap: wrap;
	}
	.categories ul li {
		width: 48%;
	}
	.categories ul li img {
		width: 100%;
	}
	.qaq {
		font-size: 120%;
	}
	.search-filter ul li a {
		margin: 0 .5em;
	}
	.search-filter ul li + li {
		border-left: 1px solid #ccc;
	}
	.wrap {
		padding: 0 16px;
	}
	.subpage .search-filter div {
		margin: 0 auto;
	}
	.products {
		display: flex;
		flex-wrap: wrap;
		gap: 2%;
	}
	.products article {
		width: 49%;
		padding: 2%;
	}
	.products article:nth-child(n+3) {
		margin-top: 1.5%;
	}
	.card_name {
		font-size: 90%;
		line-height: 1.2;
	}
	.search-filter ul {
		justify-content: center;
	}
	.search-filter ul li {
		font-size: 90%;
	}
	.search-filter ul li:first-child {
		display: none;
	}
	.search-filter ul li:last-child {
		border-right: 1px solid #ccc;
	}
	.loginform {
		padding: 5%;
	}
	table th,
	table td {
		display: block !important;
		width: 100% !important;
		padding: 10px 0 !important;
	}
	.tokushoho td {
		padding: 10px 10px !important;
	}
	.subpage .breadcrumb {
		margin: -1em 0 1em 0;
	}
	.site-header .logo {
		max-width: 120px;
	}
	.breadcrumb {
		margin-left: 0;
	}
	.cart-link img {
		max-width: 28px;
	}
	.lib-search {
		max-width: 92%;
		margin: 0 auto;
	}
	.lib-sort .label {
		display: none;
	}
	.lib-archive-tools .lib-sort {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 0;
		column-gap: 0;
		word-break: break-word;
	}
	.lib-archive-tools .lib-sort a {
		flex: 0 0 auto;
		padding: 4px 3px;
		font-size: 14px;
	}
	.lib-archive-tools .lib-sort .sep {
		margin: 0;
	}

	.wc-block-grid.has-5-columns .wc-block-grid__products {
		display: grid !important;
	}
}


.wc-block-cart .wc-block-cart__submit-container--sticky {
	display:none;
}

.product-card img {
    aspect-ratio: 100 / 140;
    object-fit: cover;}