body {
	margin: 0;
}

.ssr-body {
	background: #e5e9ef;
	animation: ssr-fade-in .2s forwards;
}

@keyframes ssr-fade-in {
	0% {opacity: .01}
	99% {opacity: .01}
	100% {opacity: 1}
}

.ssr-body a {
	color: inherit;
	text-decoration: none;
}

.ssr-body a:hover {
	color: blue;
}

.ssr-body .banner{
	background: radial-gradient(at top center, #cad0d7, #50585b);
	padding: 3em 1em 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow:hidden;
}

.ssr-body li {
	display: block;
	list-style: none;
}

.ssr-body nav.category-nav {
	max-width: 100%;
	overflow-x: auto;
	/*padding: 16px 16px 0;*/
	margin-top: 3em;
	background-color: #e5e9ef;
	margin: auto;
	box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.ssr-body nav.category-nav ul {
	padding: .75em 1em;
	margin: 0;
	display: inline-flex;
	text-align: center;
	gap: 16px;
	white-space: nowrap;
}

.ssr-body .article-list {
	padding: 0;
	margin: 0;
}

.ssr-body .wrapper {
	display: flex;
	width: 90vw;
	margin: auto;
	min-height: 80vh;
}

.ssr-body .main {
	width: calc(100% - 300px);
	flex-grow: 0;
	flex-shrink: 0;
	box-shadow: 1px 0 #c0ccda;
	padding: 16px;
}

.ssr-body aside {
	width: 300px;
	flex-grow: 0;
	flex-shrink: 0;
	box-shadow: 1px 0 #c0ccda inset;
	padding: 16px;
}

@media (max-width: 768px) {
	.ssr-body aside {display: none;}
	.ssr-body .main {width: 100%;box-shadow: none;}
}

.ssr-body .article-list a{
	padding-left: 1em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f0f2f7;
	margin-bottom: 1px;
}

.ssr-body .article-list a:hover{
	background: #fff;
}

.ssr-body .article-list a img{
	width: 100px;
	height: 100px;
	object-fit: cover;
}
.ssr-body .article-list h4{
	margin: 0 0 .5em 0;
}

.ssr-body aside .article-list a img{
	width: 60px;
	height: 60px;
}

.ssr-body aside {
	font-size: 87.5%;
}

.ssr-body aside .article-list h4{
	font-weight: normal;
	margin: 0;
}

.ssr-body footer {
	background: #dae0e8;
	text-align: center;
	padding: 2em 0;
	font-size: 14px;
}
.ssr-body footer .links {
	display: flex;
	gap: 1em;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1em;
}
.ssr-body footer img {
	height: 20px;
	vertical-align: middle;
}

.ssr-body ul.term-list {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .5em;
}
.ssr-body ul.term-list a {
	display: block;
	background-color: #f0f2f7;
	padding: .5em 1em;
}
.ssr-body ul.term-list a:hover {
	background-color: #fff;
}
.ssr-body article.post-wrapper {
	background-color: #fff;
	padding: 1em 2em;
}
.ssr-body article.post-wrapper li {
	display: list-item;
	list-style: unset;
}

.ssr-body article.post-wrapper table {
	border: 1px solid;
	border-collapse: collapse;
	text-align: left;
}
.ssr-body article.post-wrapper table th,
.ssr-body article.post-wrapper table td {
	border: 1px solid;
	padding: .5em;
}

.ssr-body article.post-wrapper img,video {
	max-width: 100%;
}

.ssr-body.shop-home,
.ssr-body.product-detail {
	background: #f4f6f8;
	color: #111318;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ssr-body.shop-home .banner,
.ssr-body.product-detail .product-banner {
	background: linear-gradient(135deg, #f8fafc 0%, #e8edf3 48%, #d7dee8 100%);
	padding: 32px 24px 0;
	color: #111318;
}

.shop-hero,
.product-hero {
	width: min(1180px, 100%);
	display: grid;
	grid-template-columns: minmax(0, 1fr) 260px;
	gap: 28px;
	align-items: stretch;
	margin: 0 auto 26px;
}

.shop-hero-copy,
.product-summary,
.shop-hero-panel,
.shop-sidebar,
.product-buybox {
	background: rgba(255, 255, 255, .82);
	border: 1px solid rgba(17, 19, 24, .08);
	box-shadow: 0 18px 45px rgba(17, 24, 39, .08);
	border-radius: 8px;
}

.shop-hero-copy,
.product-summary {
	padding: 30px;
}

.shop-eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	background: #111318;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.shop-hero h1,
.product-hero h1 {
	margin: 16px 0 10px;
	font-size: clamp(32px, 5vw, 58px);
	line-height: 1.05;
}

.shop-hero p,
.product-hero p {
	max-width: 680px;
	margin: 0;
	color: #535b66;
	font-size: 16px;
	line-height: 1.7;
}

.shop-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.shop-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid rgba(17, 19, 24, .12);
	border-radius: 8px;
	background: #fff;
	color: #111318;
	font-weight: 700;
	transition: transform .2s, box-shadow .2s, background-color .2s;
	cursor: pointer;
}

.shop-btn:hover {
	color: #111318;
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(17, 24, 39, .12);
}

.shop-btn.primary {
	background: #635bff;
	border-color: #635bff;
	color: #fff;
}

.shop-btn.primary:hover {
	color: #fff;
	background: #5149e8;
}

.shop-hero-panel {
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.shop-hero-panel span,
.shop-hero-panel small {
	color: #667085;
}

.shop-hero-panel b {
	display: block;
	font-size: 58px;
	line-height: 1;
	margin: 8px 0;
}

.ssr-body nav.category-nav {
	border-radius: 999px 999px 0 0;
	box-shadow: 0 14px 34px rgba(17, 24, 39, .1);
}

.shop-wrapper,
.product-wrapper {
	width: min(1180px, 94vw);
	gap: 22px;
	align-items: flex-start;
	padding: 24px 0 42px;
}

.shop-wrapper .main,
.product-wrapper .main {
	box-shadow: none;
	padding: 0;
}

.shop-sidebar,
.product-wrapper aside {
	width: 260px;
	padding: 18px;
	box-shadow: 0 18px 45px rgba(17, 24, 39, .06);
	position: sticky;
	top: 18px;
}

.shop-sidebar a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 0 12px;
	margin-bottom: 8px;
	border-radius: 8px;
	background: #f4f6f8;
	font-weight: 700;
}

.shop-side-note {
	margin-top: 16px;
	padding: 14px;
	border-radius: 8px;
	background: #fff7ed;
	color: #7c2d12;
}

.shop-side-note span {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	line-height: 1.6;
}

.shop-main {
	width: calc(100% - 282px);
}

.shop-section-head {
	margin: 0 0 18px;
}

.shop-section-head span {
	color: #635bff;
	font-size: 13px;
	font-weight: 800;
}

.shop-section-head h3 {
	margin: 4px 0;
	font-size: 28px;
}

.shop-section-head p {
	margin: 0;
	color: #667085;
}

.shop-section-head.compact {
	margin-top: 30px;
}

.shop-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	padding: 0;
	margin: 0;
}

.shop-card-link {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	border: 1px solid rgba(17, 19, 24, .08);
	box-shadow: 0 16px 38px rgba(17, 24, 39, .07);
	transition: transform .2s, box-shadow .2s;
}

.shop-card-link:hover {
	color: inherit;
	transform: translateY(-3px);
	box-shadow: 0 22px 46px rgba(17, 24, 39, .12);
}

.shop-card-media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1.18;
	background: linear-gradient(135deg, #eef2f7, #dfe6ef);
	overflow: hidden;
}

.shop-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shop-card-placeholder {
	color: #667085;
	font-weight: 800;
}

.shop-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
}

.shop-card-body b {
	font-size: 17px;
	line-height: 1.35;
}

.shop-card-desc {
	color: #667085;
	font-size: 13px;
	line-height: 1.55;
}

.shop-card-foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.shop-price,
.shop-card-action {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	border-radius: 999px;
	font-weight: 800;
}

.shop-price {
	gap: 6px;
	padding: 0 12px;
	color: #635bff;
	border: 1px solid rgba(99, 91, 255, .32);
	background: rgba(99, 91, 255, .08);
}

.shop-card-action {
	padding: 0 10px;
	background: #111318;
	color: #fff;
	font-size: 13px;
}

.shop-empty {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 32px;
	border-radius: 8px;
	background: #fff;
	color: #667085;
}

.product-hero {
	grid-template-columns: minmax(280px, 44%) minmax(0, 1fr);
}

.product-media {
	aspect-ratio: 1.12;
	border-radius: 8px;
	background: #eef2f7;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(17, 24, 39, .1);
}

.product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-media span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #667085;
	font-weight: 800;
}

