:root {
	--rb-navy: var(--rb-header-footer-bg);
	--rb-navy-2: #0b1e46;
	--rb-gold: #d4a762;
	--rb-gold-light: #e8c48b;
	--rb-white: #ffffff;
	--rb-muted: #c9c9c9;
	--rb-cream: #ffffff;
	--rb-text: #06142d;
	--rb-header-footer-bg: #080b2d;
	--rb-footer-bg-end: #0e0b3f;
	/* Extended palette -- consolidated from repeated literal colors (>=4 uses each) */
	--rb-gold-2: #d4af37;
	--rb-gold-muted: #c9a15b;
	--rb-gold-accent: #e3b23c;
	--rb-gold-dark: #b58d4a;
	--rb-tan: #bfa881;
	--rb-navy-alt: #1a2344;
	--rb-success: #2e7d32;
	--rb-success-dark: #1b5e20;
	--rb-danger: #e21b1b;
	--rb-black: #121212;
	--rb-gray: #6a7080;
	--rb-gray-dark: #4b5260;
	--rb-gray-mid: #8893a7;
	--rb-gray-light: #9aa0ab;
	--rb-text-muted: #666666;
	--rb-text-light: #888888;
	--rb-cream-tint: #fcf9f2;
	--rb-border-gold: #eadfce;
	--rb-border-gold-2: #e8ddc8;
	--rb-border-tan: #d8cbb4;

	/* RGB triplets for rgba(var(--x-rgb), alpha) usage */
	--rb-shadow-rgb: 8, 0, 34;
	--rb-gold-rgb: 212, 167, 98;
	--rb-gold-2-rgb: 212, 175, 55;
	--rb-gold-muted-rgb: 201, 161, 91;
	--rb-white-rgb: 255, 255, 255;
	--rb-black-rgb: 0, 0, 0;
	--rb-header-footer-bg-rgb: 8, 11, 45;
	--rb-success-rgb: 46, 125, 50;
	--rb-navy-alt-rgb: 26, 35, 68;
	--rb-navy-shadow-rgb: 11, 20, 69;

	/* PDP/cart/checkout design tokens -- previously redeclared identically in both
	   .rb-pdp and .rb-cart-page/.rb-checkout-page; hoisted here since :root is an
	   ancestor of both and the values were always identical. */
	--pdp-navy: #080022;
	--pdp-gold: var(--rb-gold-2);
	--pdp-cream: #f8f5ef;
	--pdp-text: #1d1d1f;
	--pdp-border: rgba(var(--rb-gold-2-rgb), .28);
}
* { box-sizing: border-box; }
button, input, select, textarea { font-family: inherit; }
body { margin: 0; font-family: "Source Serif 4", serif; font-size: 17px; color: var(--rb-text); background: var(--rb-white); }
main { min-height: 400px; }
h1,h2,h3,h4 { font-family: "Source Serif 4", serif; margin: 0; }
.woocommerce-Price-amount,
.rb-order-code {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	font-variant-numeric: tabular-nums;
}
a { color: inherit; text-decoration: none; }
.rb-container { width: min(1280px, 94%); margin: 0 auto; }
.rb-home-section { padding: 64px 0; }

.rb-header { position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(8px); }
.rb-header-inner { display: grid; align-items: center; align-content: center; }
.rb-logo { min-width: 0; }
.rb-logo-image { object-position: left center; display: block; }
.rb-menu { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; color: var(--rb-white); }
.rb-menu a { position: relative; }
.rb-menu a:after { content: ""; position: absolute; left: 0; bottom: -12px; width: 0; height: 2px; background: var(--rb-gold); transition: width .3s; }
.rb-menu li.current-menu-item a:after,.rb-menu a:hover:after { width: 100%; }
.rb-menu li { position: relative; }
.rb-menu .sub-menu { position: absolute; left: 0; top: calc(100% + 18px); min-width: 220px; list-style: none; margin: 0; padding: 10px; border: 1px solid rgba(var(--rb-gold-rgb), .25); background: var(--rb-header-footer-bg); display: none; border-radius: 8px; }
.rb-menu .sub-menu a { text-transform: none; font-size: 14px; display: block; padding: 8px; }
.rb-menu li:hover > .sub-menu { display: block; }
.rb-header-actions { display: flex; align-items: center; }
.rb-icon-btn,.rb-text-btn { background: transparent; color: var(--rb-white); border: 1px solid rgba(var(--rb-white-rgb), .3); border-radius: 6px; font-size: 12px; padding: 10px 14px; cursor: pointer; }
.rb-icon-btn { padding: 4px; display: grid; place-items: center; }
.rb-icon-btn .dashicons { font-size: 26px; width: 26px; height: 26px; }
.rb-accent-btn { background: var(--rb-white); color: var(--rb-navy); border-color: var(--rb-white); font-weight: 600; }
.rb-cart-btn { position: relative; }
.rb-cart-count { position: absolute; right: -6px; top: -5px; background: var(--rb-gold); color: var(--rb-navy); border-radius: 999px; padding: 2px 6px; font-size: 11px; font-weight: 700; }
.rb-wishlist-btn { position: relative; }
.rb-wishlist-dot { display: none; position: absolute; top: 2px; right: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--rb-danger); border: 1.5px solid var(--rb-header-footer-bg); }
.rb-wishlist-btn.has-wishlist-items .rb-wishlist-dot { animation: rb-wishlist-dot-blink 1.4s ease-in-out infinite; }
@keyframes rb-wishlist-dot-blink {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.45; transform: scale(0.85); }
}
.rb-wishlist-btn.has-wishlist-items .dashicons { color: var(--rb-gold); }
.rb-wishlist-btn.has-wishlist-items .rb-wishlist-dot { display: block; }
.rb-mobile-toggle { display: none; background: transparent; color: var(--rb-white); border: 1px solid rgba(var(--rb-white-rgb), .3); border-radius: 6px; font-size: 23px; line-height: 1; }
body.rb-mobile-nav-open { overflow: hidden; }
.rb-mobile-nav-overlay { position: fixed; inset: 0; background: rgba(var(--rb-header-footer-bg-rgb), .45); z-index: 1004; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.rb-mobile-nav-overlay.visible { opacity: 1; pointer-events: auto; }
.rb-mobile-nav { position: fixed; top: 0; left: 0; bottom: 0; z-index: 1005; width: min(400px, 92vw); background: var(--rb-white); border-radius: 0; transform: translateX(-100%); transition: transform .35s ease; overflow-y: auto; overflow-x: hidden; box-shadow: 10px 0 30px rgba(var(--rb-black-rgb), .25); }
.rb-mobile-nav.open { transform: translateX(0); }

.rb-mobile-nav-header { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 26px 26px 66px; background: var(--rb-header-footer-bg); }
.rb-mobile-nav-title-wrap { display: flex; flex-direction: column; gap: 11px; }
.rb-mobile-nav-title { color: var(--rb-white); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: 26px; font-family: "Source Serif 4", serif; }
.rb-mobile-nav-title-accent { display: flex; align-items: center; gap: 8px; }
.rb-mobile-nav-title-bar { width: 34px; height: 4px; border-radius: 2px; background: var(--rb-gold-accent); }
.rb-mobile-nav-title-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rb-gold-accent); }
.rb-mobile-nav-close { display: grid; place-items: center; background: transparent; border: 0; color: var(--rb-white); font-size: 35px; line-height: 1; cursor: pointer; padding: 6px; }
.rb-mobile-nav-header-curve { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 72px; line-height: 0; pointer-events: none; }
.rb-mobile-nav-header-curve svg { display: block; width: 100%; height: 100%; }

.rb-mobile-nav-body { background: var(--rb-white); padding: 4px 16px 18px; }

.rb-mobile-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.rb-mobile-menu li { border-bottom: 1px solid #ececec; }
.rb-mobile-menu li:last-child { border-bottom: 0; }
.rb-mobile-menu li a {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 11px 10px;
	border-radius: 12px;
	color: var(--rb-navy);
	font-weight: 600;
	font-size: 16.5px;
	letter-spacing: .01em;
	line-height: 1.2;
	text-decoration: none;
	transition: background .2s ease;
}
.rb-mobile-menu li a:hover { background: rgba(227,178,60,.1); }
.rb-mobile-nav-icon { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(6,20,45,.15); display: grid; place-items: center; color: var(--rb-navy); flex-shrink: 0; }
.rb-mobile-nav-icon svg { width: 17px; height: 17px; }
.rb-mobile-nav-label { flex: 1; }
.rb-mobile-nav-badge { flex-shrink: 0; font-size: 11.5px; font-weight: 700; padding: 4px 11px; border-radius: 999px; background: #f7dce8; color: #c01757; text-transform: uppercase; letter-spacing: .03em; }
.rb-mobile-nav-chevron { color: #a9a9b3; flex-shrink: 0; display: grid; place-items: center; }
.rb-mobile-nav-chevron svg { width: 18px; height: 18px; }

.rb-mobile-menu li.current-menu-item,
.rb-mobile-menu li.current_page_item { border-bottom-color: transparent; }
.rb-mobile-menu li.current-menu-item a,
.rb-mobile-menu li.current_page_item a { background: linear-gradient(135deg, #fbeecb, #f3da9e); padding-left: 14px; padding-right: 14px; border-radius: 14px; }
.rb-mobile-menu li.current-menu-item a:hover,
.rb-mobile-menu li.current_page_item a:hover { background: linear-gradient(135deg, #fbeecb, #f3da9e); }
.rb-mobile-menu li.current-menu-item .rb-mobile-nav-icon,
.rb-mobile-menu li.current_page_item .rb-mobile-nav-icon { background: var(--rb-gold-accent); border-color: var(--rb-gold-accent); color: var(--rb-white); }
.rb-mobile-menu li.current-menu-item .rb-mobile-nav-chevron,
.rb-mobile-menu li.current_page_item .rb-mobile-nav-chevron { color: var(--rb-gold-accent); }

.rb-mobile-nav-divider { display: flex; align-items: center; gap: 12px; margin: 6px 0; }
.rb-mobile-nav-divider::before,
.rb-mobile-nav-divider::after { content: ""; flex: 1; height: 1px; background: var(--rb-gold-accent); opacity: .55; }
.rb-mobile-nav-divider-ornament { color: var(--rb-gold-accent); font-size: 17px; flex-shrink: 0; }

.rb-search-panel { display: none; background: var(--rb-white); border-bottom: 1px solid #ddd; }
.rb-search-panel .rb-container { padding: 14px 0; }
#rbSearchInput { width: 100%; border: 1px solid #d9d9d9; border-radius: 8px; padding: 12px; }
.rb-search-results a { display: block; padding: 8px 0; border-bottom: 1px solid #efefef; font-size: 15px; }

.rb-hero-section { background: var(--rb-navy); padding: 0; color: var(--rb-white); overflow: hidden; }
.rb-hero-swiper { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); border-radius: 0; overflow: hidden; border: 0; }
.rb-hero-slide { position: relative; min-height: 560px; }
.rb-hero-slide > img { width: 100%; height: 560px; object-fit: cover; object-position: center; display: block; }
.rb-hero-overlay { display: none; }
.rb-btn-row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.rb-btn { border-radius: 6px; border: 1px solid transparent; padding: 13px 20px; font-size: 14px; font-weight: 600; transition: transform .3s ease, box-shadow .3s ease; }
.rb-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(var(--rb-black-rgb), .2); }
.rb-btn-gold { background: var(--rb-gold-light); color: var(--rb-navy); border-color: var(--rb-gold-light); }
.rb-btn-outline { border-color: rgba(var(--rb-white-rgb), .55); }
.rb-hero-prev,.rb-hero-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(var(--rb-white-rgb), .45); background: rgba(5,14,34,.6); color: var(--rb-white); font-size: 23px; display: grid; place-items: center; cursor: pointer; }
.rb-hero-prev { left: 14px; }
.rb-hero-next { right: 14px; }
.rb-hero-pagination { position: absolute; left: 0; right: 0; bottom: 14px !important; z-index: 4; text-align: center; }
.rb-hero-pagination .swiper-pagination-bullet { width: 10px; height: 10px; opacity: .6; background: rgba(var(--rb-white-rgb), .75); }
.rb-hero-pagination .swiper-pagination-bullet-active { opacity: 1; background: var(--rb-gold-light); }

.rb-categories-section { background: #f7f7f7; position: relative; }
.rb-categories-section.rb-cat-no-heading { padding-top: 30px; }
.rb-cat-heading { text-align: center; max-width: 840px; margin: 0 auto 34px; }
.rb-cat-eyebrow { margin: 0 0 10px; color: var(--rb-gold); letter-spacing: .14em; font-size: 13px; text-transform: uppercase; font-weight: 600; }
.rb-cat-heading h2 { color: var(--rb-navy); font-size: 73px; line-height: 1; margin: 0 0 12px; }
.rb-cat-intro { margin: 0 auto; max-width: 640px; color: #2d3242; font-size: 19px; line-height: 1.35; }
.rb-cat-grid { display: grid; gap: 22px; grid-template-columns: repeat(4, minmax(0,1fr)); }
.rb-cat-card { background: var(--rb-white); border: 1px solid rgba(var(--rb-gold-rgb), .45); border-radius: 36px 36px 28px 28px; padding: 30px 28px 24px; text-align: center; box-shadow: 0 12px 24px rgba(13,19,34,.07); transition: transform .25s ease, box-shadow .25s ease; position: relative; overflow: hidden; }
.rb-cat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(13,19,34,.11); }
.rb-cat-icon { width: 96px; height: 96px; margin: 6px auto 12px; display: grid; place-items: center; color: var(--rb-navy); border-radius: 16px; }
.rb-cat-icon .dashicons { font-size: 74px; width: 74px; height: 74px; }
.rb-cat-divider { width: 122px; margin: 0 auto 14px; height: 1px; background: rgba(var(--rb-gold-rgb), .55); position: relative; }
.rb-cat-divider::after { content: "✦"; color: var(--rb-gold); position: absolute; left: 50%; top: 50%; transform: translate(-50%, -58%); background: var(--rb-white); padding: 0 8px; font-size: 14px; }
.rb-cat-card h3 { font-size: 25px; line-height: 1.15; margin: 0 0 14px; color: var(--rb-navy); font-family: "Source Serif 4", serif; }
.rb-cat-card p { margin: 0 0 16px; color: #343949; font-size: 17px; line-height: 1.45; min-height: 48px; }
.rb-cat-card.rb-cat-card-no-desc h3 { margin-bottom: 8px; }
.rb-cat-card.rb-cat-card-no-desc a { margin-top: 4px; }
.rb-cat-card a { color: var(--rb-navy); font-size: 15px; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.rb-cat-arrow { width: 38px; height: 38px; border-radius: 50%; background: var(--rb-gold); color: var(--rb-white); display: inline-grid; place-items: center; flex-shrink: 0; }
.rb-cat-arrow svg { display: block; }

@media (max-width: 768px) {
	.rb-cat-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.rb-cat-heading h2 { font-size: 57px; }
	.rb-cat-card h3 { font-size: 23px; }
}

.rb-trending-section {
	background: #faf8f4;
	padding: 64px 0;
}

.rb-trending-divider {
	width: 122px;
	margin: 6px 0;
	height: 1px;
	background: rgba(var(--rb-gold-rgb), .55);
	position: relative;
}
.rb-trending-divider::after {
	content: "✦";
	color: var(--rb-gold);
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translate(-50%, -58%);
	background: #faf8f4;
	padding: 0 6px;
	font-size: 14px;
}
.rb-trending-swiper-container {
	position: relative;
	width: 100%;
}
.rb-trending-swiper {
	overflow: hidden;
	width: 100%;
}
.rb-trending-swiper .products li.product,
.rb-trending-swiper li.product {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}
.rb-trending-swiper .swiper-slide {
	height: auto;
	display: flex;
}
.rb-trending-swiper .swiper-slide .rb-product-card {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.rb-trending-swiper .swiper-slide .rb-product-info {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.rb-trending-swiper .swiper-slide .rb-product-actions {
	margin-top: auto;
	padding-top: 8px;
}
.rb-trending-swiper .rb-product-card .price {
	justify-content: center;
	text-align: center;
}
.rb-trending-prev,
.rb-trending-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--rb-white);
	color: var(--rb-navy);
	border: 1px solid var(--rb-border-gold);
	cursor: pointer;
	display: grid;
	place-items: center;
	font-size: 25px;
	transition: background-color 0.25s, color 0.25s;
}
.rb-trending-prev:hover,
.rb-trending-next:hover {
	background-color: #faf8f4;
	color: var(--rb-gold);
}
.rb-trending-prev {
	left: -20px;
}
.rb-trending-next {
	right: -20px;
}
@media (max-width: 1280px) {
	.rb-trending-prev {
		left: 0;
	}
	.rb-trending-next {
		right: 0;
	}
}

.woocommerce span.onsale,
.onsale {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--rb-danger) !important;
	color: var(--rb-white) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	padding: 4px 8px !important;
	border-radius: 4px !important;
	min-height: auto !important;
	min-width: auto !important;
	line-height: 1 !important;
	z-index: 2;
}

.woocommerce-loop-product__title {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: center;
}
.rb-product-title-main {
	font-family: "Source Serif 4", serif;
	font-size: 17px;
	color: var(--rb-navy);
	font-weight: 700;
}
.rb-product-subtitle {
	font-family: "Source Serif 4", serif;
}

.rb-section-title-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 26px;
}

.rb-trending-headline {
	display: grid;
	gap: 10px;
}

.rb-section-title-row h2 {
	margin: 0;
	color: var(--rb-navy);
	font-family: "Source Serif 4", serif;
	font-size: clamp(35px, 4.6vw, 57px);
	line-height: 1.05;
}

.rb-trending-subtitle {
	margin: 0;
	color: #333a50;
	font-size: 17px;
	line-height: 1.45;
}

.rb-section-title-row a {
	color: var(--rb-navy);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	border-bottom: 1px solid rgba(var(--rb-gold-muted-rgb), .6);
	padding-bottom: 2px;
	transition: color .25s ease, border-color .25s ease;
}

.rb-section-title-row a:hover {
	color: var(--rb-gold-muted);
	border-color: var(--rb-gold-muted);
}

.rb-trending-section .woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0,1fr));
	gap: 18px !important;
	margin: 0 !important;
	padding: 0 !important;
}

.rb-trending-section .woocommerce ul.products li.product,
.rb-trending-section .woocommerce-page ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	clear: none !important;
	background: var(--rb-white);
	border: 1px solid var(--rb-border-gold);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: none;
	transition: transform .28s ease, box-shadow .28s ease;
}

.rb-trending-section .woocommerce ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(var(--rb-navy-shadow-rgb), .08);
}

.rb-product-card {
	list-style: none;
	overflow: hidden;
}

.rb-product-media img,
.rb-trending-section .woocommerce ul.products li.product img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform .45s ease;
	margin: 0 !important;
}

.rb-product-card:hover .rb-product-media img,
.rb-trending-section .woocommerce ul.products li.product:hover img {
	transform: scale(1.05);
}

.rb-wishlist-loop {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--rb-white);
	color: var(--rb-navy);
	border: 1px solid var(--rb-border-gold);
}

.rb-product-info {
	padding: 14px 14px 16px;
	text-align: center;
}

.rb-product-info h2,
.rb-trending-section .woocommerce ul.products li.product .woocommerce-loop-product__title {
	margin: 0 0 8px;
	color: #1f274f;
	font-size: 17px;
	line-height: 1.35;
	font-weight: 500;
	min-height: 42px;
	font-family: "Source Serif 4", serif;
}

.rb-product-info .price,
.rb-trending-section .woocommerce ul.products li.product .price {
	color: var(--rb-navy) !important;
	font-size: 21px;
	line-height: 1.2;
	font-weight: 600;
	margin: 0 0 8px;
}

.rb-product-info .price .woocommerce-Price-currencySymbol {
	font-size: 1em;
	vertical-align: baseline;
}

/* Global currency symbol sizing — applies everywhere WooCommerce renders a
   price (shop/product cards, single product, cart, checkout, mini-cart,
   price widgets) since none of those besides product cards have their own
   currencySymbol rule. !important guards against WooCommerce's own inline
   font-size on some price contexts (e.g. variation price ranges). Matches
   the digits' size exactly (1em) rather than scaling up. */
.woocommerce-Price-currencySymbol {
	font-size: 1em !important;
	line-height: 1;
	vertical-align: baseline;
}

.rb-product-info .star-rating,
.rb-trending-section .woocommerce ul.products li.product .star-rating {
	margin: 0 auto 10px !important;
	color: var(--rb-gold-muted);
	font-size: 13px;
}

.rb-product-actions {
	margin-top: 8px;
	display: flex;
	justify-content: center;
}

.rb-product-actions .button,
.rb-trending-section .woocommerce ul.products li.product .button {
	display: inline-block;
	background: var(--rb-white);
	color: var(--rb-navy);
	border: 1px solid var(--rb-gold-muted);
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
	transition: background-color .26s ease, color .26s ease, border-color .26s ease;
}

.rb-product-actions .button:hover,
.rb-trending-section .woocommerce ul.products li.product .button:hover {
	background: var(--rb-navy);
	color: var(--rb-white);
	border-color: var(--rb-navy);
}

.rb-trending-features {
	margin-top: 30px;
	border-top: 1px solid var(--rb-border-gold);
	padding-top: 16px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0,1fr));
}

