.scsi-store-body {
	background: #f4f4f4;
	color: #141414;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 0;
}

.scsi-store-body * {
	box-sizing: border-box;
}

.scsi-store-page {
	margin: 0 auto;
	max-width: 1180px;
	padding: 38px 22px 72px;
}

.scsi-store-hero {
	align-items: stretch;
	display: grid;
	gap: 24px;
	grid-template-columns: 300px minmax(0, 1fr);
	margin-bottom: 34px;
}

.scsi-store-card,
.scsi-store-intro,
.scsi-coupon-section,
.scsi-content-block,
.scsi-empty {
	background: #fff;
	border: 1px solid #dedede;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.scsi-store-card {
	display: grid;
	gap: 14px;
	padding: 20px;
	text-align: center;
}

.scsi-store-logo {
	aspect-ratio: 16 / 9;
	border: 1px solid #e6e6e6;
	border-radius: 6px;
	margin: 0 auto;
	object-fit: contain;
	width: 100%;
}

.scsi-store-card h1 {
	font-size: 24px;
	line-height: 1.2;
	margin: 0;
}

.scsi-rating {
	color: #666;
	display: flex;
	font-size: 14px;
	gap: 10px;
	justify-content: center;
	margin: 0;
}

.scsi-button {
	align-items: center;
	background: #ffc20d;
	border-radius: 5px;
	color: #111;
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	text-decoration: none;
	text-transform: uppercase;
}

.scsi-button-primary {
	background: #151515;
	color: #fff;
}

.scsi-store-intro {
	padding: 30px;
}

.scsi-store-intro h2,
.scsi-section-heading h2,
.scsi-content-block h2 {
	font-size: 34px;
	font-weight: 900;
	line-height: 1.15;
	margin: 0 0 14px;
}

.scsi-store-intro p {
	color: #4e4e4e;
	font-size: 17px;
	line-height: 1.65;
	margin: 0 0 14px;
}

.scsi-description {
	color: #222;
	font-weight: 700;
}

.scsi-stat-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 24px;
}

.scsi-stat-grid div {
	background: #f7f7f7;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	padding: 16px;
}

.scsi-stat-grid span {
	color: #666;
	display: block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.scsi-stat-grid strong {
	display: block;
	font-size: 22px;
	line-height: 1.2;
	margin-top: 6px;
}

.scsi-coupon-section,
.scsi-content-block {
	margin-top: 22px;
	padding: 24px;
}

.scsi-section-heading {
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 18px;
	padding-bottom: 18px;
}

.scsi-section-heading p {
	color: #666;
	margin: 0;
}

.scsi-coupon-list {
	display: grid;
	gap: 16px;
}

.scsi-coupon-card {
	align-items: center;
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 6px;
	display: grid;
	gap: 18px;
	grid-template-columns: 132px minmax(0, 1fr) 150px;
	padding: 18px;
}

.scsi-discount {
	align-items: center;
	border: 1px dashed #cfcfcf;
	border-radius: 5px;
	color: #009c22;
	display: flex;
	font-size: 22px;
	font-weight: 900;
	justify-content: center;
	min-height: 96px;
	padding: 10px;
	text-align: center;
	text-transform: uppercase;
}

.scsi-coupon-copy h3 {
	font-size: 21px;
	line-height: 1.35;
	margin: 0;
}

.scsi-coupon-copy p {
	color: #5a5a5a;
	line-height: 1.55;
	margin: 9px 0 0;
}

.scsi-coupon-meta {
	color: #178f3e;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	font-weight: 800;
	gap: 12px;
	margin-top: 10px;
}

.scsi-coupon-copy code {
	background: #f7f7f7;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
	display: inline-block;
	font-weight: 900;
	margin-top: 12px;
	padding: 6px 10px;
}

.scsi-coupon-action {
	justify-self: end;
	width: 100%;
}

.scsi-coupon-action .scsi-button {
	width: 100%;
}

.scsi-content-block {
	color: #3d3d3d;
	font-size: 17px;
	line-height: 1.7;
}

.scsi-empty {
	padding: 32px;
	text-align: center;
}

.scsi-empty-page {
	margin-top: 80px;
}

@media (max-width: 820px) {
	.scsi-store-hero,
	.scsi-coupon-card {
		grid-template-columns: 1fr;
	}

	.scsi-coupon-action {
		justify-self: stretch;
	}

	.scsi-store-intro h2,
	.scsi-section-heading h2,
	.scsi-content-block h2 {
		font-size: 28px;
	}
}

.scsi-store-powered {
	--scsi-line: #e5e5e5;
	background: #f4f4f4;
	color: #161616;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.scsi-store-powered * {
	box-sizing: border-box;
}

.scsi-store-powered .maven-main {
	margin-inline: auto;
	max-width: 1520px;
	padding-inline: 24px;
}

.scsi-store-powered .maven-store-detail {
	padding-block: 28px 76px;
}

.scsi-store-powered .maven-store-detail-grid {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: 270px minmax(0, 1fr) 320px;
}

.scsi-store-powered .maven-store-left,
.scsi-store-powered .maven-store-sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 98px;
}

