.ccs-shop {
	margin: 2rem 0;
	color: #1f2933;
}

.ccs-account {
	margin: 2rem 0;
	color: #1f2933;
}

.ccs-shop-filters {
	margin-bottom: 2rem;
	padding: 1.25rem;
	background: #f6f3eb;
	border: 1px solid #dfd7c8;
	border-radius: 12px;
}

.ccs-shop-filters__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
}

.ccs-shop-field label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
}

.ccs-shop-field input,
.ccs-shop-field select {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 1px solid #c7c2b8;
	border-radius: 8px;
	background: #fff;
	box-sizing: border-box;
}

.ccs-shop-filters__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.ccs-button {
	display: inline-block;
	padding: 0.7rem 1rem;
	border-radius: 8px;
	text-decoration: none;
	border: 1px solid #365b6d;
	font-weight: 600;
}

.ccs-button-primary {
	background: #365b6d;
	color: #fff;
}

.ccs-button-secondary {
	background: #fff;
	color: #365b6d;
}

.ccs-button-disabled {
	background: #eef1f4;
	border-color: #d5dde4;
	color: #5b6570;
}

.ccs-button[disabled] {
	opacity: 0.65;
	cursor: not-allowed;
}

.ccs-shop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

.ccs-shop-card,
.ccs-shop-empty,
.ccs-shop-single__section {
	background: #fff;
	border: 1px solid #e6e1d6;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(31, 41, 51, 0.05);
}

.ccs-shop-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	height: 100%;
}

.ccs-shop-card__media,
.ccs-shop-single__media {
	background: #f7f7f2;
}

.ccs-shop-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	min-height: 220px;
	padding: 1rem;
	border-bottom: 1px solid #eee6d9;
	overflow: hidden;
}

.ccs-shop-card__image,
.ccs-shop-single__image,
.ccs-shop-gallery__image {
	display: block;
	width: 100%;
	height: auto;
}

.ccs-shop-card__media img,
.ccs-shop-card__media video,
.ccs-shop-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ccs-shop-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	padding: 1rem;
	color: #5b6570;
	font-weight: 600;
	text-align: center;
}

.ccs-shop-card__content {
	display: grid;
	grid-template-rows: auto auto auto 1fr auto;
	gap: 0.8rem;
	padding: 1.25rem;
	height: 100%;
}

.ccs-shop-card__title,
.ccs-shop-single__title {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.3;
}

.ccs-shop-card__title {
	display: -webkit-box;
	min-height: 3.5rem;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ccs-shop-card__price,
.ccs-shop-single__price {
	display: flex;
	align-items: baseline;
	gap: 0.65rem;
}

.ccs-shop-card__price-current,
.ccs-shop-single__price-current {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1d4e3a;
}

.ccs-shop-card__price-regular,
.ccs-shop-single__price-regular {
	color: #7a828a;
	text-decoration: line-through;
}

.ccs-shop-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-content: flex-start;
	min-height: 2.5rem;
}

.ccs-shop-card__meta span {
	font-size: 0.95rem;
}

.ccs-shop-card__meta span {
	padding: 0.25rem 0.6rem;
	background: #eef5f1;
	border-radius: 999px;
}

.ccs-shop-card__excerpt {
	margin: 0;
	color: #43515d;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	min-height: 4rem;
}

.ccs-shop-card__content > .ccs-button {
	align-self: end;
	width: 100%;
	text-align: center;
}

