/* ==========================================================================
   HairAide Salon Finder — Production Stylesheet
   ==========================================================================
   Brand colors:
     Primary pink  #E8B4B8
     Rose          #D4919A
     Cream         #FDF8F5
     Text dark     #2D2D2D
     Text medium   #666666
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */

.hsf-archive,
.hsf-single-salon,
.hsf-taxonomy {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 60px;
	color: #2D2D2D;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.hsf-archive *,
.hsf-single-salon *,
.hsf-taxonomy * {
	box-sizing: border-box;
}


/* --------------------------------------------------------------------------
   2. TYPOGRAPHY
   -------------------------------------------------------------------------- */

.hsf-archive h1,
.hsf-single-salon h1,
.hsf-taxonomy h1 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.5rem;
	color: #2D2D2D;
}

.hsf-archive h2,
.hsf-single-salon h2,
.hsf-taxonomy h2 {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 2.5rem 0 1rem;
	color: #2D2D2D;
}

.hsf-archive h3,
.hsf-single-salon h3,
.hsf-taxonomy h3 {
	font-size: 1.15rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	color: #2D2D2D;
}

.hsf-archive p,
.hsf-single-salon p,
.hsf-taxonomy p {
	margin: 0 0 1rem;
	color: #666;
}

.hsf-archive a,
.hsf-single-salon a,
.hsf-taxonomy a {
	color: #D4919A;
	text-decoration: none;
	transition: color 0.2s ease;
}

.hsf-archive a:hover,
.hsf-single-salon a:hover,
.hsf-taxonomy a:hover {
	color: #c07a83;
}


/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */

.hsf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 22px;
	font-size: 0.95rem;
	font-weight: 600;
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	line-height: 1.4;
}

.hsf-btn-primary {
	background: #D4919A;
	color: #fff;
	border-color: #D4919A;
}

.hsf-btn-primary:hover {
	background: #c07a83;
	border-color: #c07a83;
	color: #fff;
}

.hsf-btn-secondary {
	background: #FDF8F5;
	color: #2D2D2D;
	border-color: #E8B4B8;
}

.hsf-btn-secondary:hover {
	background: #E8B4B8;
	color: #2D2D2D;
}

.hsf-btn-outline {
	background: transparent;
	color: #D4919A;
	border-color: #D4919A;
}

.hsf-btn-outline:hover {
	background: #D4919A;
	color: #fff;
}

.hsf-btn-text {
	background: transparent;
	border: none;
	color: #666;
	padding: 6px 12px;
	font-size: 1.2rem;
	cursor: pointer;
}

.hsf-btn-text:hover {
	color: #2D2D2D;
}

.hsf-btn-sm {
	padding: 6px 14px;
	font-size: 0.85rem;
}


/* --------------------------------------------------------------------------
   4. BREADCRUMBS
   -------------------------------------------------------------------------- */

.hsf-breadcrumbs {
	padding: 20px 0 10px;
	font-size: 0.85rem;
	color: #999;
}

.hsf-breadcrumbs a {
	color: #999;
}

.hsf-breadcrumbs a:hover {
	color: #D4919A;
}

.hsf-breadcrumb-sep {
	margin: 0 8px;
	color: #ccc;
}

.hsf-breadcrumb-current {
	color: #2D2D2D;
	font-weight: 500;
}


/* --------------------------------------------------------------------------
   5. HERO (Archive Hub)
   -------------------------------------------------------------------------- */

