/* Foxy Business Directory — front-end styles */

.foxybd-form-wrap,
.foxybd-directory-wrap {
	max-width: 920px;
	margin: 0 auto;
	font-family: inherit;
}

/* Hides the theme's own page title on business profile pages when the
   "Hide Default Page Title" setting is on. Broad but scoped: only applies
   when body has .foxybd-hide-title, added solely on single business_listing
   pages. Covers common theme/Elementor title markup patterns. */
body.foxybd-hide-title .entry-title,
body.foxybd-hide-title .page-title,
body.foxybd-hide-title .entry-header,
body.foxybd-hide-title .page-header,
body.foxybd-hide-title h1.entry-title,
body.foxybd-hide-title .elementor-widget-theme-post-title,
body.foxybd-hide-title .ast-single-entry-header,
body.foxybd-hide-title .ast-page-title-bar {
	display: none !important;
}

/* Advertisement layout: up to 4 slots (top/bottom/left/right) wrapping the
   Directory page and every business profile page. Any slot left blank in
   Settings just isn't rendered — no reserved empty space. */
.foxybd-ad-slot {
	text-align: center;
	overflow: hidden;
}
.foxybd-ad-top {
	max-width: 1100px;
	margin: 0 auto 20px;
}
.foxybd-ad-bottom {
	max-width: 1100px;
	margin: 20px auto 0;
}
.foxybd-ad-layout {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 20px;
	max-width: 1400px;
	margin: 0 auto;
}
.foxybd-ad-main {
	flex: 1;
	min-width: 0;
}
.foxybd-ad-left,
.foxybd-ad-right {
	flex: 0 0 160px;
	width: 160px;
	position: sticky;
	top: 20px;
}

@media (max-width: 1200px) {
	.foxybd-ad-left,
	.foxybd-ad-right {
		display: none;
	}
}

/* Notices */
.foxybd-notice {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 15px;
}
.foxybd-notice-icon {
	font-weight: 700;
	flex-shrink: 0;
}
.foxybd-notice-success {
	background: #e6f7ec;
	color: #1b6f3b;
	border: 1px solid #a9e2c0;
}
.foxybd-notice-error {
	background: #fdeaea;
	color: #a12727;
	border: 1px solid #f2b8b8;
}

/* Progress bar + step nav */
.foxybd-progress {
	margin-bottom: 24px;
}
.foxybd-progress-bar {
	background: #ececef;
	height: 6px;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 16px;
}
.foxybd-progress-fill {
	background: linear-gradient(90deg, #f7841f, #ffa94d) !important;
	height: 100%;
	transition: width 0.3s ease;
}
.foxybd-steps-nav {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	gap: 8px;
}
.foxybd-steps-nav li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #999;
	font-weight: 600;
}
.foxybd-steps-nav li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #ececef;
	color: #999;
	font-size: 12px;
}
.foxybd-steps-nav li.is-active {
	color: #222;
}
.foxybd-steps-nav li.is-active span,
.foxybd-steps-nav li.is-complete span {
	background: #f7841f !important;
	color: #fff !important;
}

/* Form shell */
.foxybd-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: #fff;
	padding: 32px;
	border-radius: 14px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.foxybd-step-title {
	margin: 0 0 6px;
	font-size: 20px;
}

.foxybd-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.foxybd-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
}

.foxybd-req {
	color: #d5474b;
}

.foxybd-field input,
.foxybd-field select,
.foxybd-field textarea {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid #d9d9de;
	border-radius: 8px;
	font-size: 15px;
	box-sizing: border-box;
	font-family: inherit;
}

.foxybd-phone-group {
	display: flex;
	gap: 8px;
}
.foxybd-phone-group select {
	flex: 0 0 140px;
	min-width: 0;
}
.foxybd-phone-group input {
	flex: 1;
	min-width: 0;
}

.foxybd-field input:focus,
.foxybd-field select:focus,
.foxybd-field textarea:focus {
	outline: none;
	border-color: #f7841f;
	box-shadow: 0 0 0 3px rgba(247, 132, 31, 0.15);
}

.foxybd-hint {
	font-size: 12.5px;
	color: #777;
	margin: 6px 0 0;
}

.foxybd-other-type {
	margin-top: 8px;
	display: none;
}