.rb-trending-feature {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--rb-navy);
	font-size: 15px;
	line-height: 1.3;
	padding: 8px 14px;
	position: relative;
}

.rb-trending-feature strong {
	display: block;
	color: var(--rb-navy);
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: .03em;
}

.rb-trending-feature small {
	display: block;
	margin-top: 4px;
	color: #4d556f;
	font-size: 14px;
	line-height: 1.45;
}

.rb-trending-feature:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 10px;
	bottom: 10px;
	width: 1px;
	background: var(--rb-border-gold);
}

.rb-trending-feature .dashicons,
.rb-trending-feature i {
	font-size: 18px;
	width: 18px;
	height: 18px;
	color: var(--rb-navy);
}

.rb-upcoming-section { background: linear-gradient(135deg, var(--rb-navy), var(--rb-navy-2)); color: var(--rb-white); }
.rb-upcoming-grid { display: grid; grid-template-columns: .9fr 1.4fr; gap: 24px; align-items: center; }
.rb-upcoming-copy h2 { color: var(--rb-gold-light); font-size: 48px; line-height: 1.05; }
.rb-upcoming-copy p { color: #f0f0f0; line-height: 1.7; max-width: 320px; margin: 14px 0 20px; }
.rb-launch-grid { display: grid; grid-template-columns: repeat(3, minmax(220px,1fr)); gap: 16px; align-items: stretch; }
.rb-launch-grid.rb-launch-grid-count-1 { grid-template-columns: minmax(320px,420px); justify-content: start; }
.rb-launch-grid.rb-launch-grid-count-2 { grid-template-columns: repeat(2, minmax(250px,1fr)); }
.rb-launch-card { position: relative; border: 1px solid rgba(var(--rb-gold-rgb), .45); border-radius: 16px; overflow: hidden; min-height: 520px; background: rgba(var(--rb-white-rgb), .05); box-shadow: 0 10px 24px rgba(1, 4, 25, .28); height: 100%; }
.rb-launch-card img { width: 100%; height: 100%; object-fit: cover; }
.rb-launch-overlay { position: absolute; inset: auto 0 0 0; padding: 14px 14px 16px; background: linear-gradient(180deg, rgba(4,11,25,0), rgba(4,11,25,.92) 42%, rgba(4,11,25,.96) 100%); display: grid; gap: 8px; min-height: 220px; align-content: end; }
.rb-launch-overlay .rb-mini { display: inline-block; align-self: start; background: #20104b; color: #f2df9d; border: 1px solid rgba(var(--rb-gold-rgb), .55); border-radius: 5px; padding: 6px 8px; font-size: 12px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.rb-launch-overlay h3 { color: var(--rb-white); font-size: 23px; line-height: 1.12; margin: 2px 0 2px; min-height: 50px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rb-countdown { color: #ffd778; font-size: 32px; font-weight: 700; margin: 0; border: 1px solid rgba(234, 192, 93, .8); border-radius: 999px; background: rgba(10, 11, 32, .7); padding: 8px 14px; line-height: 1; display: inline-flex; align-items: center; gap: 8px; width: fit-content; box-shadow: inset 0 0 0 1px rgba(255, 221, 138, .15), 0 0 18px rgba(233, 189, 87, .22); }
.rb-countdown::before { content: "\23F0"; font-size: 16px; line-height: 1; }
.rb-launch-overlay .rb-btn { justify-self: stretch; text-align: center; border-color: rgba(var(--rb-gold-rgb), .55); padding: 10px 14px; font-size: 13px; font-weight: 700; border-radius: 10px; }
.rb-launch-overlay .rb-btn:hover { background: rgba(var(--rb-white-rgb), .08); border-color: var(--rb-gold-light);color: var(--rb-white); }

.rb-testimonials-section {
	background: var(--rb-white);
	position: relative;
	overflow: hidden;
}

.rb-testimonials-section::before,
.rb-testimonials-section::after {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	pointer-events: none;
	opacity: .3;
	background: radial-gradient(circle at 30% 30%, rgba(var(--rb-gold-muted-rgb), .32), rgba(var(--rb-gold-muted-rgb), 0) 62%);
}

.rb-testimonials-section::before { left: -80px; top: 30px; }
.rb-testimonials-section::after { right: -90px; bottom: 30px; }

.rb-testimonials-head { text-align: center; max-width: 980px; margin: 0 auto 26px; }
.rb-testimonials-deco { position: relative; width: 260px; height: 1px; margin: 0 auto 14px; background: rgba(var(--rb-gold-muted-rgb), .6); }
.rb-testimonials-deco span { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -52%); background: var(--rb-white); color: var(--rb-gold-muted); padding: 0 11px; font-size: 17px; }

.rb-testimonials-section .rb-section-center-title {
	text-align: center;
	font-size: clamp(45px, 6vw, 77px);
	margin: 0 0 12px;
	color: var(--rb-navy);
	font-family: "Source Serif 4", serif;
	line-height: 1.02;
}

.rb-testimonials-section .rb-section-center-title span {
	background: linear-gradient(180deg, #e7cb87 0%, var(--rb-gold-muted) 55%, #aa792d 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.rb-testimonials-subtitle { margin: 0 0 14px; font-size: 19px; color: #25304f; }
.rb-testimonials-shortcode { margin-top: 10px; }

.rb-testimonials-swiper { position: relative; padding: 8px 10px 32px; }
.rb-testimonials-swiper .swiper-slide { height: auto; }

.rb-testimonial-card {
	border: 1px solid rgba(var(--rb-gold-muted-rgb), .6);
	border-radius: 24px;
	background: var(--rb-white);
	min-height: 340px;
	padding: 30px 34px 24px;
	box-shadow: 0 10px 22px rgba(var(--rb-navy-shadow-rgb), .08);
	transition: transform .25s ease, box-shadow .25s ease;
}

.rb-testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 30px rgba(var(--rb-navy-shadow-rgb), .12);
}

.rb-testimonial-headline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.rb-quote { font-size: 49px; color: var(--rb-gold-muted); line-height: .9; }
.rb-testimonial-stars { color: var(--rb-gold-muted); letter-spacing: .14em; font-size: 15px; line-height: 1; }

.rb-testimonial-text {
	margin: 0;
	font-size: 17px;
	line-height: 1.35;
	color: #171f3b;
	min-height: 0;
	font-family: "Source Serif 4", serif;
}

.rb-testimonial-divider {
	height: 1px;
	margin: 18px 0 16px;
	background: linear-gradient(90deg, rgba(var(--rb-gold-muted-rgb), .35) 0%, rgba(var(--rb-gold-muted-rgb), .8) 50%, rgba(var(--rb-gold-muted-rgb), .35) 100%);
}

.rb-testimonial-meta { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 10px; align-items: center; }
.rb-testimonial-meta img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid #d6ad62; }
.rb-testimonial-meta > div { min-width: 0; }
.rb-testimonial-meta.rb-testimonial-meta-no-image { grid-template-columns: 1fr; gap: 0; }
.rb-testimonial-meta strong {
	display: block;
	width: 100%;
	color: var(--rb-navy);
	font-size: 22px;
	font-family: "Source Serif 4", serif;
	line-height: 1.12;
	white-space: normal;
	overflow: visible;
	text-overflow: unset;
}
.rb-testimonial-meta small { display: block; margin-top: 4px; color: #8b7449; font-size: 13px; line-height: 1.2; }
.rb-testimonial-meta small::before { content: "\1F4CD"; margin-right: 6px; }

.rb-testimonials-pagination.swiper-pagination { bottom: 0 !important; }
.rb-testimonials-pagination .swiper-pagination-bullet { width: 14px; height: 14px; opacity: 1; border: 1px solid #d2ab62; background: var(--rb-white); margin: 0 8px !important; }
.rb-testimonials-pagination .swiper-pagination-bullet-active { background: var(--rb-gold-muted); }

.rb-swiper-prev,.rb-swiper-next { display: none; }

.rb-custom-order-section { background: var(--rb-cream); padding-top: 20px; }
.rb-custom-banner { background: linear-gradient(135deg, var(--rb-navy), var(--rb-navy-2)); border-radius: 10px; border: 1px solid rgba(var(--rb-gold-rgb), .25); padding: 38px 40px; display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; color: var(--rb-white); }
.rb-custom-banner h2 { font-size: 57px; color: var(--rb-gold-light); line-height: .98; }
.rb-custom-banner p { margin: 10px 0 0; font-size: 24px; }

.rb-instagram-title { font-size: 35px; margin-bottom: 12px; color: #121728; }
.rb-instagram-shortcode { margin-top: 8px; }
.rb-instagram-grid { display: grid; grid-template-columns: repeat(8, minmax(0,1fr)); gap: 10px; }
.rb-ig-card { aspect-ratio: 1 / 1; position: relative; overflow: hidden; border-radius: 8px; display: block; background: #d8d8d8; }
.rb-ig-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.rb-ig-card:hover img { transform: scale(1.08); }
.rb-ig-follow { background: var(--rb-navy); display: grid; place-items: center; text-align: center; color: var(--rb-white); padding: 10px; }

/* Footer Features Bar */
.rb-footer-features { background: var(--rb-white); border-top: 1px solid rgba(var(--rb-gold-rgb), 0.25); border-bottom: 1px solid rgba(var(--rb-gold-rgb), 0.25); padding: 24px 0; }
.rb-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rb-feature-item { display: flex; align-items: center; gap: 16px; }
.rb-feature-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--rb-cream-tint); border: 1.5px solid var(--rb-gold); display: grid; place-items: center; color: var(--rb-gold); flex-shrink: 0; }
.rb-feature-icon svg { width: 22px; height: 22px; }
.rb-feature-info h5 { font-size: 15px; font-weight: 700; color: var(--rb-navy-alt); margin: 0 0 2px; }
.rb-feature-info p { font-size: 12px; color: #626b82; margin: 0; font-weight: 500; }

/* Main Footer */
.rb-footer { background: var(--rb-header-footer-bg); color: var(--rb-white); padding: 30px 0 0; border-top: 1px solid var(--rb-navy-alt); }
.rb-footer-grid { display: grid; grid-template-columns: 1.3fr 0.9fr 1.1fr 1.2fr; gap: 32px; align-items: start; }
.rb-footer-col h4 { display: flex; align-items: center; gap: 10px; color: var(--rb-white); font-size: 19px; font-weight: 700; margin: 0 0 20px; text-transform: uppercase; letter-spacing: 0.8px; }
.rb-footer-col h4::before { content: "✦"; color: var(--rb-gold); font-size: 15px; flex-shrink: 0; }
.rb-title-divider { display: none; }

/* Column 1: About */
.rb-footer-about-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.rb-footer-logo-link { display: flex; flex-direction: column; align-items: center; text-align: center; text-decoration: none; }
.rb-footer-about-col .rb-footer-logo { width: 260px; height: 100px; object-fit: contain; object-position: center; margin: 0 auto; display: block; }
.rb-footer-tagline { display: block; font-size: 14px; color: var(--rb-tan); font-weight: 600; margin-top: 6px; letter-spacing: 1.2px; text-transform: uppercase; text-align: center; }
.rb-footer-desc { font-size: 17px; line-height: 1.6; color: var(--rb-white); margin: 14px 0 0; text-align: center; }
.rb-footer-divider { margin: 8px auto; color: rgba(var(--rb-gold-rgb), 0.2); font-size: 15px; text-align: center; width: 100%; }
.rb-footer-social-wrap { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.rb-social-label { font-size: 16px; font-weight: 700; color: var(--rb-white); text-transform: uppercase; letter-spacing: 0.5px; }
.rb-footer-social { display: flex; gap: 8px; justify-content: center; }
.rb-social-btn { width: 36px; height: 36px; border: 1px solid rgba(var(--rb-gold-rgb), 0.3); border-radius: 50%; display: grid; place-items: center; color: var(--rb-gold); transition: all 0.2s ease; background: transparent; text-decoration: none; }
.rb-social-btn .dashicons { font-size: 20px; width: 20px; height: 20px; line-height: 1; }
.rb-social-btn:hover { background: var(--rb-gold); color: var(--rb-black); border-color: var(--rb-gold); transform: translateY(-2px); }

/* Links */
.rb-footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.rb-footer-links li a { color: var(--rb-white); text-decoration: none; font-size: 17.5px; font-weight: 500; display: flex; align-items: center; gap: 6px; transition: color 0.15s ease; }
.rb-footer-links li a .rb-arrow { color: var(--rb-gold); font-weight: 700; font-size: 18px; }
.rb-footer-links li a:hover { color: var(--rb-gold); }

/* Contact */
.rb-contact-list { display: grid; gap: 14px; }
.rb-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.rb-contact-icon { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(var(--rb-gold-rgb), 0.25); background: rgba(var(--rb-gold-rgb), 0.06); display: grid; place-items: center; color: var(--rb-gold); flex-shrink: 0; }
.rb-contact-icon .dashicons { font-size: 16px; width: 16px; height: 16px; line-height: 1; }
.rb-contact-text { font-size: 17px; color: var(--rb-white); line-height: 1.5; }
.rb-contact-text a { color: var(--rb-gold); text-decoration: none; }
.rb-contact-text a:hover { text-decoration: underline; }

/* VIP */
.rb-vip-box { display: block; text-align: left; background: rgba(var(--rb-gold-rgb), 0.03); border: 1px solid rgba(var(--rb-gold-rgb), 0.15); border-radius: 12px; padding: 20px; }
.rb-vip-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.rb-vip-gift-icon { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(var(--rb-gold-rgb), 0.35); background: rgba(var(--rb-gold-rgb), 0.06); display: grid; place-items: center; color: var(--rb-gold); flex-shrink: 0; }
.rb-vip-promo { font-size: 18.5px; font-weight: 700; color: var(--rb-white); margin: 0; line-height: 1.3; }
.rb-footer-newsletter-form { width: 100%; }
.rb-newsletter-input-group { position: relative; width: 100%; display: flex; }
.rb-newsletter-input-group input { flex: 1; min-width: 0; background: #0c0c2a; border: 1px solid var(--rb-gold); border-right: none; border-radius: 8px 0 0 8px; padding: 13px 14px; color: var(--rb-white); font-size: 15.5px; outline: none; }
.rb-newsletter-input-group input:focus { box-shadow: 0 0 0 2px rgba(var(--rb-gold-rgb), 0.2); }
.rb-newsletter-submit-btn { width: 52px; flex-shrink: 0; background: linear-gradient(135deg, var(--rb-gold), var(--rb-tan)); border: 1px solid var(--rb-gold); border-radius: 0 8px 8px 0; color: var(--rb-black); display: grid; place-items: center; cursor: pointer; transition: all 0.2s ease; }
.rb-newsletter-submit-btn:hover { background: linear-gradient(135deg, var(--rb-tan), var(--rb-gold)); box-shadow: 0 4px 10px rgba(var(--rb-gold-rgb), 0.25); }
.rb-newsletter-message { font-size: 14.5px; line-height: 1.45; margin-top: 10px; border-radius: 6px; padding: 10px 12px; font-weight: 500; text-align: left; transition: all 0.3s ease; }
.rb-newsletter-message.success { color: #2ecc71; background: rgba(46, 204, 113, 0.1); border: 1px solid rgba(46, 204, 113, 0.25); }
.rb-newsletter-message.error { color: #e74c3c; background: rgba(231, 76, 60, 0.1); border: 1px solid rgba(231, 76, 60, 0.25); }
.rb-newsletter-message.loading { color: var(--rb-gold); background: rgba(var(--rb-gold-rgb), 0.1); border: 1px solid rgba(var(--rb-gold-rgb), 0.25); }
.rb-vip-note { font-size: 14.5px; color: var(--rb-white); line-height: 1.5; margin: 14px 0 0; text-align: left; }

/* Footer Bottom */
.rb-footer-bottom-wrap { border-top: 1px solid rgba(var(--rb-gold-rgb), 0.15); margin-top: 40px; padding: 20px 0; background: var(--rb-header-footer-bg); }
.rb-footer-bottom-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.rb-footer-copy p { margin: 0; font-size: 15.5px; color: var(--rb-white); }
.rb-footer-bottom-links { font-size: 15.5px; color: var(--rb-white); }
.rb-footer-bottom-links a { color: var(--rb-white); text-decoration: none; transition: color 0.15s ease; margin: 0 4px; }
.rb-footer-bottom-links a:hover { color: var(--rb-gold); }

.rb-whatsapp { position: fixed; right: 16px; bottom: 82px; z-index: 1000; width: 52px; height: 52px; display: grid; place-items: center; background: #25d366; color: var(--rb-white); border-radius: 50%; box-shadow: 0 10px 20px rgba(var(--rb-black-rgb), .2); border: 1px solid rgba(var(--rb-white-rgb), .25); }
.rb-whatsapp .dashicons { font-size: 27px; width: 27px; height: 27px; line-height: 1; }

/* Shop / Category Page */
.rb-shop-hero { background: linear-gradient(135deg, var(--rb-navy), var(--rb-navy-2)); color: var(--rb-white); padding: 26px 0; }
.rb-shop-hero-inner { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 26px; }
.rb-shop-hero-inner img { width: 180px; height: 180px; object-fit: cover; border-radius: 10px; }
.rb-shop-hero h1 { font-size: 65px; margin-bottom: 10px; }
.rb-shop-breadcrumbs { font-size: 16px; color: #dde3f3; }

.rb-shop-wrap { padding: 26px 0 80px; background: var(--rb-cream); }

/* Category Navigation Bar */
.rb-category-nav-bar { display: flex; justify-content: space-between; align-items: center; gap: 24px; background: var(--rb-white); border: 1px solid var(--rb-border-gold-2); border-radius: 12px; padding: 18px 24px; margin-bottom: 24px; box-shadow: 0 4px 12px rgba(var(--rb-navy-alt-rgb), 0.02); }
.rb-category-list-scroll { display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; flex-grow: 1; padding: 4px 0; }
.rb-category-list-scroll::-webkit-scrollbar { display: none; }
.rb-category-nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; text-align: center; color: #626b82; font-size: 14px; font-weight: 500; min-width: 76px; transition: all 0.25s ease; position: relative; }
.rb-category-icon-wrapper { width: 56px; height: 56px; border-radius: 50%; background: var(--rb-cream-tint); border: 2px solid transparent; display: grid; place-items: center; margin-bottom: 8px; overflow: hidden; transition: all 0.25s ease; color: var(--rb-navy-alt); box-shadow: 0 2px 6px rgba(var(--rb-black-rgb), 0.03); }
.rb-category-icon-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.rb-category-nav-title { font-weight: 600; font-size: 14px; margin-bottom: 2px; color: var(--rb-navy-alt); }
.rb-category-nav-count { font-size: 12px; color: var(--rb-gray-mid); }
.rb-category-nav-item:hover .rb-category-icon-wrapper { transform: translateY(-3px); border-color: var(--rb-tan); }
.rb-category-nav-item.active .rb-category-icon-wrapper { background: var(--rb-navy); color: var(--rb-white); border-color: var(--rb-navy); box-shadow: 0 4px 10px rgba(var(--rb-navy-alt-rgb), 0.2); }
.rb-category-nav-item.active .rb-category-nav-title { color: var(--rb-navy); font-weight: 700; }

.rb-category-nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.rb-sort-wrapper { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--rb-navy-alt); }
.rb-select-sort { border: 1px solid var(--rb-border-tan); background: var(--rb-white); border-radius: 6px; padding: 8px 12px; font-size: 14px; color: var(--rb-navy-alt); cursor: pointer; min-width: 160px; outline: none; }
.rb-select-sort:focus { border-color: var(--rb-navy); }
.rb-filters-toggle-btn { display: none; padding: 8px 16px; border: 1px solid var(--rb-border-tan); background: var(--rb-white); border-radius: 6px; font-size: 14px; font-weight: 600; color: var(--rb-navy-alt); align-items: center; gap: 6px; cursor: pointer; }
.rb-filters-toggle-btn:hover { background: var(--rb-cream-tint); border-color: var(--rb-tan); }
/* Sidebar is only off-canvas at tablet/mobile widths — the button that opens
   it is only needed there; on desktop the sidebar is already visible inline. */
@media (max-width: 768px) {
	.rb-filters-toggle-btn { display: flex; }
}

.rb-shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.rb-shop-sidebar { position: sticky; top: 118px; }
.rb-shop-sidebar-overlay { display: none; }
.rb-shop-sidebar-header { display: none; }
.rb-shop-sidebar-close { display: none; }
.rb-filter-form { display: grid; gap: 16px; }
.rb-filter-block { background: var(--rb-white); border: 1px solid var(--rb-border-gold-2); border-radius: 10px; padding: 18px; transition: all 0.2s ease; }
.rb-filter-block h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--rb-navy-alt); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid #f4ecd8; padding-bottom: 8px; display: flex; align-items: center; justify-content: space-between; user-select: none; }
.rb-filter-block .rb-filter-chevron { font-size: 14px; color: var(--rb-gray-mid); transition: transform 0.2s ease; display: inline-block; line-height: 1; }
.rb-filter-block.collapsed h4 { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.rb-filter-block.collapsed .rb-filter-chevron { transform: rotate(-90deg); }
.rb-filter-block.collapsed > *:not(h4) { display: none !important; }

/* Custom Checkboxes */
.rb-checkbox-label { display: flex; align-items: center; cursor: pointer; position: relative; font-size: 14px; color: #323b52; width: 100%; transition: color 0.15s ease; }
.rb-checkbox-label input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.rb-checkbox-custom { height: 16px; width: 16px; border: 1px solid var(--rb-border-tan); border-radius: 4px; display: inline-block; margin-right: 10px; position: relative; background: var(--rb-white); flex-shrink: 0; transition: all 0.15s ease; }
.rb-checkbox-label:hover .rb-checkbox-custom { border-color: var(--rb-tan); }
.rb-checkbox-label input:checked ~ .rb-checkbox-custom { background: var(--rb-navy); border-color: var(--rb-navy); }
.rb-checkbox-custom:after { content: ""; position: absolute; display: none; left: 5px; top: 2px; width: 4px; height: 8px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.rb-checkbox-label input:checked ~ .rb-checkbox-custom:after { display: block; }
.rb-item-count { margin-left: auto; color: var(--rb-gray-mid); font-size: 12px; background: var(--rb-cream-tint); padding: 2px 6px; border-radius: 10px; }

/* Collapsible Lists */
.rb-collapsible-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.rb-collapsible-list li.collapsed { display: none; }
.rb-show-more-btn { background: none; border: none; color: var(--rb-navy); font-size: 13px; font-weight: 600; cursor: pointer; padding: 4px 0 0; text-align: left; transition: color 0.15s ease; margin-top: 8px; }
.rb-show-more-btn:hover { color: var(--rb-tan); }

/* Price Range Slider (Double Handle) */
.rb-price-slider-wrap { display: flex; flex-direction: column; gap: 12px; }
.rb-price-double-slider { position: relative; height: 20px; width: 100%; margin-top: 6px; }
.rb-slider-track { position: absolute; height: 4px; width: 100%; background: #ece4d2; border-radius: 2px; top: 50%; transform: translateY(-50%); z-index: 1; }
.rb-price-double-slider input[type="range"] { position: absolute; width: 100%; -webkit-appearance: none; background: none; pointer-events: none; top: 50%; transform: translateY(-50%); z-index: 2; margin: 0; outline: none; }
.rb-price-double-slider input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--rb-navy); border: 2px solid var(--rb-white); box-shadow: 0 1px 4px rgba(var(--rb-black-rgb), 0.15); cursor: pointer; transition: transform 0.1s ease; }
.rb-price-double-slider input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
.rb-price-double-slider input[type="range"]::-moz-range-thumb { pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--rb-navy); border: 2px solid var(--rb-white); box-shadow: 0 1px 4px rgba(var(--rb-black-rgb), 0.15); cursor: pointer; transition: transform 0.1s ease; }
.rb-price-slider-inputs { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; color: var(--rb-navy-alt); }

/* Circular Color Swatches */
.rb-color-swatches-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.rb-swatch-container { position: relative; cursor: pointer; display: inline-block; width: 24px; height: 24px; }
.rb-color-checkbox-input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.rb-color-circle { display: block; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--rb-border-gold-2); position: relative; transition: transform 0.2s ease, border-color 0.2s ease; }
.rb-swatch-container:hover .rb-color-circle { transform: scale(1.15); }
.rb-color-blue { background-color: #1f4ea8; }
.rb-color-black { background-color: var(--rb-black); }
.rb-color-green { background-color: #1b9a51; }
.rb-color-red { background-color: #d63333; }
.rb-color-purple { background-color: #6f35cc; }
.rb-color-yellow { background-color: #dab530; }
.rb-color-pink { background-color: #e67098; }
.rb-color-white { background-color: var(--rb-white); border-color: #ddd; }
.rb-color-orange { background-color: #ff7c1e; }
.rb-color-checkbox-input:checked + .rb-color-circle { border-color: var(--rb-navy-alt); box-shadow: 0 0 0 2px rgba(var(--rb-navy-alt-rgb), 0.15); }
.rb-color-checkbox-input:checked + .rb-color-circle::after { content: "✓"; color: var(--rb-white); font-size: 13px; font-weight: bold; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.rb-color-checkbox-input:checked + .rb-color-white::after { color: var(--rb-black); }

/* Size Grid Buttons */
.rb-size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.rb-size-label { position: relative; display: flex; align-items: center; justify-content: center; height: 34px; border: 1px solid var(--rb-border-tan); border-radius: 6px; background: var(--rb-white); cursor: pointer; font-size: 13px; font-weight: 600; color: #323b52; transition: all 0.15s ease; }
.rb-size-label input { position: absolute; opacity: 0; cursor: pointer; width: 0; height: 0; }
.rb-size-label:hover { background-color: var(--rb-cream-tint); border-color: var(--rb-tan); }
.rb-size-label:has(input:checked) { background-color: var(--rb-navy); color: var(--rb-white); border-color: var(--rb-navy); }

/* Active Filter Pills */
.rb-active-filters-block { display: flex; flex-direction: column; gap: 10px; border-color: var(--rb-border-tan); }
.rb-active-filters-header { display: flex; justify-content: space-between; align-items: center; }
.rb-active-filters-header h4 { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.rb-clear-all-link { background: none; border: none; color: #b6985c; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: underline; padding: 0; }
.rb-clear-all-link:hover { color: var(--rb-navy); }
.rb-active-filters-list { display: flex; flex-wrap: wrap; gap: 6px; }
.rb-filter-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--rb-cream-tint); border: 1px solid var(--rb-border-gold-2); border-radius: 6px; padding: 4px 8px; font-size: 12px; font-weight: 600; color: #323b52; transition: all 0.15s ease; }
.rb-filter-pill:hover { border-color: var(--rb-tan); background: var(--rb-white); }
.rb-filter-pill-remove { cursor: pointer; font-size: 13px; line-height: 1; color: var(--rb-gray-mid); display: inline-block; transition: color 0.15s ease; }
.rb-filter-pill-remove:hover { color: #d63333; }

/* Filter Sidebar Action Buttons */
.rb-btn-dark { background: var(--rb-navy); color: var(--rb-white); border-color: var(--rb-navy); }
.rb-btn-dark:hover { background: var(--rb-navy-2); border-color: var(--rb-navy-2); color: var(--rb-white); }
.rb-btn-clear { background: var(--rb-white); color: var(--rb-navy); border: 1px solid var(--rb-navy); }
.rb-btn-clear:hover { background: #f4ecd8; }

/* Grid / List Toggles */
.rb-layout-toggles { display: flex; border: 1px solid var(--rb-border-tan); border-radius: 6px; overflow: hidden; background: var(--rb-white); }
.rb-layout-toggle { background: var(--rb-white); border: none; color: var(--rb-gray-mid); width: 34px; height: 34px; display: grid; place-items: center; cursor: pointer; transition: all 0.15s ease; padding: 0; }
.rb-layout-toggle:hover { color: var(--rb-navy-alt); background: var(--rb-cream-tint); }
.rb-layout-toggle.active { background: var(--rb-navy); color: var(--rb-white); }

/* List View Layout Styles */
.rb-shop-products.list-view .products { display: grid !important; grid-template-columns: 1fr !important; gap: 20px !important; margin: 0 !important; }
.rb-shop-products.list-view li.product { display: flex !important; flex-direction: row !important; align-items: center; background: var(--rb-white); border: 1px solid var(--rb-border-gold-2); border-radius: 12px; padding: 18px; gap: 24px; width: 100% !important; margin: 0 !important; box-shadow: 0 4px 10px rgba(var(--rb-black-rgb), 0.01); }
.rb-shop-products.list-view li.product .rb-product-media { width: 180px; height: 180px; flex-shrink: 0; margin-bottom: 0; }
.rb-shop-products.list-view li.product .rb-product-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.rb-shop-products.list-view li.product .rb-product-info { flex-grow: 1; display: flex; flex-direction: column; padding: 0; align-items: flex-start; text-align: left; }
.rb-shop-products.list-view li.product .woocommerce-loop-product__title { margin: 0 0 6px 0; }
.rb-shop-products.list-view li.product .rb-product-rating { margin-bottom: 8px; }
.rb-shop-products.list-view li.product .price { margin-bottom: 8px; }
.rb-shop-products.list-view li.product .rb-product-meta-row { margin-top: 8px; margin-bottom: 12px; }
.rb-shop-products.list-view li.product .rb-product-actions { margin-top: 0; width: auto; align-self: flex-start; }
.rb-shop-products.list-view li.product .rb-product-actions .rb-add-to-bag-btn { width: auto; padding: 10px 24px; }

/* Below 480px the fixed 180px thumbnail + text row no longer fits the
   viewport and overflows horizontally — stack the item into a card instead. */
@media (max-width: 480px) {
	.rb-shop-products.list-view li.product {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 12px !important;
		padding: 14px !important;
	}
	.rb-shop-products.list-view li.product .rb-product-media {
		width: 100% !important;
		height: 220px !important;
	}
	.rb-shop-products.list-view li.product .rb-product-info {
		align-items: center !important;
		text-align: center !important;
	}
	.rb-shop-products.list-view li.product .price {
		justify-content: center !important;
	}
	.rb-shop-products.list-view li.product .rb-product-actions {
		width: 100% !important;
		align-self: stretch !important;
	}
	.rb-shop-products.list-view li.product .rb-product-actions .rb-add-to-bag-btn {
		width: 100% !important;
	}
}

.rb-btn-outline { background: var(--rb-white); border: 1px solid var(--rb-border-tan); color: var(--rb-navy-alt); }
.rb-btn-outline:hover { background: var(--rb-cream-tint); border-color: var(--rb-tan); }

.rb-shop-toolbar { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 18px; align-items: center; }
.rb-shop-count { margin: 0; color: #32405e; font-size: 15px; font-weight: 500; }

.rb-shop-products.is-loading { opacity: .55; pointer-events: none; transition: .2s ease; }
.rb-shop-main .products { display: grid !important; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px !important; margin: 0 !important; }
.products::before,
.products::after { content: none !important; display: none !important; }
.rb-shop-main .products li.product { width: auto !important; float: none !important; margin: 0 !important; clear: none !important; }

/* Wishlist page reuses .rb-shop-main's grid, which defaults to 3 columns —
   override for the wishlist's own column counts (4 desktop / 3 tablet / 1 mobile). */
.rb-wishlist-grid { grid-template-columns: repeat(4, minmax(0,1fr)) !important; }
@media (max-width: 768px) {
	.rb-wishlist-grid { grid-template-columns: repeat(3, minmax(0,1fr)) !important; }
}
@media (max-width: 576px) {
	.rb-wishlist-grid { grid-template-columns: 1fr !important; }
}

.rb-shop-pagination ul { display: flex; justify-content: center; gap: 8px; list-style: none; margin: 24px 0 0; padding: 0; }
.rb-shop-pagination li .page-numbers { border: 1px solid var(--rb-border-tan); border-radius: 6px; min-width: 36px; height: 36px; padding: 0 12px; display: grid; place-items: center; background: var(--rb-white); color: #1e2b4d; text-decoration: none; }
.rb-shop-pagination li .current { background: var(--rb-navy); color: var(--rb-white); border-color: var(--rb-navy); }
.rb-shop-pagination li a:hover { background: #f3e8d3; }

.rb-recently-viewed .woocommerce ul.products { display: grid !important; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px !important; margin: 0; padding: 0; }
.rb-recently-viewed .woocommerce ul.products li.product { width: auto !important; float: none !important; margin: 0 !important; }

@keyframes rbFloat {
	0%,100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
	.rb-nav { display: none; }
	.rb-mobile-toggle { display: inline-flex; }
	.rb-upcoming-grid { grid-template-columns: 1fr; }
	.rb-trending-feature:not(:last-child)::after { display: none; }
	.rb-launch-grid.rb-launch-grid-count-1 { grid-template-columns: minmax(280px, 360px); }
	.rb-custom-banner { grid-template-columns: 1fr; }
	.rb-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.rb-instagram-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
	.rb-shop-layout { grid-template-columns: 1fr; }
	.rb-shop-sidebar { position: fixed; z-index: 1002; inset: 0 auto 0 0; width: min(340px, 92vw); background: var(--rb-cream); transform: translateX(-105%); transition: transform .25s ease; overflow-y: auto; padding: 0 18px 18px; box-shadow: 0 20px 40px rgba(var(--rb-black-rgb), .25); }
	.rb-shop-sidebar.open { transform: translateX(0); }
	.rb-shop-sidebar-overlay { display: block; position: fixed; inset: 0; background: rgba(var(--rb-black-rgb), .4); z-index: 1001; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
	.rb-shop-sidebar-overlay.visible { opacity: 1; pointer-events: auto; }
	.rb-shop-sidebar-header { position: sticky; top: 0; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 -18px 16px; padding: calc(14px + env(safe-area-inset-top)) 18px 14px; background: var(--rb-cream); border-bottom: 1px solid rgba(var(--rb-shadow-rgb), .1); }
	.rb-shop-sidebar-header h3 { margin: 0; font-family: 'Source Serif 4', serif; font-size: 21px; font-weight: 700; color: var(--rb-navy); }
	.rb-shop-sidebar-close { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 32px; height: 32px; border: none; border-radius: 50%; background: rgba(var(--rb-shadow-rgb), .05); font-size: 19px; line-height: 1; cursor: pointer; color: var(--rb-navy-alt); transition: background .2s ease, transform .2s ease; }
	.rb-shop-sidebar-close:hover { background: rgba(var(--rb-shadow-rgb), .1); transform: scale(1.05); }
	.rb-shop-sidebar-close .dashicons { width: 18px; height: 18px; font-size: 18px; }
	.rb-shop-main .products { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}
@media (max-width: 768px) {
	.rb-header-actions .rb-text-btn { display: none; }
	.rb-home-section { padding: 40px 0; }
	.rb-trending-section { padding: 40px 0; }
	.rb-testimonials-swiper { padding: 8px 10px 28px; }
	.rb-hero-slide,.rb-hero-slide > img { min-height: 360px; height: 360px; }
	.rb-hero-overlay { padding: 24px; gap: 10px; }
	.rb-hero-overlay h1 { font-size: 35px; }
	.rb-hero-overlay p { font-size: 15px; max-width: 95%; }
	.rb-hero-prev,.rb-hero-next { width: 36px; height: 36px; font-size: 19px; }
	.rb-cat-grid,.rb-footer-grid,.rb-instagram-grid { grid-template-columns: 1fr !important; }
	.rb-launch-grid { grid-template-columns: 1fr !important; }
	.rb-launch-card { min-height: 430px; }
	.rb-launch-overlay { min-height: 182px; }
	.rb-launch-overlay h3 { font-size: 19px; }
	.rb-countdown { font-size: 19px; padding: 7px 11px; }
	.rb-trending-section .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 12px !important; }
	.rb-section-title-row { align-items: flex-start; flex-direction: column; gap: 10px; }
	.rb-trending-subtitle { font-size: 15px; }
	.rb-trending-features { grid-template-columns: 1fr; gap: 6px; }
	.rb-trending-feature { justify-content: flex-start; padding-inline: 4px; }
	.rb-section-title-row h2,.rb-upcoming-copy h2,.rb-section-center-title,.rb-custom-banner h2 { font-size: 35px; }
	.rb-custom-banner p { font-size: 17px; }
	.rb-shop-hero-inner { grid-template-columns: 1fr; text-align: center; }
	.rb-shop-hero-inner img { width: 150px; height: 150px; margin: 0 auto; }
	.rb-shop-hero h1 { font-size: 43px; }
	.rb-recently-viewed .woocommerce ul.products { grid-template-columns: 1fr !important; }
	.rb-footer-bottom-grid { flex-direction: column; text-align: center; }
	.rb-footer-bottom-wrap { padding: 24px 0; }
}

/* Shop/Search: hide the top category image-strip on tablet & mobile (column
   count for .rb-shop-main .products is handled by the ≤768px block above —
   2 columns uniformly across tablet and mobile, e.g. iPhone 14 Pro Max). */
@media (max-width: 768px) {
	.rb-category-list-scroll { display: none !important; }
	.rb-category-nav-bar { justify-content: flex-end; padding: 14px 16px; }
	.rb-shop-main .products { gap: 10px !important; }
	.rb-category-nav-right { width: 100%; justify-content: space-between; min-width: 0; }
	.rb-filters-toggle-btn { order: -1; flex-shrink: 0; }
	.rb-sort-wrapper { min-width: 0; flex-shrink: 1; }
	.rb-select-sort { min-width: 0; width: 100%; max-width: 150px; }
}

@media (max-width: 440px) {
	.rb-shop-main .products { grid-template-columns: 1fr !important; }
}

.rb-footer-accordion-chevron { display: none; }

@media (max-width: 440px) {
	.rb-footer-grid { gap: 14px; }

	.rb-footer-col.rb-accordion {
		border: 1px solid rgba(var(--rb-gold-rgb), 0.35);
		border-radius: 14px;
		padding: 16px 18px;
		margin-bottom: 0;
	}
	.rb-footer-col.rb-accordion h4 { cursor: pointer; user-select: none; }
	.rb-footer-col.rb-accordion:not(.rb-accordion-open) h4 { margin-bottom: 0; }

	.rb-footer-accordion-chevron { display: inline-block; margin-left: auto; font-size: 18px; color: var(--rb-gold); flex-shrink: 0; transition: transform 0.25s ease; }
	.rb-footer-col.rb-accordion-open .rb-footer-accordion-chevron { transform: rotate(180deg); }

	.rb-footer-col.rb-accordion > *:not(h4):not(.rb-title-divider) { display: none; }
	.rb-footer-col.rb-accordion.rb-accordion-open > *:not(h4):not(.rb-title-divider) { display: block; margin-top: 20px; }

	.rb-footer-col.rb-accordion .rb-footer-links { gap: 20px; }
	.rb-footer-col.rb-accordion .rb-contact-list { gap: 18px; }
}

/* Luxury header redesign */
.rb-header {
	background: var(--rb-header-footer-bg);
	border-bottom: 1px solid rgba(var(--rb-gold-rgb), 0.22);
}

.rb-header-inner {
	min-height: 124px;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
}

/* Expandable header search — collapsed pill trigger lives in .rb-header-actions
   (.rb-search-toggle-btn); this middle grid column reveals the actual input
   between the logo and the icon cluster when toggled open. */
.rb-header-search {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 0;
}

.rb-search-expand-form {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 0;
	max-width: 520px;
	height: 48px;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 30px;
	background: transparent;
	opacity: 0;
	overflow: hidden;
	box-sizing: border-box;
	transition: width 350ms ease, opacity 300ms ease, padding 350ms ease, border-color 300ms ease, background-color 300ms ease;
}

.rb-header-search.is-open .rb-search-expand-form {
	width: 100%;
	opacity: 1;
	padding: 0 18px;
	border-color: var(--rb-gold);
	background: rgba(var(--rb-white-rgb), 0.04);
}

.rb-search-expand-icon {
	color: var(--rb-gold);
	font-size: 18px;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.rb-search-expand-input {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: 0;
	outline: 0;
	color: var(--rb-white);
	font-size: 15px;
}

.rb-search-expand-input::placeholder {
	color: rgba(var(--rb-white-rgb), 0.7);
}

.rb-search-expand-close {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: transparent;
	border: 0;
	border-left: 1px solid rgba(var(--rb-gold-rgb), 0.4);
	padding: 0 0 0 12px;
	color: var(--rb-white);
	cursor: pointer;
}

.rb-search-expand-close:hover {
	color: var(--rb-gold);
}

.rb-header-inner.rb-search-open .rb-search-toggle-btn {
	display: none !important;
}

.rb-logo {
	display: flex;
	justify-content: center;
}

.rb-logo-link {
	display: flex;
	align-items: center;
	gap: 14px;
}

.rb-logo-image {
	width: 132px;
	height: 132px;
	object-fit: contain;
}

.rb-brand-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.rb-logo-label {
	color: var(--rb-white);
	font-family: "Source Serif 4", serif;
	font-size: 35px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.rb-header-actions {
	justify-content: flex-end;
	gap: 10px;
}

.rb-icon-btn {
	color: var(--rb-white);
	border: 1px solid rgba(var(--rb-white-rgb), 0.28);
	border-radius: 999px;
	width: 40px;
	height: 40px;
	transition: all 0.25s ease;
}

.rb-icon-btn:hover {
	color: var(--rb-gold);
	border-color: rgba(var(--rb-gold-rgb), 0.65);
}

.rb-mobile-toggle {
	width: 40px;
	height: 40px;
	padding: 0;
	align-items: center;
	justify-content: center;
}

.rb-nav-row {
	background: var(--rb-header-footer-bg);
	border-bottom: 1px solid rgba(var(--rb-gold-rgb), 0.2);
}

.rb-nav-row-inner {
	min-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rb-nav {
	display: flex;
	justify-content: center;
	width: 100%;
}

.rb-menu {
	gap: 34px;
}

.rb-menu a {
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.1em;
	font-weight: 600;
}

.rb-menu a::after {
	bottom: -11px;
	height: 2px;
	background: var(--rb-gold);
}

@media (max-width: 768px) {
	.rb-header-inner {
		grid-template-columns: auto auto 1fr;
	}

	/* Account icon drops off the visible mobile header — still reachable via
	   the "My Account" link already present in the mobile nav drawer. */
	.rb-header-actions .rb-myaccount-btn {
		display: none !important;
	}

	/* No middle column on mobile, so the search bar drops into its own
	   full-width row below the logo/icons instead of expanding horizontally. */
	.rb-header-search {
		grid-column: 1 / -1;
		grid-row: 2;
		max-height: 0;
		overflow: hidden;
		transition: max-height 350ms ease;
	}

	.rb-header-search.is-open {
		max-height: 64px;
		margin-top: 12px;
		margin-bottom: 16px;
	}

	.rb-header-search .rb-search-expand-form {
		width: 100% !important;
		max-width: 100% !important;
	}

	.rb-logo {
		justify-content: flex-start;
	}

	.rb-nav-row {
		display: none;
	}
}

@media (max-width: 768px) {
	.rb-header-inner {
		min-height: auto;
		grid-template-rows: minmax(84px, auto) auto;
		column-gap: 10px;
		row-gap: 0;
	}

	.rb-logo-link {
		gap: 8px;
	}

	.rb-logo-image {
		width: 72px;
		height: 72px;
	}

	.rb-logo-label {
		font-size: 22px;
	}
}

@media (max-width: 440px) {
	.rb-header-actions .rb-myaccount-btn {
		display: none !important;
	}

	.rb-logo-label {
		font-size: 19px;
	}
}

@media (max-width: 375px) {
	.rb-header-actions .rb-myaccount-btn {
		display: none !important;
	}
	.rb-header-inner {
		grid-template-columns: auto minmax(0, 1fr) auto !important;
	}
	.rb-logo {
		min-width: 0;
	}
	.rb-logo-link {
		align-items: center;
		min-width: 0;
	}
	.rb-brand-text {
		min-width: 0;
	}
	.rb-logo-label {
		white-space: normal;
		line-height: 1.2;
		word-break: break-word;
	}
}

@media (max-width: 320px) {
	.rb-header-actions .rb-myaccount-btn, .rb-header-actions .rb-wishlist-btn {
		display: none !important;
	}
	.rb-header-actions {
		gap: 0;
	}
}

/* Breadcrumbs */
.rb-breadcrumb-bar {
	background: var(--rb-white);
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), .08);
}
.rb-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 18px 0;
	color: #697086;
	font-size: 14px;
	line-height: 1.3;
}
.rb-breadcrumbs a {
	color: #3f4658;
	transition: color .3s ease;
}
.rb-breadcrumbs a:hover {
	color: var(--rb-gold-2);
}
.rb-breadcrumbs span[aria-current="page"],
.rb-breadcrumbs li:last-child {
	color: #080022;
}
.rb-breadcrumb-separator {
	color: #a3a8b4;
}

/* Luxury WooCommerce PDP */
.rb-single-product-wrap {
	background: var(--rb-white);
	padding: 0 0 88px;
}
.rb-pdp {
	color: var(--pdp-text);
}
.rb-pdp .woocommerce-notices-wrapper {
	margin: 18px 0;
}
.rb-pdp-hero {
	display: grid;
	grid-template-columns: minmax(0, 40fr) minmax(320px, 60fr);
	gap: clamp(28px, 4vw, 54px);
	align-items: start;
	padding: 26px 0 30px;
}
.rb-pdp-gallery {
	min-width: 0;
}
.rb-pdp-main-media {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 16px;
	background: var(--pdp-cream);
	box-shadow: 0 18px 44px rgba(var(--rb-shadow-rgb), .11);
}
.rb-pdp-main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .45s ease, transform-origin .1s ease;
}
.rb-pdp-main-media:hover .rb-pdp-main-image {
	transform: scale(1.08);
}
.rb-pdp-wishlist {
	display: grid;
	place-items: center;
	border: 1px solid rgba(var(--rb-shadow-rgb), .12);
	background: rgba(var(--rb-white-rgb), .94);
	color: var(--pdp-navy);
	cursor: pointer;
	transition: transform .3s ease, border-color .3s ease, color .3s ease;
}
.rb-pdp-wishlist {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 26px;
}
.rb-pdp-wishlist:hover,
.rb-pdp-wishlist.is-active {
	transform: translateY(-2px);
	color: var(--pdp-gold);
	border-color: var(--pdp-gold);
}
.rb-pdp-gallery-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: rgba(var(--rb-white-rgb), .9);
	color: var(--pdp-navy);
	font-size: 31px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(var(--rb-shadow-rgb), .12);
	transform: translateY(-50%);
	transition: transform .3s ease, background .3s ease;
}
.rb-pdp-gallery-arrow:hover {
	background: var(--rb-white);
	transform: translateY(-50%) scale(1.06);
}
.rb-pdp-gallery-prev { left: 14px; }
.rb-pdp-gallery-next { right: 14px; }
.rb-pdp-thumbs {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(56px, 64px);
	justify-content: safe center;
	gap: 10px;
	overflow-x: auto;
	padding: 16px 2px 4px;
	scrollbar-width: thin;
}
.rb-pdp-thumb {
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(var(--rb-shadow-rgb), .12);
	border-radius: 10px;
	background: var(--rb-white);
	padding: 0;
	overflow: hidden;
	cursor: pointer;
	transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.rb-pdp-thumb.is-active,
.rb-pdp-thumb:hover {
	border-color: var(--pdp-gold);
	box-shadow: 0 10px 22px rgba(var(--rb-gold-2-rgb), .18);
	transform: translateY(-2px);
}
.rb-pdp-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.rb-pdp-summary {
	min-width: 0;
	padding-top: 8px;
}
.rb-pdp-title {
	color: var(--pdp-navy);
	font-size: clamp(20px, 1.8vw, 27px);
	line-height: 1.15;
	letter-spacing: 0;
	margin-bottom: 16px;
}
.rb-pdp-rating {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
	color: #5b6070;
	font-size: 15px;
}
.rb-pdp-rating .star-rating,
.rb-pdp-reviews .star-rating {
	color: var(--pdp-gold);
	float: none;
	margin: 0;
}
.rb-pdp-rating a {
	color: var(--pdp-navy);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.rb-pdp-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 4px;
}
.rb-pdp-price .price,
.rb-pdp-price > .amount {
	color: var(--rb-navy);
	font-size: clamp(29px, 3vw, 39px);
	font-weight: 800;
	text-decoration: none;
	line-height: 1;
}
.rb-pdp-price ins,
.rb-pdp-price ins .amount {
	color: var(--rb-danger) !important;
	font-size: clamp(29px, 3vw, 39px) !important;
	font-weight: 800;
	text-decoration: none;
}
.rb-pdp-price del,
.rb-pdp-price del .amount {
	color: var(--rb-navy) !important;
	font-size: 25px !important;
	opacity: .6;
	text-decoration: line-through;
}
.rb-pdp-price .rb-price-was {
	font-size: 25px !important;
	margin-left: 4px;
}
.rb-pdp-price .rb-price-was del {
	font-size: 1em !important;
	color: var(--rb-navy) !important;
}
.rb-pdp-price .rb-price-discount {
	font-size: 23px !important;
	color: var(--rb-success);
	font-weight: 700;
	margin-left: 8px;
}
.rb-pdp-discount {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	border-radius: 6px;
	background: #c9952e;
	color: var(--rb-white);
	font-size: 13px;
	font-weight: 800;
	padding: 6px 11px;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.rb-pdp-tax {
	margin: 0 0 20px;
	color: #5d6372;
	font-size: 15px;
}
.rb-pdp-offer {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 7px 16px;
	align-items: center;
	border: 1px solid rgba(var(--rb-gold-2-rgb), .55);
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(248,245,239,.95), rgba(var(--rb-white-rgb), .95));
	padding: 17px 20px;
	margin-bottom: 24px;
	box-shadow: 0 8px 24px rgba(var(--rb-shadow-rgb), .05);
}
.rb-pdp-offer strong,
.rb-pdp-offer span {
	grid-column: 1;
	color: var(--pdp-navy);
}
.rb-pdp-offer a {
	grid-column: 2;
	grid-row: 1 / span 2;
	color: var(--pdp-navy);
	font-size: 14px;
	font-weight: 600;
}
.rb-pdp-form .rb-native-variation-select,
.rb-pdp-form table.variations {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
}
.rb-pdp-option-row {
	margin-bottom: 20px;
}
.rb-pdp-option-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 10px;
	color: var(--pdp-navy);
	font-size: 15px;
	font-weight: 700;
}
.rb-size-guide-trigger {
	border: 0;
	background: transparent;
	color: var(--pdp-navy);
	font-size: 14px;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}
.rb-pdp-pill-group {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.rb-pdp-pill {
	min-width: 58px;
	height: 46px;
	border: 1px solid rgba(var(--rb-shadow-rgb), .16);
	border-radius: 8px;
	background: var(--rb-white);
	color: var(--pdp-navy);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: transform .3s ease, border-color .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}
.rb-pdp-pill:hover {
	border-color: var(--pdp-gold);
	transform: translateY(-2px);
}
.rb-pdp-pill.is-selected {
	background: var(--pdp-gold);
	border-color: var(--pdp-gold);
	color: var(--rb-white);
	box-shadow: 0 10px 22px rgba(var(--rb-gold-2-rgb), .25);
}
.rb-pdp-pill.is-disabled,
.rb-pdp-pill:disabled {
	background: repeating-linear-gradient(135deg, #f4f4f4, #f4f4f4 5px, #e7e7e7 5px, #e7e7e7 10px);
	border: 1px dashed rgba(var(--rb-shadow-rgb), .22);
	color: rgba(29,29,31,.4);
	opacity: 1;
	cursor: not-allowed;
	text-decoration: none;
	transform: none;
	box-shadow: none;
}
.rb-pdp-pill.is-disabled:hover,
.rb-pdp-pill:disabled:hover {
	border-color: rgba(var(--rb-shadow-rgb), .22);
	transform: none;
}

.rb-pdp .quantity {
	display: inline-grid;
	grid-template-columns: 44px 54px 44px;
	height: 48px;
	border: 1px solid rgba(var(--rb-shadow-rgb), .15);
	border-radius: 8px;
	overflow: hidden;
	margin: 0 0 20px;
	background: var(--rb-white);
}
.rb-qty-btn {
	-webkit-appearance: none;
	appearance: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 44px;
	height: 48px;
	margin: 0;
	padding: 0;
	line-height: 1;
	border: 0;
	background: var(--rb-white);
	color: var(--pdp-navy);
	font-family: inherit;
	font-size: 21px;
	font-weight: 700;
	cursor: pointer;
	transition: background .3s ease, color .3s ease;
}
.rb-qty-btn:hover {
	background: var(--pdp-cream);
	color: var(--pdp-gold);
}
.rb-pdp .quantity .qty {
	width: 54px;
	border: 0;
	border-inline: 1px solid rgba(var(--rb-shadow-rgb), .1);
	text-align: center;
	font-weight: 700;
	color: var(--pdp-navy);
	-moz-appearance: textfield;
}
.rb-pdp .quantity .qty::-webkit-outer-spin-button,
.rb-pdp .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.rb-pdp-cta-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 22px;
}
.rb-pdp-add,
.rb-pdp-buy {
	height: 60px;
	border-radius: 12px !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.rb-pdp-add {
	border: 1px solid var(--pdp-gold) !important;
	background: linear-gradient(135deg, #e1bd4a, #c69228) !important;
	color: var(--rb-white) !important;
	box-shadow: 0 14px 30px rgba(var(--rb-gold-2-rgb), .28);
}
.rb-pdp-buy {
	border: 1px solid var(--pdp-navy) !important;
	background: var(--rb-white) !important;
	color: var(--pdp-navy) !important;
	box-shadow: 0 10px 22px rgba(var(--rb-shadow-rgb), .08);
}
.rb-pdp-add:hover,
.rb-pdp-buy:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 36px rgba(var(--rb-shadow-rgb), .14);
}
.rb-pdp-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	border: 1px solid rgba(var(--rb-gold-2-rgb), .18);
	border-radius: 14px;
	padding: 12px;
	background: rgba(248,245,239,.64);
}
.rb-pdp-trust-grid span {
	display: grid;
	place-items: center;
	gap: 7px;
	min-height: 78px;
	border-radius: 10px;
	background: var(--rb-white);
	color: var(--pdp-navy);
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	box-shadow: 0 8px 18px rgba(var(--rb-shadow-rgb), .06);
}
.rb-pdp-trust-grid .dashicons {
	color: var(--pdp-gold);
	font-size: 24px;
	width: 24px;
	height: 24px;
}
.rb-pdp-share {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 14px;
}
.rb-pdp-share-label {
	font-size: 14px;
	font-weight: 700;
	color: var(--pdp-navy);
}
.rb-pdp-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--rb-white);
	border: 1px solid rgba(var(--rb-gold-2-rgb), .28);
	color: var(--pdp-navy);
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.rb-pdp-share-btn:hover {
	background: var(--pdp-navy);
	color: var(--rb-white);
	transform: translateY(-2px);
}
.rb-pdp-share-btn .dashicons {
	font-size: 17px;
	width: 17px;
	height: 17px;
}
.rb-pdp-info-grid {
	display: grid;
	grid-template-columns: minmax(280px, .9fr) minmax(0, 1.8fr);
	gap: 24px;
	margin: 36px 0 30px;
}
.rb-pdp-highlights,
.rb-pdp-accordion,
.rb-pdp-reviews {
	border: 1px solid var(--pdp-border);
	border-radius: 16px;
	background: rgba(var(--rb-white-rgb), .96);
	box-shadow: 0 14px 34px rgba(var(--rb-shadow-rgb), .07);
}
.rb-pdp-highlights {
	padding: 24px;
	background: linear-gradient(135deg, rgba(248,245,239,.96), var(--rb-white));
}
.rb-pdp-highlights h2,
.rb-pdp-review-score h2 {
	color: var(--pdp-navy);
	font-size: 25px;
	line-height: 1.1;
	margin-bottom: 22px;
}
.rb-pdp-highlights ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 18px;
}
.rb-pdp-highlights li {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 12px;
	align-items: start;
}
.rb-pdp-highlights .dashicons {
	color: var(--pdp-gold);
	font-size: 27px;
	width: 27px;
	height: 27px;
}
.rb-pdp-highlights b {
	display: block;
	color: var(--pdp-navy);
	font-size: 15px;
}
.rb-pdp-highlights span span,
.rb-pdp-highlights li span {
	color: #535a6b;
	font-size: 14px;
	line-height: 1.45;
}
.rb-pdp-accordion {
	overflow: hidden;
}
.rb-pdp-accordion-item + .rb-pdp-accordion-item {
	border-top: 1px solid rgba(var(--rb-shadow-rgb), .08);
}
.rb-pdp-accordion-item > button {
	width: 100%;
	min-height: 58px;
	border: 0;
	background: var(--rb-white);
	color: var(--pdp-navy);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 22px;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	text-align: left;
}
.rb-pdp-accordion-item .dashicons {
	transition: transform .3s ease;
}
.rb-pdp-accordion-item.is-open .dashicons {
	transform: rotate(180deg);
}
.rb-pdp-accordion-panel {
	max-height: 0;
	overflow: hidden;
	padding: 0 22px;
	color: #4a5060;
	font-size: 15px;
	line-height: 1.7;
	transition: max-height .34s ease, padding .34s ease;
}
.rb-pdp-accordion-item.is-open .rb-pdp-accordion-panel {
	max-height: 3000px;
	padding: 0 22px 20px;
}
.rb-pdp-reviews {
	display: grid;
	grid-template-columns: .75fr .85fr 1.8fr;
	gap: 24px;
	align-items: center;
	padding: 26px 30px;
	margin-bottom: 24px;
}
.rb-pdp-review-score strong {
	display: block;
	color: var(--pdp-navy);
	font-size: 59px;
	line-height: 1;
	margin-bottom: 6px;
}
.rb-pdp-review-score p {
	margin: 9px 0 0;
	color: #5c6370;
}
.rb-pdp-rating-bars {
	display: grid;
	gap: 9px;
}
.rb-pdp-rating-bars div {
	display: grid;
	grid-template-columns: 34px 1fr 42px;
	gap: 10px;
	align-items: center;
	font-size: 14px;
	color: var(--pdp-navy);
}
.rb-pdp-rating-bars b {
	display: block;
	height: 8px;
	border-radius: 999px;
	background: #eee;
	overflow: hidden;
}
.rb-pdp-rating-bars i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--pdp-gold);
}
.rb-pdp-rating-bars em {
	font-style: normal;
	color: var(--rb-gray);
}
.rb-pdp-review-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}
.rb-pdp-review-cards article {
	border: 1px solid rgba(var(--rb-gold-2-rgb), .22);
	border-radius: 12px;
	padding: 16px;
	background: var(--rb-white);
	min-height: 160px;
	box-shadow: 0 8px 20px rgba(var(--rb-shadow-rgb), .05);
}
.rb-pdp-review-cards img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 8px;
}
.rb-review-stars {
	color: var(--pdp-gold);
	letter-spacing: .08em;
	font-size: 14px;
}
.rb-pdp-review-cards p {
	margin: 9px 0;
	color: var(--rb-gray-dark);
	font-size: 14px;
	line-height: 1.5;
}
.rb-pdp-review-cards strong {
	display: block;
	color: var(--pdp-navy);
	font-size: 14px;
}
.rb-pdp-review-cards span {
	display: inline-flex;
	margin-top: 8px;
	color: var(--pdp-navy);
	font-size: 12px;
	font-weight: 700;
}
.rb-pdp-no-reviews {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--rb-gray);
	font-size: 14px;
}
.rb-pdp-review-form {
	grid-column: 1 / -1;
	margin-top: 10px;
	padding-top: 24px;
	border-top: 1px solid var(--pdp-border);
}
.rb-pdp-review-form #comments {
	display: none;
}
.rb-pdp-review-form .woocommerce-Reviews-title,
.rb-pdp-review-form #reply-title {
	color: var(--pdp-navy);
	font-size: 21px;
	margin-bottom: 16px;
}
.rb-pdp-review-form #reply-title small {
	display: none;
}
.rb-pdp-review-form .comment-form p {
	margin: 0 0 14px;
}
.rb-pdp-review-form label {
	display: block;
	margin-bottom: 6px;
	color: var(--pdp-navy);
	font-size: 14px;
	font-weight: 600;
}
.rb-pdp-review-form select,
.rb-pdp-review-form textarea,
.rb-pdp-review-form input[type="text"],
.rb-pdp-review-form input[type="email"] {
	width: 100%;
	max-width: 460px;
	padding: 11px 14px;
	border: 1px solid rgba(var(--rb-shadow-rgb), .15);
	border-radius: 8px;
	font-family: inherit;
	font-size: 15px;
	color: var(--pdp-navy);
}
.rb-pdp-review-form textarea {
	resize: vertical;
}
.rb-pdp-review-form .comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #5c6370;
}
.rb-pdp-review-form .comment-form-cookies-consent label {
	margin: 0;
	font-weight: 400;
}
.rb-pdp-review-form .form-submit input {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 28px;
	border: 0;
	border-radius: 8px;
	background: var(--pdp-navy);
	color: var(--rb-white);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	transition: background .3s ease;
}
.rb-pdp-review-form .form-submit input:hover {
	background: var(--pdp-gold);
}
.rb-size-guide-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: grid;
	place-items: center;
	padding: 20px;
	background: rgba(var(--rb-shadow-rgb), .62);
}
.rb-size-guide-modal[hidden] {
	display: none;
}
.rb-size-guide-dialog {
	position: relative;
	width: min(560px, 100%);
	border-radius: 16px;
	background: var(--rb-white);
	padding: 28px;
	box-shadow: 0 24px 60px rgba(var(--rb-shadow-rgb), .3);
}
.rb-size-guide-dialog h2 {
	color: var(--pdp-navy);
	font-size: 31px;
	margin-bottom: 18px;
}
.rb-size-guide-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: var(--pdp-cream);
	color: var(--pdp-navy);
	font-size: 25px;
	cursor: pointer;
}
.rb-size-guide-dialog table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}
.rb-size-guide-dialog th,
.rb-size-guide-dialog td {
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), .08);
	padding: 11px;
	text-align: left;
}
.rb-size-guide-dialog th {
	color: var(--pdp-navy);
	background: var(--pdp-cream);
}

@media (max-width: 1100px) {
	.rb-pdp-info-grid,
	.rb-pdp-reviews {
		grid-template-columns: 1fr;
	}
	.rb-pdp-review-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.rb-pdp-hero {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.rb-breadcrumbs {
		flex-wrap: wrap;
		row-gap: 4px;
		padding: 13px 0;
	}

	.rb-breadcrumbs li:last-child {
		min-width: 0;
		max-width: 100%;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.rb-single-product-wrap {
		padding-bottom: 56px;
	}
	.rb-pdp-hero {
		padding-top: 16px;
		gap: 24px;
	}
	.rb-pdp-title {
		font-size: 21px;
	}
	.rb-pdp-main-media {
		border-radius: 12px;
	}
	.rb-pdp-offer,
	.rb-pdp-cta-row {
		grid-template-columns: 1fr;
	}
	.rb-pdp-offer a {
		grid-column: 1;
		grid-row: auto;
	}
	.rb-pdp-trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.rb-pdp-reviews,
	.rb-pdp-highlights {
		padding: 20px;
	}
	.rb-pdp-review-cards {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 72%;
		grid-template-columns: none;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 4px;
	}
	.rb-pdp-review-cards article {
		scroll-snap-align: start;
	}
}

/* Wishlist styles */
.rb-wishlist-page-container {
	position: relative;
	min-height: 200px;
}
.rb-wishlist-page-container.is-loading {
	opacity: 0.6;
	pointer-events: none;
}
.rb-empty-wishlist {
	text-align: center;
	padding: 80px 20px;
	font-size: 19px;
	color: var(--rb-text-muted);
	font-family: "Source Serif 4", serif;
	grid-column: 1 / -1;
	width: 100%;
}
@keyframes rb-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.rb-wishlist-loading-spinner .dashicons.spin {
	display: inline-block;
	animation: rb-spin 1.2s infinite linear;
}
.rb-wishlist-loop {
	cursor: pointer;
	padding: 0;
	font-family: inherit;
	transition: background-color 0.25s, color 0.25s, transform 0.2s;
}
.rb-wishlist-loop:hover {
	background-color: #f7f7f7;
	transform: scale(1.05);
}
.rb-wishlist-loop.is-active {
	color: var(--rb-danger) !important;
}

/* Custom price layout: was [Strike-through Red Price] */
.rb-price-was {
	font-size: 0.9em;
	color: var(--rb-text-muted);
	margin-left: 6px;
	font-weight: 400;
}
.rb-price-was del,
.price del,
.price del span.amount {
	color: var(--rb-text-light) !important;
	text-decoration: line-through;
	font-size: 0.95em !important;
}

/* Mini Cart Drawer */
body.rb-mini-cart-open {
	overflow: hidden;
}
.rb-mini-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	justify-content: flex-end;
}
.rb-mini-cart-drawer[hidden] {
	display: none !important;
}
.rb-mini-cart-overlay {
	position: absolute;
	inset: 0;
	background: rgba(var(--rb-header-footer-bg-rgb), 0.4);
	backdrop-filter: blur(4px);
	transition: opacity 0.3s ease;
}
.rb-mini-cart-content {
	position: relative;
	width: min(440px, 92vw);
	height: 100%;
	background: var(--rb-white);
	box-shadow: -10px 0 30px rgba(var(--rb-header-footer-bg-rgb), 0.15);
	display: flex;
	flex-direction: column;
	animation: rb-slide-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 1;
}
@keyframes rb-slide-in {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

/* Loading Overlay state */
.rb-mini-cart-content.loading::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(var(--rb-white-rgb), 0.6);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rb-mini-cart-content.loading::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	margin-left: -16px;
	border: 3px solid rgba(var(--rb-gold-muted-rgb), 0.2);
	border-top-color: var(--rb-gold-muted);
	border-radius: 50%;
	animation: rb-spin 0.8s linear infinite;
	z-index: 11;
}
@keyframes rb-spin {
	to { transform: rotate(360deg); }
}

/* Header */
.rb-mini-cart-header {
	padding: 20px 24px;
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), 0.06);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.rb-mini-cart-title-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}
.rb-bag-icon-circle {
	width: 36px;
	height: 36px;
	background: var(--rb-navy);
	color: var(--rb-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rb-mini-cart-header h3 {
	margin: 0;
	font-family: 'Source Serif 4', serif;
	font-size: 23px;
	font-weight: 700;
	color: var(--rb-navy);
}
.rb-cart-count-badge {
	background: var(--rb-gold-muted);
	color: var(--rb-white);
	font-size: 14px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 12px;
}
.rb-mini-cart-close {
	background: transparent;
	border: 0;
	font-size: 27px;
	cursor: pointer;
	color: var(--rb-navy);
	line-height: 1;
	padding: 4px;
	transition: transform 0.2s;
}
.rb-mini-cart-close:hover {
	transform: scale(1.1);
}

/* WooCommerce shopping cart content container override */
.rb-mini-cart-drawer .widget_shopping_cart_content {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/* Shipping Progress Bar */
.rb-shipping-progress-box {
	background: #fdfbf7;
	border: 1px solid rgba(var(--rb-gold-muted-rgb), 0.2);
	border-radius: 10px;
	padding: 14px 16px;
	margin: 16px 20px;
}
.rb-progress-text-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}
.rb-truck-icon {
	color: var(--rb-navy);
	display: flex;
	align-items: center;
}
.rb-progress-msg {
	font-size: 14px;
	color: var(--rb-text-muted);
	font-weight: 500;
}
.rb-progress-msg .highlight {
	color: var(--rb-gold-muted);
	font-weight: 700;
}
.rb-progress-bar-container {
	height: 6px;
	background: #faeeda;
	border-radius: 3px;
	overflow: hidden;
}
.rb-progress-bar-fill {
	height: 100%;
	background: var(--rb-gold-muted);
	border-radius: 3px;
	transition: width 0.3s ease;
}
.rb-progress-bar-labels {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 2px;
	font-size: 13px;
	font-weight: 600;
	color: var(--rb-text-muted);
	margin-top: 6px;
}
.rb-progress-bar-labels .progress-current {
	color: var(--rb-navy);
	font-weight: 700;
}
.rb-progress-bar-labels .progress-divider {
	color: #bbb;
}

/* Scrollable Cart Items Container */
.rb-mini-cart-items-wrapper {
	flex: 1;
	overflow-y: auto;
	padding: 0 20px;
}
.rb-mini-cart-items-wrapper::-webkit-scrollbar {
	width: 6px;
}
.rb-mini-cart-items-wrapper::-webkit-scrollbar-track {
	background: transparent;
}
.rb-mini-cart-items-wrapper::-webkit-scrollbar-thumb {
	background: rgba(var(--rb-shadow-rgb), 0.1);
	border-radius: 3px;
}
.rb-mini-cart-drawer ul.cart_list {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Product Cards */
/* WooCommerce's own ".cart_list li" / ".woocommerce.widget_shopping_cart .cart_list li"
   rules (only loaded on WC-context pages like shop/category) outrank this
   selector's specificity and reset padding/list-style on the <li> itself —
   force ours to win everywhere so the card doesn't shrink on those pages. */
.rb-cart-card {
	display: flex !important;
	gap: 16px;
	border: 1px solid rgba(var(--rb-shadow-rgb), 0.06);
	border-radius: 12px;
	padding: 16px !important;
	margin: 0 0 16px !important;
	background: var(--rb-white);
	box-shadow: 0 4px 12px rgba(var(--rb-header-footer-bg-rgb), 0.01);
	list-style: none !important;
	position: static !important;
}
.rb-cart-card-img {
	width: 90px;
	height: 110px;
	flex-shrink: 0;
}
/* WooCommerce's own ".woocommerce ul.product_list_widget li img" rule outranks
   our selector's specificity and shrinks/floats this thumbnail on WC-context
   pages (shop/category) — force our sizing to win everywhere. */
.rb-cart-card-img img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 8px;
	float: none !important;
	margin: 0 !important;
	box-shadow: none;
}
.rb-cart-card-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 8px;
}
.rb-cart-card-header-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
}
.rb-cart-card-title {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--rb-navy);
	line-height: 1.4;
}
.rb-cart-card-title a {
	color: var(--rb-navy);
	text-decoration: none;
}
.rb-cart-card-title a:hover {
	color: var(--rb-gold-muted);
}
.rb-cart-card-remove {
	color: var(--rb-danger) !important;
	opacity: 0.8;
	padding: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s, transform 0.2s;
	text-decoration: none !important;
}
.rb-cart-card-remove:hover {
	opacity: 1;
	transform: scale(1.1);
}
.rb-cart-card-variations {
	margin-top: 4px;
	font-size: 13px;
	color: var(--rb-text-muted);
}
.rb-cart-card-variations .variation-item .highlight {
	color: var(--rb-gold-muted);
	font-weight: 700;
}
.rb-cart-card-footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
}
.rb-cart-card-price {
	font-size: 17px;
	font-weight: 700;
	color: var(--rb-navy);
}

/* Quantity Selector */
.rb-qty-selector {
	display: flex;
	align-items: center;
	border: 1px solid #faeeda;
	background: var(--rb-white);
	border-radius: 20px;
	padding: 2px 4px;
}
.rb-qty-selector .rb-qty-minus,
.rb-qty-selector .rb-qty-plus {
	background: none;
	border: none;
	width: 24px;
	height: 24px;
	font-size: 17px;
	color: var(--rb-gold-muted);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	padding: 0;
	line-height: 1;
}
.rb-qty-input {
	width: 28px;
	border: 0 !important;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--rb-navy);
	padding: 0;
	background: transparent;
	pointer-events: none;
	margin: 0 !important;
}
.rb-qty-input::-webkit-outer-spin-button,
.rb-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Complete Your Look (Upsells Slider) */
.rb-upsell-section {
	padding: 16px 20px;
	border-top: 1px solid rgba(var(--rb-shadow-rgb), 0.05);
	background: var(--rb-white);
}
.rb-upsell-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}
.rb-upsell-header h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--rb-navy);
	display: flex;
	align-items: center;
	gap: 6px;
}
.rb-upsell-header h4 .sparkle-icon {
	color: var(--rb-gold-muted);
	font-size: 16px;
}
.rb-upsell-header .view-all-link {
	font-size: 13px;
	color: var(--rb-text-muted);
	font-weight: 600;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 2px;
}
.rb-upsell-header .view-all-link:hover {
	color: var(--rb-gold-muted);
}
.rb-upsell-slider {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 8px;
	scrollbar-width: thin;
}
.rb-upsell-slider::-webkit-scrollbar {
	height: 4px;
}
.rb-upsell-slider::-webkit-scrollbar-track {
	background: transparent;
}
.rb-upsell-slider::-webkit-scrollbar-thumb {
	background: rgba(var(--rb-shadow-rgb), 0.06);
	border-radius: 2px;
}
.rb-upsell-card {
	min-width: 120px;
	width: 120px;
	border: 1px solid rgba(var(--rb-shadow-rgb), 0.06);
	border-radius: 10px;
	padding: 8px;
	background: var(--rb-white);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 2px 8px rgba(var(--rb-header-footer-bg-rgb), 0.01);
}
.rb-upsell-card-img {
	width: 100%;
	height: 90px;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 6px;
}
.rb-upsell-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.rb-upsell-card-title {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--rb-text-muted);
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.rb-upsell-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.rb-upsell-card-footer .price {
	font-size: 13px;
	font-weight: 700;
	color: var(--rb-navy);
}
.rb-add-upsell-btn {
	width: 22px;
	height: 22px;
	background: var(--rb-gold-muted);
	color: var(--rb-white);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	padding: 0;
	transition: background 0.2s, transform 0.2s;
}
.rb-add-upsell-btn:hover {
	background: var(--rb-navy);
	transform: scale(1.1);
}

/* Totals Box */
.rb-cart-totals-box {
	background: #fdfbf7;
	border-top: 1px solid rgba(var(--rb-shadow-rgb), 0.06);
	padding: 20px 24px;
}
.totals-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 15px;
	color: var(--rb-text-muted);
	margin-bottom: 8px;
}
.totals-row .label {
	font-weight: 500;
}
.totals-row .value {
	font-weight: 700;
	color: var(--rb-navy);
}
.totals-row .shipping-val.free {
	color: var(--rb-success);
}
.totals-row.coupon-row {
	color: var(--rb-success);
}
.totals-row.coupon-row .value {
	color: var(--rb-success);
}
.totals-row.save-row {
	color: var(--rb-success);
	font-weight: 600;
}
.totals-row.save-row .value {
	color: var(--rb-success);
}
.rb-remove-coupon-link {
	font-size: 12px;
	color: #999;
	margin-left: 6px;
	text-decoration: none;
}
.rb-remove-coupon-link:hover {
	color: var(--rb-danger);
}
.totals-row.total-row {
	border-top: 1px solid rgba(var(--rb-shadow-rgb), 0.05);
	padding-top: 8px;
	margin-top: 8px;
	margin-bottom: 0;
}
.totals-row.total-row .label {
	font-size: 17px;
	font-weight: 700;
	color: var(--rb-navy);
}
.totals-row.total-row .value {
	font-size: 19px;
	font-weight: 800;
	color: var(--rb-navy);
}

/* View Cart CTA */
.rb-mini-cart-actions {
	padding: 16px 24px;
	background: var(--rb-white);
	border-top: 1px solid rgba(var(--rb-shadow-rgb), 0.05);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.rb-btn-view-cart {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	text-align: center;
	transition: background 0.2s, color 0.2s;
	background: var(--rb-white);
	color: var(--rb-navy) !important;
	border: 1px solid var(--rb-navy);
}
.rb-btn-view-cart:hover {
	background: #f8f8fb;
}

/* Empty State styling */
.rb-mini-cart-empty {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
	text-align: center;
}
.rb-mini-cart-empty .empty-icon {
	color: var(--rb-navy);
	opacity: 0.15;
	margin-bottom: 16px;
}
.rb-mini-cart-empty .empty-msg {
	font-size: 16px;
	font-weight: 500;
	color: var(--rb-text-muted);
	margin: 0 0 24px;
}
.rb-btn-shop-now {
	display: inline-block;
	background: var(--rb-navy);
	color: var(--rb-white) !important;
	font-weight: 700;
	font-size: 14px;
	padding: 14px 28px;
	border-radius: 8px;
	text-decoration: none !important;
	transition: background 0.2s;
}
.rb-btn-shop-now:hover {
	background: var(--rb-gold-muted);
}

/* Order Tracking Page Form */

/* Order Tracking Page Form */
.woocommerce-form-track-order {
	max-width: 600px;
	margin: 40px auto;
	padding: 40px;
	border: 1px solid var(--rb-border-gold);
	border-radius: 12px;
	background: var(--rb-white);
	box-shadow: 0 10px 30px rgba(var(--rb-header-footer-bg-rgb), 0.05);
}
.woocommerce-form-track-order p {
	margin-bottom: 20px;
}
.woocommerce-form-track-order label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--rb-navy);
}
.woocommerce-form-track-order input.input-text {
	width: 100%;
	padding: 12px;
	border: 1px solid rgba(var(--rb-shadow-rgb), 0.15);
	border-radius: 8px;
	font-family: inherit;
	font-size: 15px;
	background: #fafafa;
}
.woocommerce-form-track-order input.input-text:focus {
	outline: none;
	border-color: var(--rb-gold-muted);
	background: var(--rb-white);
}
.woocommerce-form-track-order button.button {
	width: 100%;
	padding: 14px;
	background: var(--rb-navy);
	color: var(--rb-white);
	border: 0;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
	text-transform: uppercase;
	transition: background-color 0.25s;
}
.woocommerce-form-track-order button.button:hover {
	background: #14226d;
}
.woocommerce-order-details {
	margin-top: 40px;
	padding: 30px;
	border: 1px solid rgba(var(--rb-shadow-rgb), 0.08);
	border-radius: 12px;
	background: var(--rb-white);
}