.ccs-thumbnails-vertical {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ccs-thumb-vertical {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	width: 84px;
	padding: 0.4rem;
	cursor: pointer;
	border: 1px solid #d7dee4;
	border-radius: 14px;
	background: #fff;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
	margin: 0;
	font: inherit;
	text-align: center;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ccs-thumb-vertical:hover,
.ccs-thumb-vertical.is-active {
	border-color: #365b6d;
	box-shadow: 0 12px 24px rgba(31, 41, 51, 0.08);
	transform: translateY(-1px);
}

.ccs-thumb-vertical__frame {
	display: flex;
	width: 100%;
	height: 74px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	overflow: hidden;
	background: #f5f2eb;
}

.ccs-thumb-vertical img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ccs-thumb-vertical--video,
.ccs-thumb-vertical--pdf {
	color: #1f2933;
}

.ccs-thumb-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 74px;
	border-radius: 10px;
	background: linear-gradient(135deg, #f3f6f7, #e6edef);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ccs-thumb-name {
	display: block;
	max-width: 100%;
	font-size: 0.72rem;
	line-height: 1.2;
	text-align: center;
	color: #43515d;
}

.ccs-thumb-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.12rem 0.45rem;
	border-radius: 999px;
	background: #edf4f7;
	color: #365b6d;
	font-size: 0.66rem;
	font-weight: 700;
	text-transform: uppercase;
}

.ccs-thumb-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.5rem;
	height: 1.5rem;
	padding: 0 0.35rem;
	border-radius: 999px;
	background: #f3f5f7;
	color: #52606d;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
}

.ccs-thumb-vertical.is-active .ccs-thumb-index {
	background: #365b6d;
	color: #fff;
}

.ccs-main-preview {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 560px;
	padding: 1rem;
	border: 1px solid #e1e7ec;
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
	box-shadow: 0 18px 40px rgba(31, 41, 51, 0.07);
}

.ccs-main-preview img,
.ccs-main-preview video {
	width: 100%;
	max-height: 620px;
	object-fit: contain;
}

.ccs-main-media {
	display: block;
	width: 100%;
}

.ccs-main-media--pdf {
	width: 100%;
}

.ccs-main-preview__error {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 360px;
	padding: 1.5rem;
	border-radius: 16px;
	background: #faf3f1;
	color: #8a2b24;
	font-weight: 700;
	text-align: center;
}

.ccs-pdf-viewer {
	width: 100%;
	max-height: 620px;
	overflow-y: auto;
	padding: 0.75rem;
	border-radius: 16px;
	background: #f7f7f2;
}

.ccs-pdf-viewer__status {
	position: sticky;
	top: 0;
	z-index: 1;
	margin-bottom: 0.75rem;
	padding: 0.65rem 0.85rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.96);
	color: #365b6d;
	font-size: 0.92rem;
	font-weight: 600;
	backdrop-filter: blur(8px);
}

.ccs-pdf-viewer__pages {
	display: grid;
	gap: 1rem;
}

.ccs-pdf-page {
	padding: 0.75rem;
	border: 1px solid #e2e8ee;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(31, 41, 51, 0.06);
}

.ccs-pdf-page__canvas {
	display: block;
	width: 100%;
	height: auto;
}

.ccs-btn-preview {
	display: inline-block;
	padding: 10px 15px;
	border: 1px solid #333;
	border-radius: 25px;
	text-decoration: none;
}

.ccs-protected-content {
	user-select: none;
}

.ccs-shop-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2rem;
}

.ccs-shop-pagination__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	padding: 0.6rem 0.8rem;
	border: 1px solid #d3d8dd;
	border-radius: 8px;
	text-decoration: none;
	background: #fff;
	color: #1f2933;
}

.ccs-shop-pagination__link.is-current {
	background: #365b6d;
	border-color: #365b6d;
	color: #fff;
}

.ccs-shop-empty {
	padding: 1.25rem 1.5rem;
}

.ccs-account__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.ccs-account-card {
	padding: 1.5rem;
	background: #fff;
	border: 1px solid #e6e1d6;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(31, 41, 51, 0.05);
}

.ccs-account-card-full {
	margin-bottom: 1.5rem;
}

.ccs-account__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.ccs-account__welcome {
	margin: 0.35rem 0 0;
	color: #52606d;
}

.ccs-account__aux-link {
	margin: 1rem 0 0;
}

.ccs-front-form__row,
.ccs-front-form__actions,
.ccs-front-form__checkbox {
	margin: 0 0 1rem;
}

.ccs-front-form__row label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
}

.ccs-front-form__row input {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 1px solid #c7c2b8;
	border-radius: 8px;
	box-sizing: border-box;
}

.ccs-front-form__checkbox label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.ccs-front-notice {
	margin-bottom: 1rem;
	padding: 0.9rem 1rem;
	border-radius: 10px;
}