.product-price {
	margin-top: 18px;
	color: #635bff;
	font-weight: 800;
}

.product-price span {
	font-size: 42px;
	line-height: 1;
}

.product-content {
	border-radius: 8px;
	box-shadow: 0 16px 38px rgba(17, 24, 39, .07);
}

.product-buybox {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 22px;
}

.product-buybox-price {
	display: block;
	font-size: 24px;
	font-weight: 900;
	color: #635bff;
}

.shop-mini-list {
	padding: 0;
	margin: 0;
}

.shop-mini-list a {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 10px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid rgba(17, 19, 24, .08);
}

.shop-mini-list img {
	width: 54px;
	height: 54px;
	object-fit: cover;
	border-radius: 8px;
	background: #eef2f7;
}

.shop-mini-list span {
	font-weight: 700;
	line-height: 1.35;
}

.shop-mini-list small {
	display: block;
	margin-top: 4px;
	color: #635bff;
}

.samsara-exchange-content {
	margin: 28px 0 0;
	padding: 20px;
	border: 1px solid rgba(99, 91, 255, .18);
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(99, 91, 255, .08), rgba(255, 255, 255, .92));
	box-shadow: 0 14px 34px rgba(17, 24, 39, .06);
}

.samsara-exchange-content h3 {
	margin: 0 0 12px;
	color: #111318;
	font-size: 20px;
}

