:root {
	--bcv-orange: #d95c37;
	--bcv-teal: #138b7d;
	--bcv-ink: #3f3f3f;
	--bcv-muted: #747474;
	--bcv-cream: #fbf3ea;
	--bcv-soft-blue: #dcefed;
	--bcv-white: #ffffff;
	--bcv-border: #d9d2cb;
	--bcv-shadow: 0 18px 45px rgba(63, 63, 63, 0.12);
	--bcv-radius: 26px;
}

.bcv-form-wrap,
.bcv-login-card,
.bcv-member-area,
.bcv-directory-grid {
	box-sizing: border-box;
}
.bcv-merchant-detail__photo img {
    width: 100%;
    object-fit: contain;
}
.bcv-form-wrap,
.bcv-login-card {
	max-width: 760px;
	margin: 32px auto;
	padding: 42px 52px;
	background: var(--bcv-white);
	border-radius: var(--bcv-radius);
	box-shadow: var(--bcv-shadow);
}

.bcv-login-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 58px;
}

.bcv-login-card__signup {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.25;
	color: var(--bcv-muted);
	text-align: left;
}

.bcv-login-card__signup span,
.bcv-login-card__signup a {
	display: block;
}

.bcv-login-card__signup-link {
	color: var(--bcv-orange) !important;
	font-weight: 600;
	text-decoration: none !important;
}

.bcv-login-card__signup-link:hover,
.bcv-login-card__signup-link:focus {
	text-decoration: underline !important;
}

.bcv-login-card__head h2,
.bcv-member-area h1,
.bcv-member-area h2,
.bcv-form-wrap h2 {
	text-transform: uppercase;
	letter-spacing: -0.02em;
	color: var(--bcv-ink);
}

.bcv-login-card__head h2::after,
.bcv-member-area h1::after,
.bcv-member-area h2::after {
	content: "";
	display: block;
	width: 48px;
	height: 2px;
	background: var(--bcv-ink);
	margin: 10px auto 0;
}

.bcv-login-card__head h2 {
	text-align: left;
	font-size: 20px;
	text-transform: none;
}

.bcv-login-card__head h2::after {
	display: none;
}

.bcv-login-card input[type="text"],
.bcv-login-card input[type="password"],
.bcv-form-wrap input[type="text"],
.bcv-form-wrap input[type="email"],
.bcv-form-wrap input[type="tel"],
.bcv-form-wrap input[type="url"],
.bcv-form-wrap select,
.bcv-form-wrap textarea {
	border: 1px solid var(--bcv-border) !important;
	border-radius: 10px !important;
	padding: 14px 16px !important;
	box-shadow: none !important;
}

.bcv-login-card input[type="submit"],
.bcv-form-wrap button[type="submit"],
.bcv-form-wrap input[type="submit"],
.bcv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 14px 28px;
	min-height: 46px;
	background: var(--bcv-orange);
	border: 0;
	border-radius: 10px;
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
	box-shadow: 0 10px 18px rgba(217, 92, 55, 0.22);
	cursor: pointer;
}

.bcv-btn--light {
	background: var(--bcv-white);
	color: var(--bcv-ink) !important;
	box-shadow: none;
}

.bcv-notice {
	padding: 16px 20px;
	border-radius: 12px;
	background: var(--bcv-cream);
	color: var(--bcv-ink);
}

.bcv-notice--success {
	background: var(--bcv-soft-blue);
}

.bcv-member-area {
	max-width: 1120px;
	margin: 40px auto;
	color: var(--bcv-ink);
}

.bcv-member-hero {
	max-width: 660px;
	margin: 0 auto 54px;
	text-align: center;
}

.bcv-member-hero h1 {
	font-size: clamp(26px, 4vw, 36px);
	margin-bottom: 18px;
}

.bcv-member-hero p {
	color: var(--bcv-muted);
	font-size: 17px;
}

.bcv-member-status {
	display: inline-flex;
	gap: 18px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border: 1px solid var(--bcv-border);
	border-radius: 999px;
	background: var(--bcv-white);
}

.bcv-feature-card,

.bcv-feature-card h2,

.bcv-feature-card h2::after,

.bcv-feature-card p {
	margin: 12px 0 0;
	max-width: 520px;
}