/* Redesigned Product Card Styling */
.rb-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--rb-white);
	border: 1px solid rgba(var(--rb-shadow-rgb), 0.05);
	border-radius: 16px !important;
	padding: 16px !important;
	box-shadow: 0 5px 15px rgba(var(--rb-header-footer-bg-rgb), 0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rb-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(var(--rb-header-footer-bg-rgb), 0.06);
}
.rb-product-card .rb-wishlist-loop {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 10;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--rb-white);
	border: none;
	box-shadow: 0 4px 10px rgba(var(--rb-header-footer-bg-rgb), 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--rb-navy);
	transition: background-color 0.2s, color 0.2s, transform 0.2s;
	padding: 0;
}
.rb-product-card .rb-wishlist-loop:hover {
	transform: scale(1.08);
}
.rb-product-card .rb-wishlist-loop.active {
	background: var(--rb-danger);
	color: var(--rb-white);
}
.rb-product-badges {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.rb-product-badge {
	background: var(--rb-gold-muted);
	color: var(--rb-white);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 6px rgba(var(--rb-black-rgb), 0.05);
}
.rb-product-badge.sale {
	background: var(--rb-danger);
}
.rb-product-media {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 16px;
}
.rb-product-media img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/5;
	object-fit: cover;
	border-radius: 12px;
	transition: transform 0.5s ease;
}
.rb-product-card:hover .rb-product-media img {
	transform: scale(1.03);
}
.rb-product-info {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.rb-product-card .woocommerce-loop-product__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--rb-navy);
	line-height: 1.4;
	margin: 0 0 8px;
	min-height: 44px;
}
.rb-product-title-main {
	display: block;
}
.rb-product-subtitle {
	display: block;
	font-size: 13px;
	color: var(--rb-text-light);
	font-weight: 500;
	margin-top: 2px;
}
.rb-product-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}
.rb-stars {
	color: var(--rb-gold-muted);
	font-size: 14px;
	letter-spacing: -1px;
	display: flex;
}
.rb-stars .star.filled {
	color: var(--rb-gold-muted);
}
.rb-stars .star.empty {
	color: #faeeda;
}
.rb-rating-val {
	font-size: 13px;
	font-weight: 700;
	color: var(--rb-navy);
}
.rb-rating-count {
	font-size: 13px;
	color: var(--rb-text-light);
	font-weight: 500;
}
.rb-product-card .price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 21px !important;
	font-weight: 800 !important;
	color: var(--rb-navy);
	margin-bottom: 12px !important;
}
.rb-product-card .price ins {
	text-decoration: none;
	color: var(--rb-danger) !important;
	font-weight: 800;
}
.rb-product-card .price .rb-price-was {
	font-size: 19px !important;
	color: var(--rb-text-light);
	font-weight: 500;
	margin-left: 4px;
}
.rb-product-card .price .rb-price-was del {
	color: var(--rb-navy) !important;
	text-decoration: line-through;
	font-size: 1em !important;
}
.rb-product-card .added_to_cart,
.rb-pdp-cta-row .added_to_cart {
	display: none !important;
}
.rb-price-discount {
	color: var(--rb-success);
	font-weight: 700;
	font-size: 19px !important;
	margin-left: 6px;
}
.rb-product-meta-row {
	margin-bottom: 16px;
}
.rb-meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fdfbf7;
	border: 1px solid rgba(var(--rb-gold-muted-rgb), 0.15);
	border-radius: 15px;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 600;
	color: var(--rb-text-muted);
}
.rb-meta-pill .leaf-icon {
	color: var(--rb-gold-muted);
	display: flex;
	align-items: center;
}
.rb-product-card .rb-product-actions {
	margin-top: auto;
}
.rb-product-card .rb-product-actions a.rb-add-to-bag-btn {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	background: var(--rb-gold-muted) !important;
	color: var(--rb-white) !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 12px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	cursor: pointer !important;
	transition: background-color 0.2s, transform 0.2s !important;
	height: auto !important;
	line-height: 1.2 !important;
	margin: 0 !important;
	text-decoration: none !important;
}
.rb-product-card .rb-product-actions a.rb-add-to-bag-btn:hover {
	background: var(--rb-gold-dark) !important;
}

