:root {
	--bym-pink: #e84a8a;
	--bym-pink-dark: #d63384;
	--bym-pink-soft: #fff0f6;
	--bym-border: #ece7ee;
	--bym-text: #2d2a32;
	--bym-muted: #7a7380;
	--bym-bg: #f7f5f8;
	--bym-card: #ffffff;
	--bym-shadow: 0 10px 30px rgba(45, 42, 50, 0.06);
}

.bym-form-shell {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 1.5rem;
	max-width: 1180px;
	margin: 0 auto 3rem;
	font-family: inherit;
	color: var(--bym-text);
}

.bym-form-sidebar {
	position: sticky;
	top: 24px;
	align-self: start;
	background: var(--bym-card);
	border: 1px solid var(--bym-border);
	border-radius: 18px;
	padding: 1.25rem;
	box-shadow: var(--bym-shadow);
}

.bym-sidebar-kicker {
	margin: 0 0 0.35rem;
	font-size: 14px !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--bym-pink);
}

.bym-sidebar-title {
	margin: 0 0 1rem;
	font-size: 14px !important;
	line-height: 1.35;
	font-weight: 700;
}

.bym-progress-wrap {
	margin-bottom: 1.25rem;
}

.bym-progress-step {
	font-size: 16px !important;
}

.bym-progress-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	font-size: 14px;
	color: var(--bym-muted);
	margin-bottom: 0.45rem;
}

.bym-progress-bar {
	height: 8px;
	background: #f1e9ef;
	border-radius: 999px;
	overflow: hidden;
}

.bym-progress-fill {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--bym-pink), #f08ab8);
	border-radius: 999px;
	transition: width 0.25s ease;
}