.bcv-info-section {
	background: var(--bcv-soft-blue);
	margin: 64px -24px;
	padding: 64px 24px;
}

.bcv-info-section > h2,
.bcv-info-section > p {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.bcv-info-section h2::after {
	margin-left: 0;
}

.bcv-card-grid,
.bcv-directory-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	max-width: 860px;
	margin: 26px auto 0;
}

.bcv-small-card,
.bcv-directory-card {
	background: var(--bcv-white);
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 2px 10px rgba(63, 63, 63, 0.06);
}

.bcv-small-card h3,
.bcv-directory-card h3 {
	margin-top: 0;
	color: var(--bcv-ink);
}

.bcv-profile-callout {
	background: var(--bcv-white);
	border-radius: var(--bcv-radius);
	box-shadow: var(--bcv-shadow);
	padding: 42px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 28px;
	margin: 56px auto;
	max-width: 860px;
}

.bcv-profile-callout h2::after {
	margin-left: 0;
}


.bcv-directory-grid {
	max-width: 1180px;
	gap: 24px;
}

.bcv-directory-card {
	overflow: hidden;
	padding: 0;
}

.bcv-directory-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--bcv-cream);
}

.bcv-directory-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bcv-directory-card__body {
	padding: 22px;
}

.bcv-directory-card ul {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	color: var(--bcv-muted);
	font-size: 14px;
}

.bcv-chip {
	display: inline-flex;
	border-radius: 999px;
	padding: 5px 10px;
	background: var(--bcv-cream);
	color: var(--bcv-orange);
	font-weight: 700;
	font-size: 12px;
	margin-bottom: 10px;
}

@media (max-width: 900px) {
	.bcv-card-grid,
	.bcv-directory-grid {
		grid-template-columns: 1fr;
	}

	.bcv-feature-card,
	.bcv-profile-callout {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.bcv-form-wrap,
	.bcv-login-card {
		padding: 28px 22px;
		border-radius: 18px;
	}

	.bcv-login-card__head {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 34px;
	}

	.bcv-profile-callout {
		padding: 28px 22px;
	}
}

.bcv-login-links {
	margin-top: 0.75rem;
	text-align: right;
}

.bcv-current-merchant-profile {
	max-width: 980px;
	margin: 0 auto;
	background: #fff;
	border-radius: 28px;
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
	padding: clamp(1.5rem, 4vw, 3.5rem);
}

.bcv-current-merchant-profile__header {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	margin-bottom: 2rem;
}

.bcv-current-merchant-profile__image img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 24px;
}

.bcv-current-merchant-profile__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.bcv-current-merchant-profile__field {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 1rem;
}

.bcv-current-merchant-profile__field strong {
	display: block;
	margin-bottom: 0.35rem;
}

.bcv-current-merchant-profile__field--presentation,
.bcv-current-merchant-profile__field--opening_hours,
.bcv-current-merchant-profile__field--logo_photos {
	grid-column: 1 / -1;
}

@media (max-width: 720px) {
	.bcv-current-merchant-profile__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.bcv-current-merchant-profile__fields {
		grid-template-columns: 1fr;
	}
}

.bcv-login-message {
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	border: 1px solid currentColor;
	border-radius: 8px;
	font-size: 0.95rem;
}

.bcv-login-message[hidden] {
	display: none;
}

.bcv-login-message--error {
	font-weight: 600;
}

.bcv-login-message--success {
	font-weight: 600;
}

.bcv-login-submit[disabled] {
	cursor: wait;
	opacity: 0.7;
}

/* Login card layout v0.5.7 */
.bcv-login-card {
	max-width: 620px;
	margin: 32px auto;
	padding: 28px 34px 40px;
	background: var(--bcv-white);
	border-radius: 28px;
	box-shadow: 0 18px 42px rgba(63, 63, 63, 0.10);
}

.bcv-login-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 66px;
}

.bcv-login-card__head h2 {
	margin: 0;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 500;
	text-align: left;
	text-transform: none;
	letter-spacing: 0;
	color: #1f1f1f;
}

.bcv-login-card__head h2::after {
	display: none;
}