/* Wishlist redesign: Remove circle background and show transparent loop heart button on shop & PDP */
.rb-wishlist-loop,
.rb-product-card .rb-wishlist-loop,
.rb-pdp-wishlist {
	position: absolute !important;
	right: 16px !important;
	top: 16px !important;
	width: 32px !important;
	height: 32px !important;
	border-radius: 0 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	color: var(--rb-white) !important;
	padding: 0 !important;
	z-index: 10 !important;
	transition: transform 0.2s !important;
}
.rb-wishlist-loop:hover,
.rb-product-card .rb-wishlist-loop:hover,
.rb-pdp-wishlist:hover {
	background: transparent !important;
	transform: scale(1.15) !important;
}
.rb-wishlist-loop svg,
.rb-product-card .rb-wishlist-loop svg,
.rb-pdp-wishlist svg {
	width: 24px !important;
	height: 24px !important;
	fill: none !important;
	stroke: var(--rb-gold) !important;
	stroke-width: 2 !important;
	filter: none !important;
	transition: fill 0.25s ease, stroke 0.25s ease !important;
}
.rb-wishlist-loop.is-active svg,
.rb-wishlist-loop.active svg,
.rb-product-card .rb-wishlist-loop.is-active svg,
.rb-product-card .rb-wishlist-loop.active svg,
.rb-pdp-wishlist.is-active svg,
.rb-pdp-wishlist.active svg {
	fill: #ff3b30 !important;
	stroke: #ff3b30 !important;
}

