/**
 * Shri Ram Jewellers — WooCommerce visual layer (shop, product, cart, checkout, account).
 * Depends on srj-premium.css variables.
 */

/* -------------------------------------------------------------------------
   Shop archive — grid, toolbar, filter drawer
   ------------------------------------------------------------------------- */

.srj-shop {
	padding-top: 0;
	padding-bottom: 0;
}

.srj-shop__container {
	max-width: var(--srj-layout-max, 1200px);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

.srj-shop__breadcrumb {
	font-size: 0.8125rem;
	color: rgba(31, 31, 31, 0.65);
	margin-bottom: 1.25rem;
}

.srj-shop__breadcrumb a {
	color: var(--srj-gold-2, #bd9a5f);
	text-decoration: none;
}

.srj-shop__breadcrumb a:hover {
	text-decoration: underline;
}

.srj-shop__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.5rem 1rem;
	margin-bottom: 1rem;
}

.srj-shop__title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 600;
	letter-spacing: 0.02em;
	margin: 0;
	background: linear-gradient(90deg, #8a6a3a, #caa86f, #8a6a3a);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.srj-shop__count {
	font-size: 0.9375rem;
	color: rgba(31, 31, 31, 0.55);
}

.srj-shop .term-description {
	margin-bottom: 1.5rem;
	max-width: 52rem;
	line-height: 1.6;
	color: rgba(31, 31, 31, 0.75);
}

.srj-shop__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
	margin-bottom: 1.25rem;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.42);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(189, 154, 95, 0.35);
	box-shadow: 0 4px 18px rgba(189, 154, 95, 0.12);
}

.srj-shop__filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(189, 154, 95, 0.45);
	background: linear-gradient(135deg, rgba(225, 203, 154, 0.35), rgba(255, 255, 255, 0.6));
	color: #1f1f1f;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.srj-shop__filter-btn:hover {
	box-shadow: 0 4px 14px rgba(189, 154, 95, 0.25);
	transform: translateY(-1px);
}

.srj-shop__chips {
	flex: 1 1 auto;
	min-width: 0;
}

.srj-shop__chips .woocommerce-active-filters,
.srj-shop__chips .widget_layered_nav_filters {
	margin: 0;
}

.srj-shop__sort .woocommerce-ordering {
	margin: 0;
}

.srj-shop__sort select.orderby {
	padding: 0.45rem 2rem 0.45rem 0.75rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(189, 154, 95, 0.4);
	background-color: rgba(255, 255, 255, 0.85);
	font-size: 0.875rem;
}

.srj-shop__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	position: relative;
}

/* Filter sidebar — desktop inline */
.srj-shop__sidebar {
	position: relative;
	z-index: 2;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(189, 154, 95, 0.35);
	box-shadow: 0 8px 28px rgba(189, 154, 95, 0.15);
	overflow: hidden;
}

.srj-shop__sidebar-head {
	display: none;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid rgba(189, 154, 95, 0.25);
	font-weight: 600;
}

.srj-shop__sidebar-close {
	border: none;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: #1f1f1f;
	padding: 0.25rem 0.5rem;
	border-radius: 0.35rem;
}

.srj-shop__sidebar-close:hover {
	background: rgba(189, 154, 95, 0.15);
}

.srj-shop__sidebar-inner {
	padding: 1rem 1.1rem 1.25rem;
}

.srj-shop-widget {
	margin-bottom: 1.25rem;
}

.srj-shop-widget:last-child {
	margin-bottom: 0;
}

.srj-shop-widget-title {
	font-size: 0.9375rem;
	font-weight: 600;
	margin: 0 0 0.75rem;
	color: #1f1f1f;
}

.srj-shop-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.srj-shop-widget a {
	color: rgba(31, 31, 31, 0.85);
	text-decoration: none;
	font-size: 0.875rem;
}

.srj-shop-widget a:hover {
	color: var(--srj-gold-2, #bd9a5f);
}

.srj-shop__sidebar-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 12, 8, 0.45);
	z-index: 998;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.srj-shop__sidebar-backdrop.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.srj-shop__main {
	min-width: 0;
}