.bym-sidebar-nav {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.bym-nav-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.75rem 14px;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	border: 1px solid transparent;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.bym-nav-item:hover {
	background: #faf7fa;
}

.bym-nav-item.is-active {
	background: var(--bym-pink-soft);
	border-color: #f6c8dc;
}

.bym-nav-num {
	flex: 0 0 28px;
	height: 28px;
	border-radius: 999px;
	background: #f1e9ef;
	color: var(--bym-muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}

.bym-nav-item.is-active .bym-nav-num {
	background: var(--bym-pink);
	color: #fff;
}

.bym-nav-text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.bym-nav-text strong {
	font-size: 15px;
	line-height: 1.2;
}

.bym-nav-text small {
	font-size: 12px;
	color: var(--bym-muted);
	line-height: 1.3;
}

.bym-sidebar-help {
	margin-top: 1.25rem;
	padding: 0.9rem;
	border-radius: 12px;
	background: #faf7fa;
	border: 1px dashed #e7d9e2;
	font-size: 14px !important;
	color: var(--bym-muted);
}

.bym-sidebar-help strong,
.bym-sidebar-help p,
.bym-sidebar-help a {
	font-size: 14px !important;
}

.bym-sidebar-help strong {
	display: block;
	color: var(--bym-text);
	margin-bottom: 0.35rem;
}

.bym-form-main {
	min-width: 0;
}

.bym-form {
	max-width: none;
	margin: 0;
}

.bym-profile-hero {
	position: relative;
	margin-bottom: 1.25rem;
}

.bym-profile-cover {
	height: 160px;
	border-radius: 18px 18px 0 0;
	background:
		linear-gradient(135deg, rgba(232, 74, 138, 0.15), rgba(240, 138, 184, 0.35)),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23e84a8a' fill-opacity='0.08'%3E%3Ccircle cx='20' cy='20' r='8'/%3E%3Ccircle cx='80' cy='40' r='10'/%3E%3Ccircle cx='50' cy='90' r='6'/%3E%3C/g%3E%3C/svg%3E");
	background-size: cover, auto;
	border: 1px solid var(--bym-border);
	border-bottom: none;
}

.bym-profile-avatar-wrap {
	position: relative;
	margin-top: -56px;
	padding: 0 1.5rem 1.25rem;
	background: var(--bym-card);
	border: 1px solid var(--bym-border);
	border-top: none;
	border-radius: 0 0 18px 18px;
	box-shadow: var(--bym-shadow);
}

.bym-form input::placeholder,
.bym-form textarea::placeholder {
	color: #bfb8c5;
	opacity: 1;
}

.bym-profile-avatar {
	width: 112px;
	height: 112px;
	border-radius: 999px;
	overflow: hidden;
	border: 4px solid #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	background: #f7edf2;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.bym-profile-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bym-profile-placeholder {
	font-size: 2rem;
	color: var(--bym-pink);
	font-weight: 300;
}

.bym-profile-upload-btn {
	display: inline-flex;
	margin-top: 14px;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: var(--bym-pink-soft);
	color: var(--bym-pink-dark);
	font-size: 15px !important;
	font-weight: 600;
	cursor: pointer;
}

.bym-profile-avatar-wrap .bym-hint {
	font-size: 15px !important;
}

.bym-file-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	overflow: hidden;
}

.bym-card {
	background: var(--bym-card);
	border: 1px solid var(--bym-border);
	border-radius: 18px;
	padding: 1.35rem 1.5rem;
	margin-bottom: 1rem;
	box-shadow: var(--bym-shadow);
	scroll-margin-top: 24px;
}

.bym-card-header {
	margin-bottom: 1.15rem;
}

.bym-card-header h3 {
	margin: 0 0 0.35rem;
	font-size: 18px;
	font-weight: 700;
}

.bym-card-header p {
	margin: 0;
	color: var(--bym-muted);
	font-size: 14px;
}

.bym-section {
	margin-bottom: 1rem;
	padding-bottom: 30px;
	border-bottom: none;
	padding-top: 30px;
}

.bym-section-title {
	font-size: 1.25rem;
	margin: 0 0 1.25rem;
	font-weight: 600;
}

.bym-field {
	margin-bottom: 1.1rem;
}

.bym-field label,
.bym-field legend {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
	font-size: 16px;
}

.bym-field input[type="text"],
.bym-field input[type="text"].bym-date-input,
.bym-field input[type="search"],
.bym-field input[type="url"],
.bym-field input[type="tel"],
.bym-field input[type="date"],
.bym-field input[type="number"],
.bym-field input[type="file"],
.bym-field select,
.bym-field textarea {
	width: 100%;
	padding: 14px 14px;
	border: 1px solid #ddd5df;
	border-radius: 10px;
	font-size: 14px;
	box-sizing: border-box;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bym-field input:focus,
.bym-field select:focus,
.bym-field textarea:focus {
	outline: none;
	border-color: #efb8cf;
	box-shadow: 0 0 0 3px rgba(232, 74, 138, 0.12);
}

.bym-field textarea {
	resize: vertical;
	min-height: 120px;
}

.bym-req {
	color: var(--bym-pink-dark);
}

.bym-hint {
	font-size: 14px !important;
	color: var(--bym-muted);
	margin: 0.35rem 0 0;
}

.bym-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.bym-region-groups {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-height: 420px;
	overflow: auto;
	margin-top: 0.75rem;
	padding: 0.75rem;
	border: 1px solid #ece7ee;
	border-radius: 14px;
	background: #faf7fa;
}

.bym-region-group h4 {
	margin: 0 0 0.55rem;
	font-size: 17px;
	color: #d63384;
}

.bym-tag-grid,
.bym-pill-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.bym-tag-option,
.bym-pill-option {
	display: inline-flex;
	cursor: pointer;
	position: relative;
}

.bym-tag-option input,
.bym-pill-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.bym-tag-option span,
.bym-pill-option span {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	border: 1px solid #ddd5df;
	background: #fff;
	font-size: 12px;
	font-weight: 500;
	transition: all 0.2s ease;
}

.bym-tag-option input:checked + span,
.bym-pill-option input:checked + span {
	background: var(--bym-pink-soft);
	border-color: #efb8cf;
	color: var(--bym-pink-dark);
}

.bym-service-item {
	border: 1px solid var(--bym-border);
	border-radius: 16px;
	padding: 0;
	margin-bottom: 14px;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bym-service-item:not(.is-active) {
	border-color: #ece7ee;
}

.bym-service-item:not(.is-active) .bym-service-head {
	padding: 0.65rem 1rem;
	background: #fff;
}

.bym-service-item.is-active {
	border-color: #efb8cf;
	box-shadow: 0 8px 24px rgba(232, 74, 138, 0.08);
}

.bym-service-item.is-hidden-by-search {
	display: none;
}

.bym-service-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.1rem;
	background: #fcfafb;
}

.bym-service-item.is-active .bym-service-head {
	background: var(--bym-pink-soft);
}

.bym-service-toggle {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
	cursor: pointer;
	margin: 0;
	flex: 1;
	min-width: 0;
}

.bym-service-name {
	font-size: 14px;
	line-height: 1.3;
}

.bym-service-toggle input {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	accent-color: var(--bym-pink);
}

.bym-service-status {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--bym-muted);
	padding: 0.3rem 0.55rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--bym-border);
}