/* Header Search, Wishlist & My Account Icons: remove circle design and make them larger */
.rb-header-actions .rb-search-toggle-btn,
.rb-header-actions .rb-wishlist-btn,
.rb-header-actions .rb-myaccount-btn {
	width: 40px !important;
	height: 40px !important;
	padding: 4px;
	box-shadow: none !important;
	display: inline-flex;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer;
}
.rb-header-actions .rb-search-toggle-btn .dashicons-search,
.rb-header-actions .rb-wishlist-btn .rb-wishlist-heart-icon,
.rb-header-actions .rb-myaccount-btn .dashicons-admin-users {
	font-size: 26px !important;
	width: 26px !important;
	height: 26px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: transform 0.2s, color 0.2s !important;
	color: var(--rb-white) !important;
}
.rb-header-actions .rb-wishlist-btn .rb-wishlist-heart-icon {
	fill: currentColor !important;
}
.rb-header-actions .rb-search-toggle-btn:hover .dashicons-search,
.rb-header-actions .rb-wishlist-btn:hover .rb-wishlist-heart-icon,
.rb-header-actions .rb-myaccount-btn:hover .dashicons-admin-users {
	transform: scale(1.1) !important;
	color: var(--rb-gold) !important;
}
.rb-header-actions .rb-wishlist-btn.has-wishlist-items .rb-wishlist-heart-icon {
	color: var(--rb-gold) !important;
	fill: currentColor !important;
}