.hsf-hero {
	background: linear-gradient(135deg, #FDF8F5 0%, #f5e6e8 100%);
	border-radius: 16px;
	padding: 50px 40px;
	text-align: center;
	margin-bottom: 40px;
}

.hsf-hero-title {
	font-size: 2.2rem;
	margin-bottom: 0.75rem;
}

.hsf-hero-subtitle {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Search bar */
.hsf-search-bar {
	display: flex;
	gap: 10px;
	max-width: 650px;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: center;
}

.hsf-search-input {
	flex: 1 1 300px;
	padding: 12px 18px;
	font-size: 1rem;
	border: 2px solid #E8B4B8;
	border-radius: 8px;
	background: #fff;
	outline: none;
	transition: border-color 0.2s;
}

.hsf-search-input:focus {
	border-color: #D4919A;
	box-shadow: 0 0 0 3px rgba(212, 145, 154, 0.15);
}

.hsf-location-icon {
	font-size: 1.1rem;
}


/* --------------------------------------------------------------------------
   6. SEARCH RESULTS (Archive Hub)
   -------------------------------------------------------------------------- */

.hsf-search-results {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 40px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hsf-search-results-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.hsf-search-results-header h2 {
	margin: 0;
	font-size: 1.3rem;
}

.hsf-loading {
	text-align: center;
	padding: 30px;
	color: #999;
}

.hsf-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid #E8B4B8;
	border-top-color: #D4919A;
	border-radius: 50%;
	animation: hsf-spin 0.7s linear infinite;
	vertical-align: middle;
	margin-right: 8px;
}

@keyframes hsf-spin {
	to { transform: rotate(360deg); }
}

.hsf-empty-state {
	text-align: center;
	padding: 40px 20px;
	color: #999;
}

.hsf-empty-state p {
	color: #999;
}


/* --------------------------------------------------------------------------
   7. STATE GRID (Archive Hub)
   -------------------------------------------------------------------------- */

.hsf-browse-states,
.hsf-browse-certs {
	margin-bottom: 40px;
}

.hsf-state-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

.hsf-state-card {
	display: flex;
	flex-direction: column;
	padding: 16px;
	background: #fff;
	border: 1px solid #f0e8e9;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.hsf-state-card:hover {
	border-color: #D4919A;
	box-shadow: 0 4px 12px rgba(212, 145, 154, 0.15);
	transform: translateY(-2px);
	color: inherit;
}

.hsf-state-name {
	font-weight: 600;
	color: #2D2D2D;
	font-size: 0.95rem;
}

.hsf-state-count {
	font-size: 0.8rem;
	color: #999;
	margin-top: 4px;
}


/* --------------------------------------------------------------------------
   8. CERTIFICATION GRID & BADGES
   -------------------------------------------------------------------------- */

.hsf-cert-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hsf-cert-card {
	display: flex;
	flex-direction: column;
	padding: 18px 24px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	min-width: 160px;
}

.hsf-cert-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hsf-cert-card-name {
	font-weight: 600;
	font-size: 0.95rem;
}

.hsf-cert-card-count {
	font-size: 0.8rem;
	margin-top: 4px;
	opacity: 0.85;
}

/* Certification badge pills */
.hsf-cert-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
}

.hsf-cert-sm {
	padding: 2px 10px;
	font-size: 0.75rem;
}

/* Certification color palette */
.hsf-cert-devacurl {
	background: #e8f5e9;
	color: #2e7d32;
}

.hsf-cert-ouidad {
	background: #e3f2fd;
	color: #1565c0;
}

.hsf-cert-curlbycurl {
	background: #fce4ec;
	color: #c62828;
}

.hsf-cert-rezo {
	background: #f3e5f5;
	color: #6a1b9a;
}

.hsf-cert-curlyartistry {
	background: #fff3e0;
	color: #e65100;
}

.hsf-cert-curlcult {
	background: #e0f2f1;
	color: #00695c;
}

.hsf-cert-default {
	background: #f5f5f5;
	color: #555;
}

/* Certification list (single salon) */
.hsf-cert-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hsf-cert-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.hsf-cert-desc {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
}


/* --------------------------------------------------------------------------
   9. SALON HEADER (Single)
   -------------------------------------------------------------------------- */

.hsf-salon-header {
	padding: 10px 0 20px;
	border-bottom: 1px solid #f0e8e9;
	margin-bottom: 30px;
}

.hsf-salon-title {
	font-size: 2rem;
	margin-bottom: 12px;
}

.hsf-salon-meta-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: #666;
}