.bcv-login-card__signup {
	margin: 0;
	font-size: 14px;
	line-height: 1.15;
	font-weight: 400;
	color: #a19a94;
	text-align: left;
}

.bcv-login-card__signup span,
.bcv-login-card__signup a {
	display: block;
}

.bcv-login-card__signup-link {
	color: var(--bcv-orange) !important;
	font-weight: 500;
	text-decoration: none !important;
}

.bcv-login-form {
	margin: 0;
}

.bcv-login-field {
	margin: 0 0 30px;
}

.bcv-login-field label {
	display: block;
	margin: 0 0 12px;
	font-size: 17px;
	line-height: 1.35;
	font-weight: 500;
	color: #1f1f1f;
}

.bcv-login-card input[type="text"],
.bcv-login-card input[type="password"] {
	width: 100%;
	height: 46px;
	border: 1px solid #bdb7b1 !important;
	border-radius: 8px !important;
	padding: 0 17px !important;
	font-size: 14px;
	line-height: 46px;
	background: #fff;
	box-shadow: none !important;
	box-sizing: border-box;
}

.bcv-login-card input[type="text"]::placeholder,
.bcv-login-card input[type="password"]::placeholder {
	color: #a9a39e;
	opacity: 1;
}

.bcv-login-card input[type="text"]:focus,
.bcv-login-card input[type="password"]:focus {
	outline: none;
	border-color: #86a8ff !important;
	box-shadow: 0 0 0 1px #86a8ff !important;
}

.bcv-password-wrap {
	position: relative;
	display: block;
}

.bcv-password-wrap input[type="password"],
.bcv-password-wrap input[type="text"] {
	padding-right: 52px !important;
}

.bcv-toggle-password {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #9b9692;
	cursor: pointer;
}

.bcv-toggle-password svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.bcv-login-links {
	margin: -17px 0 28px;
	text-align: right;
}

.bcv-login-links a {
	font-size: 13px;
	line-height: 1.4;
	font-weight: 500;
	color: var(--bcv-orange) !important;
	text-decoration: none !important;
}

.bcv-login-links a:hover,
.bcv-login-links a:focus {
	text-decoration: underline !important;
}

.bcv-login-card .login-submit {
	margin: 0;
}

.bcv-login-submit {
	width: 100%;
	min-height: 46px;
	border-radius: 8px;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 9px 18px rgba(217, 92, 55, 0.24);
}

.bcv-login-message {
	margin: 0 0 20px;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.45;
}

.bcv-login-message--error {
	background: #fff1ef;
	color: #a73526;
}

.bcv-login-message--info {
	background: #fbf3ea;
	color: #3f3f3f;
}

.bcv-login-message--success {
	background: #dcefed;
	color: #11665d;
}

@media (max-width: 640px) {
	.bcv-login-card {
		max-width: none;
		padding: 26px 22px 34px;
		border-radius: 22px;
	}

	.bcv-login-card__head {
		margin-bottom: 42px;
	}

	.bcv-login-card__signup {
		text-align: right;
	}
}

/* Native plugin modals for WPForms popups. */
body.bcv-modal-open {
	overflow: hidden;
}

.bcv-modal[hidden] {
	display: none !important;
}

.bcv-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	box-sizing: border-box;
}

.bcv-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(34, 34, 34, 0.42);
}

.bcv-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(860px, 100%);
	max-height: calc(100vh - 56px);
	overflow: auto;
	background: var(--bcv-white);
	border-radius: 30px;
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
	padding: 38px 44px 44px;
	box-sizing: border-box;
}

.bcv-modal--profile .bcv-modal__dialog {
	width: min(1080px, 100%);
}

.bcv-modal__close {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--bcv-ink);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.bcv-modal__close:hover,
.bcv-modal__close:focus {
	background: var(--bcv-cream);
	outline: none;
}

.bcv-modal__title {
	margin: 0 42px 26px;
	text-align: center;
	font-size: 25px;
	line-height: 1.25;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--bcv-ink);
}

.bcv-modal__title::after {
	content: "";
	display: block;
	width: 48px;
	height: 2px;
	background: var(--bcv-ink);
	margin: 12px auto 0;
}

.bcv-modal .bcv-form-wrap--modal {
	max-width: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	border-radius: 0;
	background: transparent;
}