/* Category picker: cascading dropdown rows */
.foxybd-cat-rows {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 10px;
}
.foxybd-cat-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #f9f9fa;
	border: 1px solid #ececef;
	border-radius: 8px;
	padding: 12px;
}
.foxybd-cat-dropdowns {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	flex: 1;
}
.foxybd-cat-dropdowns select {
	flex: 1;
	min-width: 160px;
	padding: 9px 10px;
	border: 1px solid #d9d9de;
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
}
.foxybd-form-wrap button.foxybd-cat-remove-row {
	background: none !important;
	border: 1px solid #f2b8b8 !important;
	color: #a12727 !important;
	font-size: 12.5px !important;
	font-weight: 700 !important;
	padding: 6px 12px !important;
	border-radius: 20px !important;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	box-shadow: none !important;
}
.foxybd-form-wrap button.foxybd-cat-remove-row:hover {
	background: #fdeaea !important;
	color: #a12727 !important;
}
.foxybd-cat-add-btn {
	padding: 9px 18px !important;
	font-size: 13.5px !important;
}
.foxybd-cat-counter {
	font-size: 12.5px;
	font-weight: 700;
	color: #666;
	margin: 10px 0 0;
}

.foxybd-honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

.foxybd-or-divider {
	display: flex;
	align-items: center;
	text-align: center;
	color: #999;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 4px 0;
}
.foxybd-or-divider::before,
.foxybd-or-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #ececef;
}
.foxybd-or-divider span {
	padding: 0 12px;
}

.foxybd-divider {
	border: none;
	border-top: 1px solid #ececef;
	margin: 8px 0;
}

/* Geolocation button + map */
.foxybd-form-wrap button.foxybd-locate-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #222 !important;
	color: #fff !important;
	border: none !important;
	padding: 12px 20px !important;
	border-radius: 8px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	cursor: pointer;
	transition: background 0.15s ease;
	box-shadow: none !important;
}
.foxybd-form-wrap button.foxybd-locate-btn:hover {
	background: #000 !important;
	color: #fff !important;
}
.foxybd-locate-btn:disabled {
	opacity: 0.6;
	cursor: wait;
}
.foxybd-locate-icon {
	font-size: 16px;
}
.foxybd-locate-status {
	font-size: 13px;
	color: #666;
	min-height: 18px;
	margin: 8px 0 0;
}
.foxybd-locate-status.is-error {
	color: #a12727;
}
.foxybd-locate-status.is-success {
	color: #1b6f3b;
}

.foxybd-map {
	width: 100%;
	height: 320px;
	border-radius: 10px;
	margin: 14px 0;
	border: 1px solid #d9d9de;
	background: #f4f4f6;
}

.foxybd-coords-readout {
	font-size: 12.5px;
	color: #777;
	font-family: monospace;
	margin: 0 0 16px;
}

/* Hours grid */
.foxybd-hours-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.foxybd-hours-row {
	display: grid;
	grid-template-columns: 110px 90px 1fr 12px 1fr;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: #f9f9fa;
	border-radius: 8px;
}
.foxybd-hours-day {
	font-weight: 600;
	font-size: 14px;
}
.foxybd-closed-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	color: #666;
	white-space: nowrap;
}
.foxybd-time-input {
	padding: 8px;
}
.foxybd-hours-sep {
	text-align: center;
	color: #999;
}
.foxybd-hours-row.is-closed .foxybd-time-input {
	opacity: 0.4;
	pointer-events: none;
}

/* Step navigation buttons */
.foxybd-step-nav {
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
}
.foxybd-form-wrap button.foxybd-btn-primary,
.foxybd-form-wrap button.foxybd-btn-secondary {
	padding: 13px 26px !important;
	border-radius: 8px !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: background 0.15s ease !important;
	box-shadow: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}
.foxybd-form-wrap button.foxybd-btn-primary {
	background: #f7841f !important;
	color: #fff !important;
	border: 2px solid #f7841f !important;
	margin-left: auto;
}
.foxybd-form-wrap button.foxybd-btn-primary:hover {
	background: #e06f0e !important;
	border-color: #e06f0e !important;
	color: #fff !important;
}
.foxybd-form-wrap button.foxybd-btn-secondary {
	background: transparent !important;
	color: #444 !important;
	border: 2px solid #d9d9de !important;
}
.foxybd-form-wrap button.foxybd-btn-secondary:hover {
	background: #f4f4f6 !important;
	color: #444 !important;
	border-color: #d9d9de !important;
}