.hsf-meta-sep {
	color: #ddd;
	margin: 0 4px;
}

.hsf-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.hsf-review-count {
	color: #999;
	font-size: 0.85rem;
}


/* --------------------------------------------------------------------------
   10. STAR RATINGS
   -------------------------------------------------------------------------- */

.hsf-stars {
	display: inline-flex;
	gap: 1px;
	vertical-align: middle;
}

.hsf-star {
	font-size: 1rem;
	line-height: 1;
}

.hsf-star-full {
	color: #f5a623;
}

.hsf-star-half {
	color: #f5a623;
	opacity: 0.6;
}

.hsf-star-empty {
	color: #ddd;
}


/* --------------------------------------------------------------------------
   11. TWO-COLUMN LAYOUT (Single)
   -------------------------------------------------------------------------- */

.hsf-two-col {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 40px;
	align-items: start;
}

.hsf-main-col {
	min-width: 0;
}

.hsf-sidebar-col {
	position: sticky;
	top: 30px;
}


/* --------------------------------------------------------------------------
   12. SECTIONS (Single — main column)
   -------------------------------------------------------------------------- */

.hsf-section {
	margin-bottom: 35px;
}

.hsf-section h2 {
	margin-top: 0;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f0e8e9;
}

.hsf-content-body {
	font-size: 1rem;
	line-height: 1.75;
}

.hsf-content-body p {
	color: #444;
}


/* --------------------------------------------------------------------------
   13. TAGS (Services, Curl Types)
   -------------------------------------------------------------------------- */

.hsf-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hsf-tag {
	display: inline-block;
	padding: 5px 14px;
	background: #FDF8F5;
	border: 1px solid #f0e8e9;
	border-radius: 20px;
	font-size: 0.85rem;
	color: #2D2D2D;
	white-space: nowrap;
}


/* --------------------------------------------------------------------------
   14. CONTACT CARD (Sidebar)
   -------------------------------------------------------------------------- */

.hsf-contact-card {
	background: #fff;
	border: 1px solid #f0e8e9;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	margin-bottom: 20px;
}

.hsf-contact-card h3 {
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid #f0e8e9;
}

.hsf-contact-row {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
	align-items: flex-start;
}

.hsf-contact-icon {
	flex-shrink: 0;
	width: 24px;
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.5;
}

.hsf-contact-detail {
	font-size: 0.9rem;
	line-height: 1.5;
	word-break: break-word;
}

.hsf-contact-detail a {
	color: #2D2D2D;
}

.hsf-contact-detail a:hover {
	color: #D4919A;
}

.hsf-booking-row {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid #f0e8e9;
}

.hsf-booking-row .hsf-btn {
	width: 100%;
}


/* --------------------------------------------------------------------------
   15. MAP EMBED (Sidebar)
   -------------------------------------------------------------------------- */

.hsf-map-embed {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hsf-map-link {
	position: relative;
	display: block;
}

.hsf-map-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.hsf-map-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 500;
	text-align: center;
	border-radius: 0 0 12px 12px;
	opacity: 0;
	transition: opacity 0.2s;
}

.hsf-map-link:hover .hsf-map-overlay {
	opacity: 1;
}


/* --------------------------------------------------------------------------
   16. SALON CARDS (Grids and Lists)
   -------------------------------------------------------------------------- */

/* Grid layout (nearby salons, search results) */
.hsf-salon-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}