/* Product grid — override WC float layout inside shop */
.srj-shop ul.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.25rem 1.25rem;
	margin: 0 !important;
	clear: both;
}

.srj-shop ul.products::before,
.srj-shop ul.products::after {
	display: none !important;
	content: none !important;
}

.srj-shop ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	clear: none !important;
}

/* Mobile adjustments */
@media screen and (max-width: 767px) {
	.srj-shop ul.products {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 1rem 1rem;
	}

	.srj-product-card .woocommerce-loop-product__title {
		font-size: 0.875rem;
		margin: 0.75rem 0.75rem 0.25rem;
	}

	.srj-product-details {
		margin: 0 0.75rem 0.5rem;
		font-size: 0.75rem;
	}

	.srj-product-card .price {
		margin: 0 0.75rem 0.75rem;
		font-size: 0.875rem;
	}

	.srj-product-card .button,
	.srj-product-card a.add_to_cart_button {
		margin: 0 0.75rem 0.75rem;
		padding: 0.5rem 0.9rem;
		font-size: 0.75rem;
	}
}

/* -------------------------------------------------------------------------
   Product cards
   ------------------------------------------------------------------------- */

.srj-product-card {
	list-style: none;
}

.srj-product-card .srj-product-card__inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(189, 154, 95, 0.35);
	box-shadow: 0 6px 22px rgba(189, 154, 95, 0.14);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.srj-product-card:hover .srj-product-card__inner {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(189, 154, 95, 0.22);
}

.srj-product-card a.woocommerce-LoopProduct-link {
	display: block;
	position: relative;
	text-decoration: none;
	color: inherit;
}

.srj-product-card .woocommerce-loop-product__link {
	display: block;
}

.srj-product-card img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	background: rgba(255, 255, 255, 0.4);
	transition: transform 0.4s ease;
}

.srj-product-card:hover img {
	transform: scale(1.05);
}

.srj-quick-view-btn {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: #1f1f1f;
	text-decoration: none;
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.3s ease, transform 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.srj-product-card:hover .srj-quick-view-btn {
	opacity: 1;
	transform: scale(1);
}

.srj-quick-view-btn:hover {
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.srj-product-card .onsale,
.srj-product-card span.onsale {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	min-height: 0;
	min-width: 0;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	background: linear-gradient(135deg, var(--srj-gold-1), var(--srj-gold-2));
	color: #1f1f1f;
	border: none;
	line-height: 1.2;
}

.srj-product-card .woocommerce-loop-product__title {
	font-size: 1rem;
	font-weight: 600;
	margin: 0.85rem 1rem 0.35rem;
	line-height: 1.35;
	color: #1f1f1f;
}

.srj-product-details {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 1rem 0.5rem;
	font-size: 0.8125rem;
	color: rgba(31, 31, 31, 0.7);
}

.srj-product-weight,
.srj-product-purity,
.srj-product-metal {
	background: rgba(189, 154, 95, 0.1);
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	font-weight: 500;
}

.srj-product-card .price {
	margin: 0 1rem 0.75rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--srj-gold-2, #8a6a3a);
}

.srj-product-card .price del {
	opacity: 0.55;
	font-weight: 500;
	margin-right: 0.35rem;
}

.srj-product-card .button,
.srj-product-card a.add_to_cart_button {
	margin: 0 1rem 1rem;
	align-self: flex-start;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1.1rem !important;
	border-radius: 999px !important;
	font-size: 0.8125rem !important;
	font-weight: 600 !important;
	background: linear-gradient(135deg, var(--srj-gold-1), var(--srj-gold-2)) !important;
	color: #1f1f1f !important;
	border: 1px solid rgba(138, 106, 58, 0.35) !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.srj-product-card .button:hover,
.srj-product-card a.add_to_cart_button:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(189, 154, 95, 0.35);
}

/* Pagination */
.srj-shop .woocommerce-pagination {
	margin-top: 2rem;
}

.srj-shop .woocommerce-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
}

.srj-shop .woocommerce-pagination ul li {
	border: none;
	display: inline-block;
}

.srj-shop .woocommerce-pagination a,
.srj-shop .woocommerce-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.65rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(189, 154, 95, 0.35);
	background: rgba(255, 255, 255, 0.5);
	color: #1f1f1f;
	text-decoration: none;
	font-size: 0.875rem;
}