.bcv-modal .wpforms-container {
	margin-bottom: 0;
}

.bcv-modal .wpforms-field-label {
	font-weight: 500;
	color: var(--bcv-ink);
}

.bcv-modal .wpforms-submit,
.bcv-modal button[type="submit"] {
	background: var(--bcv-orange) !important;
	border: 0 !important;
	border-radius: 10px !important;
	box-shadow: 0 10px 18px rgba(217, 92, 55, 0.22) !important;
	color: #fff !important;
	font-weight: 700 !important;
	min-height: 50px !important;
	padding: 13px 28px !important;
}

@media (max-width: 720px) {
	.bcv-modal {
		padding: 14px;
	}

	.bcv-modal__dialog {
		padding: 32px 22px 28px;
		border-radius: 22px;
	}

	.bcv-modal__title {
		font-size: 21px;
		margin-left: 34px;
		margin-right: 34px;
	}
}

/* Merchant directory with AJAX filters v0.6.3 */
.bcv-merchant-directory {
	max-width: 1180px;
	margin: 0 auto;
	color: var(--bcv-ink);
}

.bcv-directory-search {
	width: min(430px, 100%);
	margin: 0 0 48px auto;
	position: relative;
}

.bcv-directory-search input[type="search"] {
	width: 100%;
	height: 44px;
	border: 1px solid #6f6b67;
	border-radius: 999px;
	background: transparent;
	padding: 0 58px 0 24px;
	font-size: 15px;
	box-shadow: none;
	outline: none;
}

.bcv-directory-search input[type="search"]::placeholder {
	color: #b7afa8;
	opacity: 1;
}

.bcv-directory-search button {
	position: absolute;
	right: 9px;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 34px;
	border: 0;
	background: transparent;
	color: var(--bcv-ink);
	font-size: 31px;
	line-height: 1;
	cursor: pointer;
}

.bcv-directory-filters {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	background: #fff;
	border-radius: 999px;
	padding: 10px 26px;
	margin: 0 auto 38px;
	box-shadow: 0 8px 22px rgba(63, 63, 63, 0.06);
	width: fit-content;
	max-width: 100%;
}

.bcv-directory-filters button {
	border: 0;
	background: transparent;
	padding: 3px 0;
	font: inherit;
	font-size: 16px;
	font-weight: 500;
	color: var(--bcv-ink);
	cursor: pointer;
}

.bcv-directory-filters button.is-active {
	font-weight: 800;
}

.bcv-directory-filters span {
	color: var(--bcv-orange);
	font-weight: 700;
}

.bcv-merchant-directory .bcv-directory-grid {
	max-width: none;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px 26px;
	margin: 0;
}

.bcv-merchant-directory .bcv-directory-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 22px rgba(63, 63, 63, 0.08);
	overflow: hidden;
	padding: 0;
}

.bcv-merchant-directory .bcv-directory-card__image {
	aspect-ratio: 16 / 7;
	background: #a9a9a9;
	position: relative;
	display: block;
}

.bcv-merchant-directory .bcv-directory-card__image img,
.bcv-directory-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bcv-directory-card__placeholder {
	background: #a9a9a9;
}

.bcv-directory-card__footer {
	min-height: 54px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 12px 22px;
	background: #fff;
}

.bcv-directory-card__footer h3 {
	margin: 0;
	font-size: 16px;
	line-height: 1.25;
	font-weight: 500;
	color: var(--bcv-ink);
}

.bcv-directory-card__footer p {
	margin: 3px 0 0;
	font-size: 12px;
	line-height: 1.2;
	color: var(--bcv-muted);
}

.bcv-directory-card__arrow {
	font-size: 32px;
	line-height: 1;
	color: var(--bcv-orange);
	flex: 0 0 auto;
}

.bcv-merchant-directory.is-loading .bcv-directory-results {
	opacity: 0.55;
	pointer-events: none;
	transition: opacity 0.18s ease;
}

.bcv-directory-empty {
	max-width: 620px;
	margin: 24px auto;
	text-align: center;
}