.scsi-store-powered .maven-store-profile-card {
	background: #202022;
	border-radius: 16px;
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
	color: #fff;
	overflow: hidden;
	padding: 14px;
}

.scsi-store-powered .maven-store-logo-frame {
	align-items: center;
	background: #fff;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	min-height: 132px;
	padding: 16px;
}

.scsi-store-powered .maven-store-logo-frame img {
	aspect-ratio: 4 / 3;
	object-fit: contain;
	width: min(160px, 100%);
}

.scsi-store-powered .maven-store-shop-button,
.scsi-store-powered .maven-button {
	align-items: center;
	border-radius: 6px;
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	min-height: 44px;
	text-decoration: none;
	text-transform: uppercase;
}

.scsi-store-powered .maven-store-shop-button {
	background: #11d99a;
	color: #111;
	gap: 8px;
	width: 100%;
}

.scsi-store-powered .maven-store-profile-card p {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.15;
	margin: 16px 0 0;
}

.scsi-store-powered .maven-store-side-card,
.scsi-store-powered .maven-store-other-shops,
.scsi-store-powered .maven-sidebar-panel,
.scsi-store-powered .maven-coupon-card {
	background: #fff;
	border: 1px solid var(--scsi-line);
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.scsi-store-powered .maven-store-side-card,
.scsi-store-powered .maven-store-other-shops,
.scsi-store-powered .maven-sidebar-panel {
	padding: 22px;
}

.scsi-store-powered .maven-store-title-block h1 {
	font-size: 34px;
	font-weight: 900;
	line-height: 1.16;
	margin: 0;
}

.scsi-store-powered .maven-store-title-block p {
	font-size: 27px;
	font-weight: 900;
	line-height: 1.4;
	margin: 20px 0 0;
}

.scsi-store-powered .maven-store-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin: 26px 0 30px;
}

.scsi-store-powered .maven-store-tabs a {
	align-items: center;
	color: #4f4f4f;
	display: inline-flex;
	gap: 8px;
	text-decoration: none;
}

.scsi-store-powered .maven-store-tabs a.is-active {
	color: #111;
	font-weight: 800;
}

.scsi-store-powered .maven-coupon-list {
	display: grid;
	gap: 24px;
}

.scsi-store-powered .maven-coupon-card {
	align-items: center;
	display: grid;
	gap: 26px;
	grid-template-columns: 126px minmax(0, 1fr) 190px;
	min-height: 168px;
	padding: 22px 24px;
}

.scsi-store-powered .maven-coupon-badge {
	align-items: center;
	border: 1px solid var(--scsi-line);
	display: grid;
	min-height: 122px;
	overflow: hidden;
	padding: 24px 8px 12px;
	position: relative;
	text-align: center;
}

.scsi-store-powered .maven-coupon-badge > span:not(.maven-coupon-ribbon) {
	color: #00a61b;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.05;
	text-transform: uppercase;
}

.scsi-store-powered .maven-coupon-badge small {
	border-top: 1px solid #ededed;
	color: #656565;
	font-size: 11px;
	font-weight: 700;
	margin-inline: -8px;
	padding-top: 10px;
	text-transform: uppercase;
}

.scsi-store-powered .maven-coupon-ribbon {
	background: #e31414;
	color: #fff;
	font-size: 8px;
	font-weight: 900;
	left: -28px;
	padding: 5px 24px;
	position: absolute;
	text-transform: uppercase;
	top: 14px;
	transform: rotate(-45deg);
}

.scsi-store-powered .maven-coupon-favorite {
	background: transparent;
	border: 0;
	color: #b56868;
	position: absolute;
	right: 10px;
	top: 14px;
}

.scsi-store-powered .maven-coupon-meta {
	color: #8b8b8b;
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	gap: 10px;
	margin-bottom: 12px;
}

.scsi-store-powered .maven-coupon-meta .is-verified {
	color: #19a833;
	font-weight: 800;
}

.scsi-store-powered .maven-coupon-copy h2 {
	font-size: 21px;
	font-weight: 900;
	line-height: 1.38;
	margin: 0;
}