.srj-shop .woocommerce-pagination span.current {
	background: linear-gradient(135deg, var(--srj-gold-1), var(--srj-gold-2));
	font-weight: 600;
}

/* -------------------------------------------------------------------------
   WooCommerce page shell (single product, cart, checkout, account)
   ------------------------------------------------------------------------- */

.srj-woo-page {
	padding-top: 1.5rem;
	padding-bottom: 3.5rem;
}

.srj-woo-page__inner {
	max-width: var(--srj-layout-max, 1200px);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

.srj-woo .woocommerce-breadcrumb {
	font-size: 0.8125rem;
	margin-bottom: 1rem;
	color: rgba(31, 31, 31, 0.65);
}

.srj-woo .woocommerce-breadcrumb a {
	color: var(--srj-gold-2, #bd9a5f);
	text-decoration: none;
}

/* Single product */
.srj-product-page div.product {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}

@media screen and (min-width: 900px) {
	.srj-product-page div.product {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
		align-items: start;
	}
}

.srj-product-page .woocommerce-product-gallery {
	float: none !important;
	width: 100% !important;
	max-width: none;
	margin: 0 !important;
	border-radius: 1rem;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.45);
	border: 1px solid rgba(189, 154, 95, 0.3);
	box-shadow: 0 10px 32px rgba(189, 154, 95, 0.18);
	padding: 0.75rem;
}

.srj-product-page .woocommerce-product-gallery__wrapper {
	border-radius: 0.65rem;
	overflow: hidden;
}

.srj-product-page .summary {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 1.5rem 1.35rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.42);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(189, 154, 95, 0.35);
	box-shadow: 0 8px 26px rgba(189, 154, 95, 0.12);
}

.srj-product-page .summary .product_title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 0.75rem;
	color: #1f1f1f;
}

.srj-product-page .summary .price {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--srj-gold-2, #8a6a3a);
	margin-bottom: 1rem;
}

.srj-product-page .summary form.cart {
	margin-top: 1.25rem;
}

.srj-product-page .summary .quantity .qty {
	padding: 0.55rem 0.75rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(189, 154, 95, 0.45);
	background: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	max-width: 5rem;
}

.srj-product-page .summary .single_add_to_cart_button {
	padding: 0.75rem 1.75rem !important;
	border-radius: 999px !important;
	font-weight: 600 !important;
	background: linear-gradient(135deg, var(--srj-gold-1), var(--srj-gold-2)) !important;
	color: #1f1f1f !important;
	border: 1px solid rgba(138, 106, 58, 0.35) !important;
}

/* Ensure product gallery uses full available width in single product layout */
.srj-product-page .woocommerce-product-gallery,
.srj-product-page .woocommerce-product-gallery__wrapper,
.srj-product-page .woocommerce-product-gallery__image,
.srj-product-page .woocommerce-product-gallery__image img {
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
}

.srj-product-page .woocommerce-product-gallery .flex-viewport {
	width: 100% !important;
	height: auto !important;
}

.srj-product-page .woocommerce-tabs {
	margin-top: 0;
	padding: 0;
	border: none;
	background: transparent;
}

.srj-product-page .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
	border: none;
}

.srj-product-page .woocommerce-tabs ul.tabs::before {
	display: none;
}

.srj-product-page .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 999px;
}

.srj-product-page .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 0.55rem 1.15rem;
	border-radius: 999px;
	border: 1px solid rgba(189, 154, 95, 0.35);
	background: rgba(255, 255, 255, 0.45);
	color: #1f1f1f;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 600;
}


}

.srj-product-page .woocommerce-tabs ul.tabs li.active a,
.srj-product-page .woocommerce-tabs ul.tabs li a:hover {
	background: linear-gradient(135deg, rgba(225, 203, 154, 0.55), rgba(255, 255, 255, 0.7));
	border-color: rgba(189, 154, 95, 0.55);
}

.srj-product-page .woocommerce-Tabs-panel {
	padding: 1.25rem 1.35rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.42);
	border: 1px solid rgba(189, 154, 95, 0.3);
	line-height: 1.65;
}

