/* Service Area Menu Stylesheet */
/* Unique Suffix: af2b523f */

.sam-container-af2b523f {
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid #B8C0CC;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.sam-menu-af2b523f {
	display: flex;
	flex-direction: column;
}

.sam-item-af2b523f:not(:last-child) {
	border-bottom: 1px solid #E5E7EB;
}

.sam-trigger-af2b523f {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 18px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: #0d141a;
	font-weight: 600;
	font-size: 15px;
	transition: background-color 0.2s ease, color 0.2s ease;
	outline: none;
}

.sam-trigger-af2b523f:hover,
.sam-trigger-af2b523f:focus-visible {
	background-color: #F6F7F9;
	color: #4610bd; /* Penguin WC primary theme accent color */
}

.sam-trigger-af2b523f:focus-visible {
	box-shadow: inset 0 0 0 2px #4610bd;
}

.sam-arrow-af2b523f {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: #70777f;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sam-arrow-af2b523f svg {
	width: 100%;
	height: 100%;
}

/* Open State */
.sam-trigger-af2b523f[aria-expanded="true"] {
	background-color: #F6F7F9;
	color: #4610bd;
}

.sam-trigger-af2b523f[aria-expanded="true"] .sam-arrow-af2b523f {
	transform: rotate(180deg);
	color: #4610bd;
}

/* Accordion Animation Wrapper - Scrollable Container (Shows ~5.5 items) */
.sam-cities-wrapper-af2b523f {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background-color: #ffffff;
	border-top: 1px solid transparent;
	
	/* Scrollable settings */
	overflow-y: hidden;
	scrollbar-width: thin;
	scrollbar-color: #B8C0CC transparent;
}

.sam-trigger-af2b523f[aria-expanded="true"] + .sam-cities-wrapper-af2b523f {
	border-top: 1px solid #E5E7EB;
	overflow-y: auto;
}

/* Scrollbar Customization for Webkit */
.sam-cities-wrapper-af2b523f::-webkit-scrollbar {
	width: 6px;
}

.sam-cities-wrapper-af2b523f::-webkit-scrollbar-track {
	background: transparent;
}

.sam-cities-wrapper-af2b523f::-webkit-scrollbar-thumb {
	background-color: #B8C0CC;
	border-radius: 20px;
	border: 1px solid transparent;
}

.sam-cities-wrapper-af2b523f::-webkit-scrollbar-thumb:hover {
	background-color: #70777f;
}

/* City Item styling */
.sam-cities-list-af2b523f {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sam-city-item-af2b523f {
	margin: 0;
	padding: 0;
}

.sam-city-link-af2b523f {
	display: block;
	padding: 10px 24px;
	color: #374151;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	transition: background-color 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.sam-city-link-af2b523f:hover,
.sam-city-link-af2b523f:focus-visible {
	background-color: #F6F7F9;
	color: #4610bd;
	padding-left: 28px;
	outline: none;
}
