@media (max-width: 1400px) {
	.promo-banner {
		width: calc(25% - 10px);
	}
}

@media (max-width: 742px) {
	.promo-banner {
		width: calc(50% - 10px);
	}
	.promo-wrapper {
		justify-content: center;
	}
}

@media (max-width: 368px) {
	.promo-banner {
		width: calc(100% - 10px);
	}
}

@media (max-width: 1199px) {
	.top-wrapper {
		flex-wrap: wrap;
	}
	.logo {
		order: 1;
	}
	.header-btn {
		order: 2;
		margin-left: auto;
	}
	.social {
		order: 3;
	}
	.search-container {
		order: 4;
		flex-basis: 100%;
	}
	.header-btn-links .btn a, .header-btn-links .btn button {
		text-align: center;
		white-space: nowrap;
	}
	.rya-call-manager-btn {
		display: none;
	}
	.woocommerce .rya-home-products-grid ul.products {
		gap: 24px 8px;
		grid-template-columns: repeat(4, calc(25% - 10px));
	}
}

@media (min-width: 1200px) {
	.header-btn-links .rya-call-manager-btn {
		display: none;
	}
}

@media (max-width: 938px) {
	.header-btn {
		display: none;
	}

}

@media (max-width: 991px) {
	.woocommerce ul.products li.product {
		margin: 0 !important;
	}
}