@media (max-width: 980px) {
	.bcv-merchant-directory .bcv-directory-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bcv-directory-search {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 640px) {
	.bcv-directory-filters {
		border-radius: 22px;
		justify-content: center;
		gap: 10px 12px;
	}

	.bcv-merchant-directory .bcv-directory-grid {
		grid-template-columns: 1fr;
	}
}

/* Public merchant detail page v0.6.6 */
.bcv-merchant-directory .bcv-directory-card {
	color: inherit;
	text-decoration: none !important;
	display: block;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bcv-merchant-directory .bcv-directory-card:hover,
.bcv-merchant-directory .bcv-directory-card:focus {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(63, 63, 63, 0.14);
}

.bcv-merchant-detail {
	max-width: 1080px;
	margin: 0 auto;
	padding: 22px 0 34px;
	color: var(--bcv-ink);
}

.bcv-merchant-detail--showcase {
	position: relative;
}

.bcv-merchant-detail__title {
	text-align: center;
	margin: 0 0 34px;
}

.bcv-merchant-detail__title h1 {
	margin: 0;
	font-size: clamp(25px, 3vw, 34px);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--bcv-ink);
}

.bcv-merchant-detail__title::after {
	content: "";
	display: block;
	width: 48px;
	height: 2px;
	background: var(--bcv-ink);
	margin: 12px auto 0;
}

.bcv-merchant-detail__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
	gap: 36px;
	align-items: stretch;
	margin-bottom: 54px;
}

.bcv-merchant-detail__photo {
	min-height: 286px;
	border-radius: 8px;
	overflow: hidden;
	background: #a9a9a9;
}

.bcv-merchant-detail__photo img,
.bcv-merchant-detail__photo .bcv-directory-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bcv-merchant-detail__identity {
	border-left: 1px solid #9f9a96;
	padding-left: 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 28px;
}

.bcv-merchant-detail__logo {
	width: 150px;
	max-width: 100%;
	aspect-ratio: 1 / 1;
	background: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.bcv-merchant-detail__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.bcv-merchant-detail__logo--placeholder {
	padding: 16px;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.15;
}

.bcv-merchant-detail__contact {
	display: grid;
	gap: 4px;
	font-size: 15px;
	line-height: 1.32;
	color: var(--bcv-ink);
}

.bcv-merchant-detail__contact strong {
	font-size: 15px;
	font-weight: 800;
	margin-bottom: 10px;
}

.bcv-merchant-detail a {
	color: var(--bcv-ink);
	text-decoration: none;
}

.bcv-merchant-detail a:hover,
.bcv-merchant-detail a:focus {
	color: var(--bcv-orange);
	text-decoration: underline;
}

.bcv-merchant-detail__body {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
	gap: 44px;
	align-items: start;
	padding: 44px 0 24px;
	overflow: hidden;
}

.bcv-merchant-detail__body::after {
	content: "";
	position: absolute;
	right: -34px;
	top: -18px;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background:
		radial-gradient(circle at center, transparent 0 22%, rgba(217, 92, 55, 0.08) 23% 33%, transparent 34% 47%, rgba(217, 92, 55, 0.08) 48% 58%, transparent 59% 72%, rgba(217, 92, 55, 0.08) 73% 84%, transparent 85%);
	pointer-events: none;
}

.bcv-merchant-detail__about {
	max-width: 560px;
}

.bcv-merchant-detail__about p {
	margin: 0 0 15px;
	font-size: 15px;
	line-height: 1.38;
	color: var(--bcv-ink);
}

.bcv-merchant-detail__hours {
	position: relative;
	z-index: 1;
	border-left: 1px solid #9f9a96;
	padding-left: 28px;
	min-height: 150px;
}

.bcv-merchant-detail__hours h2 {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 800;
	color: var(--bcv-ink);
}

.bcv-merchant-detail__text {
	font-size: 15px;
	line-height: 1.25;
	white-space: normal;
}

.bcv-merchant-detail__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.bcv-merchant-detail__socials--inline {
	margin-top: 22px;
}

.bcv-merchant-detail__socials a,
.bcv-merchant-detail__socials span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid var(--bcv-border);
	border-radius: 999px;
	padding: 7px 13px;
	font-size: 13px;
	background: rgba(255,255,255,0.65);
}

.bcv-merchant-detail__gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 28px;
}