.samsara-exchange-content p {
	margin: 8px 0;
	color: #344054;
	line-height: 1.7;
	word-break: break-all;
}

.samsara-product-head {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	margin: 0 0 24px;
	padding: 20px;
	border: 1px solid rgba(17, 19, 24, .08);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 38px rgba(17, 24, 39, .07);
}

.samsara-product-image {
	aspect-ratio: 1;
	border-radius: 8px;
	background: linear-gradient(135deg, #eef2f7, #dfe6ef);
	overflow: hidden;
}

.samsara-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.samsara-product-image span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #667085;
	font-weight: 800;
}

.samsara-product-info span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	background: #111318;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
}

.samsara-product-info h2 {
	margin: 14px 0 12px;
	font-size: clamp(24px, 4vw, 40px);
	line-height: 1.15;
	color: #111318;
}

.samsara-product-info strong {
	color: #635bff;
	font-size: 28px;
}

.product-content .pandastudio-gift {
	max-width: none;
	margin: 0 0 22px;
	padding: 16px;
	border: 1px solid rgba(99, 91, 255, .2);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 38px rgba(17, 24, 39, .07);
}

.product-content .pandastudio-gift .thumbnail {
	width: 88px;
	height: 88px;
	margin-left: 0;
	border-radius: 8px;
}

.product-content .pandastudio-gift .title {
	color: #111318;
	text-shadow: none;
}

.product-content .pandastudio-gift .costs {
	color: #635bff;
	text-shadow: none;
	font-weight: 800;
}

.product-content .pandastudio-gift .go {
	background: #635bff;
	border-color: #635bff;
	box-shadow: 0 12px 28px rgba(99, 91, 255, .22);
}

@media (max-width: 980px) {
	.shop-hero,
	.product-hero {
		grid-template-columns: 1fr;
	}

	.samsara-product-head {
		grid-template-columns: 160px minmax(0, 1fr);
	}

	.shop-wrapper,
	.product-wrapper {
		flex-direction: column;
	}

	.shop-main,
	.shop-wrapper .main,
	.product-wrapper .main {
		width: 100%;
	}

	.shop-sidebar,
	.product-wrapper aside {
		position: static;
		width: auto;
		display: block;
	}

	.shop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.ssr-body.shop-home .banner,
	.ssr-body.product-detail .product-banner {
		padding: 20px 14px 0;
	}

	.shop-hero-copy,
	.product-summary {
		padding: 22px;
	}

	.shop-grid {
		grid-template-columns: 1fr;
	}

	.samsara-product-head {
		grid-template-columns: 1fr;
	}

	.shop-card-foot {
		align-items: flex-start;
		flex-direction: column;
	}
}