/* Some themes force `button { display: ... !important }` globally, which can
   override the browser's native handling of the [hidden] attribute used by
   the step wizard's JavaScript. This rule guarantees hidden stays hidden
   regardless of what the active theme does elsewhere. */
.foxybd-form-wrap [hidden] {
	display: none !important;
}

/* Payment step */
.foxybd-payment-box {
	background: #fff8ef;
	border: 1px solid #ffdca8;
	border-radius: 12px;
	padding: 24px;
	text-align: center;
}
.foxybd-payment-price {
	font-size: 17px;
	margin: 0 0 10px;
}
.foxybd-payment-price strong {
	color: #b96305;
	font-size: 20px;
}
.foxybd-pay-now-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1b6f3b !important;
	color: #fff !important;
	text-decoration: none !important;
	padding: 14px 30px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 16px;
	margin-top: 14px;
	transition: background 0.15s ease;
}
.foxybd-pay-now-btn:hover {
	background: #14572e !important;
	color: #fff !important;
}

/* Review & Submit step */
.foxybd-review-summary {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.foxybd-review-section {
	background: #f9f9fa;
	border: 1px solid #ececef;
	border-radius: 10px;
	padding: 16px 18px;
}
.foxybd-review-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}
.foxybd-review-section-head h4 {
	margin: 0;
	font-size: 15px;
}
.foxybd-form-wrap button.foxybd-review-edit-btn {
	background: none !important;
	border: 1px solid #d9d9de !important;
	color: #f7841f !important;
	font-size: 12.5px !important;
	font-weight: 700 !important;
	padding: 4px 12px !important;
	border-radius: 20px !important;
	cursor: pointer;
	box-shadow: none !important;
}
.foxybd-form-wrap button.foxybd-review-edit-btn:hover {
	background: #fdf0e2 !important;
	color: #f7841f !important;
}
.foxybd-review-rows {
	list-style: none;
	margin: 0;
	padding: 0;
}
.foxybd-review-rows li {
	display: flex;
	gap: 10px;
	padding: 5px 0;
	font-size: 13.5px;
	border-bottom: 1px dashed #e6e6e9;
}
.foxybd-review-rows li:last-child {
	border-bottom: none;
}
.foxybd-review-label {
	flex: 0 0 130px;
	color: #888;
	font-weight: 600;
}
.foxybd-review-value {
	flex: 1;
	color: #222;
	word-break: break-word;
}

/* Directory filters */
.foxybd-filter-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
.foxybd-filter-form input[type="text"],
.foxybd-filter-form select {
	padding: 10px 12px !important;
	border: 1px solid #d9d9de !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	width: auto !important;
	max-width: 100%;
	box-sizing: border-box;
}
.foxybd-search-input {
	flex: 2 1 220px !important;
	min-width: 180px;
}
.foxybd-filter-form select {
	flex: 1 1 150px !important;
	min-width: 130px;
}
.foxybd-filter-form button {
	background: #222 !important;
	color: #fff !important;
	border: none !important;
	padding: 10px 22px !important;
	border-radius: 8px !important;
	cursor: pointer;
	font-weight: 600 !important;
	flex: 0 0 auto;
	width: auto !important;
}

.foxybd-result-count {
	font-size: 13.5px;
	color: #777;
	margin: 0 0 14px;
}

#foxybd-directory-results {
	transition: opacity 0.15s ease;
}
.foxybd-results-loading {
	opacity: 0.5;
	pointer-events: none;
}

/* Directory grid + cards */
.foxybd-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

/* Business Listing Card grid: 3-4 up on desktop, 2 on tablet, 1 on mobile */
.foxybd-listing-grid {
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: stretch;
}
@media (max-width: 1100px) {
	.foxybd-listing-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 820px) {
	.foxybd-listing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.foxybd-listing-grid {
		grid-template-columns: 1fr;
	}
}