/* Ensure all WooCommerce loop buttons inside rb-product-card are gold with white text */
.rb-product-card .rb-product-actions a.button,
.rb-product-card .rb-product-actions button.button {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	background: var(--rb-gold-muted) !important;
	color: var(--rb-white) !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 12px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	cursor: pointer !important;
	transition: background-color 0.2s, transform 0.2s !important;
	height: auto !important;
	line-height: 1.2 !important;
	margin: 0 !important;
	text-decoration: none !important;
	position: relative !important;
}
/* WooCommerce's default .loading::after spinner uses a fixed "top: .618em"
   offset sized for its stock button — override so it centers on our custom
   flex button instead. */
.rb-product-actions a.button.loading::after,
.rb-product-actions button.button.loading::after,
.rb-product-card .rb-product-actions a.rb-add-to-bag-btn.loading::after {
	top: 50% !important;
	right: 14px !important;
	transform: translateY(-50%);
}
.rb-product-card .rb-product-actions a.button:hover,
.rb-product-card .rb-product-actions button.button:hover {
	background: var(--rb-gold-dark) !important;
}

/* Search Results Page Custom Styling */
.rb-search-header-row {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eaeaea;
}
.rb-search-title {
	font-size: 29px;
	font-weight: 700;
	color: var(--rb-navy);
	font-family: "Source Serif 4", serif;
	margin: 0;
}
.rb-no-results {
	font-size: 17px;
	color: var(--rb-text-muted);
	padding: 40px 0;
	text-align: center;
}

/* AJAX Add to Cart animation states */
.rb-product-actions a.button.is-adding,
.rb-product-actions button.button.is-adding,
.rb-product-card .rb-product-actions a.rb-add-to-bag-btn.is-adding {
	background: var(--rb-gold-dark) !important;
	opacity: 0.8;
	cursor: wait !important;
}
.rb-product-actions a.button.is-added,
.rb-product-actions button.button.is-added,
.rb-product-card .rb-product-actions a.rb-add-to-bag-btn.is-added {
	background: var(--rb-success) !important; /* Success Green */
	color: var(--rb-white) !important;
	transform: scale(1.02);
}

/* WooCommerce Login & Registration Split Layout */
.rb-login-page-wrap {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	min-height: 650px;
	background: var(--rb-white);
	border-radius: 16px;
	box-shadow: 0 12px 36px rgba(var(--rb-shadow-rgb), 0.05);
	overflow: hidden;
	margin: 40px 0;
	border: 1px solid #f0f0f5;
}

.rb-login-left-col {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 60px;
}

.rb-login-form-container,
.rb-register-form-container {
	width: 100%;
	max-width: 440px;
}

.rb-login-form-container h2,
.rb-register-form-container h2 {
	font-size: 33px;
	font-weight: 700;
	color: var(--rb-navy);
	font-family: "Source Serif 4", serif;
	margin-bottom: 24px;
}

.rb-login-form-container form,
.rb-register-form-container form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.rb-login-form-container label,
.rb-register-form-container label {
	font-size: 15px;
	font-weight: 600;
	color: var(--rb-navy-alt);
	margin-bottom: 6px;
	display: block;
}

.rb-login-form-container input[type="text"],
.rb-login-form-container input[type="password"],
.rb-login-form-container input[type="email"],
.rb-register-form-container input[type="text"],
.rb-register-form-container input[type="password"],
.rb-register-form-container input[type="email"] {
	width: 100%;
	height: 48px;
	border: 1px solid #dcdce6;
	border-radius: 8px;
	padding: 0 16px;
	font-size: 15px;
	color: var(--rb-navy);
	transition: all 0.2s ease;
	outline: none;
}

.rb-login-form-container input:focus,
.rb-register-form-container input:focus {
	border-color: var(--rb-gold-muted);
	box-shadow: 0 0 0 3px rgba(var(--rb-gold-muted-rgb), 0.15);
}

.rb-remember-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 6px;
}

.rb-remember-row label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	cursor: pointer;
}

.rb-remember-row input[type="checkbox"] {
	accent-color: var(--rb-gold-muted);
	width: 16px;
	height: 16px;
}

.rb-login-form-container button[type="submit"],
.rb-register-form-container button[type="submit"] {
	height: 48px;
	background: var(--rb-gold-muted) !important;
	color: var(--rb-white) !important;
	border: none !important;
	border-radius: 8px !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background-color 0.2s ease !important;
	margin-top: 10px;
}

.rb-login-form-container button[type="submit"]:hover,
.rb-register-form-container button[type="submit"]:hover {
	background: var(--rb-gold-dark) !important;
}

.rb-login-form-container .lost_password {
	margin: 0;
	text-align: right;
}

.rb-login-form-container .lost_password a {
	color: var(--rb-text-light);
	font-size: 14px;
	text-decoration: none;
	transition: color 0.2s;
}

.rb-login-form-container .lost_password a:hover {
	color: var(--rb-gold-muted);
}

.rb-toggle-form-link {
	margin-top: 30px;
	font-size: 15px;
	color: var(--rb-text-muted);
	text-align: center;
	border-top: 1px solid #eaeaea;
	padding-top: 20px;
}

.rb-toggle-form-link a {
	color: var(--rb-gold-muted);
	font-weight: 700;
	text-decoration: none;
}

.rb-toggle-form-link a:hover {
	text-decoration: underline;
}

.rb-login-right-col {
	position: relative;
}

.rb-login-banner {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 40px;
}

.rb-banner-overlay {
	background: linear-gradient(360deg, rgba(var(--rb-shadow-rgb), 0.85) 0%, rgba(var(--rb-shadow-rgb), 0.4) 60%, rgba(var(--rb-shadow-rgb), 0) 100%);
	position: absolute;
	inset: 0;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: var(--rb-white);
}

.rb-banner-overlay h3 {
	font-size: 29px;
	font-weight: 700;
	margin: 0 0 8px;
	font-family: "Source Serif 4", serif;
	letter-spacing: 0.5px;
	color: var(--rb-white);
}

.rb-banner-overlay p {
	font-size: 15px;
	line-height: 1.5;
	color: rgba(var(--rb-white-rgb), 0.85);
	margin: 0;
}

.rb-password-note {
	font-size: 14px;
	color: var(--rb-text-muted);
	line-height: 1.4;
	margin: 0;
}

@media (max-width: 991px) {
	.rb-login-page-wrap {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.rb-login-right-col {
		display: none;
	}
	.rb-login-left-col {
		padding: 40px 30px;
	}
}

/* Tablet range (577px-768px): the 768px "mobile" breakpoint above collapses
   these to a single column, but real tablets (e.g. 768px portrait) land in
   this range too — restore 2-per-row layouts for tablet. */
@media (min-width: 577px) and (max-width: 768px) {
	.rb-cat-grid {
		grid-template-columns: repeat(2, minmax(0,1fr)) !important;
	}
	.rb-launch-grid {
		grid-template-columns: repeat(2, minmax(220px,1fr)) !important;
	}
	.rb-launch-grid.rb-launch-grid-count-1 {
		grid-template-columns: minmax(280px, 360px) !important;
	}
	.rb-footer-grid {
		grid-template-columns: repeat(2, minmax(0,1fr)) !important;
	}
	.rb-footer-about-col {
		grid-column: 1 / -1;
	}
	.rb-footer-vip-col {
		grid-column: 1 / -1;
	}
}

/* ==========================================================================
   Cart & Checkout pages
   ========================================================================== */
.rb-cart-page,
.rb-checkout-page {
	padding: 30px 0 60px;
}
.rb-cart-title {
	color: var(--rb-navy);
	font-size: clamp(29px, 3vw, 39px);
	margin-bottom: 6px;
}
.rb-cart-item-count {
	color: var(--rb-gray);
	font-size: 15px;
	margin: 0 0 24px;
}
.rb-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 24px;
	align-items: start;
}
.rb-cart-main {
	min-width: 0;
}
.rb-cart-table {
	border: 1px solid var(--pdp-border);
	border-radius: 16px;
	background: var(--rb-white);
	box-shadow: 0 14px 34px rgba(var(--rb-shadow-rgb), .06);
	overflow: hidden;
}
.rb-cart-table-head {
	display: grid;
	grid-template-columns: minmax(0,1fr) 130px 160px 120px;
	gap: 16px;
	padding: 18px 24px;
	background: var(--pdp-cream);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--rb-gray);
}
.rb-cart-row {
	display: grid;
	grid-template-columns: minmax(0,1fr) 130px 160px 120px;
	gap: 16px;
	align-items: center;
	padding: 22px 24px;
	border-top: 1px solid rgba(var(--rb-shadow-rgb), .06);
}
.rb-cart-row-product {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}
.rb-cart-row-img {
	flex: 0 0 auto;
	width: 84px;
	height: 84px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--pdp-cream);
}
.rb-cart-row-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.rb-cart-row-info {
	min-width: 0;
}
.rb-cart-row-name {
	margin: 0 0 4px;
	font-family: "Source Serif 4", serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--rb-navy);
	line-height: 1.35;
}
.rb-cart-row-meta {
	font-size: 13px;
	color: var(--rb-gray);
	margin-bottom: 4px;
}
.rb-cart-row-meta .variation {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
}
.rb-cart-row-meta .variation dt,
.rb-cart-row-meta .variation dd {
	display: inline;
	margin: 0;
	font-size: 13px;
}
.rb-cart-row-meta .variation dt::after {
	content: ":";
}
.rb-cart-row-meta .variation-item .highlight {
	color: var(--rb-gold-muted);
	font-weight: 700;
}
.rb-cart-row-stock {
	font-size: 13px;
	font-weight: 600;
}
.rb-cart-row-stock .in-stock {
	color: var(--rb-success);
}
.rb-cart-row-stock .out-of-stock {
	color: var(--rb-danger);
}
.rb-cart-row-price,
.rb-cart-row-total {
	font-size: 15px;
	font-weight: 700;
	color: var(--rb-navy);
}
.rb-cart-row-price del {
	color: var(--rb-navy);
	font-weight: 500;
	margin-right: 6px;
}
.rb-cart-row-price ins {
	text-decoration: none;
	color: var(--rb-danger);
	font-weight: 800;
}
.rb-cart-row-price .rb-price-discount {
	display: none;
}
.rb-cart-row-qty .quantity {
	display: inline-grid;
	grid-template-columns: 40px 48px 40px;
	height: 44px;
	border: 1px solid rgba(var(--rb-shadow-rgb), .15);
	border-radius: 8px;
	overflow: hidden;
	background: var(--rb-white);
}
.rb-cart-row-qty .quantity .qty {
	width: 48px;
	border: 0;
	border-inline: 1px solid rgba(var(--rb-shadow-rgb), .1);
	text-align: center;
	font-weight: 700;
	color: var(--pdp-navy);
	-moz-appearance: textfield;
}
.rb-cart-row-qty .quantity .qty::-webkit-outer-spin-button,
.rb-cart-row-qty .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.rb-cart-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	border-top: 1px solid rgba(var(--rb-shadow-rgb), .06);
	flex-wrap: wrap;
}
.rb-cart-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--rb-white);
	border: 1px solid rgba(var(--rb-shadow-rgb), .15);
	border-radius: 8px;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 700;
	color: var(--rb-navy);
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease;
}
.rb-cart-btn-outline:hover {
	border-color: var(--pdp-gold);
	color: var(--pdp-gold);
}
.rb-cart-btn-outline .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}
.rb-cart-sidebar {
	min-width: 0;
}
.rb-order-summary-box {
	position: sticky;
	top: 138px;
	border: 1px solid var(--pdp-border);
	border-radius: 16px;
	background: var(--rb-white);
	box-shadow: 0 14px 34px rgba(var(--rb-shadow-rgb), .06);
	padding: 26px;
}
.rb-order-summary-box h2 {
	font-size: 23px;
	color: var(--rb-navy);
	margin-bottom: 18px;
}
.rb-summary-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 0;
	font-size: 15px;
	color: var(--rb-gray-dark);
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), .06);
}
.rb-summary-row .dashicons {
	font-size: 15px;
	width: 15px;
	height: 15px;
	vertical-align: -2px;
}
.rb-summary-discount {
	color: var(--rb-success);
}
.rb-summary-save {
	color: var(--rb-success);
	font-weight: 600;
}
.rb-summary-total {
	border-bottom: 0;
	padding-top: 16px;
	font-size: 18px;
	font-weight: 800;
	color: var(--rb-navy);
}
.rb-summary-total small {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: var(--rb-gray-light);
}
.rb-proceed-to-checkout {
	margin-top: 18px;
}
.rb-proceed-to-checkout .checkout-button,
.rb-proceed-to-checkout a.wc-forward {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 50px;
	border-radius: 8px !important;
	background: var(--rb-navy) !important;
	color: var(--rb-white) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-decoration: none !important;
	transition: background .2s ease;
}
.rb-proceed-to-checkout .checkout-button:hover {
	background: var(--pdp-navy) !important;
}
.rb-proceed-to-checkout .checkout-button::before {
	content: "\f160";
	font-family: dashicons;
	font-size: 16px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
}
.rb-ssl-note {
	margin: 14px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	text-align: center;
	font-size: 12px;
	color: var(--rb-gray-light);
}
.rb-ssl-note .dashicons {
	width: 14px;
	height: 14px;
	font-size: 14px;
	line-height: 1;
}
@media (max-width: 900px) {
	.rb-cart-layout {
		grid-template-columns: minmax(0, 1fr);
	}
	.rb-order-summary-box {
		position: static;
	}
}
@media (max-width: 700px) {
	.rb-cart-table-head {
		display: none;
	}
	.rb-cart-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}
	.rb-cart-row-price,
	.rb-cart-row-qty,
	.rb-cart-row-total {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-left: 26px;
	}
	.rb-cart-row-price::before,
	.rb-cart-row-qty::before,
	.rb-cart-row-total::before {
		content: attr(data-title);
		font-size: 12px;
		font-weight: 700;
		text-transform: uppercase;
		color: var(--rb-gray-light);
	}
	.rb-cart-actions {
		flex-direction: column;
		align-items: stretch;
	}
	.rb-cart-btn-outline {
		justify-content: center;
	}
}

/* Checkout page */
.rb-checkout-title {
	color: var(--rb-navy);
	font-size: clamp(29px, 3vw, 39px);
	margin-bottom: 6px;
}
.rb-checkout-subtitle {
	color: var(--rb-gray);
	font-size: 15px;
	margin: 0 0 24px;
}
.rb-checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 24px;
}
.rb-checkout-main {
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}
.rb-checkout-section {
	border: 1px solid var(--pdp-border);
	border-radius: 16px;
	background: var(--rb-white);
	box-shadow: 0 14px 34px rgba(var(--rb-shadow-rgb), .06);
	padding: 26px;
}
.rb-checkout-section h2 {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 21px;
	color: var(--rb-navy);
	margin-bottom: 20px;
}
.rb-step-num {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--rb-navy);
	color: var(--rb-white);
	display: grid;
	place-items: center;
	font-family: "Source Serif 4", serif;
	font-size: 14px;
	font-weight: 800;
}
.rb-contact-note {
	margin: -6px 0 16px;
	font-size: 13px;
	color: var(--rb-gray-light);
}
[data-automation-id="woo-commerce-subscription-opt-in"],
.rb-different-billing-label,
.rb-order-note-toggle-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--rb-gray-dark);
	cursor: pointer;
	margin: 20px 0 0;
}
.rb-different-billing-label,
.rb-order-note-toggle-label {
	font-size: 15px;
	font-weight: 600;
	color: var(--rb-navy);
	align-items: center;
	margin: 0;
}
[data-automation-id="woo-commerce-subscription-opt-in"] input,
.rb-different-billing-label input,
.rb-order-note-toggle-label input {
	margin-top: 3px;
	accent-color: var(--pdp-gold);
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}
.rb-different-billing-label input,
.rb-order-note-toggle-label input {
	margin-top: 0;
}
.rb-billing-address-toggle {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(var(--rb-shadow-rgb), .06);
}
.rb-different-billing-heading {
	margin: 0;
	font-family: inherit;
}
div.shipping_address {
	display: none;
}
.rb-billing-address-title {
	margin: 18px 0 16px;
	font-size: 16px;
	color: var(--rb-navy);
}
.woocommerce-additional-fields {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(var(--rb-shadow-rgb), .06);
}
.rb-order-note-field {
	margin-top: 14px;
}
.rb-order-note-field[hidden] {
	display: none;
}
.rb-create-account-fields {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(var(--rb-shadow-rgb), .06);
}

/* Shared checkout field grid (Contact Info / Shipping Address / Billing Address) */
.rb-field-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.rb-field-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.rb-field-grid .form-row {
	margin: 0;
	padding: 0;
	float: none;
	width: auto;
}
.rb-field-grid .form-row-first,
.rb-field-grid .form-row-last {
	float: none !important;
	width: auto !important;
}
.rb-field-grid label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--rb-navy);
}
.rb-field-grid .required {
	color: var(--rb-danger);
	text-decoration: none;
}
.rb-field-grid .optional {
	color: var(--rb-gray-light);
	font-size: 13px;
	font-weight: 400;
}
.rb-field-grid .woocommerce-input-wrapper {
	display: block;
}
.rb-field-grid input.input-text,
.rb-field-grid select,
.rb-field-grid textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(var(--rb-shadow-rgb), .15);
	border-radius: 8px;
	font-family: inherit;
	font-size: 15px;
	color: var(--rb-navy);
	background: var(--rb-white);
}
.rb-field-grid textarea {
	min-height: 90px;
	resize: vertical;
}
.rb-field-grid .select2-container {
	width: 100% !important;
}
.rb-field-grid .select2-container .select2-selection--single {
	height: 46px !important;
	border: 1px solid rgba(var(--rb-shadow-rgb), .15) !important;
	border-radius: 8px !important;
	display: flex;
	align-items: center;
	padding: 0 14px;
}
.rb-field-grid .select2-container .select2-selection__rendered {
	padding: 0 !important;
	line-height: normal !important;
	color: var(--rb-navy);
}
.rb-field-grid .select2-container .select2-selection__arrow {
	height: 44px !important;
	right: 8px !important;
}

/* Shipping method (Section 3) */
.rb-shipping-method-box {
	position: relative;
	border: 1px solid rgba(var(--rb-shadow-rgb), .12);
	border-radius: 12px;
	padding: 18px 90px 18px 20px;
	background: var(--rb-white);
}
.rb-shipping-method-box .woocommerce-shipping-totals,
.rb-shipping-method-box tr,
.rb-shipping-method-box td {
	display: block;
	padding: 0;
	border: 0;
	text-align: left;
}
.rb-shipping-method-box th {
	display: none;
}
.rb-shipping-method-box .woocommerce-shipping-methods {
	list-style: none;
	margin: 0;
	padding: 0;
}
.rb-shipping-method-box .woocommerce-shipping-methods label {
	font-size: 15px;
	font-weight: 700;
	color: var(--rb-navy);
}
.rb-shipping-method-box .woocommerce-shipping-destination {
	display: none;
}
.rb-shipping-method-cost {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	font-size: 14px;
	font-weight: 800;
	color: var(--rb-success);
	text-transform: uppercase;
}

/* Payment method (Section 4) */
.rb-payment-method-box #payment {
	background: transparent;
	border-radius: 0;
}
.rb-payment-method-box .wc_payment_methods {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	border-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.rb-payment-method-box .wc_payment_method {
	position: relative;
	border: 1px solid rgba(var(--rb-shadow-rgb), .12);
	border-radius: 12px;
	padding: 16px 18px;
}
.rb-payment-method-box .wc_payment_method input[type="radio"] {
	position: absolute;
	top: 18px;
	left: 18px;
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--pdp-gold);
}
.rb-payment-method-box .wc_payment_method label {
	display: block;
	padding-left: 30px;
	font-size: 15px;
	font-weight: 700;
	color: var(--rb-navy);
	cursor: pointer;
}
.rb-payment-method-box #payment div.payment_box {
	margin: 6px 0 0 30px;
	padding: 0;
	font-size: 14px;
	color: var(--rb-gray);
	background: transparent;
}
.rb-payment-method-box #payment div.payment_box::before {
	display: none;
}
.rb-payment-method-box .payment_box p {
	margin: 0;
}
.woocommerce-terms-and-conditions-wrapper {
	margin: 20px 0;
	font-size: 14px;
	color: var(--rb-gray-dark);
}
.woocommerce-terms-and-conditions-wrapper .form-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
	margin-top: 3px;
	accent-color: var(--pdp-gold);
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}
.woocommerce-terms-and-conditions-wrapper a {
	color: var(--rb-navy);
	text-decoration: underline;
}
.rb-payment-method-box .form-row.place-order {
	margin-top: 10px;
}
.rb-payment-method-box #place_order {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 52px;
	border: 0;
	border-radius: 8px;
	background: var(--rb-navy);
	color: var(--rb-white);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	transition: background .2s ease;
}
.rb-payment-method-box #place_order::before {
	content: "\f160";
	font-family: dashicons;
	font-size: 16px;
	line-height: 1;
}
.rb-payment-method-box #place_order:hover {
	background: var(--pdp-navy);
}
.rb-payment-method-box .form-row.place-order > p:first-child {
	text-align: center;
	font-size: 13px;
	color: var(--rb-gray-light);
	margin: 10px 0 0;
}