.ccs-front-notice p {
	margin: 0;
}

.ccs-front-notice p + p {
	margin-top: 0.5rem;
}

.ccs-front-notice-error {
	background: #fff1f0;
	border: 1px solid #f1c4c0;
	color: #8a2b24;
}

.ccs-front-notice-success {
	background: #eef8f1;
	border: 1px solid #c4e3cb;
	color: #1f5f38;
}

.ccs-account-details {
	display: grid;
	gap: 1rem;
	margin: 0;
}

.ccs-account-details div {
	display: grid;
	gap: 0.2rem;
}

.ccs-account-details dt {
	font-weight: 700;
}

.ccs-account-details dd {
	margin: 0;
	color: #52606d;
}

.ccs-purchases {
	display: grid;
	gap: 0.9rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.ccs-purchases__item {
	display: grid;
	gap: 0.25rem;
	padding: 0.9rem 1rem;
	background: #f8f6f1;
	border-radius: 10px;
}

.ccs-shop-single__back {
	margin-bottom: 1.25rem;
}

.ccs-shop-single {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}

.ccs-shop-single__back a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #365b6d;
	font-weight: 600;
	text-decoration: none;
}

.ccs-shop-single__hero {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr) minmax(300px, 360px);
	gap: 1.25rem;
	align-items: start;
	margin-bottom: 1.75rem;
}

.ccs-shop-single__hero.ccs-shop-single__hero--no-thumbs {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
}

.ccs-shop-single__thumbs {
	align-self: start;
}

.ccs-shop-single__viewer {
	min-width: 0;
}

.ccs-shop-single__summary-card,
.ccs-shop-single__section {
	padding: 1.5rem;
	background: #fff;
	border: 1px solid #e6e1d6;
	border-radius: 18px;
	box-shadow: 0 12px 28px rgba(31, 41, 51, 0.06);
}

.ccs-shop-single__summary-card {
	position: sticky;
	top: 1rem;
	display: grid;
	gap: 0.9rem;
}

.ccs-shop-single__eyebrow {
	margin: 0;
	color: #647380;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ccs-shop-single__author {
	margin: -0.35rem 0 0;
	color: #52606d;
	font-size: 0.95rem;
}

.ccs-shop-single__summary p:first-child,
.ccs-shop-single__section p:first-child {
	margin-top: 0;
}

.ccs-shop-single__purchase {
	margin-top: 0.15rem;
}

.ccs-shop-single__cta {
	display: block;
	width: 100%;
	padding: 0.95rem 1rem;
	text-align: center;
	box-sizing: border-box;
	border-radius: 10px;
}

.ccs-shop-single__price {
	gap: 0.75rem;
}

.ccs-shop-single__price-current {
	font-size: 2rem;
	color: #1d4e3a;
}

.ccs-shop-single__price-regular {
	font-size: 1rem;
}

.ccs-shop-single__summary {
	padding-top: 0.55rem;
	border-top: 1px solid #edf1f4;
	color: #43515d;
	font-size: 0.95rem;
}

.ccs-shop-single__summary p:last-child {
	margin-bottom: 0;
}

.ccs-shop-single__ownership-note {
	margin: 0.7rem 0 0;
	color: #43515d;
	font-size: 0.9rem;
	line-height: 1.5;
}

.ccs-shop-single__highlights {
	display: grid;
	gap: 0.75rem;
}

.ccs-shop-single__highlights h2,
.ccs-shop-single__description h2 {
	margin: 0;
	font-size: 1.1rem;
}

.ccs-shop-single__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
	margin: 0;
}

.ccs-shop-single__fact {
	padding: 0.7rem 0.8rem;
	border: 1px solid #edf1f4;
	border-radius: 12px;
	background: #fafaf8;
}

.ccs-shop-single__fact dt {
	margin: 0 0 0.22rem;
	color: #647380;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.ccs-shop-single__fact dd {
	margin: 0;
	color: #1f2933;
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.35;
}

.ccs-shop-single__description {
	display: grid;
	gap: 1rem;
}