.foxybd-card {
	background: #fff;
	border: 1px solid #ececef;
	border-radius: 14px;
	padding: 22px;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

/* Business Listing Card — professional directory/search-result style */
.foxybd-listing-card {
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
	height: 100%;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.foxybd-listing-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
	transform: translateY(-2px);
}
.foxybd-listing-card-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: inherit;
	padding: 24px 20px 18px;
	flex: 1;
}
.foxybd-listing-card-logo {
	width: 84px;
	height: 84px;
	border-radius: 14px;
	background: #f7f7f9;
	border: 1px solid #ededf0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	margin-bottom: 14px;
	padding: 8px;
	box-sizing: border-box;
}
.foxybd-listing-card-logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
.foxybd-listing-card-logo-fallback {
	font-size: 30px;
	opacity: 0.35;
}
.foxybd-listing-card-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.foxybd-listing-card-title {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	color: #1a1a1a;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
}
.foxybd-listing-card-location {
	margin: 0 0 10px;
	font-size: 12.5px;
	color: #888;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}
.foxybd-listing-card-badge {
	display: inline-block;
	background: #fdf0e2;
	color: #b96305;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}
.foxybd-listing-card-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: #f7841f !important;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	font-size: 13.5px;
	padding: 13px 16px;
	margin: 0;
	transition: background 0.15s ease;
}
.foxybd-listing-card-cta:hover {
	background: #e06f0e !important;
}
.foxybd-listing-card-cta span {
	transition: transform 0.15s ease;
}
.foxybd-listing-card-cta:hover span {
	transform: translateX(3px);
}

.foxybd-card-thumb img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 14px;
}

.foxybd-card-title {
	margin: 0 0 8px;
	font-size: 19px;
}

.foxybd-card-tags {
	margin-bottom: 10px;
}
.foxybd-tag {
	display: inline-block;
	background: #fdf0e2;
	color: #b96305;
	font-size: 12px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 20px;
	margin-right: 6px;
	margin-bottom: 4px;
}

.foxybd-card-desc {
	font-size: 14px;
	color: #555;
	margin-bottom: 12px;
	line-height: 1.5;
}

.foxybd-card-meta {
	list-style: none;
	margin: 0 0 10px;
	padding: 0;
	font-size: 13.5px;
	line-height: 1.9;
}
.foxybd-card-meta a {
	color: #f7841f;
	text-decoration: none;
}
.foxybd-card-meta a:hover {
	text-decoration: underline;
}

.foxybd-hours-details {
	margin-bottom: 12px;
	font-size: 13.5px;
}
.foxybd-hours-details summary {
	cursor: pointer;
	font-weight: 600;
	color: #333;
	margin-bottom: 6px;
}
.foxybd-hours-list {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
}
.foxybd-hours-list li {
	display: flex;
	justify-content: space-between;
	padding: 3px 0;
	border-bottom: 1px dashed #eee;
}
.foxybd-closed-label {
	color: #a12727;
	font-weight: 600;
}
.foxybd-hours-unset {
	color: #bbb;
}

.foxybd-card-social {
	display: flex;
	gap: 14px;
	margin-bottom: 12px;
	font-size: 13px;
}
.foxybd-card-social a {
	color: #444;
	text-decoration: none;
	font-weight: 600;
}
.foxybd-card-social a:hover {
	color: #f7841f;
}

.foxybd-card-map {
	width: 100%;
	height: 160px;
	border-radius: 10px;
	margin-top: 8px;
	border: 1px solid #ececef;
}

.foxybd-card-link-wrap {
	display: block;
	text-decoration: none;
	color: inherit;
}
.foxybd-card-link-wrap:hover .foxybd-card-title {
	color: #f7841f;
}

.foxybd-view-profile-btn {
	display: inline-block;
	margin-top: 6px;
	font-size: 13.5px;
	font-weight: 700;
	color: #f7841f;
	text-decoration: none;
}
.foxybd-view-profile-btn:hover {
	text-decoration: underline;
}

.foxybd-empty {
	text-align: center;
	color: #777;
	padding: 40px 0;
}

.foxybd-pagination {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 6px;
}
.foxybd-pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid #d9d9de;
	border-radius: 6px;
	text-decoration: none;
	color: #333;
}
.foxybd-pagination .page-numbers.current {
	background: #f7841f;
	color: #fff;
	border-color: #f7841f;
}

