.oh-store {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #ffffff;
	max-width: 100%;
}

.oh-contact {
	display: flex;
	flex-direction: column;
	gap: 0.05rem;
}

.oh-contact__image-wrap {
	margin-bottom: 0.5rem;
}

.oh-contact__image {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 6px;
}

.oh-contact__name {
	margin: 0 0 0.25rem;
	font-size: 1.15em;
	line-height: 1.3;
}

.oh-contact__address,
.oh-contact__phone,
.oh-contact__email {
	margin: 0;
	font-size: 0.95em;
	line-height: 1.35;
	color: #4b5563;
}

.oh-contact a {
	color: inherit;
	text-decoration: none;
}

.oh-contact a:hover,
.oh-contact a:focus {
	text-decoration: underline;
}

.oh-status {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.35em 0.75em;
	border-radius: 999px;
	background: #f3f4f6;
	color: #1f2937;
	font-size: 0.95em;
	line-height: 1.3;
	max-width: 100%;
	flex-wrap: wrap;
	align-self: flex-start;
}

.oh-status__dot {
	width: 0.75em;
	height: 0.75em;
	border-radius: 50%;
	background: #9ca3af;
	flex-shrink: 0;
}

.oh-status--open {
	background: #dcfce7;
	color: #14532d;
}

.oh-status--open .oh-status__dot {
	background: #16a34a;
}

.oh-status--closing_soon {
	background: #ffedd5;
	color: #7c2d12;
}

.oh-status--closing_soon .oh-status__dot {
	background: #f59e0b;
}

.oh-status--closed {
	background: #fee2e2;
	color: #7f1d1d;
}

.oh-status--closed .oh-status__dot {
	background: #dc2626;
}

.oh-status__detail {
	color: inherit;
	opacity: 0.85;
	font-size: 0.92em;
}

.oh-hours {
	width: 100%;
	border-collapse: collapse;
	margin: 0.25em 0;
}

.oh-hours th,
.oh-hours td {
	padding: 0.45em 0.75em;
	border-bottom: 1px solid #e5e7eb;
	text-align: left;
	vertical-align: top;
}

.oh-hours th {
	font-weight: 600;
	width: 40%;
}

.oh-tabs {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.oh-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
}

.oh-tabs__nav button.oh-tabs__tab {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #d1d5db !important;
	background: transparent !important;
	box-shadow: none;
	margin: 0;
	padding: 0.3em 0.7em;
	cursor: pointer;
	font: inherit;
	font-size: 0.85em;
	line-height: 1.3;
	color: #6b7280 !important;
	border-radius: 4px;
	white-space: nowrap;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.oh-tabs__nav button.oh-tabs__tab:hover,
.oh-tabs__nav button.oh-tabs__tab:focus {
	color: #111827 !important;
	background: #f3f4f6 !important;
	border-color: #d1d5db !important;
	outline: none;
	box-shadow: none;
}

.oh-tabs__nav button.oh-tabs__tab.is-active {
	background: #2563eb !important;
	color: #ffffff !important;
	border-color: #2563eb !important;
	font-weight: 600;
}

.oh-tabs__nav button.oh-tabs__tab.is-active:hover,
.oh-tabs__nav button.oh-tabs__tab.is-active:focus {
	background: #2563eb !important;
	color: #ffffff !important;
	border-color: #2563eb !important;
}

.oh-tabs__panel {
	padding-top: 0.25rem;
}

.oh-tabs__panel[hidden] {
	display: none;
}

.oh-closures {
	margin-top: 0.5rem;
	padding: 0.75rem 1rem;
	background: #fef3f2;
	border: 1px solid #fecaca;
	border-radius: 6px;
}

.oh-closures__heading {
	margin: 0 0 0.4rem;
	font-size: 0.95em;
	color: #7f1d1d;
}

.oh-closures__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.oh-closures__item {
	font-size: 0.92em;
	color: #4b5563;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: baseline;
}

.oh-closures__date {
	font-weight: 600;
	color: #1f2937;
}

.oh-closures__sep {
	color: #9ca3af;
}

.oh-locations {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
}

.oh-locations__item {
	padding: 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.oh-locations__item .oh-status {
	align-self: flex-start;
}

@media (max-width: 480px) {
	.oh-locations {
		grid-template-columns: 1fr;
	}
}
