body {
	width: 100%;
	height: 100%;
}

/* Custom breadcrumbs */
.custom-breadcrumbs {
	list-style: none;
	padding: 0;
	display: flex;
}

.custom-breadcrumbs > li {
	margin-right: .25rem;
}

.custom-breadcrumbs > li > a {
	color: var(--gray);
}

.custom-breadcrumbs > li > svg {
	color: var(--gray-400);
	margin-left: .25rem;
}

.custom-breadcrumbs > li.active {
}

/* Fade in animation */
.animated {
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

/* Navbar */
.store-navbar {
	border-bottom: 1px solid var(--gray-100)
}

.store-navbar-logo {
	max-height: 2.5rem;
}

/* Others */
.badge-price {
	color: var(--primary);
	background-color: var(--primary-100);
    padding: .25rem .5rem;
    font-size: 95%;
}

/* Header */
.store-cover-wrapper {
	position: relative;
	display: flex;
	height: 17.5rem;
	background: var(--primary-100);
	border-radius: .25rem;
    overflow: hidden;
}

.store-cover-background {
	position: absolute;
	width: 100%;
	height: 100%;

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: .6s transform ease-in-out;
}

.store-cover-background:hover {
	transform: scale(1.2);
}

.store-title {
	color: var(--black);
}

.store-description {
	color: var(--gray)
}

[data-theme-style="dark"] .store-description {
	color: var(--gray);
}

/* Menu */
.store-menu-image-wrapper {
	position: relative;
    height: 13rem;
    width: 100%;
	background: var(--primary-100);
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
    overflow: hidden;
}

.store-menu-image-background {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Item */
.store-item-image-wrapper {
	position: relative;
	min-width: 10rem;
	min-height: 10rem;
	max-width: 10rem;
	max-height: 10rem;
	background: var(--primary-100);
	border-radius: .25rem;
    overflow: hidden;
}

.store-item-image-background {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Item main */
.store-item-main-image-wrapper {
	position: relative;
	width: 100%;
	height: 25rem;
	background: var(--primary-100);
	border-radius: .25rem;
	overflow: hidden;
}

.store-item-main-image-background {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Cart */
.store-cart-image-wrapper {
	position: relative;
	min-width: 5rem;
	min-height: 5rem;
	max-width: 5rem;
	max-height: 5rem;
	background: var(--primary-100);
	border-radius: .25rem;
	overflow: hidden;
}

.store-cart-image-background {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Footer */
.store-footer {
	margin-top: 3rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
	font-size: .95rem;
	border-top: 1px solid var(--gray-100);
}

/* Images, icons */
.icon-favicon {
	width: 1rem;
	height: auto;
}

.store-logo {
	max-width: 4rem;
}

.svg-sm,.svg-sm svg {
	width: 1rem;
	height: 1rem;
}

.svg-md,.svg-md svg {
	width: 1.25rem;
	height: 1.25rem;
}

.svg-lg,.svg-lg svg {
	width: 1.5rem;
	height: 1.5rem;
}

/* Store unavailable page (disabled / subscription expired) */
.store-unavailable-page {
	position: relative;
	min-height: calc(100vh - 6rem);
	display: flex;
	align-items: center;
	padding: 2rem 0 3rem;
	overflow: hidden;
}

.store-unavailable-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% -10%, rgba(var(--primary-rgb, 0, 123, 255), 0.1), transparent 70%),
		radial-gradient(ellipse 60% 50% at 100% 100%, rgba(var(--primary-rgb, 0, 123, 255), 0.05), transparent 60%),
		linear-gradient(180deg, var(--gray-50, #f8f9fa) 0%, var(--body-bg, #fff) 100%);
	pointer-events: none;
}

[data-theme-style="dark"] .store-unavailable-bg {
	background:
		radial-gradient(ellipse 80% 60% at 50% -10%, rgba(var(--primary-rgb, 0, 123, 255), 0.15), transparent 70%),
		radial-gradient(ellipse 60% 50% at 100% 100%, rgba(var(--primary-rgb, 0, 123, 255), 0.07), transparent 60%),
		linear-gradient(180deg, var(--gray-100, #212529) 0%, var(--body-bg, #1a1d21) 100%);
}

.store-unavailable-container {
	position: relative;
	z-index: 1;
}

.store-unavailable-card {
	max-width: 560px;
	margin: 0 auto;
	border-radius: 1rem;
	overflow: hidden;
	background: var(--body-bg, #fff);
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 6px 16px rgba(15, 23, 42, 0.06),
		0 18px 40px -12px rgba(15, 23, 42, 0.12);
	animation: storeUnavailableFadeUp 0.6s ease-out both;
}

@keyframes storeUnavailableFadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Cover + logo — matches businesses/partner-card layout */
.store-unavailable-cover {
	height: 11.5rem;
	background-position: center;
	background-size: cover;
	background-color: var(--gray-100);
	position: relative;
}

.store-unavailable-cover--empty {
	background: linear-gradient(160deg, var(--primary-100) 0%, var(--gray-100) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.store-unavailable-avatar {
	position: absolute;
	left: 1.25rem;
	bottom: -1.35rem;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 50%;
	border: 3px solid var(--body-bg, #fff);
	object-fit: cover;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
	background: var(--body-bg, #fff);
}

.store-unavailable-avatar--initial {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600, #5a66d8) 100%);
	color: #fff;
	font-weight: 700;
	font-size: 1.25rem;
}

.store-unavailable-avatar--center {
	position: static;
	width: 4.5rem;
	height: 4.5rem;
	font-size: 1.5rem;
	border-width: 3px;
}

.store-unavailable-body {
	padding: 1.85rem 1.35rem 1.35rem;
	text-align: left;
}

.store-unavailable-body--no-cover {
	padding-top: 1.35rem;
}

.store-unavailable-status {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--danger, #dc3545);
	background: rgba(220, 53, 69, 0.08);
	border: 1px solid rgba(220, 53, 69, 0.15);
	padding: 0.35rem 0.75rem;
	border-radius: 2rem;
	margin-bottom: 0.75rem;
}

.store-unavailable-status i {
	font-size: 0.7rem;
}

.store-unavailable-name {
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 0.65rem;
	color: var(--body-color, #212529);
}

.store-unavailable-message {
	font-size: 0.975rem;
	color: var(--gray, #6c757d);
	line-height: 1.75;
	margin-bottom: 1.25rem;
}

.store-unavailable-highlight {
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary, #667eea) 0%, #764ba2 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	letter-spacing: -0.01em;
}

.store-unavailable-name-inline {
	color: var(--body-color, #212529);
	font-weight: 700;
}

.store-unavailable-status-word {
	display: inline;
	vertical-align: baseline;
	padding: 0.1em 0.4em;
	margin: 0 0.05em;
	font-size: 0.9em;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0.01em;
	line-height: 1.4;
	color: #c0392b;
	background: rgba(220, 53, 69, 0.06);
	border: 1px solid rgba(220, 53, 69, 0.18);
	border-radius: 0.3rem;
	box-shadow: none;
	position: static;
}

.store-unavailable-status-word--offline {
	color: #b7791f;
	background: rgba(230, 126, 34, 0.06);
	border-color: rgba(230, 126, 34, 0.2);
}

[data-theme-style="dark"] .store-unavailable-highlight {
	background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

[data-theme-style="dark"] .store-unavailable-status-word {
	color: #e57373;
	border-color: rgba(229, 115, 115, 0.25);
	background: rgba(229, 115, 115, 0.08);
}

.store-unavailable-owner-notice {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1rem 1.15rem;
	border-radius: 0.75rem;
	background: rgba(255, 193, 7, 0.08);
	border: 1px solid rgba(255, 193, 7, 0.25);
	margin-bottom: 1rem;
}

.store-unavailable-owner-notice-icon {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--warning, #ffc107);
	color: #fff;
	font-size: 0.9rem;
}

.store-unavailable-owner-notice-content strong {
	display: block;
	font-size: 0.875rem;
	color: var(--body-color, #212529);
	margin-bottom: 0.35rem;
}

.store-unavailable-owner-notice-content p {
	font-size: 0.875rem;
	color: var(--gray, #6c757d);
	line-height: 1.55;
	margin: 0 0 0.65rem;
}

.store-unavailable-owner-notice-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary, #007bff) !important;
	text-decoration: none !important;
}

.store-unavailable-owner-notice-link:hover {
	text-decoration: underline !important;
}

.store-unavailable-notice {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 1.35rem 1.25rem 1.5rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.05) 55%, rgba(255, 255, 255, 0.65) 100%);
	border: 1px solid rgba(34, 197, 94, 0.28);
	margin-bottom: 1.5rem;
	box-shadow:
		0 10px 40px rgba(34, 197, 94, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.75);
	position: relative;
	overflow: hidden;
}

.store-unavailable-notice::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #4ade80 0%, #22c55e 45%, #059669 100%);
}

.store-unavailable-notice-icon {
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.85rem;
	background: linear-gradient(135deg, #22c55e 0%, #059669 100%);
	color: #fff;
	font-size: 1.05rem;
	box-shadow: 0 6px 18px rgba(34, 197, 94, 0.38);
}

.store-unavailable-notice-content {
	flex: 1;
	min-width: 0;
}

.store-unavailable-notice-lead {
	display: block;
	font-size: 1.0625rem;
	font-weight: 800;
	color: #14532d;
	letter-spacing: -0.025em;
	line-height: 1.35;
	margin-bottom: 0.45rem;
}

.store-unavailable-notice-action {
	display: inline-block;
	font-weight: 700;
	font-size: 0.82em;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #15803d;
	background: rgba(34, 197, 94, 0.18);
	border: 1px solid rgba(34, 197, 94, 0.35);
	padding: 0.18em 0.62em;
	border-radius: 0.4rem;
	box-shadow: none;
	vertical-align: baseline;
}

.store-unavailable-notice-role {
	font-style: italic;
	font-weight: 700;
	color: #15803d;
}

.store-unavailable-notice-text {
	font-size: 0.9625rem;
	font-weight: 500;
	color: #166534;
	line-height: 1.65;
	margin: 0;
}

[data-theme-style="dark"] .store-unavailable-notice {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.16) 0%, rgba(16, 185, 129, 0.08) 100%);
	border-color: rgba(74, 222, 128, 0.35);
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

[data-theme-style="dark"] .store-unavailable-notice-lead {
	color: #bbf7d0;
}

[data-theme-style="dark"] .store-unavailable-notice-role {
	color: #86efac;
}

[data-theme-style="dark"] .store-unavailable-notice-action {
	color: #bbf7d0;
	background: rgba(74, 222, 128, 0.15);
	border-color: rgba(74, 222, 128, 0.3);
}

[data-theme-style="dark"] .store-unavailable-notice-text {
	color: #a7f3d0;
}

.store-unavailable-support {
	padding-top: 1.25rem;
	border-top: 1px solid var(--gray-100, rgba(0, 0, 0, 0.08));
	margin-bottom: 1.25rem;
}

.store-unavailable-support-label {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--primary, #007bff);
	margin-bottom: 0.35rem;
}

.store-unavailable-support-title {
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: var(--body-color, #212529);
}

.store-unavailable-support-desc {
	font-size: 0.875rem;
	color: var(--gray, #6c757d);
	margin-bottom: 1rem;
}

.store-unavailable-support-grid {
	margin-left: -0.35rem;
	margin-right: -0.35rem;
}

.store-unavailable-support-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem 0.5rem;
	border-radius: 0.75rem;
	border: 1px solid var(--gray-100, rgba(0, 0, 0, 0.08));
	background: var(--gray-50, #f8f9fa);
	text-decoration: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	height: 100%;
	min-height: 5.5rem;
}

.store-unavailable-support-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
	text-decoration: none !important;
}

.store-unavailable-support-card-icon {
	font-size: 1.5rem;
	margin-bottom: 0.4rem;
}

.store-unavailable-support-card-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--body-color, #212529);
}

.store-unavailable-support-card--instagram:hover { border-color: #e1306c; background: rgba(225, 48, 108, 0.06); }
.store-unavailable-support-card--instagram .store-unavailable-support-card-icon { color: #e1306c; }

.store-unavailable-support-card--whatsapp:hover { border-color: #25d366; background: rgba(37, 211, 102, 0.06); }
.store-unavailable-support-card--whatsapp .store-unavailable-support-card-icon { color: #25d366; }

.store-unavailable-support-card--email:hover,
.store-unavailable-support-card--contact:hover { border-color: var(--primary, #007bff); background: rgba(var(--primary-rgb, 0, 123, 255), 0.06); }
.store-unavailable-support-card--email .store-unavailable-support-card-icon,
.store-unavailable-support-card--contact .store-unavailable-support-card-icon { color: var(--primary, #007bff); }

.store-unavailable-home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	width: 100%;
	padding: 0.75rem 1.25rem;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--primary) !important;
	background-color: var(--body-bg, #fff);
	border: 1.5px solid var(--primary);
	border-radius: 0.5rem;
	text-decoration: none !important;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.store-unavailable-home-btn i {
	font-size: 0.85em;
	opacity: 0.9;
}

@media (hover: hover) {
	.store-unavailable-home-btn:hover {
		color: #fff !important;
		background-color: var(--primary);
		border-color: var(--primary);
		text-decoration: none !important;
	}
}

[data-theme-style="dark"] .store-unavailable-card {
	background: var(--gray-100);
	border-color: var(--gray-300);
}

[data-theme-style="dark"] .store-unavailable-avatar {
	border-color: var(--gray-100);
}

[data-theme-style="dark"] .store-unavailable-home-btn {
	background-color: var(--gray-100);
}

@media (max-width: 575.98px) {
	.store-unavailable-cover {
		height: 10.5rem;
	}

	.store-unavailable-body {
		padding: 1.75rem 1.15rem 1.15rem;
	}

	.store-unavailable-name {
		font-size: 1.2rem;
	}
}

