:root {
	--rsl-primary: #006039;
	--rsl-primary-strong: #127749;
	--rsl-service: #a37e2c;
	--rsl-brown: #452c1e;
	--rsl-dark: #212121;
	--rsl-text: #212121;
	--rsl-muted: #767676;
	--rsl-border: #d4d4d4;
	--rsl-bg: #ffffff;
	--rsl-beige: #faf8fa;
	--rsl-light-beige: #f2f2f2;
	--rsl-danger: #bc0000;
}

.rsl-store-locator {
	position: relative;
	font-family: 'Helvetica';
	color: var(--rsl-text);
	background: var(--rsl-bg);
	border: 1px solid #f0f0f0;
}

.rsl-layout {
	display: grid;
	grid-template-columns: 40% 60%;
	min-height: min(80vh, 920px);
	position: relative;
	transition: grid-template-columns .28s ease;
}

.rsl-sidebar {
	display: flex;
	flex-direction: column;
	border-right: 1px solid var(--rsl-border);
	background: #fff;
	overflow: hidden;
	position: relative;
	transition: opacity .22s ease;
}

.rsl-store-locator.rsl-sidebar-collapsed .rsl-layout {
	grid-template-columns: 0 minmax(0, 1fr);
}

.rsl-store-locator.rsl-sidebar-collapsed .rsl-sidebar {
	opacity: 0;
	pointer-events: none;
	border-right: 0;
}

.rsl-sidebar-toggle {
    position: absolute;
    left: calc(42% - 18px);
    top: 20px;
    z-index: 40;
    width: 44px;
    height: 44px;
    border: 1px solid var(--rsl-border);
    border-radius: 999px;
    background: #fff;
    color: var(--rsl-brown);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: left .28s ease, transform .28s ease, color .2s ease, background-color .2s ease;
}

.rsl-sidebar-toggle:hover,
.rsl-sidebar-toggle:focus-visible {
	background: #fff;
	color: var(--rsl-primary);
}

.rsl-sidebar-toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	transition: transform .28s ease;
}

.rsl-store-locator.rsl-sidebar-collapsed .rsl-sidebar-toggle {
	left: 12px;
}

.rsl-store-locator.rsl-sidebar-collapsed .rsl-sidebar-toggle-icon {
	transform: rotate(180deg);
}

.rsl-filter-bar {
	display: flex;
	gap: 10px;
	padding: 20px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	background: #fff;
}

.rsl-filter-bar::-webkit-scrollbar {
	display: none;
	height: 0;
	width: 0;
}

.rsl-filter-pill {
	border: 1px solid #adadad;
	border-radius: 999px;
	background: #fff;
	color: var(--rsl-dark);
	padding: 8px 15px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.1;
	white-space: nowrap;
	cursor: pointer;
	transition: all .2s ease;
}

.rsl-filter-pill[aria-pressed="true"] {
    background: var(--rsl-primary-strong);
    border-color: var(--rsl-primary-strong);
    color: #fff;
}

.rsl-store-list {
    overflow-y: auto;
    padding: 0;
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(80vh - 72px);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rsl-store-list::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}
.rsl-store-card {
	padding: 18px 20px;
	border-top: 1px solid var(--rsl-border);
	background: #fff;
	transition: background-color .2s ease;
	cursor: pointer;
}

.rsl-store-card.rsl-is-active {
    background: #f4efea4d;
}

.rsl-store-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
}

.rsl-tag {
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	padding: 5px 8px;
	border-radius: 4px;
	border: 1px solid transparent;
}

.rsl-tag-retailer {
    background: #f2f2f2;
    color: var(--rsl-primary);
}

.rsl-tag-cpo {
	background: #212121;
	color: #fff;
}

.rsl-tag-service {
    background: #f2f2f2;
    color: var(--rsl-service);
    /* border-color: var(--rsl-service); */
}
.rsl-store-title {
    font-size: clamp(18px, 1.25vw + 6px, 24px);
    line-height: 1.2;
    margin: 0 0 12px;
    font-weight: 600;
    color: var(--rsl-brown);
}