/* Vertical card (grid variant) */
.hsf-salon-card {
	background: #fff;
	border: 1px solid #f0e8e9;
	border-radius: 12px;
	padding: 24px;
	transition: all 0.2s ease;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.hsf-salon-card:hover {
	border-color: #E8B4B8;
	box-shadow: 0 4px 16px rgba(212, 145, 154, 0.12);
	transform: translateY(-2px);
}

.hsf-card-title {
	margin: 0 0 8px;
	font-size: 1.1rem;
}

.hsf-card-title a {
	color: #2D2D2D;
}

.hsf-card-title a:hover {
	color: #D4919A;
}

.hsf-card-location {
	font-size: 0.88rem;
	color: #999;
	margin: 0 0 4px;
}

.hsf-card-address {
	font-size: 0.85rem;
	color: #666;
	margin: 0 0 8px;
}

.hsf-card-address a {
	color: #666;
}

.hsf-card-address a:hover {
	color: #D4919A;
}

.hsf-card-phone {
	font-size: 0.85rem;
	margin: 0 0 8px;
}

.hsf-card-phone a {
	color: #666;
}

.hsf-card-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 8px 0;
	font-size: 0.9rem;
}

.hsf-card-certs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 10px 0;
}

.hsf-card-services {
	font-size: 0.82rem;
	color: #999;
	margin: 6px 0;
}

.hsf-more {
	color: #D4919A;
	font-weight: 500;
}

.hsf-card-link {
	display: inline-block;
	margin-top: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #D4919A;
}

.hsf-card-link:hover {
	color: #c07a83;
}

/* Horizontal card (list variant) */
.hsf-salon-card-horizontal {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
}

.hsf-card-body {
	flex: 1;
	min-width: 0;
}

.hsf-card-aside {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	min-width: 140px;
}

.hsf-card-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
}


/* --------------------------------------------------------------------------
   17. CITY GRID (State & City Pages)
   -------------------------------------------------------------------------- */

.hsf-city-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}

.hsf-city-card {
	display: flex;
	flex-direction: column;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #f0e8e9;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.hsf-city-card:hover {
	border-color: #D4919A;
	box-shadow: 0 4px 12px rgba(212, 145, 154, 0.15);
	transform: translateY(-2px);
}

.hsf-city-name {
	font-weight: 600;
	color: #2D2D2D;
	font-size: 0.9rem;
}

.hsf-city-count {
	font-size: 0.78rem;
	color: #999;
	margin-top: 3px;
}


/* --------------------------------------------------------------------------
   18. TAXONOMY HEADER (State & City Pages)
   -------------------------------------------------------------------------- */

.hsf-tax-header {
	padding: 30px 0;
	border-bottom: 1px solid #f0e8e9;
	margin-bottom: 30px;
}

.hsf-tax-header h1 {
	margin-bottom: 12px;
}

.hsf-tax-subtitle {
	font-size: 1.05rem;
	color: #666;
	max-width: 700px;
	margin: 0;
}


/* --------------------------------------------------------------------------
   19. NEARBY SALONS (Single)
   -------------------------------------------------------------------------- */

.hsf-nearby-salons {
	margin-top: 50px;
	padding-top: 40px;
	border-top: 2px solid #f0e8e9;
}

.hsf-nearby-salons h2 {
	margin-top: 0;
}


/* --------------------------------------------------------------------------
   20. RELATED CITIES (City Page)
   -------------------------------------------------------------------------- */

.hsf-related-cities {
	margin-top: 50px;
	padding-top: 40px;
	border-top: 2px solid #f0e8e9;
}


/* --------------------------------------------------------------------------
   21. SALON LIST (City & State Pages)
   -------------------------------------------------------------------------- */

.hsf-salon-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hsf-state-salons {
	margin-top: 40px;
}


/* --------------------------------------------------------------------------
   22. FAQ SECTION
   -------------------------------------------------------------------------- */

.hsf-archive-faq {
	margin-top: 50px;
	padding-top: 40px;
	border-top: 2px solid #f0e8e9;
}

.hsf-faq-list {
	max-width: 800px;
}

.hsf-faq-item {
	margin-bottom: 20px;
	padding: 20px 24px;
	background: #FDF8F5;
	border-radius: 10px;
	border: 1px solid #f0e8e9;
}

.hsf-faq-q {
	font-weight: 600;
	font-size: 1.05rem;
	color: #2D2D2D;
	margin-bottom: 8px;
}