@media (max-width: 991px) {
	.burger {
		z-index: 2100;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		width: 44px;
		height: 44px;
		padding: 10px;
		border: 1px solid var(--color-dark-gold);
		border-radius: 8px;
		background: none;
		transition: background .2s;
		cursor: pointer;
	}
	.burger:active {
		background: rgba(180, 133, 57, .15);
	}
	.burger-line {
		display: block;
		width: 100%;
		height: 2px;
		border-radius: 2px;
		background: var(--color-dark-gold);
		transition: transform .3s, opacity .3s;
	}
	body.menu-open .burger-line:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	body.menu-open .burger-line:nth-child(2) {
		opacity: 0;
	}
	body.menu-open .burger-line:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
	.top-wrapper {
		flex-wrap: wrap;
	}
	.burger {
		order: 1;
	}
	.logo {
		order: 2;
	}
	.social {
		display: flex;
		order: 3;
		margin-left: auto;
		gap: 4px;
	}
	.social a, .social .head-time {
		gap: 6px;
		font-size: 0.82rem;
		line-height: 1.2;
	}
	.social img {
		width: 16px;
	}
	.search-container {
		order: 4;
		flex-basis: 100%;
	}
	.rya-mobile-cats {
		order: 5;
		flex-basis: 100%;
		display: block;
	}
	.rya-mobile-cats-row {
		display: flex;
		align-items: stretch;
		gap: 10px;
	}
	.rya-mobile-cats-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex: 1 1 auto;
		padding: 12px 16px;
		border: 1px solid var(--color-dark-gold);
		border-radius: 10px;
		background: var(--color-dark-gold);
		color: var(--bg-beige);
		font-family: inherit;
		font-size: 0.9rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: .04em;
		cursor: pointer;
		transition: background .2s, color .2s;
	}
	.rya-mobile-cart {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		width: 46px;
		border: 1px solid var(--color-dark-gold);
		border-radius: 10px;
		background: var(--bg-beige);
		color: var(--color-dark-gold);
		position: relative;
		transition: background .2s, color .2s;
	}
	.rya-mobile-cart:hover {
		background: rgba(180, 133, 57, .15);
	}
	.rya-mobile-cart svg {
		display: block;
	}
	.rya-mobile-cart .rya-cart-count {
		position: absolute;
		top: -7px;
		right: -7px;
		margin-left: 0;
		border: 2px solid var(--bg-beige);
	}
	.rya-mobile-cats-toggle::after {
		content: "▾";
		margin-left: 8px;
		font-size: 1.2em;
		line-height: 1;
		transition: transform .25s;
	}
	.rya-mobile-cats-toggle.is-open::after {
		transform: rotate(180deg);
	}
	.rya-mobile-cats-panel {
		margin-top: 0;
		padding: 0;
		border: 1px solid transparent;
		border-radius: 10px;
		background: #fff;
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		transition: max-height .35s ease, opacity .25s ease, border-color .3s ease, margin-top .35s ease;
	}
	.rya-mobile-cats-panel.is-open {
		margin-top: 10px;
		border-color: rgba(180, 133, 57, .3);
		opacity: 1;
	}
	.rya-mobile-cats-list {
		display: flex;
        flex-direction: column;
		gap: 8px 20px;
		margin: 0;
		padding: 6px 14px;
		list-style: none;
	}
	.rya-mobile-cats-list > li {
		flex: 0 0 auto;
	}
	.rya-mobile-cats-list > li > a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 8px;
	}
	.rya-mobile-cats-list .rya-has-children > a::after {
		content: "▾";
		font-size: 1.1em;
		line-height: 1;
		color: var(--color-dark-gold);
		transition: transform .25s;
	}
	.rya-mobile-cats-list .rya-has-children.is-open > a::after {
		transform: rotate(180deg);
	}
	.rya-mobile-cats-list a {
		color: var(--txt--light-grey);
		font-size: 0.9rem;
		text-decoration: none;
		transition: color .2s;
	}
	.rya-mobile-cats-list a:hover {
		color: var(--color-dark-gold);
	}
	.rya-mobile-cats-sub {
		display: none;
		flex-direction: column;
		gap: 6px;
		margin: 6px 0 0;
		padding: 0 0 0 14px;
		list-style: none;
	}
	.rya-mobile-cats-list .rya-has-children.is-open > .rya-mobile-cats-sub {
		display: flex;
	}
	.rya-mobile-cats-sub a {
		font-size: 0.82rem;
		display: inline-block;
		width: 100%;
	}
	.header {
		position: relative;
	}
	.menu {
		position: absolute;
		z-index: 2000;
		top: 0;
		left: 0;
		box-sizing: border-box;
		width: min(340px, 85vw);
		height: 100vh;
		height: 100dvh;
		margin: 0;
		padding: 85px 0 40px;
		border: none;
		background: var(--bg-beige);
		transform: translateX(-100%);
		transition: none;
		overflow-y: auto;
	}
	body.menu-open .menu {
		transform: translateX(0);
	}
	body.menu-animating .menu {
		transition: transform .3s ease;
	}
	html.menu-open, body.menu-open {
		overflow: hidden;
	}
	.menu-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.menu-list > li {
		width: 100%;
	}
	.menu-list > li > a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
		padding: 14px 20px;
		border-bottom: 1px solid rgba(180, 133, 57, .2);
		font-size: 0.9rem;
		font-weight: 400;
	}
	.menu-list .menu-item-has-children > a::after {
		content: "▾" !important;
		display: inline-block;
		width: auto;
		height: auto;
		margin-top: 0;
		margin-left: auto;
		background: none;
		color: var(--color-dark-gold);
		font-size: 1.3em;
		line-height: 1;
		transition: transform .25s;
	}
	.menu-list li.is-open > a::after {
		transform: rotate(180deg);
	}
	.menu-list .sub-menu {
		position: static !important;
		display: none !important;
		visibility: visible !important;
		gap: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		border: none !important;
		background: none !important;
		opacity: 1 !important;
		box-shadow: none !important;
		transform: none !important;
	}
	.menu-list li.is-open > .sub-menu {
		display: block !important;
	}
	.menu-list .sub-menu > li {
		flex-direction: column;
		padding: 0 !important;
	}
	.menu-list .sub-menu > li > a {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 8px;
		padding: 10px 20px 10px 34px;
		color: var(--txt--light-grey);
		font-size: 0.85rem;
		font-weight: 400;
	}
	.menu-list .sub-menu .sub-menu > li > a {
		padding-left: 50px;
	}
	.menu-list > .catalog-item > .sub-menu > li > a {
		margin-bottom: 0;
		color: var(--txt--light-grey);
		font-size: 0.85rem;
		font-weight: 400;
	}
	.menu-list > .catalog-item > .sub-menu > li:not(.menu-item-has-children) > a::after, .menu-list .sub-menu > li:not(.menu-item-has-children) > a::after {
		content: none !important;
		display: none;
	}
	.menu-list > .catalog-item > .sub-menu > li > a::after, .menu-list .sub-menu > li > a::after {
		width: auto;
		height: auto;
		margin-top: 0;
		background: none;
	}
	.menu-list .sub-menu li a:hover {
		transform: none;
	}
	.menu-overlay {
		position: fixed;
		z-index: 1500;
		inset: 0;
		display: block;
		visibility: hidden;
		background: rgba(0, 0, 0, .5);
		opacity: 0;
		transition: opacity .3s ease;
	}
	body.menu-open .menu-overlay {
		visibility: visible;
		opacity: 1;
	}
	.woocommerce table.shop_table {
		font-size: .85rem;
	}
	.woocommerce .u-columns.col2-set {
		gap: 24px;
		grid-template-columns: 1fr;
	}
	.woocommerce-MyAccount-navigation {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #e3d9c8;
	}
	.woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: wrap;
	}
	.woocommerce-MyAccount-content {
		padding: 24px 0 0;
	}
	.woocommerce .cart_totals {
		margin-top: 30px;
	}
	.delivery-gallery img {
		flex: 1 1 140px;
	}
	.retail-promo .promo-banner {
		flex: 1 1 160px;
	}
	.footer-icons-wrapper {
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.footer-icons {
		flex: 1 1 42%;
		min-width: 160px;
		text-align: center;
	}
}