.bym-service-item.is-active .bym-service-status {
	color: var(--bym-pink-dark);
	border-color: #efb8cf;
	background: #fff;
}

.bym-service-panel {
	padding: 1rem 1.1rem 1.15rem;
	border-top: 1px solid #f1e9ef;
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
}

.bym-services-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
	border: 1px solid var(--bym-border);
	border-radius: 14px;
	background: #faf7fa;
}

.bym-services-search {
	flex: 1 1 240px;
	margin: 0;
}

.bym-services-search input {
	width: 100%;
	padding: 14px 0.9rem;
	border: 1px solid #ddd5df;
	border-radius: 999px;
	font-size: 15px !important;
	box-sizing: border-box;
	background: #fff;
}

#bym-service-search::placeholder {
	font-size: 15px !important;
}

.bym-services-count {
	font-size: 14px;
	color: var(--bym-muted);
	white-space: nowrap;
}

.bym-services-count span {
	color: var(--bym-pink-dark);
	font-weight: 700;
}

.bym-service-desc-wrap textarea {
	min-height: 110px;
}

.bym-service-desc-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 0.35rem;
}

.bym-service-gallery-block {
	padding: 0.95rem;
	border: 1px solid #f1e9ef;
	border-radius: 14px;
	background: #fffbfd;
}

.bym-service-gallery-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.bym-service-gallery-head label {
	margin: 0;
	font-weight: 600;
}

.bym-optional {
	font-size: 13px;
	font-weight: 600;
	color: var(--bym-muted);
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #e7d9e2;
}

.bym-service-upload {
	position: relative;
	border: 2px dashed #e7d9e2;
	border-radius: 14px;
	padding: 1.25rem 1rem;
	text-align: center;
	background: #fff;
}

.bym-service-upload:hover,
.bym-service-upload.is-dragover {
	border-color: #efb8cf;
	background: var(--bym-pink-soft);
}

.bym-service-upload-label {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	cursor: pointer;
	margin: 0;
}

.bym-service-upload-label strong {
	font-size: 14px;
	color: var(--bym-text);
}

.bym-service-upload-label span {
	font-size: 12px;
	color: var(--bym-muted);
}