.srj-product-page section.related {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(189, 154, 95, 0.25);
}

.srj-product-page section.related > h2 {
	font-size: 1.35rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
}

.srj-product-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
}

.srj-product-page ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

/* Cart */
.srj-cart-page .woocommerce-cart-form {
	margin-bottom: 2rem;
}

.srj-cart-page table.shop_table,
.srj-cart-page .woocommerce-cart-form__contents {
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid rgba(189, 154, 95, 0.35);
	background: rgba(255, 255, 255, 0.45);
}

.srj-cart-page table.shop_table th,
.srj-cart-page table.shop_table td {
	padding: 1rem 1.1rem;
	border-color: rgba(189, 154, 95, 0.2);
}

.srj-cart-page table.shop_table thead {
	background: rgba(225, 203, 154, 0.25);
}

.srj-cart-page .product-thumbnail img {
	max-width: 72px;
	height: auto;
	border-radius: 0.5rem;
}

.srj-cart-page .actions .coupon .input-text {
	padding: 0.55rem 0.85rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(189, 154, 95, 0.45);
	margin-right: 0.5rem;
}

.srj-cart-page .cart-collaterals {
	margin-top: 1.5rem;
}

.srj-cart-page .cart_totals {
	border-radius: 1rem;
	padding: 1.35rem 1.5rem;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(189, 154, 95, 0.35);
	box-shadow: 0 8px 24px rgba(189, 154, 95, 0.12);
	max-width: 420px;
	margin-left: auto;
}

.srj-cart-page .cart_totals h2 {
	font-size: 1.125rem;
	margin-top: 0;
}

.srj-cart-page .wc-proceed-to-checkout .checkout-button {
	display: block;
	width: 100%;
	text-align: center;
	padding: 0.85rem 1.25rem !important;
	border-radius: 999px !important;
	font-weight: 600 !important;
	background: linear-gradient(135deg, var(--srj-gold-1), var(--srj-gold-2)) !important;
	color: #1f1f1f !important;
	border: 1px solid rgba(138, 106, 58, 0.35) !important;
}

/* Checkout — card styling; layout follows WooCommerce markup */
.srj-checkout-page form.checkout {
	display: block;
}

.srj-checkout-page form.checkout::after {
	content: "";
	display: table;
	clear: both;
}

.srj-checkout-page .woocommerce-billing-fields,
.srj-checkout-page .woocommerce-shipping-fields,
.srj-checkout-page .woocommerce-additional-fields {
	padding: 1.35rem 1.4rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.45);
	border: 1px solid rgba(189, 154, 95, 0.3);
}

.srj-checkout-page #order_review_heading {
	font-size: 1.125rem;
	margin: 0;
	padding: 0 0 0.5rem;
}

.srj-checkout-page #order_review {
	padding: 1.35rem 1.4rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(189, 154, 95, 0.35);
	box-shadow: 0 8px 28px rgba(189, 154, 95, 0.12);
}

.srj-checkout-page .woocommerce-checkout-review-order-table th,
.srj-checkout-page .woocommerce-checkout-review-order-table td {
	padding: 0.65rem 0;
	border-color: rgba(189, 154, 95, 0.2);
}

.srj-checkout-page #place_order {
	width: 100%;
	padding: 0.85rem 1.25rem !important;
	border-radius: 999px !important;
	font-weight: 600 !important;
	margin-top: 1rem !important;
	background: linear-gradient(135deg, var(--srj-gold-1), var(--srj-gold-2)) !important;
	color: #1f1f1f !important;
	border: 1px solid rgba(138, 106, 58, 0.35) !important;
}

.srj-woo .woocommerce form .form-row input.input-text,
.srj-woo .woocommerce form .form-row textarea,
.srj-woo .woocommerce form .form-row select {
	padding: 0.55rem 0.75rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(189, 154, 95, 0.4);
	background: rgba(255, 255, 255, 0.92);
}

/* Block checkout (if used) */
.srj-checkout-page .wp-block-woocommerce-checkout {
	border-radius: 1rem;
}

/* Thank you / order received (no srj-woo shell — still match theme) */
.woocommerce-order-received .woocommerce-order {
	max-width: var(--srj-layout-max, 1200px);
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem 1rem 3rem;
}