.bcv-merchant-detail__gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 8px 22px rgba(63, 63, 63, 0.08);
}

@media (max-width: 980px) {
	.bcv-merchant-detail__hero,
	.bcv-merchant-detail__body {
		grid-template-columns: 1fr;
	}

	.bcv-merchant-detail__identity,
	.bcv-merchant-detail__hours {
		border-left: 0;
		padding-left: 0;
	}

	.bcv-merchant-detail__identity {
		align-items: flex-start;
		border-top: 1px solid #d5cfca;
		padding-top: 26px;
	}

	.bcv-merchant-detail__gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.bcv-merchant-detail {
		padding-top: 8px;
	}

	.bcv-merchant-detail__hero {
		gap: 26px;
		margin-bottom: 34px;
	}

	.bcv-merchant-detail__photo {
		min-height: 220px;
	}

	.bcv-merchant-detail__logo {
		width: 120px;
	}

	.bcv-merchant-detail__body {
		gap: 28px;
		padding-top: 20px;
	}

	.bcv-merchant-detail__gallery {
		grid-template-columns: 1fr;
	}
}

/* Public merchant detail page map/contact v0.6.8 */
.bcv-merchant-detail-map-full {
	width: 100%;
}

.bcv-merchant-detail-contact-block {
	position: relative;
	z-index: 2;
}

.bcv-merchant-detail__map {
	width: 100%;
	height: 290px;
	background: #b9b9b9;
	overflow: hidden;
}

.bcv-merchant-detail__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(1);
}

.bcv-merchant-detail__contact-panel {
	position: relative;
	z-index: 2;
	max-width: 960px;
	margin: -34px auto 0;
	padding: 34px 24px 30px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(63, 63, 63, 0.12);
	text-align: center;
}

.bcv-merchant-detail__contact-panel h2 {
	margin: 0 0 24px;
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--bcv-ink);
}

.bcv-merchant-detail__contact-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-width: 132px;
	padding: 11px 22px;
	border-radius: 999px;
	background: #fbf1e9;
	color: var(--bcv-ink);
	font-weight: 700;
	text-decoration: none;
}

.bcv-merchant-detail__contact-button:hover,
.bcv-merchant-detail__contact-button:focus {
	color: var(--bcv-orange);
	text-decoration: none;
	background: #fff6ef;
}

@media (max-width: 640px) {
	.bcv-merchant-detail__map {
		height: 230px;
	}

	.bcv-merchant-detail__contact-panel {
		margin-top: -22px;
		padding: 28px 18px 24px;
	}
}

/* Public merchant detail page layout refinements v0.6.9 */
.bcv-merchant-detail {
	--bcv-detail-left-column: minmax(0, 1.35fr);
	--bcv-detail-right-column: minmax(250px, 0.65fr);
	--bcv-detail-column-gap: 56px;
	max-width: 1080px;
	padding: 22px 0 34px;
}

.bcv-merchant-detail__top-card {
	background: #fff;
	border-radius: 14px;
	padding: 36px 52px 48px;
	margin: 0 0 54px;
	box-shadow: 0 10px 30px rgba(63, 63, 63, 0.04);
}

.bcv-merchant-detail__top-card .bcv-merchant-detail__title {
	margin-bottom: 46px;
}

.bcv-merchant-detail__hero,
.bcv-merchant-detail__body {
	grid-template-columns: var(--bcv-detail-left-column) var(--bcv-detail-right-column);
	gap: var(--bcv-detail-column-gap);
}

.bcv-merchant-detail__hero {
	margin-bottom: 0;
}

.bcv-merchant-detail__body {
	padding: 0 52px 34px;
}

.bcv-merchant-detail__photo {
	min-height: 315px;
}

.bcv-merchant-detail__identity,
.bcv-merchant-detail__hours {
	padding-left: 32px;
}