/* Single business profile page */
.foxybd-profile-wrap {
	max-width: 1000px;
	margin: 0 auto;
}

.foxybd-profile-hero {
	display: flex;
	align-items: center;
	gap: 24px;
	background: #fff;
	border: 1px solid #ececef;
	border-radius: 16px;
	padding: 28px;
	margin-bottom: 28px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.foxybd-profile-logo {
	width: 110px;
	height: 110px;
	border-radius: 14px;
	background: #f7f7f9;
	border: 1px solid #ededf0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	padding: 10px;
	box-sizing: border-box;
	transition: background 0.15s ease, border-color 0.15s ease;
}
.foxybd-profile-logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
/* Applied by JS when a logo is detected as predominantly white/very light,
   so it stays visible instead of disappearing into the light card background. */
.foxybd-logo-bg-dark {
	background: #1a1a1a !important;
	border-color: #1a1a1a !important;
}
.foxybd-profile-title {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.2;
}
.foxybd-profile-address {
	font-size: 15px;
	color: #555;
	margin: 8px 0 0;
}

.foxybd-profile-body {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 28px;
	align-items: start;
}

.foxybd-profile-main h2 {
	font-size: 20px;
	margin: 28px 0 12px;
}
.foxybd-profile-main h2:first-child {
	margin-top: 0;
}
.foxybd-profile-description {
	font-size: 15.5px;
	line-height: 1.7;
	color: #333;
}
.foxybd-profile-map {
	width: 100%;
	height: 320px;
}
.foxybd-profile-hours {
	max-width: 420px;
}

.foxybd-profile-sidebar {
	background: #fff;
	border: 1px solid #ececef;
	border-radius: 14px;
	padding: 22px;
	position: sticky;
	top: 20px;
}
.foxybd-profile-sidebar h3 {
	font-size: 15px;
	margin: 0 0 10px;
}
.foxybd-profile-sidebar h3:not(:first-child) {
	margin-top: 20px;
}
.foxybd-profile-contact {
	margin-bottom: 0;
	font-size: 14.5px;
}

.foxybd-share-link-btn {
	display: block;
	text-align: center;
	margin-top: 22px;
	padding: 12px;
	border-radius: 8px;
	background: #222;
	color: #fff !important;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}
.foxybd-share-link-btn:hover {
	background: #000;
}

@media (max-width: 800px) {
	.foxybd-profile-body {
		grid-template-columns: 1fr;
	}
	.foxybd-profile-hero {
		flex-direction: column;
		text-align: center;
	}
	.foxybd-profile-sidebar {
		position: static;
	}
}

/* Expired listing / renewal notice */
.foxybd-expired-box {
	background: #fff8ef;
	border: 1px solid #ffdca8;
	border-radius: 14px;
	padding: 32px;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}
.foxybd-expired-box h2 {
	margin: 0 0 10px;
	font-size: 22px;
}
.foxybd-expired-box p {
	color: #555;
	margin: 0 0 8px;
}
.foxybd-expired-price {
	font-size: 17px;
}
.foxybd-expired-price strong {
	color: #b96305;
	font-size: 20px;
}
.foxybd-expired-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
}
.foxybd-expired-contact-btn {
	color: #444 !important;
	text-decoration: underline !important;
	font-size: 14px;
	font-weight: 600;
}
.foxybd-expired-contact-btn:hover {
	color: #f7841f !important;
}

@media (max-width: 640px) {
	.foxybd-form {
		padding: 20px;
	}
	.foxybd-field-row {
		grid-template-columns: 1fr;
	}
	.foxybd-hours-row {
		grid-template-columns: 1fr;
		text-align: left;
	}
	.foxybd-cat-row {
		flex-direction: column;
	}
	.foxybd-cat-dropdowns select {
		min-width: 100%;
	}
	.foxybd-phone-group {
		flex-direction: column;
	}
	.foxybd-phone-group select {
		flex: 1;
	}
	.foxybd-filter-form select,
	.foxybd-search-input {
		flex: 1 1 100% !important;
	}
	.foxybd-steps-nav li span {
		width: 20px;
		height: 20px;
	}
	.foxybd-steps-nav li {
		font-size: 11px;
	}
	.foxybd-filter-form {
		flex-direction: column;
	}
}