.woocommerce-order-received .woocommerce-order-overview,
.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details {
	border-radius: 1rem;
	padding: 1.25rem 1.35rem;
	margin-bottom: 1.25rem;
	background: rgba(255, 255, 255, 0.45);
	border: 1px solid rgba(189, 154, 95, 0.3);
}

/* My Account */
.srj-account-page .woocommerce {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media screen and (min-width: 768px) {
	.srj-account-page .woocommerce {
		grid-template-columns: 240px minmax(0, 1fr);
		align-items: start;
	}
}

.srj-account-page .woocommerce-MyAccount-navigation {
	margin: 0;
	padding: 0.75rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.45);
	border: 1px solid rgba(189, 154, 95, 0.35);
	box-shadow: 0 6px 22px rgba(189, 154, 95, 0.1);
}

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

.srj-account-page .woocommerce-MyAccount-navigation ul li {
	margin: 0;
	border-bottom: 1px solid rgba(189, 154, 95, 0.15);
}

.srj-account-page .woocommerce-MyAccount-navigation ul li:last-child {
	border-bottom: none;
}

.srj-account-page .woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 0.65rem 0.85rem;
	border-radius: 0.5rem;
	color: #1f1f1f;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
}

.srj-account-page .woocommerce-MyAccount-navigation ul li.is-active a,
.srj-account-page .woocommerce-MyAccount-navigation ul li a:hover {
	background: rgba(225, 203, 154, 0.35);
	color: #1f1f1f;
}

.srj-account-page .woocommerce-MyAccount-content {
	padding: 1.35rem 1.45rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.45);
	border: 1px solid rgba(189, 154, 95, 0.3);
	min-width: 0;
}

.srj-account-page .woocommerce-MyAccount-content fieldset {
	border: 1px solid rgba(189, 154, 95, 0.25);
	border-radius: 0.75rem;
	padding: 1rem 1.1rem;
	margin-bottom: 1rem;
}

.srj-account-page table.shop_table {
	border-radius: 0.75rem;
	overflow: hidden;
	border: 1px solid rgba(189, 154, 95, 0.3);
}

.srj-account-page table.shop_table th,
.srj-account-page table.shop_table td {
	padding: 0.75rem 1rem;
}

.srj-account-page .button {
	border-radius: 999px !important;
	padding: 0.55rem 1.25rem !important;
	font-weight: 600 !important;
	background: linear-gradient(135deg, var(--srj-gold-1), var(--srj-gold-2)) !important;
	color: #1f1f1f !important;
	border: 1px solid rgba(138, 106, 58, 0.35) !important;
}

/* Order received / generic Woo notices */
.srj-woo .woocommerce-message,
.srj-woo .woocommerce-info,
.srj-woo .woocommerce-error {
	border-radius: 0.75rem;
	border-left-width: 4px;
	padding: 0.85rem 1rem;
	background: rgba(255, 255, 255, 0.65);
}

/* -------------------------------------------------------------------------
   Mobile filter drawer
   ------------------------------------------------------------------------- */

@media screen and (max-width: 959px) {
	body.srj-shop-filters-open {
		overflow: hidden;
	}

	.srj-shop__sidebar-head {
		display: flex;
	}

	.srj-shop__sidebar {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: min(100%, 22rem);
		max-width: 100vw;
		z-index: 999;
		border-radius: 0 1rem 1rem 0;
		transform: translateX(-105%);
		transition: transform 0.3s ease;
		overflow-y: auto;
	}

	.srj-shop__sidebar.is-open {
		transform: translateX(0);
	}
}

@media screen and (min-width: 960px) {
	.srj-shop__filter-btn {
		display: none;
	}

	.srj-shop__layout {
		grid-template-columns: 260px minmax(0, 1fr);
		align-items: start;
	}

	.srj-shop__sidebar {
		position: sticky;
		top: calc(var(--srj-sticky-topbar-h, 0px) + 1rem);
	}

	.srj-shop__sidebar-backdrop {
		display: none !important;
	}

	.srj-shop__sidebar-head {
		display: none;
	}
}