.rsl-store-address {
    color: var(--rsl-text);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

.rsl-store-status {
	margin: 16px 0 14px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
	color: var(--rsl-dark);
}

.rsl-store-status-label {
    font-weight: 700;
    margin-right: 8px;
}

.rsl-store-status-hours {
	font-weight: 300;
	color: var(--rsl-dark);
}

.rsl-store-status-open {
	color: var(--rsl-primary);
}

.rsl-store-status-closed,
.rsl-store-status-unknown {
	color: var(--rsl-brown);
}

.rsl-actions {
	display: flex;
	gap: 10px;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	cursor: grab;
	padding-bottom: 2px;
	margin-left: -20px;
	margin-right: -20px;
	padding-left: 20px;
	padding-right: 20px;
}

.rsl-actions.rsl-is-dragging {
	cursor: grabbing;
}

.rsl-actions.rsl-is-dragging * {
	user-select: none;
}

.rsl-actions::-webkit-scrollbar {
	display: none;
	height: 0;
	width: 0;
}

.rsl-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 0 0 auto;
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: var(--rsl-light-beige);
	color: var(--rsl-dark);
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1;
	cursor: pointer;
	white-space: nowrap;
}

.rsl-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.15em;
    height: 1.15em;
    color: var(--rsl-text);
}

.rsl-button-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.rsl-button-label {
	min-width: 0;
}

.rsl-button:hover, .rsl-button:focus-visible {
    /* border-color: #9f9f9f; */
    background: white;
    color: var(--rsl-primary-strong);
}

.rsl-filter-pill-service{
	background: transparent;
    color: var(--rsl-service);
    border-color: var(--rsl-service);
}

.rsl-filter-pill-cpo{
    background: transparent;
    color: var(--rsl-text);
    border-color: var(--rsl-dark);
}

.rsl-button-phone {
	font-weight: 700;
}

.rsl-store-details {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--rsl-border);
	font-size: 14px;
	line-height: 1.5;
}

.rsl-detail-block + .rsl-detail-block {
	margin-top: 8px;
}

.rsl-hours-list {
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

.rsl-hours-list li {
	margin-bottom: 4px;
}

.rsl-map {
	position: relative;
	background: #f3f3f3;
}

.rsl-map-canvas {
	position: sticky;
	top: 0;
	width: 100%;
	height: min(80vh, 920px);
	min-height: 500px;
}

.rsl-map-external {
	position: sticky;
	top: 0;
	height: min(80vh, 920px);
	min-height: 500px;
	background: #f5f5f5;
}

.rsl-map-external > * {
	width: 100%;
	height: 100%;
}

.rsl-store-panel {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 30;
    background: #fff;
    transform: translateX(102%);
    transition: transform .3s ease;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.rsl-store-panel::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

.rsl-store-locator.rsl-panel-open .rsl-store-panel {
	transform: translateX(0);
}

.rsl-store-panel-close svg{
    fill: var(--rsl-brown);
	width: 12px;
    height: 12px;
}

.rsl-store-panel-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.95);
    font-size: 22px;
    line-height: 1;
    padding: 0;
    color: var(--rsl-brown);
    cursor: pointer;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rsl-store-panel-media {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #f6f6f6;
}

.rsl-store-panel-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rsl-store-panel-content {
	padding: 30px 40px 40px;
}

.rsl-store-panel-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 12px;
}

.rsl-store-panel-title {
	font-size: clamp(18px, 1.25vw + 6px, 24px);
	line-height: 1.2;
	margin: 0 0 18px;
	color: var(--rsl-dark);
}

.rsl-store-panel-address {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.3;
	color: var(--rsl-brown);
}

.rsl-store-panel-address > div + div {
	margin-top: 2px;
}

.rsl-store-panel-hours {
	margin: 0 0 26px;
}

.rsl-store-panel-status {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--rsl-dark);
}

.rsl-store-panel-weekly-hours {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 6px;
}

.rsl-store-panel-weekday {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	font-size: 14px;
	line-height: 1.3;
	color: var(--rsl-dark);
}

.rsl-store-panel-weekday.rsl-store-panel-weekday-current {
    font-weight: 600;
}

.rsl-store-panel-weekday-hours {
	text-align: right;
	font-weight: 400;
}

.rsl-store-panel-weekday-current .rsl-store-panel-weekday-label,
.rsl-store-panel-weekday-current .rsl-store-panel-weekday-hours {
	color: var(--rsl-primary);
}

.rsl-store-panel-ctas {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.rsl-store-panel-cta {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    column-gap: 14px;
    text-decoration: none;
    color: var(--rsl-brown);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
}

.rsl-store-panel-cta:hover {
    color: var(--rsl-primary-strong);
}

.rsl-store-panel-cta-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rsl-light-beige);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--rsl-brown);
}

.rsl-store-panel-cta-icon svg {
    width: 14px;
    height: 14px;
}

.rsl-store-panel-cta-disabled {
	opacity: .5;
	pointer-events: none;
}