/* Order Summary sidebar (checkout) */
.rb-order-summary-items {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 18px;
}
.rb-order-summary-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.rb-order-summary-item-img {
	position: relative;
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--pdp-cream);
}
.rb-order-summary-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.rb-order-summary-item-qty {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--rb-navy);
	color: var(--rb-white);
	font-size: 11px;
	font-weight: 800;
	display: grid;
	place-items: center;
}
.rb-order-summary-item-info {
	flex: 1;
	min-width: 0;
}
.rb-order-summary-item-info h4 {
	margin: 0 0 2px;
	font-family: "Source Serif 4", serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--rb-navy);
	line-height: 1.3;
}
.rb-order-summary-item-meta {
	font-size: 12px;
	color: var(--rb-gray-light);
}
.rb-order-summary-item-meta .variation {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 8px;
}
.rb-order-summary-item-meta .variation dt,
.rb-order-summary-item-meta .variation dd {
	display: inline;
	margin: 0;
}
.rb-order-summary-item-meta .variation dt::after {
	content: ":";
}
.rb-order-summary-item-meta .variation-item .highlight {
	color: var(--rb-gold-muted);
	font-weight: 700;
}
.rb-order-summary-item-price {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 700;
	color: var(--rb-navy);
}
.rb-order-summary-coupon {
	border-top: 1px solid rgba(var(--rb-shadow-rgb), .06);
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), .06);
	padding: 16px 0;
	margin-bottom: 6px;
}
.rb-coupon-header {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	text-align: left;
}
.rb-coupon-header-icon {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--pdp-cream);
	color: var(--pdp-gold);
	font-size: 16px;
}
.rb-coupon-header-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.rb-coupon-header-text strong {
	font-size: 15px;
	color: var(--rb-navy);
}
.rb-coupon-header-text small {
	font-size: 13px;
	color: var(--rb-gray);
}
.rb-coupon-header > .dashicons:last-child {
	flex: 0 0 auto;
	font-size: 16px;
	width: 16px;
	height: 16px;
	color: var(--rb-navy);
	transition: transform .2s ease;
}
.rb-coupon-header.is-collapsed > .dashicons:last-child {
	transform: rotate(180deg);
}
.rb-coupon-body {
	margin-top: 16px;
}
.rb-coupon-tabs {
	display: flex;
	gap: 18px;
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), .08);
	margin-bottom: 14px;
}
.rb-coupon-tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: 0;
	border-bottom: 2px solid transparent;
	padding: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--rb-gray-light);
	cursor: pointer;
}
.rb-coupon-tab.is-active {
	color: var(--rb-navy);
	border-bottom-color: var(--pdp-gold);
}
.rb-badge-new {
	background: var(--pdp-cream);
	color: var(--pdp-gold);
	font-size: 10px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 999px;
	letter-spacing: .04em;
}
.rb-coupon-hint {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 12px 0 0;
	padding: 10px 12px;
	border: 1px dashed var(--pdp-gold);
	border-radius: 8px;
	background: var(--pdp-cream);
	font-size: 13px;
	color: var(--rb-navy);
}
.rb-coupon-hint .dashicons {
	flex: 0 0 auto;
	font-size: 15px;
	width: 15px;
	height: 15px;
	color: var(--pdp-gold);
}
.rb-coupon-applied-card {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	padding: 12px;
	border: 1px solid rgba(var(--rb-success-rgb), .25);
	border-radius: 10px;
	background: rgba(var(--rb-success-rgb), .06);
}
.rb-coupon-applied-icon {
	flex: 0 0 auto;
	color: var(--rb-success);
	font-size: 22px;
	width: 22px;
	height: 22px;
}
.rb-coupon-applied-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 13px;
	min-width: 0;
}
.rb-coupon-applied-text strong {
	color: var(--rb-success-dark);
	font-size: 14px;
}
.rb-coupon-applied-text small {
	color: var(--rb-success);
}
.rb-coupon-code-badge {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(var(--rb-success-rgb), .12);
	color: var(--rb-success-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .03em;
}
.rb-coupon-remove {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 700;
	color: var(--rb-navy);
	text-decoration: underline;
	white-space: nowrap;
}
.rb-coupon-savings-card {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	padding: 12px;
	border-radius: 10px;
	background: rgba(var(--rb-success-rgb), .06);
}
.rb-coupon-savings-icon {
	font-size: 20px;
}
.rb-coupon-savings-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	font-size: 13px;
	min-width: 0;
}
.rb-coupon-savings-text strong {
	color: var(--rb-success-dark);
	font-size: 14px;
}
.rb-coupon-savings-text small {
	color: var(--rb-success);
}
.rb-coupon-savings-amount {
	flex: 0 0 auto;
	font-weight: 800;
	color: var(--rb-success-dark);
	font-size: 15px;
}
.rb-coupon-offer-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.rb-coupon-offer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 12px;
	border: 1px solid var(--pdp-border);
	border-radius: 10px;
}
.rb-coupon-offer-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}
.rb-coupon-offer-text small {
	font-size: 13px;
	color: var(--rb-gray);
}
.rb-coupon-offer .rb-coupon-code-badge {
	margin-left: 0;
	background: var(--pdp-cream);
	color: var(--pdp-gold);
}
.rb-coupon-offer-apply {
	flex: 0 0 auto;
	height: 34px;
	padding: 0 16px;
	border: 0;
	border-radius: 8px;
	background: var(--rb-navy);
	color: var(--rb-white);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s ease;
}
.rb-coupon-offer-apply:hover {
	background: var(--pdp-navy);
}
.rb-coupon-offer.is-applied {
	border-color: rgba(var(--rb-success-rgb), .3);
	background: rgba(var(--rb-success-rgb), .05);
}
.rb-coupon-offer.is-applied .rb-coupon-code-badge {
	background: rgba(var(--rb-success-rgb), .12);
	color: var(--rb-success-dark);
}
.rb-coupon-offer-remove {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 700;
	color: var(--rb-success-dark);
	text-decoration: underline;
	white-space: nowrap;
}
.checkout_coupon.woocommerce-form-coupon {
	display: flex;
	width: 100%;
	gap: 8px;
	margin-top: 0;
}
.checkout_coupon.woocommerce-form-coupon .form-row {
	margin: 0;
	padding: 0;
	width: auto;
	float: none;
	flex: 1;
}
.checkout_coupon.woocommerce-form-coupon .input-text {
	width: 100%;
	height: 46px !important;
	padding: 0 14px !important;
	border: 1px solid rgba(var(--rb-shadow-rgb), .15) !important;
	border-radius: 8px;
	font-size: 14px;
}
.checkout_coupon.woocommerce-form-coupon .form-row-last {
	width: auto;
	float: none;
	flex: 0 0 auto;
}
.checkout_coupon.woocommerce-form-coupon button {
	height: 46px;
	padding: 0 20px;
	border: 0;
	border-radius: 8px;
	background: var(--rb-navy);
	color: var(--rb-white);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s ease;
}
.checkout_coupon.woocommerce-form-coupon button:hover {
	background: var(--pdp-navy);
}
.checkout_coupon.woocommerce-form-coupon .input-text.has-error {
	border-color: var(--rb-danger);
}
.rb-coupon-error-notice {
	margin: 6px 0 0;
	font-size: 13px;
	color: var(--rb-danger);
}
.rb-order-summary-totals {
	margin-top: 4px;
}
@media (max-width: 900px) {
	.rb-checkout-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.rb-field-row-2 {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Place Order - Pay Later: thank you page message (icon is absolutely
   positioned at top:1em by woocommerce.css, assuming no top margin on the
   first line - our multi-paragraph message needs that margin zeroed out or
   the checkmark icon sits above the first line instead of level with it). */
.popl-thankyou-message p {
	margin: 0 0 0.75em;
}
.popl-thankyou-message p:last-child {
	margin-bottom: 0;
}

/* Payment status text shown on My Account / Track Order pages - no
   padding/background: it sits inline with plain-text values in the same
   column (Total, Payment method, ...), so any padding throws off the
   left-edge alignment those rows share. */
.popl-payment-status {
	background: none;
	font-weight: 600;
}
.popl-payment-status--pending {
	color: #e57373;
}
.popl-payment-status--received {
	color: var(--wc-green, #007518);
}

/* ==========================================================================
   Thank You / Order Tracking page redesign
   ========================================================================== */

.rb-order-item-row {
	display: flex;
	align-items: center;
	gap: 12px;
}
.rb-order-item-thumb {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
}
.rb-order-item-name a {
	color: inherit;
}

.rb-thankyou-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 32px 20px 60px;
}

.rb-ty-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.rb-ty-header__left {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
.rb-ty-check-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--rb-gold-2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4px;
}
.rb-ty-heading {
	font-size: 33px;
	margin: 0 0 4px;
	color: var(--rb-text);
}
.rb-ty-subtext {
	margin: 0 0 6px;
}
.rb-ty-subtext p.woocommerce-thankyou-order-received {
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
	color: var(--rb-text-muted);
	font-size: 16px;
}
.rb-ty-meta {
	margin: 0;
	color: var(--rb-text-light);
	font-size: 15px;
}
.rb-ty-progress-card {
	background: var(--rb-white);
	border: 1px solid rgba(var(--rb-shadow-rgb), 0.08);
	border-radius: 12px;
	padding: 28px 24px 100px;
	margin-bottom: 24px;
}

/* Cancelled/refunded/failed orders only render the short negative-status
   pill, not the full timeline the 100px bottom padding above was sized for
   - shrink the card to fit so it doesn't leave a large empty gap. */
.rb-ty-progress-card:has(.rb-order-progress--negative) {
	padding-bottom: 28px;
}

.rb-order-progress-title {
	text-align: center;
	font-size: 20px;
	color: var(--rb-text);
	margin: 0 0 26px;
}

.rb-order-progress--negative {
	background: rgba(var(--rb-shadow-rgb), 0.04);
	border-radius: 8px;
	padding: 16px;
	text-align: center;
	color: var(--rb-danger);
	font-size: 16px;
}

@keyframes rb-progress-pulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(var(--rb-gold-2-rgb), 0.55);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(var(--rb-gold-2-rgb), 0);
	}
}

/* Horizontal timeline - desktop & tablet (>=768px) */
.rb-order-progress {
	display: flex;
	align-items: flex-start;
	/* .rb-order-progress__details is 120px wide, centered under a 44px icon -
	   without this, the first/last step's label overflows past the container
	   edge since there's no connector on their outer side to hold it back. */
	padding: 0 40px;
}
.rb-order-progress__step {
	position: relative;
	flex: 0 0 auto;
}
.rb-order-progress__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--rb-gray-light);
	color: var(--rb-gray-mid);
	background: var(--rb-white);
	flex-shrink: 0;
}
.rb-order-progress__step--active .rb-order-progress__icon,
.rb-order-progress__step--done .rb-order-progress__icon {
	background: var(--rb-gold-2);
	border-color: var(--rb-gold-2);
	color: var(--rb-white);
}
.rb-order-progress__step--final.rb-order-progress__step--upcoming .rb-order-progress__icon {
	background: var(--rb-navy);
	border-color: var(--rb-navy);
	color: var(--rb-white);
}
.rb-order-progress__step--active .rb-order-progress__icon {
	animation: rb-progress-pulse 1.6s ease-in-out infinite;
}
/* Positioned independently of the icon's own box so the icon stays exactly
   44px wide (nothing but the icon inserts space in the flex row) and the
   connector on either side of it can touch its edge directly. */
.rb-order-progress__details {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.rb-order-progress__label {
	font-size: 14px;
	text-align: center;
	color: var(--rb-text-light);
	line-height: 1.3;
}
.rb-order-progress__step--active .rb-order-progress__label {
	color: var(--rb-gold-dark);
	font-weight: 700;
}
.rb-order-progress__step--done .rb-order-progress__label {
	color: var(--rb-text);
	font-weight: 600;
}
.rb-order-progress__meta-row {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--rb-text-light);
}
.rb-order-progress__meta-row .dashicons {
	font-size: 13px;
	width: 13px;
	height: 13px;
}
.rb-order-progress__connector {
	flex: 1 1 auto;
	height: 2px;
	background: var(--rb-gray-light);
	align-self: center;
}
.rb-order-progress__connector--done {
	background: var(--rb-gold-2);
}
.rb-order-progress__connector--active {
	background: linear-gradient(to right, var(--rb-gold-2) 50%, var(--rb-gray-light) 50%);
}

/* Vertical timeline - mobile (<768px); hidden until the breakpoint below swaps it in for .rb-order-progress */
.rb-order-progress-vertical {
	display: none;
}
.rb-order-progress-v__row {
	display: flex;
	gap: 14px;
}
.rb-order-progress-v__marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}
.rb-order-progress-v__icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--rb-gray-light);
	color: var(--rb-gray-mid);
	background: var(--rb-white);
	flex-shrink: 0;
}
.rb-order-progress-v__icon svg {
	width: 18px;
	height: 18px;
}
.rb-order-progress-v__row--active .rb-order-progress-v__icon,
.rb-order-progress-v__row--done .rb-order-progress-v__icon {
	background: var(--rb-gold-2);
	border-color: var(--rb-gold-2);
	color: var(--rb-white);
}
.rb-order-progress-v__row--final.rb-order-progress-v__row--upcoming .rb-order-progress-v__icon {
	background: var(--rb-navy);
	border-color: var(--rb-navy);
	color: var(--rb-white);
}
.rb-order-progress-v__row--active .rb-order-progress-v__icon {
	animation: rb-progress-pulse 1.6s ease-in-out infinite;
}
.rb-order-progress-v__line {
	flex: 1 1 auto;
	width: 2px;
	min-height: 20px;
	background: var(--rb-gray-light);
}
.rb-order-progress-v__line--done {
	background: var(--rb-gold-2);
}
.rb-order-progress-v__line--active {
	background: linear-gradient(to bottom, var(--rb-gold-2) 50%, var(--rb-gray-light) 50%);
}
.rb-order-progress-v__body {
	flex: 1 1 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 16px;
	padding: 6px 0 20px;
}
.rb-order-progress-v__row--final .rb-order-progress-v__body {
	padding-bottom: 0;
}
.rb-order-progress-v__label {
	flex: 1 1 140px;
	font-size: 16px;
	font-weight: 600;
	color: var(--rb-text);
}
.rb-order-progress-v__row--active .rb-order-progress-v__label {
	color: var(--rb-gold-dark);
}
.rb-order-progress-v__row--upcoming .rb-order-progress-v__label {
	color: var(--rb-text-light);
	font-weight: 500;
}
.rb-order-progress-v__meta {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	color: var(--rb-text-light);
	white-space: nowrap;
}
.rb-order-progress-v__meta .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
}

.rb-order-progress-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 4px;
	padding-top: 16px;
	border-top: 1px solid rgba(var(--rb-shadow-rgb), 0.08);
}
.rb-order-progress-legend__item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--rb-text-muted);
}
.rb-order-progress-legend__dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	flex-shrink: 0;
}
.rb-order-progress-legend__dot--done,
.rb-order-progress-legend__dot--active {
	background: var(--rb-gold-2);
}
.rb-order-progress-legend__dot--upcoming {
	background: var(--rb-gray-light);
}
.rb-order-progress-info {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 14px;
	padding: 12px 14px;
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	border-radius: 8px;
	font-size: 13.5px;
	color: #1e40af;
}
.rb-order-progress-info .dashicons {
	color: #2563eb;
	flex-shrink: 0;
	margin-top: 1px;
}

@media (max-width: 767px) {
	.rb-order-progress {
		display: none;
	}
	.rb-order-progress-vertical {
		display: block;
	}
}

.rb-ty-grid {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr) 300px;
	gap: 24px;
	align-items: start;
	margin-bottom: 24px;
}
.rb-ty-col--sidebar,
.rb-ty-col--addresses {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.rb-ty-card {
	background: var(--rb-white);
	border: 1px solid rgba(var(--rb-shadow-rgb), 0.08);
	border-radius: 12px;
	padding: 22px;
}
.rb-ty-card__title {
	margin: 0 0 12px;
	font-size: 18px;
	color: var(--rb-text);
}
.rb-ty-current-status {
	font-size: 23px;
	font-weight: 700;
	color: var(--rb-gold-dark);
	margin: 0 0 14px;
}
.rb-ty-divider {
	border: none;
	border-top: 1px solid var(--rb-border-gold);
	margin: 0 0 14px;
}
.rb-ty-card__text {
	font-size: 15px;
	color: var(--rb-text-muted);
	margin: 0 0 16px;
}
.rb-ty-contact-row {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--rb-text-muted);
}
.rb-ty-contact-row .dashicons {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--rb-navy);
	color: var(--rb-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}
.rb-ty-help-row {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.rb-ty-help-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--rb-text);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
}
.rb-ty-help-item small {
	color: var(--rb-text-light);
	font-weight: 400;
	font-size: 13px;
}
.rb-ty-help-item__icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--rb-navy);
	color: var(--rb-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}
.rb-order-summary {
	padding: 24px 28px 28px;
}

.rb-order-summary-table {
	margin-bottom: 4px;
}
.rb-order-summary-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 60px 150px;
	grid-template-areas: "product qty price";
	gap: 12px;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid var(--rb-border-gold-2);
}
.rb-order-summary-row--head {
	padding: 0 0 12px;
	font-weight: 700;
	font-size: 15px;
	color: var(--rb-text);
	border-bottom-width: 2px;
}
.rb-order-summary-row--head span:last-child,
.rb-order-summary-qty,
.rb-order-summary-price {
	text-align: right;
}
.rb-order-summary-product {
	grid-area: product;
	min-width: 0;
	font-size: 15px;
	color: var(--rb-text);
}
.rb-order-summary-product .rb-order-item-row {
	min-width: 0;
}
.rb-order-summary-product .rb-order-item-name {
	min-width: 0;
	overflow-wrap: break-word;
}
.rb-order-summary-product .rb-order-item-name a {
	color: var(--rb-text);
	font-weight: 500;
}
.rb-order-summary-product .wc-item-meta {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	font-size: 13px;
	color: var(--rb-text-light);
}
.rb-order-summary-qty {
	grid-area: qty;
	font-size: 15px;
	color: var(--rb-text-muted);
}
.rb-order-summary-qty__label,
.rb-order-summary-price__label {
	display: none;
}
.rb-order-summary-price {
	grid-area: price;
	font-size: 15px;
	font-weight: 600;
	color: var(--rb-text);
	overflow-wrap: break-word;
}
.rb-order-summary-price .rb-price-was {
	display: block;
	margin-left: 0;
	font-size: 0.85em;
}
.rb-order-summary-price ins {
	text-decoration: none;
}
.rb-order-summary-price .rb-price-discount {
	display: none;
}
.rb-order-summary-purchase-note {
	grid-column: 1 / -1;
	font-size: 13px;
	color: var(--rb-text-light);
	margin: -8px 0 8px;
}

.rb-order-summary-totals {
	padding-top: 8px;
}
.rb-order-summary-total-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
	font-size: 15px;
	color: var(--rb-text-muted);
}
.rb-order-summary-total-row span:last-child {
	color: var(--rb-text);
	font-weight: 600;
}
.rb-order-summary-total-row--discount span:last-child {
	color: var(--rb-success);
}
.rb-order-summary-total-row--save {
	color: var(--rb-success);
	font-weight: 600;
}
.rb-order-summary-total-row--save span:last-child {
	color: var(--rb-success);
	font-weight: 700;
}
.rb-order-summary-total-row--save .dashicons {
	font-size: 15px;
	width: 15px;
	height: 15px;
	vertical-align: -2px;
}
.rb-order-summary-note {
	font-size: 14px;
	color: var(--rb-text-muted);
	padding: 8px 0;
}

.rb-order-summary-total-highlight {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(var(--rb-gold-2-rgb), 0.1);
	border: 1px solid var(--rb-gold-2);
	border-radius: 10px;
	padding: 16px 20px;
	margin-top: 14px;
	font-size: 19px;
	font-weight: 700;
	color: var(--rb-gold-dark);
}

.rb-ty-address-card__title {
	display: flex;
	align-items: center;
	gap: 8px;
}
.rb-ty-address-card address {
	font-style: normal;
	font-size: 15px;
	line-height: 1.6;
	color: var(--rb-text-muted);
}
.rb-ty-address-card address p {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 8px 0 0;
}
.rb-ty-address-card address .dashicons {
	color: var(--rb-gold-dark);
	font-size: 16px;
}

.rb-ty-trust-strip {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	text-align: center;
	padding: 20px 0 0;
	color: var(--rb-text-muted);
	font-size: 15px;
}
.rb-ty-trust-strip .dashicons {
	color: var(--rb-gold-dark);
	vertical-align: middle;
}
.rb-ty-trust-strip__sep {
	color: var(--rb-border-tan);
}