@media (max-width: 425px) {
		.social {
		order: 1;
		margin-right: auto;
		margin-left: 0;
	}
}

@media (max-width: 520px) {
	.footer-icons {
		flex: 1 1 100%;
	}
}

@media (max-width: 520px) {
	.woocommerce div.product form.cart .variations {
		display: block;
		width: 100%;
	}
	.woocommerce div.product form.cart .variations tbody, .woocommerce div.product form.cart .variations tr {
		display: block;
		width: 100%;
	}
	.woocommerce div.product form.cart .variations tr {
		margin-bottom: 14px;
	}
	.woocommerce div.product form.cart .variations tr:last-child {
		margin-bottom: 0;
	}
	.woocommerce div.product form.cart .variations th.label, .woocommerce div.product form.cart .variations td.value {
		display: block;
		width: 100%;
		padding: 0;
		border: none;
	}
	.woocommerce div.product form.cart .variations select {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}
}

@media (max-width: 991px) {
	.rya-shop-layout {
		flex-direction: column;
		gap: 16px;
	}
	.rya-shop-sidebar {
		flex: 1 1 100%;
		width: 100%;
		min-width: 0;
	}
	.rya-shop-content {
		flex: 1 1 100%;
	}
}

@media (max-width: 991px) {
	.rya-shop-tools {
		gap: 10px 14px;
	}
	.rya-products-per-page {
		display: none;
	}
	.rya-show-sidebar-btn {
		width: auto;
	}
	.rya-drawer-close {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		margin: 0 0 16px;
		padding: 8px 14px;
		border: 1px solid var(--color-dark-gold);
		border-radius: 6px;
		background: transparent;
		color: var(--color-dark-gold);
		font-size: 0.9rem;
		white-space: nowrap;
		transition: background .2s, color .2s;
		cursor: pointer;
	}
	.rya-drawer-close::before {
		content: "✕";
		font-size: 0.95rem;
		line-height: 1;
	}
	.rya-drawer-close:hover {
		border-color: var(--color-dark-gold);
		background: var(--color-dark-gold);
		color: var(--txt-wh);
	}
	.rya-shop-tools .woocommerce-ordering {
		margin-left: 0;
	}
	.rya-shop-layout .rya-shop-sidebar {
		position: fixed;
		z-index: 3000;
		top: 0;
		left: 0;
		display: block;
		visibility: hidden;
		width: min(320px, 85vw);
		height: 100vh;
		height: 100dvh;
		max-width: 85vw;
		margin: 0;
		padding: 20px;
		border-right: 1px solid var(--color-light-gold);
		background: var(--bg-beige);
		box-shadow: 0 0 24px rgba(0, 0, 0, .15);
		transform: translateX(-105%);
		transition: transform .35s ease, visibility .35s ease;
		overflow-y: auto;
	}
	.rya-shop-layout.rya-sidebar-open .rya-shop-sidebar {
		visibility: visible;
		transform: translateX(0);
	}
	body.rya-sidebar-locked .burger {
		opacity: 0;
		pointer-events: none;
	}
	body.rya-sidebar-locked {
		overflow: hidden;
	}
	.rya-shop-layout.rya-sidebar-open .rya-shop-content::after {
		content: "";
		position: fixed;
		z-index: 999;
		inset: 0;
		background: rgba(0, 0, 0, .4);
		animation: rya-sidebar-fade .3s ease both;
	}
	@keyframes rya-sidebar-fade {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
	}
}