.scsi-store-powered .maven-coupon-copy p {
	color: #565656;
	font-size: 15px;
	line-height: 1.45;
	margin: 16px 0 0;
}

.scsi-store-powered .maven-code-button,
.scsi-store-powered .maven-deal-button {
	background: #ffc20d;
	border: 0;
	border-radius: 4px;
	box-shadow: 7px 6px 0 #ffe38b;
	color: #161616;
	font-size: 15px;
	font-weight: 900;
	min-height: 44px;
	padding-inline: 18px;
	text-transform: uppercase;
	width: 100%;
}

.scsi-store-powered .maven-featured-store-grid {
	border-top: 1px solid var(--scsi-line);
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding-top: 14px;
}

.scsi-store-powered .maven-featured-store-grid .maven-related-store {
	align-items: center;
	border: 1px solid var(--scsi-line);
	border-radius: 6px;
	display: flex;
	justify-content: center;
	min-height: 64px;
	padding: 8px;
}

.scsi-store-powered .maven-featured-store-grid img {
	max-height: 42px;
	object-fit: contain;
	width: 100%;
}

.scsi-store-powered .maven-related-stores-panel ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.scsi-store-powered .maven-related-stores-panel a {
	align-items: center;
	border-top: 1px solid var(--scsi-line);
	color: #161616;
	display: flex;
	justify-content: space-between;
	padding-block: 12px;
	text-decoration: none;
}

.scsi-store-powered .maven-store-about {
	margin-top: 56px;
}

.scsi-store-powered .maven-store-about h2 {
	font-size: 30px;
	font-weight: 900;
	line-height: 1.2;
	margin: 44px 0 16px;
}

.scsi-store-powered .maven-store-about h2:first-child {
	margin-top: 0;
}

.scsi-store-powered .maven-store-about p {
	color: #424242;
	font-size: 21px;
	line-height: 1.48;
	margin: 0 0 28px;
}

.scsi-store-powered svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 18px;
}

@media (max-width: 1180px) {
	.scsi-store-powered .maven-store-detail-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.scsi-store-powered .maven-store-left,
	.scsi-store-powered .maven-store-sidebar {
		position: static;
	}
}

@media (max-width: 760px) {
	.scsi-store-powered .maven-main {
		padding-inline: 16px;
	}

	.scsi-store-powered .maven-coupon-card {
		grid-template-columns: 1fr;
	}

	.scsi-store-powered .maven-store-title-block h1 {
		font-size: 28px;
	}

	.scsi-store-powered .maven-store-title-block p,
	.scsi-store-powered .maven-store-about p {
		font-size: 18px;
	}
}

/* Fallback plugin page polish */
.scsi-store-page {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.028) 1px, transparent 1px) 0 0 / 72px 72px,
		linear-gradient(180deg, rgba(255, 79, 66, 0.07), rgba(244, 244, 244, 0) 360px);
}

.scsi-store-card,
.scsi-store-intro,
.scsi-coupon-section,
.scsi-content-block,
.scsi-empty {
	box-shadow: 0 14px 34px rgba(15, 15, 15, 0.08);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.scsi-store-card:hover,
.scsi-store-intro:hover,
.scsi-coupon-card:hover,
.scsi-content-block:hover {
	border-color: rgba(255, 79, 66, 0.28);
	box-shadow: 0 24px 60px rgba(15, 15, 15, 0.13);
	transform: translateY(-3px);
}

.scsi-store-logo,
.scsi-discount {
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.85);
}

.scsi-button {
	box-shadow: 0 12px 22px rgba(255, 194, 13, 0.2);
	transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.scsi-button:hover {
	transform: translateY(-1px);
}

.scsi-button-primary {
	box-shadow: 0 12px 24px rgba(15, 15, 15, 0.16);
}

.scsi-section-heading h2,
.scsi-store-intro h2,
.scsi-content-block h2 {
	position: relative;
}

.scsi-section-heading h2::before,
.scsi-store-intro h2::before,
.scsi-content-block h2::before {
	background: #ff4f42;
	border-radius: 999px;
	content: "";
	display: inline-block;
	height: 0.78em;
	margin-right: 12px;
	vertical-align: -0.08em;
	width: 4px;
}

.scsi-coupon-card {
	box-shadow: 0 10px 26px rgba(15, 15, 15, 0.06);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

@media (max-width: 760px) {
	.scsi-store-card:hover,
	.scsi-store-intro:hover,
	.scsi-coupon-card:hover,
	.scsi-content-block:hover {
		transform: none;
	}
}