.ccs-shop-single__preview-actions {
	display: flex;
	justify-content: flex-start;
	margin-top: 0.85rem;
}

.ccs-shop-single__preview-link {
	padding: 0.75rem 1rem;
	border-color: #d7dee4;
	color: #2d4f60;
	background: #fff;
}

.ccs-shop-single__preview-link[hidden] {
	display: none;
}

.ccs-shop-single__more-details {
	display: grid;
	gap: 1rem;
}

.ccs-bundle-fallback {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: center;
	width: 100%;
	min-height: 420px;
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f4ec, #eef3f6);
}

.ccs-bundle-fallback--image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ccs-bundle-fallback--summary {
	align-items: center;
	padding: 2rem;
	text-align: center;
}

.ccs-bundle-fallback__overlay,
.ccs-bundle-fallback--summary {
	position: relative;
	z-index: 1;
}

.ccs-bundle-fallback__overlay {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	display: grid;
	gap: 0.35rem;
	padding: 1rem 1.1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 30px rgba(31, 41, 51, 0.12);
}

.ccs-bundle-fallback__eyebrow {
	color: #647380;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ccs-bundle-fallback__title {
	font-size: 1.2rem;
	line-height: 1.3;
	color: #1f2933;
}

.ccs-bundle-fallback__meta {
	margin: 0;
	color: #43515d;
	line-height: 1.5;
}

.ccs-shop-single__bundle-products,
.ccs-shop-single__bundle-extras {
	display: grid;
	gap: 1rem;
}

.ccs-bundle-products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.ccs-bundle-product-card {
	display: grid;
	grid-template-rows: auto 1fr;
	border: 1px solid #edf1f4;
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
}

.ccs-bundle-product-card__media {
	background: #f7f7f2;
	border-bottom: 1px solid #edf1f4;
}

.ccs-bundle-product-card__media .ccs-shop-card__media,
.ccs-bundle-product-card__media .ccs-shop-image-placeholder {
	min-height: 180px;
	aspect-ratio: 4 / 3;
	margin: 0;
}

.ccs-bundle-product-card__content {
	display: grid;
	gap: 0.55rem;
	padding: 1rem 1.1rem 1.15rem;
}

.ccs-bundle-product-card__content h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.35;
}

.ccs-bundle-product-card__content h3 a {
	color: inherit;
	text-decoration: none;
}

.ccs-bundle-product-card__meta {
	margin: 0;
	color: #647380;
	font-size: 0.82rem;
	font-weight: 600;
}

.ccs-bundle-product-card__excerpt {
	margin: 0;
	color: #43515d;
	font-size: 0.92rem;
	line-height: 1.5;
}

.ccs-bundle-product-card__actions {
	margin: 0.25rem 0 0;
}

.ccs-bundle-product-card__actions .ccs-button {
	width: 100%;
	text-align: center;
}

.ccs-bundle-products--resources .ccs-bundle-product-card__media {
	padding: 1rem;
}

.ccs-bundle-products--resources .ccs-bundle-product-card__media .ccs-main-media,
.ccs-bundle-products--resources .ccs-bundle-product-card__media img {
	max-height: 200px;
	object-fit: contain;
}

.ccs-bundle-access {
	display: grid;
	gap: 1.25rem;
}

.ccs-bundle-access__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.ccs-bundle-access__eyebrow {
	margin: 0 0 0.35rem;
	color: #647380;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.ccs-bundle-access__header h3,
.ccs-bundle-access__section h4 {
	margin: 0;
}

.ccs-bundle-access__description,
.ccs-bundle-access__text {
	margin: 0.35rem 0 0;
	color: #43515d;
	line-height: 1.55;
}

.ccs-bundle-access__section {
	display: grid;
	gap: 0.85rem;
}

.ccs-bundle-access__list {
	display: grid;
	gap: 0.85rem;
}

.ccs-bundle-access__item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid #edf1f4;
	border-radius: 14px;
	background: #fafaf8;
}

.ccs-bundle-access__content {
	display: grid;
	gap: 0.2rem;
}

.ccs-bundle-access__meta {
	margin: 0;
	color: #647380;
	font-size: 0.84rem;
	font-weight: 600;
}