@media (max-width: 980px) {
	.bcv-merchant-detail__top-card {
		padding: 32px 28px 38px;
		margin-bottom: 38px;
	}

	.bcv-merchant-detail__hero,
	.bcv-merchant-detail__body {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.bcv-merchant-detail__body {
		padding: 0 28px 34px;
	}

	.bcv-merchant-detail__identity,
	.bcv-merchant-detail__hours {
		padding-left: 0;
	}
}

@media (max-width: 640px) {
	.bcv-merchant-detail__top-card {
		border-radius: 12px;
		padding: 28px 20px 30px;
		margin-bottom: 30px;
	}

	.bcv-merchant-detail__top-card .bcv-merchant-detail__title {
		margin-bottom: 30px;
	}

	.bcv-merchant-detail__body {
		padding: 0 20px 28px;
	}

	.bcv-merchant-detail__photo {
		min-height: 220px;
	}
}


/* Private member profile action block, used by [bcv_merchant_profile_form]. */
.bcv-private-profile-card {
	position: relative;
	box-sizing: border-box;
	width: min(680px, 100%);
	min-height: 355px;
	margin: 0;
	padding: 52px 72px 74px 54px;
	background: #fff;
	color: #4a4a4a;
	border-radius: 0 44px 44px 0;
	box-shadow: none;
	overflow: hidden;
}

@supports (clip-path: polygon(0 0, 100% 0, 82% 100%, 0 86%)) {
	.bcv-private-profile-card {
		clip-path: polygon(0 0, 100% 0, 82% 100%, 0 86%);
	}
}

.bcv-private-profile-card__content {
	max-width: 480px;
}

.bcv-private-profile-card h2 {
	margin: 0 0 34px;
	font-size: clamp(25px, 2.4vw, 34px);
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #444;
}

.bcv-private-profile-card h2::after {
	content: "";
	display: block;
	width: 48px;
	height: 2px;
	margin: 11px 0 0;
	background: currentColor;
}

.bcv-private-profile-card p {
	margin: 0 0 20px;
	font-size: clamp(17px, 1.65vw, 23px);
	line-height: 1.15;
	font-weight: 400;
	color: #4b4b4b;
}

.bcv-private-profile-card__strong {
	font-weight: 800 !important;
}

.bcv-private-profile-card__note {
	font-size: 15px !important;
	line-height: 1.45 !important;
	color: #6c6c6c !important;
}

.bcv-private-profile-card__button,
.bcv-private-profile-card a.bcv-private-profile-card__button,
.bcv-private-profile-card .bcv-private-profile-card__button.bcv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-width: 238px;
	min-height: 48px;
	margin-top: 12px;
	padding: 9px 24px;
	border: 1.5px solid #3f3f3f;
	border-radius: 999px;
	background: transparent;
	box-shadow: none;
	color: #4a4a4a;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.bcv-private-profile-card__button span {
	font-size: 35px;
	font-weight: 300;
	line-height: 0.7;
}

.bcv-private-profile-card__button:hover,
.bcv-private-profile-card__button:focus {
	background: #f8f0e8;
	color: #4a4a4a;
	text-decoration: none;
}

@media (max-width: 980px) {
	.bcv-private-profile-card {
		width: 100%;
		min-height: 0;
		padding: 38px 32px 46px;
		border-radius: 28px;
	}

	@supports (clip-path: polygon(0 0, 100% 0, 82% 100%, 0 86%)) {
		.bcv-private-profile-card {
			clip-path: none;
		}
	}

	.bcv-private-profile-card p {
		font-size: 17px;
		line-height: 1.35;
	}
}

/* Inline merchant profile action. This shortcode is meant to be placed inside a Divi-designed block. */
.bcv-profile-inline-action {
	margin: 18px 0 0;
}

.bcv-profile-inline-button,
a.bcv-profile-inline-button,
a.bcv-profile-inline-button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	min-width: 225px;
	min-height: 44px;
	padding: 8px 22px;
	border: 1.5px solid #3f3f3f;
	border-radius: 999px;
	background: transparent;
	box-shadow: none;
	color: #4a4a4a;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.bcv-profile-inline-button span {
	font-size: 34px;
	font-weight: 300;
	line-height: 0.7;
}

.bcv-profile-inline-button:hover,
.bcv-profile-inline-button:focus {
	background: #f8f0e8;
	color: #4a4a4a;
	text-decoration: none;
}

.bcv-profile-inline-note {
	margin: 16px 0 0;
	font-size: 16px;
	line-height: 1.45;
	color: #4b4b4b;
}