.bym-service-file {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.bym-service-file-note {
	margin: 0.75rem 0 0;
	font-size: 10px;
	color: var(--bym-muted);
}

.bym-service-existing {
	margin-bottom: 0.75rem;
}

.bym-service-new-preview {
	margin-bottom: 0.75rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.bym-offers-table {
	border: 1px solid var(--bym-border);
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.bym-offers-head,
.bym-offer-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 44px;
	gap: 0.65rem;
	align-items: center;
	padding: 14px 1rem;
}

.bym-offers-head {
	background: #faf7fa;
	font-size: 14px;
	font-weight: 700;
	color: var(--bym-muted);
	border-bottom: 1px solid var(--bym-border);
}

.bym-offer-row + .bym-offer-row {
	border-top: 1px solid #f1e9ef;
}

.bym-remove-offer {
	background: #fff;
	border: 1px solid #ddd5df;
	border-radius: 10px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	font-size: 1.25rem;
	line-height: 1;
	color: var(--bym-muted);
}

.bym-upload-zone {
	border: 2px dashed #e7d9e2;
	border-radius: 16px;
	padding: 2rem 1rem;
	text-align: center;
	background: #fffbfd;
	position: relative;
}

.bym-upload-zone input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.bym-upload-zone-label {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	pointer-events: none;
}

.bym-upload-zone-label span {
	color: var(--bym-muted);
	font-size: 14px;
}

.bym-btn,
.bym-btn-secondary,
.bym-btn-outline,
.bym-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.8rem 1.35rem;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	font-size: 14px !important;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.bym-btn-primary,
.bym-btn {
	background: linear-gradient(135deg, var(--bym-pink), #f08ab8);
	color: #fff;
	box-shadow: 0 10px 24px rgba(232, 74, 138, 0.25);
}

.bym-btn-primary:hover,
.bym-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(232, 74, 138, 0.28);
}

.bym-btn-secondary {
	background: #fff;
	color: var(--bym-text);
	border: 1px solid #ddd5df;
}

.bym-address-wrap[hidden] {
	display: none !important;
}

.bym-address-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 1rem;
	margin-top: 0.5rem;
}

.bym-address-actions .bym-hint {
	margin: 0;
	flex: 1 1 220px;
}

.bym-address-status {
	margin: 0.5rem 0 0;
	font-size: 14px;
	color: var(--bym-pink-dark);
}

.bym-address-status.is-error {
	color: #b42318;
}

.bym-address-req[hidden] {
	display: none;
}

.pac-container {
	z-index: 100000 !important;
}

.bym-btn-outline {
	background: #fff;
	color: var(--bym-pink-dark);
	border: 1px solid #efb8cf;
}

.bym-form-footer {
	position: sticky;
	bottom: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 0 0;
	background: linear-gradient(180deg, rgba(247, 245, 248, 0), rgba(247, 245, 248, 0.95) 35%);
}

.bym-btn-secondary {
	background: #fff;
	color: var(--bym-text);
	border: 1px solid var(--bym-border);
}

.bym-service-prices {
	margin-bottom: 0.75rem;
}

.bym-portfolio-item {
	position: relative;
	width: 96px;
	height: 96px;
}

.bym-portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

.bym-portfolio-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
}

.bym-preview-modal {
	position: fixed;
	inset: 0;
	z-index: 100001;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.bym-preview-modal[hidden] {
	display: none !important;
}

.bym-preview-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 18, 24, 0.55);
}

.bym-preview-modal-dialog {
	position: relative;
	width: min(1120px, 100%);
	max-height: 92vh;
	overflow: auto;
	background: #fff;
	border-radius: 18px;
	box-shadow: var(--bym-shadow);
}

.bym-preview-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--bym-border);
}

.bym-preview-modal-header h3 {
	margin: 0;
	font-size: 1.05rem;
}

.bym-preview-modal-close {
	border: none;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: var(--bym-muted);
}

.bym-preview-modal-body {
	padding: 0;
}

.bym-preview-loading,
.bym-preview-error {
	padding: 2rem 1.25rem;
	text-align: center;
	color: var(--bym-muted);
}

.bym-preview-error {
	color: #b42318;
}

.bym-public-single-preview {
	pointer-events: auto;
}

.bym-public-single-preview-inner {
	width: 100%;
}

.bym-preview-modal-body .bym-public-single-preview-inner .bym-profile-layout {
	padding: 0 1.25rem 1.5rem;
}

.bym-preview-modal-body .bym-public-single-preview-inner .bym-profile-hero {
	margin-bottom: 0;
}

.bym-preview-modal-body .bym-public-single-preview-inner .bym-profile-nav {
	position: sticky;
	top: 0;
	z-index: 2;
	background: #fff;
}