.rb-track-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 32px 20px 60px;
}
.rb-ty-current-status--inline {
	margin: 4px 0 0;
}
.rb-track-notes {
	margin-bottom: 24px;
}
.rb-track-notes .commentlist.notes {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 900px) {
	.rb-ty-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 600px) {
	.rb-order-summary {
		padding: 20px 16px 24px;
	}
	.rb-order-summary-row--head {
		display: none;
	}
	.rb-order-summary-row {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"product product"
			"qty price";
		row-gap: 6px;
	}
	.rb-order-summary-qty {
		text-align: left;
	}
	.rb-order-summary-qty__label,
	.rb-order-summary-price__label {
		display: inline;
		color: var(--rb-text-light);
		font-weight: 400;
	}
}

/* ==========================================================================
   My Account
   ========================================================================== */

.rb-account-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 32px 20px 60px;
}

/* woocommerce-layout.css floats these at 30%/68% widths for WC's default
   (unstyled) My Account layout - our own grid below handles positioning,
   so cancel it out. Same selector + specificity, loaded after, so no
   !important needed. */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	width: auto;
}

.rb-account-grid {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.rb-account-col--sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rb-account-card {
	background: var(--rb-white);
	border: 1px solid rgba(var(--rb-shadow-rgb), 0.08);
	border-radius: 12px;
}

.rb-account-card--nav {
	padding: 10px;
}

/* Nav */
.rb-account-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.rb-account-nav li {
	margin: 0;
}
.rb-account-nav a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 16px;
	border-radius: 8px;
	color: var(--rb-text);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease;
}
.rb-account-nav a .dashicons {
	color: var(--rb-text-light);
	font-size: 18px;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.rb-account-nav a:hover {
	background: var(--rb-cream-tint);
}
.rb-account-nav li.is-active a {
	background: var(--rb-navy);
	color: var(--rb-white);
}
.rb-account-nav li.is-active a .dashicons {
	color: var(--rb-white);
}

/* Need Help card */
.rb-account-help {
	padding: 22px;
}
.rb-account-help__title {
	margin: 0 0 2px;
	font-size: 18px;
	color: var(--rb-text);
}
.rb-account-help__subtitle {
	margin: 0 0 18px;
	font-size: 14px;
	color: var(--rb-text-light);
}
.rb-account-help__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.rb-account-help__item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--rb-text);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
}
.rb-account-help__item small {
	color: var(--rb-text-light);
	font-weight: 400;
	font-size: 13px;
}
.rb-account-help__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--rb-white);
}
.rb-account-help__icon--whatsapp {
	background: #25d366;
}
.rb-account-help__icon--dark {
	background: var(--rb-navy);
}
.rb-account-help__icon--gray {
	background: var(--rb-gray-mid);
}

.rb-account-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.rb-account-card__header h3 {
	margin: 0;
	font-size: 19px;
	color: var(--rb-text);
}
.rb-account-card__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--rb-gold-dark);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}
.rb-account-card__link .dashicons {
	font-size: 15px;
	width: 15px;
	height: 15px;
}

/* Dashboard */
.rb-dash-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: nowrap;
	background: linear-gradient(135deg, var(--rb-cream-tint) 0%, #fdf1ee 100%);
	border: 1px solid var(--rb-border-gold);
	border-radius: 14px;
	padding: 28px 32px;
	margin-bottom: 24px;
}
.rb-dash-banner__profile {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
	flex: 1 1 auto;
}
.rb-dash-banner__profile > div {
	min-width: 0;
}
.rb-dash-avatar {
	position: relative;
	flex-shrink: 0;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: var(--rb-navy);
	border: 3px solid var(--rb-gold-2);
	color: var(--rb-gold-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 23px;
	font-weight: 700;
	font-family: "Source Serif 4", serif;
}
.rb-dash-avatar__edit {
	position: absolute;
	right: -4px;
	bottom: -4px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--rb-white);
	border: 1px solid var(--rb-border-tan);
	color: var(--rb-gold-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(var(--rb-black-rgb), 0.15);
}
.rb-dash-avatar__edit:hover {
	background: var(--rb-cream-tint);
}
.rb-dash-avatar__edit .dashicons {
	font-size: 13px;
	width: 13px;
	height: 13px;
}
.rb-dash-banner__greeting {
	margin: 0;
	font-size: 15px;
	color: var(--rb-text-muted);
}
.rb-dash-banner__name {
	margin: 0;
	font-size: 27px;
	color: var(--rb-text);
}
.rb-dash-banner__tagline {
	margin: 4px 0 0;
	font-size: 14px;
	color: var(--rb-text-light);
}
.rb-dash-banner__brand {
	color: var(--rb-gold-dark);
	font-weight: 600;
}
.rb-dash-stats {
	display: flex;
	align-items: center;
	gap: 36px;
	flex-shrink: 0;
}
.rb-dash-stats__sep {
	width: 1px;
	align-self: stretch;
	background: rgba(var(--rb-shadow-rgb), 0.1);
}
.rb-dash-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}
.rb-dash-stat__icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rb-gold-2);
}
.rb-dash-stat__icon svg {
	width: 26px;
	height: 26px;
}
.rb-dash-stat__icon--orders {
	background: rgba(var(--rb-gold-2-rgb), 0.15);
}
.rb-dash-stat__icon--active {
	background: rgba(32, 105, 216, 0.12);
	color: #2069d8;
}
.rb-dash-stat__icon--savings {
	background: rgba(var(--rb-success-rgb), 0.12);
	color: var(--rb-success);
}
.rb-dash-stat strong {
	font-size: 39px;
	font-weight: 700;
	color: var(--rb-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	font-variant-numeric: tabular-nums;
}
.rb-dash-stat > span:last-child {
	font-size: 17px;
	color: var(--rb-text-light);
}
.rb-dash-stat--savings strong {
	color: var(--rb-success);
}

.rb-dash-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 24px;
	align-items: start;
}
.rb-dash-orders {
	padding: 24px 28px;
}
.rb-dash-empty {
	color: var(--rb-text-light);
	font-size: 15px;
	margin: 0;
}
.rb-dash-orders-row {
	display: grid;
	grid-template-columns: minmax(80px, 1fr) auto auto auto;
	align-items: center;
	gap: 10px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), 0.06);
	font-size: 14px;
	color: var(--rb-text-muted);
}
.rb-dash-orders-row--head {
	font-weight: 700;
	font-size: 14px;
	color: var(--rb-text);
	border-bottom-width: 2px;
	padding-bottom: 12px;
}
.rb-dash-orders-row--head span:not(:first-child) {
	text-align: right;
}
.rb-dash-orders-row > span:not(:first-child) {
	text-align: right;
	white-space: nowrap;
}
.rb-dash-orders-product {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	font-weight: 600;
	color: var(--rb-text);
}
.rb-dash-orders-product span {
	min-width: 0;
	overflow-wrap: break-word;
}
.rb-dash-orders-product small {
	display: block;
	font-weight: 400;
	color: var(--rb-text-light);
	font-size: 12px;
}
.rb-order-row-thumb {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
}
.rb-status-pill {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}
.rb-status-pill--pending {
	background: #fdf0dc;
	color: #b5720a;
}
.rb-status-pill--received,
.rb-status-pill--processing {
	background: #e2edfd;
	color: #1d5fc9;
}
.rb-status-pill--shipped {
	background: #ece3fb;
	color: #7635d9;
}
.rb-status-pill--delivered {
	background: #e0f5e6;
	color: #1c8a44;
}
.rb-status-pill--negative {
	background: #fbe3e3;
	color: var(--rb-danger);
}

.rb-dash-addresses {
	padding: 24px 28px;
}
.rb-dash-address {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), 0.06);
}
.rb-dash-address__icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--rb-cream-tint);
	color: var(--rb-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
}
.rb-dash-address__body {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 14px;
	color: var(--rb-text-muted);
	line-height: 1.6;
}
.rb-dash-address__body h4 {
	margin: 0 0 4px;
	font-size: 16px;
	color: var(--rb-text);
}
.rb-dash-address__meta {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 4px 0 0;
}
.rb-dash-address__meta .dashicons {
	color: var(--rb-gold-dark);
	font-size: 14px;
}
.rb-dash-address__edit {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	font-size: 13px;
}
.rb-dash-add-address {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
	padding: 14px;
	border: 1px dashed var(--rb-border-tan);
	border-radius: 8px;
	color: var(--rb-gold-dark);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
}
.rb-dash-add-address:hover {
	background: var(--rb-cream-tint);
}

@media (max-width: 900px) {
	.rb-account-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.rb-dash-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 700px) {
	.rb-dash-banner {
		flex-direction: column;
		align-items: flex-start;
	}
	.rb-dash-stats {
		gap: 20px;
		align-self: stretch;
		justify-content: space-between;
	}
	.rb-dash-orders-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 4px;
		padding: 16px 0;
	}
	.rb-dash-orders-row--head {
		display: none;
	}
	.rb-dash-orders-row > span:not(.rb-dash-orders-product) {
		padding-left: 52px;
	}
}


/* Orders list page */
.rb-orders-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}
.rb-orders-title {
	margin: 0 0 4px;
	font-size: 29px;
	color: var(--rb-text);
}
.rb-orders-subtitle {
	margin: 0;
	font-size: 15px;
	color: var(--rb-text-light);
}
.rb-orders-search {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--rb-white);
	border: 1px solid var(--rb-border-tan);
	border-radius: 8px;
	padding: 10px 16px;
	min-width: 260px;
}
.rb-orders-search .dashicons {
	color: var(--rb-text-light);
	font-size: 16px;
}
.rb-orders-search input {
	border: 0;
	outline: none;
	font-size: 14px;
	flex: 1 1 auto;
	min-width: 0;
}

.rb-orders-table {
	padding: 8px 28px;
	margin-bottom: 20px;
}
.rb-orders-row {
	display: grid;
	grid-template-columns: 190px 90px minmax(280px, 1fr) 90px 150px;
	align-items: center;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), 0.06);
	font-size: 14px;
	color: var(--rb-text-muted);
}
.rb-orders-row--head {
	font-weight: 700;
	color: var(--rb-text);
	border-bottom-width: 2px;
}
.rb-orders-row__product {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}
.rb-orders-row__product a {
	color: var(--rb-text);
	font-weight: 700;
	text-decoration: none;
}
.rb-orders-row__product small {
	display: block;
	color: var(--rb-text-light);
	font-weight: 400;
	font-size: 12px;
}
.rb-orders-row__action {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 14px;
	font-size: 13px;
	white-space: nowrap;
}

.rb-orders-empty {
	padding: 40px 28px;
	text-align: center;
}
.rb-orders-empty p {
	color: var(--rb-text-light);
	margin: 0 0 16px;
}

/* Mini per-row progress (Orders list "Status" column) */
.rb-mini-progress {
	display: flex;
	align-items: flex-start;
}
.rb-mini-progress--negative {
	color: var(--rb-danger);
	font-weight: 600;
	font-size: 13px;
}
.rb-mini-progress__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 0;
	min-width: 0;
	gap: 6px;
}
.rb-mini-progress__icon {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--rb-gray-light);
	color: var(--rb-gray-mid);
	background: var(--rb-white);
	flex-shrink: 0;
	font-size: 13px;
}
.rb-mini-progress__icon svg {
	width: 13px;
	height: 13px;
}
.rb-mini-progress__step--done .rb-mini-progress__icon {
	border-color: var(--rb-success);
	color: var(--rb-success);
}
.rb-mini-progress__label {
	font-size: 10.5px;
	line-height: 1.25;
	text-align: center;
	color: var(--rb-text-light);
}
.rb-mini-progress__step--done .rb-mini-progress__label {
	color: var(--rb-text-muted);
}
.rb-mini-progress__connector {
	flex: 0 1 30px;
	height: 2px;
	margin-top: 12px;
	background: var(--rb-gray-light);
}
.rb-mini-progress__connector--done {
	background: var(--rb-success);
}
.rb-mini-progress__step--pending .rb-mini-progress__icon {
	background: #e5941a;
	border-color: #e5941a;
	color: var(--rb-white);
}
.rb-mini-progress__step--pending .rb-mini-progress__label {
	color: #b5720a;
	font-weight: 700;
}
.rb-mini-progress__step--received .rb-mini-progress__icon,
.rb-mini-progress__step--processing .rb-mini-progress__icon {
	background: #2069d8;
	border-color: #2069d8;
	color: var(--rb-white);
}
.rb-mini-progress__step--received .rb-mini-progress__label,
.rb-mini-progress__step--processing .rb-mini-progress__label {
	color: #1d5fc9;
	font-weight: 700;
}
.rb-mini-progress__step--shipped .rb-mini-progress__icon {
	background: #7635d9;
	border-color: #7635d9;
	color: var(--rb-white);
}
.rb-mini-progress__step--shipped .rb-mini-progress__label {
	color: #7635d9;
	font-weight: 700;
}
.rb-mini-progress__step--delivered .rb-mini-progress__icon {
	background: var(--rb-success);
	border-color: var(--rb-success);
	color: var(--rb-white);
}
.rb-mini-progress__step--delivered .rb-mini-progress__label {
	color: var(--rb-success);
	font-weight: 700;
}

/* Pagination */
.rb-orders-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.rb-orders-pagination__summary {
	margin: 0;
	font-size: 14px;
	color: var(--rb-text-light);
}
.rb-orders-pagination__links {
	display: flex;
	align-items: center;
	gap: 8px;
}
.rb-orders-pagination__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 8px;
	border: 1px solid var(--rb-border-tan);
	border-radius: 6px;
	color: var(--rb-text);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}
.rb-orders-pagination__btn:hover {
	background: var(--rb-cream-tint);
}
.rb-orders-pagination__btn.is-active {
	background: var(--rb-navy);
	border-color: var(--rb-navy);
	color: var(--rb-white);
}
.rb-orders-pagination__btn.is-disabled {
	opacity: 0.4;
	pointer-events: none;
}

@media (max-width: 900px) {
	.rb-orders-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}
	.rb-orders-row--head {
		display: none;
	}
	.rb-mini-progress {
		justify-content: flex-start;
	}
	.rb-mini-progress__step {
		flex: 0 0 auto;
		width: 64px;
	}
}

/* Single order view page */
.rb-vieworder-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.rb-vieworder-title {
	margin: 0 0 6px;
	font-size: 27px;
	color: var(--rb-text);
}
.rb-vieworder-meta {
	margin: 0;
	font-size: 14px;
	color: var(--rb-text-muted);
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.rb-vieworder-meta__sep {
	color: var(--rb-border-tan);
}
.rb-vieworder-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	padding: 10px 16px;
}

.rb-vieworder-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 24px;
	align-items: start;
	margin-top: 24px;
}
.rb-vieworder-col--main,
.rb-vieworder-col--sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rb-vieworder-items {
	padding: 24px 28px;
}
.rb-vieworder-items__title {
	margin: 0 0 16px;
	font-size: 18px;
	color: var(--rb-text);
}
.rb-vieworder-items-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 110px 60px 110px;
	align-items: center;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), 0.06);
	font-size: 14px;
	color: var(--rb-text-muted);
}
.rb-vieworder-items-row--head {
	font-weight: 700;
	color: var(--rb-text);
	border-bottom-width: 2px;
}
.rb-vieworder-items-row > div:not(:first-child),
.rb-vieworder-items-row--head span:not(:first-child) {
	text-align: right;
}
.rb-vieworder-items-product {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	font-weight: 600;
	color: var(--rb-text);
}
.rb-vieworder-items-product span {
	min-width: 0;
	overflow-wrap: break-word;
}
.rb-vieworder-items-meta {
	display: block;
	font-weight: 400;
	color: var(--rb-text-light);
	font-size: 12px;
}
.rb-vieworder-items-meta p {
	margin: 0;
}

.rb-vieworder-addresses {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.rb-vieworder-address {
	padding: 22px;
}
.rb-vieworder-address h4 {
	margin: 0 0 10px;
	font-size: 16px;
	color: var(--rb-text);
}
.rb-vieworder-address address {
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	color: var(--rb-text-muted);
}
.rb-vieworder-address address p {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 6px 0 0;
}
.rb-vieworder-address address .dashicons {
	color: var(--rb-gold-dark);
	font-size: 15px;
}

.rb-vieworder-cancel-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	background: var(--rb-cream-tint);
	border: 1px solid var(--rb-border-gold);
	border-radius: 12px;
	padding: 18px 24px;
}
.rb-vieworder-cancel-banner strong {
	color: var(--rb-text);
	font-size: 15px;
}
.rb-vieworder-cancel-banner p {
	margin: 4px 0 0;
	font-size: 14px;
	color: var(--rb-text-muted);
}

.rb-vieworder-notes {
	padding: 24px 28px;
}
.rb-vieworder-notes .commentlist.notes {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rb-vieworder-summary,
.rb-vieworder-actions {
	padding: 22px;
}
.rb-vieworder-summary h3,
.rb-vieworder-actions h3 {
	margin: 0 0 14px;
	font-size: 17px;
	color: var(--rb-text);
}
.rb-vieworder-summary-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	font-size: 14px;
	color: var(--rb-text-muted);
}
.rb-vieworder-summary-row span:last-child {
	color: var(--rb-text);
	font-weight: 600;
	text-align: right;
}
.rb-vieworder-summary-row--discount span:last-child {
	color: var(--rb-success);
}
.rb-vieworder-summary-row--total {
	border-top: 1px solid rgba(var(--rb-shadow-rgb), 0.08);
	margin-top: 6px;
	padding-top: 14px;
	font-size: 17px;
	font-weight: 700;
	color: var(--rb-text);
}
.rb-vieworder-summary-row--total span:last-child {
	font-size: 18px;
	color: var(--rb-gold-dark);
}
.rb-vieworder-summary-row--meta {
	margin-top: 6px;
	font-size: 13px;
}

.rb-vieworder-actions__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), 0.06);
	color: var(--rb-text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}
.rb-vieworder-actions__item:last-child {
	border-bottom: 0;
}
.rb-vieworder-actions__item .dashicons:first-child {
	color: var(--rb-gold-dark);
	font-size: 16px;
	margin-right: 4px;
}
.rb-vieworder-actions__item > span:first-child {
	display: flex;
	align-items: center;
}
.rb-vieworder-actions__item--pay {
	align-items: center;
}
.rb-vieworder-actions__btn {
	padding: 8px 18px;
	font-size: 13px;
}

@media (max-width: 900px) {
	.rb-vieworder-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.rb-vieworder-addresses {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 600px) {
	.rb-vieworder-items-row {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 4px;
	}
	.rb-vieworder-items-row--head {
		display: none;
	}
	.rb-vieworder-items-row > div:not(:first-child) {
		text-align: left;
		padding-left: 52px;
	}
}

/* Addresses list page */
.rb-addresses-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}
.rb-address-card {
	padding: 22px;
}
.rb-address-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(var(--rb-shadow-rgb), 0.06);
}
.rb-address-card__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--rb-cream-tint);
	color: var(--rb-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
}
.rb-address-card__header h3 {
	margin: 0;
	font-size: 17px;
	color: var(--rb-text);
}
.rb-address-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #e0f5e6;
	color: #1c8a44;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
}
.rb-address-card__badge .dashicons {
	font-size: 12px;
	width: 12px;
	height: 12px;
}
.rb-address-card__edit {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--rb-gold-dark);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid var(--rb-border-tan);
	border-radius: 6px;
	padding: 8px 14px;
}
.rb-address-card__edit:hover {
	background: var(--rb-cream-tint);
}
.rb-address-card address {
	font-style: normal;
	font-size: 14px;
	line-height: 1.8;
	color: var(--rb-text-muted);
}
.rb-address-card address p {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 6px 0 0;
}
.rb-address-card address .dashicons {
	color: var(--rb-gold-dark);
	font-size: 15px;
}
.rb-address-card__empty {
	color: var(--rb-text-light);
	font-size: 14px;
	margin: 0;
}

.rb-address-add-cta {
	display: flex;
	align-items: center;
	gap: 16px;
	border: 1px dashed var(--rb-border-tan);
	border-radius: 12px;
	padding: 20px 24px;
	text-decoration: none;
	background: var(--rb-white);
}
.rb-address-add-cta:hover {
	background: var(--rb-cream-tint);
}
.rb-address-add-cta__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--rb-gold-2);
	color: var(--rb-gold-2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}
.rb-address-add-cta strong {
	display: block;
	color: var(--rb-text);
	font-size: 15px;
}
.rb-address-add-cta small {
	color: var(--rb-text-light);
	font-size: 13px;
}
.rb-address-add-cta > span:nth-child(2) {
	flex: 1 1 auto;
}
.rb-address-add-cta .rb-btn {
	flex-shrink: 0;
	pointer-events: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

@media (max-width: 700px) {
	.rb-addresses-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.rb-address-add-cta {
		flex-wrap: wrap;
	}
}

/* Add/Edit address form page */
.rb-address-form {
	padding: 28px;
}
.rb-address-form__title {
	margin: 0 0 22px;
	font-size: 19px;
	color: var(--rb-text);
}
.rb-address-form__actions {
	margin: 24px 0 0;
}

/* Account details page */
.rb-field-hint {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	font-style: italic;
	color: var(--rb-text-light);
}
.rb-password-fieldset {
	margin-top: 10px;
	padding-top: 20px;
	border-top: 1px solid rgba(var(--rb-shadow-rgb), 0.08);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.rb-password-fieldset__title {
	margin: 0;
	font-size: 16px;
	color: var(--rb-text);
}
.rb-password-fieldset__title small {
	font-size: 13px;
	font-weight: 400;
	color: var(--rb-text-light);
}