.rsl-marker {
	width: 52px;
	height: 64px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.14));
}

.rsl-mobile-panel {
	display: none;
}

.rsl-empty-state {
	padding: 20px 16px;
	color: var(--rsl-muted);
}

.rsl-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 999999;
	padding: 24px;
}

.rsl-modal-dialog {
	max-width: 640px;
	max-height: 90vh;
	overflow: auto;
	background: #fff;
	border-radius: 10px;
	margin: 0 auto;
	padding: 22px;
	position: relative;
}

.rsl-modal-close {
	position: absolute;
	right: 12px;
	top: 8px;
	background: transparent;
	border: 0;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
}

/* ---------------------------------------------------------------------------
   Single store details ([rolex_store_details]) — map left, boutique data right
   --------------------------------------------------------------------------- */

.rsl-single-store {
	position: relative;
	font-family: 'Helvetica';
	color: var(--rsl-text);
	background: var(--rsl-bg);
}

.rsl-single-store-layout {
	display: grid;
	grid-template-columns: minmax(0, 60%) minmax(0, 40%);
	align-items: stretch;
}

.rsl-single-store-map {
	position: relative;
	background: #f3f3f3;
	min-height: 420px;
}

.rsl-single-store-map-canvas,
.rsl-single-store-map-external {
	position: relative;
	top: auto;
	width: 100%;
	height: 100%;
	min-height: 420px;
}

.rsl-single-store-map-external > * {
	width: 100%;
	height: 100%;
}

.rsl-single-store-info {
	padding: 48px 56px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	max-width: 100%;
}

.rsl-single-store-title {
	margin: 0 0 18px;
}

.rsl-single-store .rsl-store-address {
	margin-bottom: 20px;
}

.rsl-single-store-hours {
	width: 100%;
	margin-bottom: 26px;
	position: relative;
}

.rsl-single-store-hours-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	font: inherit;
	color: inherit;
	text-align: left;
}

.rsl-single-store-hours-toggle .rsl-store-status {
	margin: 0;
}

.rsl-single-store-hours-caret {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--rsl-primary);
	transition: transform .2s ease;
}

.rsl-single-store-hours-toggle[aria-expanded="true"] .rsl-single-store-hours-caret {
	transform: rotate(180deg);
}

.rsl-single-store-weekly-hours {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	z-index: 25;
	margin: 0;
	width: min(340px, 100%);
	background: #fff;
	border: 1px solid var(--rsl-border);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
	padding: 16px 18px;
}

.rsl-single-store-weekly-hours[hidden] {
	display: none;
}

.rsl-single-store-ctas {
	width: 100%;
	max-width: 380px;
}

@media (max-width: 1024px) {
	/* Full-bleed: anchor the block to the exact viewport width so that
	   negative margins on theme/WPBakery wrappers cannot shift it off-screen. */
	.rsl-single-store {
		box-sizing: border-box;
		width: 100vw !important;
		max-width: 100vw !important;
		margin-left: calc(50% - 50vw) !important;
		margin-right: 0 !important;
	}

	.rsl-single-store-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.rsl-single-store-map {
		order: 2;
		min-height: 0;
	}

	.rsl-single-store-map-canvas,
	.rsl-single-store-map-external {
		height: min(60vh, 520px);
		min-height: 380px;
	}

	.rsl-single-store .rsl-single-store-info {
		order: 1;
		padding: 15px !important;
		padding-left: 40px !important;

	}

	.rsl-single-store .rsl-single-store-ctas {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		justify-content: flex-start !important;
		width: 100% !important;
		min-width: 0;
		max-width: none !important;
		align-self: stretch;
		gap: 10px;
		overflow-x: auto !important;
		overflow-y: hidden;
		scrollbar-width: none;
		-ms-overflow-style: none;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		margin: 0 !important;
		padding: 0 !important;
	}

	.rsl-single-store-ctas::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}

	.rsl-single-store-ctas .rsl-store-panel-cta {
		display: inline-flex !important;
		align-items: center;
		gap: 8px;
		flex: 0 0 auto !important;
		width: auto !important;
		max-width: none !important;
		padding: 10px 18px;
		border-radius: 999px;
		background: var(--rsl-light-beige);
		color: var(--rsl-dark);
		font-size: 14px;
		font-weight: 600;
		white-space: nowrap;
	}

	.rsl-single-store-ctas .rsl-store-panel-cta-icon {
		width: 1.15em;
		height: 1.15em;
		background: transparent;
		border-radius: 0;
		color: var(--rsl-text);
	}

	.rsl-single-store-ctas .rsl-store-panel-cta-icon svg {
		width: 100%;
		height: 100%;
	}
}