.ccs-bundle-access__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	min-width: 180px;
	justify-content: flex-end;
}

.ccs-bundle-access__actions .ccs-button {
	text-align: center;
}

.ccs-shop-single__details-list {
	display: grid;
	gap: 0.85rem;
	margin: 0;
}

.ccs-shop-single__detail-row {
	display: grid;
	gap: 0.3rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid #edf1f4;
}

.ccs-shop-single__detail-row:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.ccs-shop-single__detail-row dt {
	margin: 0;
	color: #647380;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ccs-shop-single__detail-row dd {
	margin: 0;
	color: #1f2933;
	line-height: 1.55;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product {
	max-width: 1180px;
	margin: 0 auto;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product,
.ccs-shop.ccs-shop-single .ccs-shop-single__product * {
	box-sizing: border-box;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__hero {
	display: grid !important;
	grid-template-columns: 84px minmax(0, 1fr) minmax(300px, 340px) !important;
	gap: 1.25rem;
	align-items: start;
	width: 100%;
	margin-bottom: 1.75rem;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__hero.ccs-shop-single__hero--no-thumbs {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 340px) !important;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__thumbs {
	width: 84px;
	min-width: 84px;
	max-width: 84px;
	align-self: start;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-thumbnails-vertical {
	display: flex !important;
	flex-direction: column !important;
	width: 84px;
	max-width: 84px;
	overflow: visible;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-thumb-vertical {
	display: flex !important;
	width: 84px;
	max-width: 84px;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__viewer {
	width: 100%;
	min-width: 0;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-main-preview {
	width: 100%;
	min-height: 560px;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-main-preview > * {
	width: 100%;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__summary-card {
	display: grid !important;
	gap: 0.9rem;
	width: 100%;
	max-width: 340px;
	min-width: 300px;
	justify-self: end;
	align-self: start;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__facts {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__fact {
	display: block;
}

.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__description {
	width: 100%;
	margin-top: 0;
}

@media (max-width: 1024px) {
	.ccs-shop-single__hero {
		grid-template-columns: 84px minmax(0, 1fr);
	}

	.ccs-shop-single__hero.ccs-shop-single__hero--no-thumbs {
		grid-template-columns: 1fr;
	}

	.ccs-shop-single__summary-card {
		position: static;
		grid-column: 1 / -1;
	}

	.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__hero {
		grid-template-columns: 84px minmax(0, 1fr) !important;
	}

	.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__hero.ccs-shop-single__hero--no-thumbs {
		grid-template-columns: 1fr !important;
	}

	.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__summary-card {
		max-width: none;
		min-width: 0;
		justify-self: stretch;
		grid-column: 1 / -1;
		position: static;
	}
}

@media (max-width: 800px) {
	.ccs-thumbnails-vertical {
		flex-direction: row;
		overflow-x: auto;
		padding-bottom: 0.25rem;
	}

	.ccs-thumb-vertical {
		min-width: 84px;
	}

	.ccs-account__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.ccs-main-preview {
		min-height: 440px;
	}

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

	.ccs-bundle-access__header,
	.ccs-bundle-access__item {
		flex-direction: column;
		align-items: flex-start;
	}

	.ccs-bundle-access__actions {
		min-width: 0;
		width: 100%;
		justify-content: flex-start;
	}

	.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-thumbnails-vertical {
		flex-direction: row !important;
		width: 100%;
		max-width: none;
		overflow-x: auto;
	}

	.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__thumbs {
		width: 100%;
		max-width: none;
	}

	.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__facts {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.ccs-shop-single__hero {
		grid-template-columns: 1fr;
	}

	.ccs-shop-single__thumbs {
		order: 2;
	}

	.ccs-shop-single__viewer {
		order: 1;
	}

	.ccs-shop-single__summary-card {
		order: 3;
	}

	.ccs-main-preview {
		min-height: 320px;
		padding: 0.75rem;
	}

	.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-shop-single__hero {
		grid-template-columns: 1fr !important;
	}

	.ccs-shop.ccs-shop-single .ccs-shop-single__product .ccs-main-preview {
		min-height: 320px;
	}
}