.hsf-faq-a p {
	margin: 0;
	color: #555;
	font-size: 0.95rem;
}

.hsf-faq-a a {
	color: #D4919A;
	font-weight: 500;
}


/* --------------------------------------------------------------------------
   23. PAGINATION
   -------------------------------------------------------------------------- */

.hsf-pagination {
	margin: 40px 0 20px;
	text-align: center;
}

.hsf-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 6px;
}

.hsf-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid #e0d5d7;
	border-radius: 8px;
	color: #666;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.2s;
}

.hsf-pagination .page-numbers:hover {
	border-color: #D4919A;
	color: #D4919A;
}

.hsf-pagination .page-numbers.current {
	background: #D4919A;
	border-color: #D4919A;
	color: #fff;
}


/* --------------------------------------------------------------------------
   24. RESPONSIVE — Tablet (768px)
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {

	/* Typography */
	.hsf-archive h1,
	.hsf-single-salon h1,
	.hsf-taxonomy h1 {
		font-size: 1.6rem;
	}

	.hsf-archive h2,
	.hsf-single-salon h2,
	.hsf-taxonomy h2 {
		font-size: 1.3rem;
	}

	/* Hero */
	.hsf-hero {
		padding: 35px 24px;
	}

	.hsf-hero-title {
		font-size: 1.7rem;
	}

	/* Search bar */
	.hsf-search-bar {
		flex-direction: column;
		align-items: stretch;
	}

	.hsf-search-input {
		flex: 1 1 auto;
	}

	/* Two-column -> single column */
	.hsf-two-col {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.hsf-sidebar-col {
		position: static;
	}

	/* State grid: 3 columns */
	.hsf-state-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* City grid: 3 columns */
	.hsf-city-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Horizontal cards stack */
	.hsf-salon-card-horizontal {
		flex-direction: column;
		gap: 16px;
	}

	.hsf-card-aside {
		align-items: flex-start;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 10px;
		min-width: 0;
	}

	.hsf-card-actions {
		flex-direction: row;
	}

	/* Salon grid */
	.hsf-salon-grid {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	}

	/* Meta bar wrap */
	.hsf-salon-meta-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.hsf-meta-sep {
		display: none;
	}

	/* Cert grid */
	.hsf-cert-grid {
		flex-direction: column;
	}

	.hsf-cert-card {
		min-width: auto;
	}
}


/* --------------------------------------------------------------------------
   25. RESPONSIVE — Mobile (480px)
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {

	.hsf-archive,
	.hsf-single-salon,
	.hsf-taxonomy {
		padding: 0 14px 40px;
	}

	/* Typography */
	.hsf-archive h1,
	.hsf-single-salon h1,
	.hsf-taxonomy h1 {
		font-size: 1.35rem;
	}

	/* Hero */
	.hsf-hero {
		padding: 28px 18px;
		border-radius: 12px;
	}

	.hsf-hero-title {
		font-size: 1.4rem;
	}

	.hsf-hero-subtitle {
		font-size: 0.95rem;
	}

	/* Grids: 2 columns */
	.hsf-state-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.hsf-city-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	/* Salon grid: single column */
	.hsf-salon-grid {
		grid-template-columns: 1fr;
	}

	/* Cards */
	.hsf-salon-card {
		padding: 18px;
	}

	.hsf-contact-card {
		padding: 18px;
	}

	/* State/city cards */
	.hsf-state-card,
	.hsf-city-card {
		padding: 12px 14px;
	}

	.hsf-state-name,
	.hsf-city-name {
		font-size: 0.85rem;
	}

	/* Breadcrumbs */
	.hsf-breadcrumbs {
		font-size: 0.78rem;
		padding: 14px 0 8px;
	}

	/* FAQ */
	.hsf-faq-item {
		padding: 16px 18px;
	}

	/* Buttons */
	.hsf-btn {
		padding: 8px 16px;
		font-size: 0.88rem;
	}
}