@media (max-width: 1024px) {
	.rls-mobile-fullwidth{
		width: 100%;
		padding: 0 !important;
	}
	
	.rsl-layout {
		grid-template-columns: 1fr;
		min-height: auto;
		position: relative;
		overflow: hidden;
	}

	.rsl-sidebar-toggle {
		display: none;
	}

	.rsl-map {
		order: 1;
		position: relative;
		z-index: 1;
	}

	.rsl-sidebar {
		order: 1;
		position: absolute;
		inset: 0;
		z-index: 4;
		height: 100%;
		min-height: 0;
		max-height: none;
		transform: translateY(18px);
		opacity: 0;
		visibility: hidden;
		transition: transform .28s ease, opacity .2s ease, visibility 0s linear .28s;
		border-right: 0;
		border-top: 0;
		border-radius: 0;
		box-shadow: none;
		pointer-events: none;
	}

	.rsl-store-locator.rsl-list-open .rsl-sidebar {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		transition-delay: 0s, 0s, 0s;
		pointer-events: auto;
	}

	.rsl-filter-bar-desktop {
		display: flex;
		padding: 14px 16px;
		border-bottom: 1px solid var(--rsl-border);
	}

	.rsl-map-canvas,
	.rsl-map-external {
		position: relative;
		height: min(78vh, 760px);
		min-height: 500px;
	}

	.rsl-mobile-panel {
		display: flex;
		flex-direction: column;
		gap: 10px;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 6;
		background: #fff;
		border-top: 1px solid var(--rsl-border);
		padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
		align-items: stretch;
	}

	.rsl-store-locator.rsl-list-open .rsl-mobile-panel {
		top: 0;
		bottom: auto;
		background: transparent;
		border: 0;
		padding: 12px 16px;
		align-items: flex-end;
	}

	.rsl-mobile-toggle {
		width: auto;
		margin-left: auto;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		color: var(--rsl-primary);
		font-size: 20px;
		line-height: 1;
		font-weight: 700;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 6px;
	}

	.rsl-mobile-toggle-label {
		font-size: 14px;
		line-height: 1;
		font-weight: 700;
	}

	.rsl-mobile-toggle-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		transform: rotate(-90deg);
		transform-origin: center;
		transition: transform .24s ease;
		color: var(--rsl-primary);
	}

	.rsl-mobile-toggle-icon svg {
		display: block;
		fill: currentColor;
	}

	.rsl-store-locator.rsl-list-open .rsl-mobile-toggle {
		margin-left: 0;
		width: auto;
		justify-content: flex-end;
		gap: 4px;
	}

	.rsl-store-locator.rsl-list-open .rsl-mobile-toggle-label {
		font-size: 14px;
		font-weight: 700;
		letter-spacing: .01em;
	}

	.rsl-store-locator.rsl-list-open .rsl-mobile-toggle-icon {
		transform: rotate(90deg);
		width: 12px;
		height: 12px;
	}

	.rsl-store-locator.rsl-list-open .rsl-sidebar .rsl-filter-bar-desktop {
		margin-top: 28px;
		padding-top: 8px;
	}

	.rsl-filter-bar-mobile {
		padding: 0;
		border: 0;
	}

	.rsl-store-locator.rsl-list-open .rsl-filter-bar-mobile {
		display: none;
	}

	.rsl-store-locator.rsl-panel-open .rsl-mobile-panel {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.rsl-store-title {
		font-size: 20px;
	}

	.rsl-store-panel {
		position: absolute;
		inset: 0;
		width: 100%;
		min-width: 0;
		max-width: 100%;
		height: 100%;
		min-height: 0;
		max-height: none;
		transform: translateY(100%);
	}

	.rsl-store-locator.rsl-panel-open .rsl-store-panel {
		transform: translateY(0);
	}

	.rsl-store-panel-content {
		padding: 18px 16px 24px;
	}

	.rsl-store-panel-title {
		font-size: 20px;
	}

	.rsl-store-panel-close {
		top: 14px;
		right: 14px;
	}

	.rsl-button {
		font-size: 12px;
	}

	.rsl-store-panel-cta {
		grid-template-columns: 52px 1fr;
		font-size: 16px;
	}

	.rsl-store-panel-cta-icon {
		width: 52px;
		height: 52px;
	}

	.rsl-button {
		flex: 0 0 auto;
		min-width: 0;
	}
}