@media (max-width: 991px) {
	.woocommerce ul.products li.product, .woocommerce ul.products.columns-2 li.product, .woocommerce ul.products.columns-3 li.product, .woocommerce ul.products.columns-4 li.product {
		min-width: 0;
	}
	.woocommerce ul.products.columns-1 li.product {
		width: 100%;
	}
	.woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product .price {
		overflow-wrap: break-word;
		word-break: break-word;
	}
	.woocommerce div.product .woocommerce-product-gallery {
		float: none;
		flex-wrap: wrap;
		gap: 8px;
		width: 100%;
		margin-bottom: 0;
	}
	.woocommerce div.product .woocommerce-product-gallery .flex-viewport {
		flex: 1 1 100%;
		order: 1;
		width: 100%;
		max-width: 100%;
	}
	.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs {
		flex: 1 1 100%;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		order: 2;
		gap: 8px;
		width: 100%;
	}
	.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li {
		float: none !important;
		clear: none !important;
		width: 100px !important;
		flex: 0 0 100px;
	}
	.woocommerce div.product .woocommerce-product-gallery .rya-product-thumbs {
		flex: 1 1 100%;
		flex-direction: row;
		justify-content: center;
		align-items: stretch;
		order: 2;
		gap: 8px;
		width: 100%;
		max-height: none;
	}
	.woocommerce div.product .woocommerce-product-gallery .rya-product-thumbs .flex-control-thumbs {
		flex: 1 1 auto !important;
		width: auto !important;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		gap: 8px;
		max-height: none;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		align-items: center;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.rya-thumbs-arrow {
		flex: 0 0 30px;
		width: 30px;
		height: auto;
		align-self: stretch;
	}
	.rya-thumbs-arrow-prev {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B48539' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
	}
	.rya-thumbs-arrow-next {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B48539' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
	}
	.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav {
		position: absolute;
		inset: 0;
	}
	.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav li {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav .flex-nav-prev {
		left: 8px;
	}
	.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav .flex-nav-next {
		right: 8px;
	}
	.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav a {
		visibility: visible;
		width: 32px;
		height: 32px;
		line-height: 32px;
		opacity: 1;
		pointer-events: auto;
	}
	.woocommerce div.product div.summary {
		float: none;
		width: 100%;
		margin-left: 0;
	}
	.quick-view-btn {
		display: none;
	}
	.shop-breadcrumbs-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.woocommerce .related.products .rya-related-track li.product {
		flex-basis: 50%;
	}
	.header-img-wrapper {
		display: none;
	}
}

@media (max-width: 742px) {
	.rya-products-shop-view a.per-row-4 {
		display: none;
	}
	.rya-products-shop-view a.per-row-1 {
		display: inline-flex;
	}
	.woocommerce ul.products.columns-4 li.product {
		width: calc(32% - 5px);
	}
	.woocommerce .rya-home-products-grid ul.products {
		grid-template-columns: repeat(2, calc(50% - 5px));
	}
}

@media (max-width: 480px) {
	.rya-products-shop-view a.per-row-3 {
		display: none;
	}
	.woocommerce ul.products.columns-3 li.product, .woocommerce ul.products.columns-4 li.product {
		width: calc(50% - 10px);
	}
	.woocommerce ul.products {
		gap: 20px;
	}
	.quick-view-modal .quick-view-content {
		flex-direction: column;
	}
	.quick-view-modal .quick-view-image {
		flex: 1 1 auto;
		width: 100%;
	}
	.woocommerce .related.products .rya-related-track li.product {
		flex-basis: 100%;
	}
	.woocommerce div.product div.images, .woocommerce-page div.product div.images {
		max-width: 100%;
	}
	.product_meta {
		flex-direction: column;
		gap: 5px;
	}
}

@media (max-width: 368px) {
	.woocommerce .rya-home-products-grid ul.products {
		grid-template-columns: 1fr;
	}
		.woocommerce ul.products.columns-3 li.product, .woocommerce ul.products.columns-4 li.product {
		width: 100%;
	}
}

@media (max-width: 335px) {
	.rya-products-shop-view {
		display: none;
	}
}

@media (min-width: 992px) {
	.rya-drawer-close {
		display: none;
	}
}

@media (max-width: 480px) {
	.woocommerce table.woocommerce-checkout-review-order-table {
		display: block;
	}
	.woocommerce table.woocommerce-checkout-review-order-table thead {
		display: none;
	}
	.woocommerce table.woocommerce-checkout-review-order-table tbody,
	.woocommerce table.woocommerce-checkout-review-order-table tfoot {
		display: block;
		width: 100%;
	}
	.woocommerce table.woocommerce-checkout-review-order-table tr {
		display: block;
		width: 100%;
		padding: 12px 16px;
		border-top: 1px solid #e3d9c8;
	}
	.woocommerce table.woocommerce-checkout-review-order-table tbody tr:first-child {
		border-top: none;
	}
	.woocommerce table.woocommerce-checkout-review-order-table th,
	.woocommerce table.woocommerce-checkout-review-order-table td {
		display: block;
		box-sizing: border-box;
		width: 100%;
		padding: 0;
		border-top: none;
		text-align: left;
	}
	.woocommerce table.woocommerce-checkout-review-order-table tfoot th {
		padding: 3px 0;
		border-top: none;
		border-bottom: 1px solid color-mix(in srgb, currentColor 20%, transparent);
	}
	.woocommerce table.woocommerce-checkout-review-order-table tfoot td {
		padding: 3px 0;
		border-top: none;
	}
	.woocommerce table.woocommerce-checkout-review-order-table .cart_item .product-total {
		margin-top: 4px;
		font-weight: 600;
	}
	.woocommerce table.woocommerce-checkout-review-order-table tfoot .order-total th,
	.woocommerce table.woocommerce-checkout-review-order-table tfoot .order-total td {
		font-size: 1.05em;
		font-weight: 700;
	}
}

@media (max-width: 991px) {
	.rya-footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
	.rya-footer-about {
		grid-column: span 2;
	}
}

@media (max-width: 520px) {
	.rya-footer-top {
		grid-template-columns: 1fr;
		gap: 26px;
	}
	.rya-footer-about {
		grid-column: span 1;
	}
}

@media (max-width: 218px) {
	    .rya-mobile-cats-row {
			flex-wrap: wrap;
    }
}