.bym-public-single-preview .bym-profile-hero-actions .bym-btn-primary,
.bym-public-single-preview .bym-profile-hero-actions .bym-btn-outline,
.bym-public-single-preview .bym-profile-nav-link {
	pointer-events: none;
	cursor: default;
}

.bym-artist-card--preview {
	max-width: 100%;
	pointer-events: none;
}

body.bym-preview-open {
	overflow: hidden;
}

.bym-terms-card {
	padding: 1rem 1.25rem;
}

.bym-terms {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 15px !important;
	cursor: pointer;
}

.bym-terms a {
	color: var(--bym-accent, #7c3aed);
	text-decoration: underline;
}

.bym-terms a:hover {
	text-decoration: none;
}

.bym-terms input {
	margin-top: 0;
	accent-color: var(--bym-pink);
}

.bym-notice {
	padding: 1rem 1.25rem;
	border-radius: 12px;
	margin-bottom: 1rem;
}

.bym-notice-success {
	background: #e8f8ee;
	border: 1px solid #9ad4ad;
}

.bym-notice-error {
	background: #fdecea;
	border: 1px solid #e8a9a3;
}

.bym-notice-info {
	background: var(--bym-pink-soft);
	border: 1px solid #efb8cf;
}

.bym-gate {
	text-align: center;
	padding: 2rem;
	border: 1px solid var(--bym-border);
	border-radius: 18px;
	max-width: 480px;
	margin: 2rem auto;
	background: var(--bym-card);
	box-shadow: var(--bym-shadow);
}

.bym-auth-gate {
	max-width: 520px;
	text-align: left;
}

.bym-auth-tabs {
	display: flex;
	gap: 0.5rem;
	margin: 1.5rem 0 1rem;
}

.bym-auth-tab {
	flex: 1;
	text-align: center;
	padding: 0.75rem 1rem;
	border: 1px solid #ddd5df;
	border-radius: 999px;
	text-decoration: none;
	color: inherit;
	font-weight: 600;
	background: #fff;
}

.bym-auth-tab.is-active {
	background: var(--bym-pink);
	color: #fff;
	border-color: var(--bym-pink);
}

.bym-auth-panel {
	margin-top: 0.5rem;
}

.bym-auth-panel .login-username,
.bym-auth-panel .login-password,
.bym-auth-panel .login-remember {
	margin-bottom: 1rem;
	text-align: left;
}

.bym-auth-panel label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.bym-auth-panel input[type="text"],
.bym-auth-panel input[type="email"],
.bym-auth-panel input[type="password"] {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 1px solid #ddd5df;
	border-radius: 10px;
	box-sizing: border-box;
}

.bym-auth-panel .button,
.bym-auth-panel .bym-btn {
	margin-top: 0.5rem;
	border-radius: 999px !important;
	background: var(--bym-pink) !important;
	border: none !important;
	color: #fff !important;
}

.bym-auth-help {
	font-size: 14px;
	color: var(--bym-muted);
}

.bym-auth-switch {
	font-size: 0.95rem;
	color: var(--bym-muted);
}

.bym-auth-switch {
	margin-top: 1rem;
}

.bym-status-note {
	background: #fff8e6;
	border: 1px solid #f0d78c;
	padding: 14px 1rem;
	border-radius: 12px;
	margin-bottom: 1rem;
}

.bym-gallery-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 14px 0 0;
}

.bym-gallery-preview--grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
	gap: 0.65rem;
}

.bym-gallery-preview--grid img,
.bym-service-preview-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.bym-gallery-preview--grid .bym-portfolio-item {
	width: auto;
	height: auto;
	aspect-ratio: 1;
}

.bym-counter {
	font-size: 0.8rem;
	color: var(--bym-muted);
}

@media (max-width: 980px) {
	.bym-form-shell {
		grid-template-columns: 1fr;
	}

	.bym-form-sidebar {
		position: static;
	}

	.bym-sidebar-nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.bym-grid-2,
	.bym-offers-head,
	.bym-offer-row,
	.bym-sidebar-nav {
		grid-template-columns: 1fr;
	}

	.bym-offers-head {
		display: none;
	}

	.bym-offer-row {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}
