/*
 * CaseCreator storefront visual layer.
 * Translated from index1.html for native WordPress and WooCommerce markup.
 */

@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
	--cc-primary: #1b1c44;
	--cc-primary-hover: #1d40c4;
	--cc-accent: #2a5cff;
	--cc-accent-hover: #1d40c4;
	--cc-accent-alt: #ff2e9a;
	--cc-gradient-from: #a487da;
	--cc-gradient-mid: #57bdea;
	--cc-gradient-to: #38bd9c;
	--cc-gradient: linear-gradient(115deg, #a487da 0%, #57bdea 52%, #38bd9c 100%);
	--cc-surface: #f3f5fc;
	--cc-white: #fff;
	--cc-off-white: #f7f9fe;
	--cc-light-grey: #e6e9f5;
	--cc-mid-grey: #8e93b4;
	--cc-dark-grey: #1b1c44;
	--cc-text: #1b1c44;
	--cc-muted: #5b6088;
	--cc-lime: #b9e224;
	--cc-font-display: "Fredoka", system-ui, sans-serif;
	--cc-font-primary: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
	--cc-container-max: 1440px;
	--cc-container-pad: clamp(20px, 3vw, 48px);
	--cc-radius-sm: 10px;
	--cc-radius-md: 16px;
	--cc-radius-lg: 24px;
	--cc-radius-xl: 34px;
	--cc-shadow-sm: 0 4px 14px -6px rgba(43, 49, 110, .16);
	--cc-shadow-md: 0 14px 36px -14px rgba(43, 49, 110, .24);
	--cc-shadow-lg: 0 30px 70px -28px rgba(43, 49, 110, .34);
	--cc-shadow-blue: 0 16px 34px -12px rgba(42, 92, 255, .45);
}

html {
	scroll-padding-top: 100px;
}

body {
	background: var(--cc-surface);
	color: var(--cc-text);
	font-family: var(--cc-font-primary);
	font-weight: 500;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body:not(.home) .site-main {
	min-height: 55vh;
	padding-block: clamp(32px, 4vw, 64px);
}

::selection {
	background: #c9d5ff;
	color: var(--cc-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--cc-font-display);
	color: var(--cc-primary);
	line-height: 1.08;
	letter-spacing: -.015em;
}

p {
	color: var(--cc-muted);
}

.entry-content > * + * {
	margin-top: 1.25em;
}

.entry-content a {
	color: var(--cc-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.25rem;
	list-style: revert;
}

.entry-content blockquote {
	border-left: 4px solid var(--cc-gradient-mid);
	background: var(--cc-white);
	border-radius: 0 var(--cc-radius-md) var(--cc-radius-md) 0;
	padding: 1.25rem 1.5rem;
}

input,
textarea,
select {
	width: 100%;
	min-height: 48px;
	border: 1.5px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-sm);
	background: var(--cc-white);
	color: var(--cc-text);
	font: inherit;
	padding: .75rem 1rem;
	outline: 0;
	transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--cc-accent);
	box-shadow: 0 0 0 4px rgba(42, 92, 255, .1);
}

/* Header */
.announcement-bar {
	background: var(--cc-accent);
	color: #fff;
	min-height: 38px;
}

.announcement-bar__inner {
	min-height: 38px;
	padding-block: 6px;
}

.announcement-bar__content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	font-size: 12px;
	font-weight: 700;
}

.announcement-bar__primary b {
	display: inline-block;
	margin-right: 7px;
	padding: 2px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	font-size: 9px;
	letter-spacing: .1em;
}

.announcement-bar__dismiss {
	display: none;
}

.site-header {
	background: rgba(243, 245, 252, .9);
	border-bottom-color: rgba(214, 219, 236, .8);
	backdrop-filter: blur(18px);
}

.site-header--sticky {
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 10px 30px -20px rgba(27, 28, 68, .35);
}

.desktop-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	height: 82px;
}

.desktop-header__logo {
	grid-column: 2;
	grid-row: 1;
}

.desktop-header__nav {
	grid-column: 1;
	grid-row: 1;
	justify-content: flex-start;
}

.desktop-header__actions {
	grid-column: 3;
	grid-row: 1;
	justify-content: flex-end;
}

.header-logo__text,
.mobile-header__logo-text,
.mobile-menu__brand > span {
	font-family: var(--cc-font-display);
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: -.04em;
	background: var(--cc-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.header-logo__text::before,
.mobile-header__logo-text::before,
.mobile-menu__brand > span::before {
	content: "CC";
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-right: 8px;
	border-radius: 11px;
	background: var(--cc-gradient);
	color: #fff;
	font-size: 12px;
	letter-spacing: -.06em;
	-webkit-text-fill-color: #fff;
	box-shadow: var(--cc-shadow-sm);
	vertical-align: 3px;
}

.header-logo__img {
	max-height: 46px;
}

.menu-item__link {
	color: var(--cc-muted);
	font-size: 13px;
	font-weight: 700;
}

.menu-item__link:hover,
.current-menu-item > .menu-item__link,
.current-menu-ancestor > .menu-item__link {
	color: var(--cc-primary);
	background: rgba(255, 255, 255, .75);
}

.header-action,
.mini-cart__trigger {
	width: 42px;
	height: 42px;
	border: 1px solid transparent;
	border-radius: 50%;
}

.header-action:hover,
.mini-cart__trigger:hover {
	border-color: var(--cc-light-grey);
	background: var(--cc-white);
}

.header-cta-btn,
.btn,
.cc-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 24px;
	border: 0;
	border-radius: 999px;
	font-family: var(--cc-font-primary);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.header-cta-btn,
.btn--primary,
.cc-button--primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
	background: var(--cc-accent);
	color: #fff;
	box-shadow: var(--cc-shadow-blue);
}

.header-cta-btn:hover,
.btn--primary:hover,
.cc-button--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-element-button:hover {
	background: var(--cc-primary-hover);
	color: #fff;
	transform: translateY(-2px);
}

.btn--outline,
.cc-button--ghost {
	background: var(--cc-white);
	border: 1.5px solid #d6dbec;
	color: var(--cc-primary);
	box-shadow: var(--cc-shadow-sm);
}

.btn--outline:hover,
.cc-button--ghost:hover {
	background: #fff;
	border-color: var(--cc-gradient-mid);
	color: var(--cc-accent);
	transform: translateY(-2px);
}

.dropdown__menu,
.mini-cart__dropdown {
	border-color: var(--cc-light-grey);
	border-radius: var(--cc-radius-md);
	box-shadow: var(--cc-shadow-md);
}

/* Off-canvas mini cart */
.site-overlay--cart {
	z-index: 590;
}

.mini-cart-sidebar {
	position: fixed;
	z-index: 600;
	top: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	width: min(460px, 100vw);
	background: #fff;
	box-shadow: -24px 0 70px -28px rgba(27, 28, 68, .42);
	transform: translateX(105%);
	transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.mini-cart-sidebar--open {
	transform: translateX(0);
}

.mini-cart-sidebar__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 26px 28px 22px;
	border-bottom: 1px solid var(--cc-light-grey);
	background:
		radial-gradient(circle at 90% 0%, rgba(87, 189, 234, .15), transparent 35%),
		var(--cc-off-white);
}

.mini-cart-sidebar__header .cc-eyebrow {
	margin-bottom: 5px;
}

.mini-cart-sidebar__header h2 {
	margin: 0;
	font-size: 34px;
}

.mini-cart-sidebar__close {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--cc-light-grey);
	border-radius: 50%;
	background: #fff;
	color: var(--cc-primary);
	transition: transform .2s ease, border-color .2s ease;
}

.mini-cart-sidebar__close:hover {
	border-color: var(--cc-gradient-mid);
	transform: rotate(6deg);
}

.mini-cart-sidebar__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 0;
}

/* ── Cart Items (scrollable list) ──────────────────────── */
.cc-cart-items {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	min-height: 0;
}

.cc-cart-items .woocommerce-mini-cart {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Each cart item row */
.woocommerce-mini-cart-item {
	position: relative;
	padding: 16px 28px;
	border-bottom: 1px solid var(--cc-light-grey);
}

/* Remove button — top-right corner */
.woocommerce-mini-cart-item .remove_from_cart_button {
	position: absolute;
	top: 16px;
	right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--cc-surface);
	color: var(--cc-muted);
	font-size: 16px;
	line-height: 1;
	transition: background .18s ease, color .18s ease;
	text-decoration: none;
}

.woocommerce-mini-cart-item .remove_from_cart_button:hover {
	background: #ffe6f3;
	color: var(--cc-accent-alt);
}

/* Row: image + info side-by-side */
.cc-cart-item__wrap {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding-right: 32px; /* room for remove button */
}

/* Image box */
.cc-cart-item__image {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--cc-surface);
}

.cc-cart-item__image img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	display: block;
	float: none !important;
	margin: 0 !important;
}

/* Product name + quantity column */
.cc-cart-item__info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-top: 2px;
}

.cc-cart-item__name {
	display: block;
	font-family: var(--cc-font-display);
	font-size: 15px;
	font-weight: 600;
	color: var(--cc-primary);
	line-height: 1.3;
	text-decoration: none;
	white-space: normal;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.cc-cart-item__name:hover {
	color: var(--cc-accent);
}

.cc-cart-item__info .quantity {
	font-size: 13px;
	font-weight: 500;
	color: var(--cc-muted);
}

/* Variation meta (size, colour, etc.) */
.cc-cart-item__meta {
	list-style: none;
	font-size: 12px;
	color: var(--cc-muted);
}

.cc-cart-item__meta li {
	display: flex;
	gap: 4px;
}

.cc-cart-item__meta-label {
	font-weight: 600;
}

/* ── Cart Footer (fixed: subtotal + buttons) ──────────── */
.cc-cart-footer {
	flex-shrink: 0;
	border-top: 1px solid var(--cc-light-grey);
	background: var(--cc-white);
}

.cc-cart-footer__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 28px;
	border-bottom: 1px solid var(--cc-light-grey);
}

.cc-cart-footer__total-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--cc-muted);
}

.cc-cart-footer__total-amount {
	font-family: var(--cc-font-display);
	font-size: 22px;
	font-weight: 700;
	color: var(--cc-primary);
}

.cc-cart-footer__total-amount .woocommerce-Price-amount {
	font-size: inherit;
}

.cc-cart-footer__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 16px 28px 24px;
}

.cc-cart-footer__view-cart,
.cc-cart-footer__checkout {
	justify-content: center;
	min-height: 46px;
	font-size: 13px;
}

.cc-cart-footer__checkout {
	background: var(--cc-gradient);
	color: #fff;
	border: none;
	box-shadow: 0 14px 28px -14px rgba(87, 130, 220, .55);
}

.cc-cart-footer__checkout:hover {
	opacity: .9;
	transform: translateY(-1px);
}

/* ── Empty Cart State ─────────────────────────────────── */
.cc-cart-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex: 1;
	padding: 52px 28px;
	text-align: center;
}

.cc-cart-empty__icon {
	color: var(--cc-light-grey);
}

.cc-cart-empty__text {
	font-family: var(--cc-font-display);
	font-size: 18px;
	font-weight: 500;
	color: var(--cc-muted);
	max-width: 22ch;
}

/* ── Default WordPress page / single post ── */

.entry-header {
	margin-bottom: 28px;
}

/* Inner page title — sensible size for About, Contact, etc. */
.entry-title {
	font-size: clamp(24px, 2.8vw, 38px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.2;
}

/* Shop archive heading */
.woocommerce-products-header__title {
	font-size: clamp(24px, 2.8vw, 38px);
	font-weight: 700;
	letter-spacing: -.02em;
}

/* Checkout section labels (Billing / Shipping) */
.woocommerce .woocommerce-billing-fields > h3,
.woocommerce .woocommerce-shipping-fields > h3,
.woocommerce .woocommerce-additional-fields > h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--cc-primary);
	margin: 0 0 18px;
}

/* Default page content card */
.entry-content {
	background: var(--cc-white);
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	padding: clamp(24px, 3.5vw, 48px);
	box-shadow: var(--cc-shadow-sm);
}

.cc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 14px;
	color: var(--cc-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.cc-eyebrow > span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cc-gradient);
}

.cc-section {
	position: relative;
	padding: clamp(70px, 8vw, 116px) 0;
}

.cc-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: clamp(36px, 4vw, 60px);
}

.cc-section__header h2 {
	max-width: 16ch;
	margin: 0;
	font-size: clamp(38px, 4.6vw, 62px);
	font-weight: 600;
}

.cc-section__header h2 em {
	background: var(--cc-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-style: normal;
}

.cc-section__header > p {
	max-width: 390px;
	margin: 0;
	font-size: 15px;
}

.cc-section__header--center {
	display: block;
	text-align: center;
}

.cc-section__header--center h2,
.cc-section__header--center p {
	max-width: none;
}

/* Hero */
.cc-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(64px, 8vw, 120px) 0;
	background:
		radial-gradient(ellipse 55% 65% at 78% 40%, rgba(164, 135, 218, .17), transparent 70%),
		radial-gradient(ellipse 45% 60% at 98% 15%, rgba(87, 189, 234, .18), transparent 70%),
		var(--cc-surface);
}

.cc-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .25;
	background-image: radial-gradient(#aeb6d9 1px, transparent 1px);
	background-size: 22px 22px;
	mask-image: linear-gradient(90deg, #000, transparent 52%);
}

.cc-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: clamp(42px, 7vw, 100px);
}

.cc-hero__copy {
	position: relative;
	z-index: 2;
}

.cc-hero h1 {
	max-width: 10ch;
	margin: 0;
	font-size: clamp(62px, 7.3vw, 108px);
	font-weight: 600;
	line-height: .93;
	letter-spacing: -.035em;
}

.cc-hero h1 span {
	display: block;
	background: var(--cc-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.cc-hero__lead {
	max-width: 610px;
	margin: 28px 0;
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.7;
}

.cc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.cc-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	margin-top: 34px;
}

.cc-hero__meta li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--cc-muted);
	font-size: 12px;
	font-weight: 700;
}

.cc-hero__meta b {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--cc-shadow-sm);
}

.cc-hero__art {
	position: relative;
	min-height: 590px;
}

.cc-hero__blob {
	position: absolute;
	inset: 9% 4% 4% 10%;
	border-radius: 45% 55% 43% 57% / 52% 40% 60% 48%;
	background: var(--cc-gradient);
	opacity: .26;
	filter: saturate(1.2);
	transform: rotate(-8deg);
}

.cc-case {
	position: absolute;
	z-index: 3;
	top: 1%;
	right: 12%;
	width: 270px;
	height: 552px;
	padding: 9px;
	border-radius: 54px;
	background: #171831;
	box-shadow: 0 45px 70px -30px rgba(27, 28, 68, .65);
	transform: rotate(6deg);
}

.cc-case__print {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 46px;
	background:
		radial-gradient(circle at 20% 25%, rgba(255, 255, 255, .55), transparent 18%),
		radial-gradient(circle at 70% 70%, rgba(255, 46, 154, .48), transparent 28%),
		var(--cc-gradient);
	color: #fff;
	font-family: var(--cc-font-display);
	font-size: 32px;
	font-weight: 600;
	line-height: .9;
	text-align: center;
	text-shadow: 0 3px 20px rgba(27, 28, 68, .25);
}

.cc-case__print strong {
	font-size: 100px;
}

.cc-case__camera {
	position: absolute;
	top: 23px;
	left: 23px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
	width: 88px;
	height: 88px;
	padding: 10px;
	border-radius: 25px;
	background: rgba(25, 26, 53, .88);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.cc-case__camera i {
	display: block;
	border: 3px solid #42486c;
	border-radius: 50%;
	background: #0f1022;
	box-shadow: inset 3px 3px 5px rgba(87, 189, 234, .28);
}

.cc-case__camera i:last-child {
	grid-column: 1;
}

.cc-upload-card {
	position: absolute;
	z-index: 5;
	bottom: 5%;
	left: 0;
	width: 160px;
	padding: 9px 9px 38px;
	border-radius: 9px;
	background: #fff;
	box-shadow: var(--cc-shadow-lg);
	transform: rotate(-7deg);
}

.cc-upload-card__image {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	background:
		radial-gradient(circle at 25% 25%, var(--cc-lime), transparent 32%),
		radial-gradient(circle at 75% 65%, var(--cc-accent-alt), transparent 40%),
		var(--cc-gradient);
	color: #fff;
	font-family: var(--cc-font-display);
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}

.cc-upload-card > span {
	position: absolute;
	right: 0;
	bottom: 8px;
	left: 0;
	color: var(--cc-primary);
	font-family: var(--cc-font-display);
	font-size: 14px;
	text-align: center;
	text-transform: lowercase;
}

.cc-go-badge {
	position: absolute;
	z-index: 6;
	top: 0;
	right: 2%;
	padding: 8px 15px;
	border-radius: 999px;
	background: var(--cc-accent-alt);
	color: #fff;
	font-family: var(--cc-font-display);
	font-size: 13px;
	font-weight: 700;
	box-shadow: var(--cc-shadow-md);
	transform: rotate(8deg);
}

.cc-spark {
	position: absolute;
	z-index: 6;
	font-size: 52px;
	line-height: 1;
}

.cc-spark--one {
	top: 6%;
	left: 29%;
	color: var(--cc-lime);
}

.cc-spark--two {
	right: 0;
	top: 52%;
	color: var(--cc-accent-alt);
	font-size: 32px;
}

/* Steps */
.cc-steps {
	border-block: 1px solid var(--cc-light-grey);
	background:
		radial-gradient(ellipse 60% 50% at 15% 0%, rgba(164, 135, 218, .1), transparent 60%),
		radial-gradient(ellipse 60% 50% at 85% 100%, rgba(56, 189, 156, .1), transparent 60%),
		#fff;
}

.cc-steps .cc-section__header h2 {
	font-size: clamp(42px, 6vw, 86px);
}

.cc-steps .cc-section__header h2 span:nth-child(1) { color: var(--cc-gradient-from); }
.cc-steps .cc-section__header h2 span:nth-child(2) { color: var(--cc-gradient-mid); }
.cc-steps .cc-section__header h2 span:nth-child(3) { color: #15a6c9; }
.cc-steps .cc-section__header h2 span:nth-child(4) { color: var(--cc-gradient-to); }

.cc-step-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.cc-step-card {
	--tone: #a487da;
	--tone-2: #57bdea;
	position: relative;
	overflow: hidden;
	padding: 27px 24px 30px;
	border: 1px solid color-mix(in srgb, var(--tone) 26%, var(--cc-light-grey));
	border-radius: var(--cc-radius-lg);
	background: linear-gradient(155deg, color-mix(in srgb, var(--tone) 14%, #fff), #fff 58%);
	transition: transform .25s ease, box-shadow .25s ease;
}

.cc-step-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--tone), var(--tone-2));
}

.cc-step-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--cc-shadow-md);
}

.cc-step-card--2 { --tone: #57bdea; --tone-2: #15a6c9; }
.cc-step-card--3 { --tone: #15a6c9; --tone-2: #38bd9c; }
.cc-step-card--4 { --tone: #38bd9c; --tone-2: #b9e224; }

.cc-step-card__watermark {
	position: absolute;
	top: -20px;
	right: -5px;
	color: var(--tone);
	font-family: var(--cc-font-display);
	font-size: 132px;
	font-weight: 700;
	line-height: 1;
	opacity: .12;
}

.cc-step-card__top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 23px;
}

.cc-step-card__icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: linear-gradient(145deg, var(--tone), var(--tone-2));
	color: #fff;
	font-size: 27px;
	box-shadow: 0 12px 24px -13px var(--tone);
}

.cc-step-card small {
	padding: 6px 11px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--tone) 14%, #fff);
	color: var(--tone);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
}

.cc-step-card h3 {
	margin: 0 0 8px;
	font-size: 28px;
}

.cc-step-card p {
	margin: 0;
	font-size: 14px;
}

/* Models */
.cc-models {
	background: var(--cc-surface);
}

.cc-brand-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 36px;
}

.cc-brand-pills span {
	padding: 10px 19px;
	border: 1.5px solid var(--cc-light-grey);
	border-radius: 999px;
	background: #fff;
	color: var(--cc-muted);
	font-size: 13px;
	font-weight: 700;
}

.cc-brand-pills .is-active {
	border-color: var(--cc-accent);
	background: var(--cc-accent);
	color: #fff;
	box-shadow: var(--cc-shadow-blue);
}

.cc-model-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.cc-model-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 28px 20px 22px;
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	background: #fff;
	text-align: center;
	transition: transform .22s ease, box-shadow .22s ease;
}

.cc-model-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--cc-shadow-md);
}

.cc-model-card__phone {
	position: relative;
	width: 66px;
	height: 130px;
	margin-bottom: 19px;
	border-radius: 17px;
	background: linear-gradient(155deg, #fbfcff, #e9edfa);
	box-shadow: inset 0 0 0 1.5px rgba(27, 28, 68, .07), var(--cc-shadow-sm);
	transition: transform .25s ease;
}

.cc-model-card:hover .cc-model-card__phone {
	transform: translateY(-4px) rotate(-3deg);
}

.cc-model-card__phone::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 8px;
	width: 22px;
	height: 22px;
	border-radius: 7px;
	background: rgba(27, 28, 68, .1);
}

.cc-model-card strong {
	font-family: var(--cc-font-display);
	font-size: 16px;
	font-weight: 600;
}

.cc-model-card small {
	margin-top: 4px;
	color: var(--cc-accent);
	font-size: 11px;
	font-weight: 700;
}

/* Finishes */
.cc-finishes {
	border-block: 1px solid var(--cc-light-grey);
	background: #fff;
}

.cc-finish-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
	height: 560px;
}

.cc-finish {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	padding: 26px;
	border-radius: var(--cc-radius-lg);
	color: #fff;
	transition: transform .25s ease;
}

.cc-finish::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 72% 30%, rgba(255, 255, 255, .45), transparent 12%),
		linear-gradient(180deg, transparent 25%, rgba(20, 22, 52, .68));
}

.cc-finish:hover {
	transform: translateY(-4px);
}

.cc-finish > * {
	position: relative;
	z-index: 1;
}

.cc-finish:first-child {
	grid-row: span 2;
}

.cc-finish small {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.cc-finish h3 {
	margin: 5px 0;
	color: #fff;
	font-size: 28px;
}

.cc-finish:first-child h3 {
	font-size: 44px;
}

.cc-finish p {
	max-width: 32ch;
	margin: 0;
	color: rgba(255, 255, 255, .88);
	font-size: 13px;
}

.cc-finish--clear { background: linear-gradient(135deg, #d7eef7, #6fb8e0); }
.cc-finish--soft { background: var(--cc-gradient); }
.cc-finish--glitter { background: linear-gradient(135deg, #ffd1e8, #c46a9e); }
.cc-finish--tough { background: linear-gradient(135deg, #3a4170, #1b1c44); }
.cc-finish--magsafe { background: linear-gradient(135deg, #b6e224, #57bdea); }

/* Reviews and CTA */
.cc-products {
	background: var(--cc-surface);
}

.cc-reviews {
	border-top: 1px solid var(--cc-light-grey);
	background: #fff;
}

.cc-review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.cc-review {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 30px 28px;
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	background: var(--cc-off-white);
}

.cc-review__stars {
	margin-bottom: 15px;
	color: #ffb22e;
	letter-spacing: .1em;
}

.cc-review > p {
	margin: 0 0 26px;
	color: var(--cc-primary);
	font-size: 17px;
	font-weight: 600;
}

.cc-review footer {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.cc-review footer span {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--cc-gradient);
	color: #fff;
	font-family: var(--cc-font-display);
	font-size: 18px;
}

.cc-final-cta {
	background: var(--cc-surface);
}

.cc-final-cta__inner {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	align-items: center;
	gap: 40px;
	overflow: hidden;
	padding: clamp(40px, 6vw, 76px);
	border-radius: var(--cc-radius-xl);
	background: var(--cc-accent);
	color: #fff;
}

.cc-final-cta .cc-eyebrow,
.cc-final-cta p,
.cc-final-cta h2 {
	color: #fff;
}

.cc-final-cta .cc-eyebrow > span {
	background: var(--cc-lime);
}

.cc-final-cta h2 {
	max-width: 12ch;
	margin: 0 0 18px;
	font-size: clamp(38px, 5vw, 64px);
}

.cc-final-cta p:not(.cc-eyebrow) {
	max-width: 48ch;
	margin: 0 0 28px;
	opacity: .9;
}

.cc-button--light {
	background: #fff;
	color: var(--cc-accent);
	box-shadow: var(--cc-shadow-md);
}

.cc-final-cta__art {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border: 4px solid rgba(255, 255, 255, .25);
	border-radius: var(--cc-radius-lg);
	background:
		radial-gradient(circle at 25% 25%, var(--cc-lime), transparent 24%),
		radial-gradient(circle at 75% 72%, var(--cc-accent-alt), transparent 28%),
		var(--cc-gradient);
	box-shadow: var(--cc-shadow-lg);
	transform: rotate(4deg);
}

.cc-final-cta__art span {
	color: #fff;
	font-family: var(--cc-font-display);
	font-size: clamp(80px, 12vw, 180px);
	font-weight: 700;
	letter-spacing: -.1em;
}

.cc-home-content {
	background: #fff;
}

/* Blog */
.blog .site-main > .container,
.archive:not(.woocommerce) .site-main > .container,
.search .site-main > .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.cc-post-card {
	overflow: hidden;
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	background: #fff;
	box-shadow: var(--cc-shadow-sm);
	transition: transform .22s ease, box-shadow .22s ease;
}

.cc-post-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--cc-shadow-md);
}

.cc-post-card__image {
	display: block;
	aspect-ratio: 16/10;
	overflow: hidden;
}

.cc-post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.cc-post-card:hover .cc-post-card__image img {
	transform: scale(1.04);
}

.cc-post-card__body {
	padding: 24px;
}

.cc-post-card__meta {
	margin: 0 0 7px;
	color: var(--cc-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.cc-post-card h2 {
	margin: 0 0 12px;
	font-size: 26px;
}

.cc-post-card__excerpt p {
	margin: 0 0 16px;
	font-size: 14px;
}

.cc-text-link {
	color: var(--cc-accent);
	font-size: 13px;
	font-weight: 800;
}

.cc-single__image {
	overflow: hidden;
	margin-bottom: 30px;
	border-radius: var(--cc-radius-lg);
	box-shadow: var(--cc-shadow-md);
}

.post-navigation,
.posts-navigation {
	max-width: 900px;
	margin: 36px auto 0;
}

.post-navigation .nav-links,
.posts-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 18px;
}

.post-navigation a,
.posts-navigation a {
	display: block;
	padding: 15px 20px;
	border: 1px solid var(--cc-light-grey);
	border-radius: 999px;
	background: #fff;
	color: var(--cc-accent);
	font-size: 13px;
	font-weight: 800;
	box-shadow: var(--cc-shadow-sm);
}

.no-results {
	grid-column: 1 / -1;
	max-width: 800px;
	margin-inline: auto;
	padding: clamp(28px, 5vw, 60px);
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	background: #fff;
	text-align: center;
}

/* WooCommerce */
.woocommerce-main {
	background: var(--cc-surface);
}

.woocommerce-products-header {
	margin-bottom: 42px;
}

.woocommerce .woocommerce-result-count {
	color: var(--cc-muted);
}

.woocommerce .woocommerce-ordering select {
	width: auto;
	min-width: 210px;
}

/* =========================================================================
   Product Grid
   ========================================================================= */
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(var(--cc-shop-cols, 4), minmax(0, 1fr));
	gap: 20px;
	align-items: start;  /* don't stretch rows — each card is its natural height */
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
	display: none !important;
}

/* ── li.product: transparent flex column container ──
   The CARD itself is the <a> link below.
   This wrapper holds: [card] + [button] stacked vertically. */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	position: relative;
	overflow: visible;            /* button sits below the card — don't clip it */
	display: flex !important;
	flex-direction: column;
	width: 100% !important;       /* override WC plugin's 22.05% float width */
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

/* ── The card IS the product link ──
   All card styling lives here: border, radius, shadow, aspect-ratio, overflow.
   This is the clean architecture from the reference .g-card design. */
.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce-page ul.products li.product a.woocommerce-loop-product__link {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4.1;
	overflow: hidden;
	border-radius: var(--cc-radius-lg);
	background: #fff;
	border: 1px solid var(--cc-light-grey);
	box-shadow: var(--cc-shadow-sm);
	z-index: 0;                   /* stacking context: all children compare within */
	text-decoration: none;
	flex-shrink: 0;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link:hover,
.woocommerce-page ul.products li.product a.woocommerce-loop-product__link:hover {
	transform: translateY(-6px);
	box-shadow: var(--cc-shadow-md);
	border-color: color-mix(in srgb, var(--cc-gradient-from) 35%, var(--cc-light-grey));
}

/* Soft background gradient — visible through transparent product images */
.woocommerce ul.products li.product a.woocommerce-loop-product__link::before,
.woocommerce-page ul.products li.product a.woocommerce-loop-product__link::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% 18%, #fff 0%, transparent 60%),
		linear-gradient(170deg, #f7f8fa 0%, #eef0f4 100%);
	z-index: 0;
	pointer-events: none;
}

/* Bottom gradient overlay — fades image into white for the text meta row */
.woocommerce ul.products li.product a.woocommerce-loop-product__link::after,
.woocommerce-page ul.products li.product a.woocommerce-loop-product__link::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 52%;
	background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
	z-index: 2;
	pointer-events: none;
}

/* Product image — fills the card, contained so it doesn't crop */
.woocommerce ul.products li.product a img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	object-position: center 32%;
	aspect-ratio: auto;
	margin: 0 !important;
	border-radius: 0;
	background: transparent;
	z-index: 1;
	transition: transform .45s cubic-bezier(.25, .46, .45, .94);
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link:hover img {
	transform: scale(1.06);
}

/* ── Meta row: name (left) + price pill (right) — exact reference layout ── */

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 88px;          /* space for price pill */
	z-index: 3;
	margin: 0;
	padding: 0;
	font-family: var(--cc-font-display);
	font-size: 15px;
	font-weight: 600;
	color: var(--cc-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
	pointer-events: none;
}

/* Price pill — bottom-right, in the same row as the title */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
	position: absolute;
	bottom: 14px;
	right: 16px;
	z-index: 3;
	margin: 0;
	padding: 5px 12px;
	background: #fff;
	border: 1px solid var(--cc-light-grey);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: var(--cc-primary);
	white-space: nowrap;
	line-height: 1.4;
	box-shadow: 0 1px 4px rgba(27, 28, 68, .06);
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	font-weight: 700;
}

.woocommerce ul.products li.product .price del {
	display: none;
}

/* Star rating — one row above the name/price meta */
.woocommerce ul.products li.product .star-rating,
.woocommerce-page ul.products li.product .star-rating {
	position: absolute;
	bottom: 40px;
	left: 16px;
	z-index: 3;
	margin: 0;
	font-size: 0.7rem;
	color: #ffb22e;
	pointer-events: none;
}

/* ── Add to Cart button — in normal flow, BELOW the card ──
   Not absolute-positioned inside the card anymore.
   li.product is a flex column so button appears naturally below the <a>. */
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce-page ul.products li.product .button.add_to_cart_button {
	display: flex !important;
	align-items: center;
	justify-content: center;
	position: static !important;  /* in normal flow, not inside the card */
	width: 100%;
	height: 40px;
	margin-top: 10px !important;
	padding: 0 16px !important;
	background: var(--cc-accent) !important;
	color: #fff !important;
	font-family: var(--cc-font-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	border-radius: 999px;
	border: none;
	box-shadow: none !important;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background .2s ease, transform .15s ease;
}

.woocommerce ul.products li.product .button.add_to_cart_button:hover,
.woocommerce-page ul.products li.product .button.add_to_cart_button:hover {
	background: var(--cc-primary) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.woocommerce ul.products li.product .button.add_to_cart_button.added,
.woocommerce-page ul.products li.product .button.add_to_cart_button.added {
	background: #16a34a !important;
}

/* ── Badges ── */

/* Featured badge — top-left corner of the card */
.woocommerce ul.products li.product .cc-product-badge,
.woocommerce-page ul.products li.product .cc-product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 4;
	margin: 0;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--cc-gradient-from);
	font-family: var(--cc-font-primary);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	border: 1px solid rgba(164, 135, 218, 0.22);
	line-height: 1.4;
	white-space: nowrap;
	backdrop-filter: blur(4px);
}

/* Sale badge — overrides WooCommerce's two conflicting rules.
   WC rule (1): .woocommerce span.onsale                   — specificity (0,2,1)
   WC rule (2): .woocommerce ul.products li.product .onsale — specificity (0,4,2)
   Our selector at (0,4,3) wins without !important on layout. */
.woocommerce ul.products li.product span.onsale,
.woocommerce-page ul.products li.product span.onsale {
	position: absolute !important;
	top: 12px !important;
	right: 12px !important;
	left: auto !important;
	bottom: auto !important;
	margin: 0 !important;
	padding: 4px 10px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	width: auto !important;
	height: auto !important;
	border-radius: 999px !important;
	background: var(--cc-accent-alt) !important;
	color: #fff !important;
	font-family: var(--cc-font-primary) !important;
	font-size: 9px !important;
	font-weight: 800 !important;
	letter-spacing: .06em !important;
	line-height: 1.4 !important;
	text-transform: uppercase !important;
	text-align: left !important;
	z-index: 4 !important;
}

.woocommerce div.product {
	gap: clamp(34px, 6vw, 80px);
}

.woocommerce div.product div.images img,
.woocommerce div.product div.images .flex-control-thumbs li img {
	border-radius: var(--cc-radius-lg);
}

.woocommerce div.product .summary {
	padding: clamp(24px, 3vw, 42px);
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	background: #fff;
	box-shadow: var(--cc-shadow-sm);
}

.woocommerce div.product .product_title {
	font-size: clamp(38px, 5vw, 64px);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--cc-accent);
	font-size: 24px;
	font-weight: 800;
}

.woocommerce .quantity .qty {
	width: 74px;
}

.woocommerce div.product .woocommerce-tabs {
	grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-bottom-color: var(--cc-light-grey);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border: 0;
	border-radius: 999px;
	background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: #fff;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border: 1px solid var(--cc-light-grey);
	border-top: 4px solid var(--cc-accent);
	border-radius: var(--cc-radius-md);
	background: #fff;
	box-shadow: var(--cc-shadow-sm);
}

.woocommerce table.shop_table {
	overflow: hidden;
	border-color: var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	background: #fff;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 16px;
	border-color: var(--cc-light-grey);
}

/* =========================================================================
   Cart Page — two-column layout: table left, totals right
   ========================================================================= */
.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 28px;
	align-items: start;
}

.woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
}

.woocommerce-cart .woocommerce .woocommerce-cart-form {
	grid-column: 1;
}

.woocommerce-cart .woocommerce .cart-collaterals {
	grid-column: 2;
}

.woocommerce .cart-collaterals .cart_totals {
	padding: 28px;
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	background: #fff;
	box-shadow: var(--cc-shadow-sm);
}

/* Cart coupon + update button row */
.woocommerce-cart .woocommerce-cart-form .actions {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 0 0;
	flex-wrap: wrap;
}

.woocommerce-cart .woocommerce-cart-form .coupon {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
}

.woocommerce-cart .woocommerce-cart-form .coupon #coupon_code {
	max-width: 200px;
	min-height: 42px;
}

/* =========================================================================
   Checkout Page — billing/shipping left, order review right
   ========================================================================= */
.woocommerce-checkout .woocommerce form.checkout {
	display: grid;
	grid-template-columns: 1fr 400px;
	column-gap: 40px;
	row-gap: 24px;
	align-items: start;
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
}

/* Col 1: customer details card */
.woocommerce form.checkout #customer_details {
	grid-column: 1;
	grid-row: 1 / span 5;
	padding: clamp(22px, 3vw, 36px);
	background: var(--cc-white);
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	box-shadow: var(--cc-shadow-sm);
}

/* Stack billing + shipping fields vertically inside the card */
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	float: none !important;
	width: 100% !important;
}

.woocommerce-checkout #customer_details .col-2 {
	margin-top: 24px;
}

/* Col 2: "Your order" heading */
.woocommerce form.checkout h3#order_review_heading {
	grid-column: 2;
	grid-row: 1;
	font-family: var(--cc-font-display);
	font-size: 20px;
	font-weight: 600;
	color: var(--cc-primary);
	margin: 0;
}

/* Col 2: order summary card */
.woocommerce-checkout #order_review {
	grid-column: 2;
	grid-row: 2;
	padding: 28px;
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	background: #fff;
	box-shadow: var(--cc-shadow-sm);
}

/* =========================================================================
   My Account Page — sidebar nav left, content right
   ========================================================================= */
/* =========================================================================
   My Account — full redesign
   ========================================================================= */

/* Outer grid: sidebar nav | content */
.woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 28px;
	align-items: start;
}

/* Explicit placement — needed when WC prepends a notices-wrapper */
.woocommerce-account .woocommerce > .woocommerce-notices-wrapper:first-child {
	grid-column: 1 / -1;
	grid-row: 1;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	grid-column: 1;
	grid-row: 2;
	width: auto !important;
	float: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
	grid-column: 2;
	grid-row: 2;
	width: auto !important;
	float: none !important;
}

/* ── Sidebar ── */
.woocommerce-account .woocommerce-MyAccount-navigation {
	background: var(--cc-white);
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	box-shadow: var(--cc-shadow-sm);
	overflow: hidden;
	position: sticky;
	top: 96px;
}

/* Gradient accent bar at top of sidebar */
.woocommerce-account .woocommerce-MyAccount-navigation::before {
	content: '';
	display: block;
	height: 4px;
	background: var(--cc-gradient);
}

/* Nav list */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px;
	list-style: none;
	margin: 0;
}

/* Each nav link */
.woocommerce-account .woocommerce-MyAccount-navigation-link a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 16px;
	border-radius: 12px;
	color: var(--cc-muted);
	font-family: var(--cc-font-primary);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
	line-height: 1;
}

/* SVG icon via CSS mask — colour inherits from text */
.woocommerce-account .woocommerce-MyAccount-navigation-link a::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	background: currentColor;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	opacity: .6;
	transition: opacity .15s ease;
}

/* Per-item icons */
.woocommerce-account .woocommerce-MyAccount-navigation-link--dashboard a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--orders a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--payment-methods a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E");
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' y1='12' x2='9' y2='12'/%3E%3C/svg%3E");
}

/* Active + hover states */
.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active > a,
.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
	background: color-mix(in srgb, var(--cc-accent) 10%, transparent);
	color: var(--cc-accent);
}

.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active > a::before,
.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover::before {
	opacity: 1;
}

/* Logout — red tint */
.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout {
	border-top: 1px solid var(--cc-light-grey);
	margin-top: 4px;
	padding-top: 6px;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a {
	color: #d94f4f;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	background: #fff1f1;
	color: #b91c1c;
}

/* ── Content card ── */
.woocommerce-account .woocommerce-MyAccount-content {
	padding: clamp(24px, 3vw, 40px);
	background: var(--cc-white);
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	box-shadow: var(--cc-shadow-sm);
	min-height: 400px;
}

/* Section headings inside content */
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
	font-family: var(--cc-font-display);
	font-size: 20px;
	font-weight: 600;
	color: var(--cc-primary);
	margin: 0 0 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--cc-light-grey);
}

/* Orders table */
.woocommerce-account .woocommerce-orders-table {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-account .woocommerce-orders-table th {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--cc-muted);
	padding: 0 16px 12px;
	text-align: left;
	border-bottom: 1px solid var(--cc-light-grey);
}

.woocommerce-account .woocommerce-orders-table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--cc-light-grey);
	font-size: 14px;
	color: var(--cc-text);
	vertical-align: middle;
}

.woocommerce-account .woocommerce-orders-table tr:last-child td {
	border-bottom: none;
}

/* Order status badges */
.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark,
.woocommerce-account mark.order-status {
	background: none;
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.woocommerce-account mark.status-processing {
	background: color-mix(in srgb, #3b82f6 12%, transparent);
	color: #1d4ed8;
}

.woocommerce-account mark.status-on-hold {
	background: color-mix(in srgb, #f59e0b 14%, transparent);
	color: #b45309;
}

.woocommerce-account mark.status-completed {
	background: color-mix(in srgb, #22c55e 14%, transparent);
	color: #15803d;
}

.woocommerce-account mark.status-cancelled,
.woocommerce-account mark.status-refunded,
.woocommerce-account mark.status-failed {
	background: color-mix(in srgb, #ef4444 12%, transparent);
	color: #b91c1c;
}

.woocommerce-account mark.status-pending {
	background: var(--cc-surface);
	color: var(--cc-muted);
}

/* View order button in table */
.woocommerce-account .woocommerce-orders-table .woocommerce-button {
	display: inline-block;
	padding: 6px 14px;
	background: var(--cc-accent);
	color: #fff;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	transition: background .15s ease;
}

.woocommerce-account .woocommerce-orders-table .woocommerce-button:hover {
	background: var(--cc-primary);
}

/* Dashboard welcome text */
.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
	background: var(--cc-surface);
	border-radius: var(--cc-radius-md);
	padding: 18px 20px;
	font-size: 14px;
	color: var(--cc-muted);
	border-left: 3px solid var(--cc-accent);
	margin-bottom: 24px;
}

/* Address book grid */
.woocommerce-account .woocommerce-Addresses {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 24px;
	margin-inline: 0;
}

.woocommerce-account .woocommerce-Address,
.woocommerce-account .woocommerce-Addresses .col-1,
.woocommerce-account .woocommerce-Addresses .col-2,
.woocommerce-account .woocommerce-Addresses .u-column1,
.woocommerce-account .woocommerce-Addresses .u-column2 {
	flex: 1 1 260px;
	width: auto !important;
	float: none !important;
	padding: 20px;
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-md);
	background: var(--cc-surface);
}

.woocommerce-account .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.woocommerce-account .woocommerce-Address-title h3 {
	font-size: 15px;
	margin: 0;
	padding: 0;
	border: none;
}

.woocommerce-account .woocommerce-Address-title .edit {
	font-size: 12px;
	font-weight: 600;
	color: var(--cc-accent);
	text-decoration: none;
}

/* Login form for logged-out users */
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
	width: auto !important;
	float: none !important;
	padding: clamp(22px, 3vw, 36px);
	background: var(--cc-white);
	border: 1px solid var(--cc-light-grey);
	border-radius: var(--cc-radius-lg);
	box-shadow: var(--cc-shadow-sm);
}

.woocommerce-account .login h2,
.woocommerce-account .register h2 {
	font-family: var(--cc-font-display);
	font-size: 22px;
	font-weight: 600;
	color: var(--cc-primary);
	margin: 0 0 22px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--cc-light-grey);
}

/* Logged-out state: equal two-column layout (login | register) */
body.woocommerce-account.logged-out .woocommerce {
	grid-template-columns: 1fr 1fr;
	max-width: 860px;
	margin-inline: auto;
}

body.woocommerce-account.logged-out .woocommerce > .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
}

body.woocommerce-account.logged-out .woocommerce > .u-column1 {
	grid-column: 1;
}

body.woocommerce-account.logged-out .woocommerce > .u-column2 {
	grid-column: 2;
}

/* Footer */
.site-footer {
	padding-top: 76px;
	background: var(--cc-primary);
	color: #fff;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr) 1.6fr;
	gap: 40px;
	padding-bottom: 56px;
}

.site-footer__wordmark {
	color: #fff;
	font-family: var(--cc-font-display);
	font-size: 25px;
	font-weight: 600;
	letter-spacing: -.03em;
}

.site-footer__wordmark::before {
	content: "CC";
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-right: 9px;
	border-radius: 12px;
	background: var(--cc-gradient);
	font-size: 13px;
	vertical-align: 3px;
}

.site-footer__description {
	max-width: 290px;
	margin: 18px 0;
	color: rgba(255, 255, 255, .62);
	font-size: 13px;
}

.site-footer h3,
#colophon h3 {
	margin: 3px 0 18px;
	color: var(--cc-lime);
	font-family: var(--cc-font-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.footer-menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-menu a {
	color: rgba(255, 255, 255, .68);
	font-size: 13px;
	font-weight: 600;
}

.footer-menu a:hover {
	color: #fff;
}

.site-footer__newsletter p {
	margin: 0 0 17px;
	color: rgba(255, 255, 255, .58);
	font-size: 13px;
}

.site-footer__newsletter-form {
	display: flex;
	padding: 5px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
}

.site-footer__newsletter-form input,
.site-footer__newsletter-form input[type="email"] {
	flex: 1;
	min-width: 0;
	height: auto;
	min-height: 40px;
	padding-inline: 16px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-size: 12px;
	box-shadow: none;
}

.site-footer__newsletter-form input::placeholder,
.site-footer__newsletter-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, .42);
}

.site-footer__newsletter-form button {
	flex-shrink: 0;
	padding: 0 17px;
	border-radius: 999px;
	background: var(--cc-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.site-footer__bottom {
	padding-block: 20px;
	border-top-color: rgba(255, 255, 255, .12);
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-footer__copyright {
	color: rgba(255, 255, 255, .48);
	font-size: 12px;
}

.site-footer__payments {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.site-footer__payments span {
	padding: 5px 9px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 5px;
	color: rgba(255, 255, 255, .62);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .05em;
	    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
	display: flex;
	flex-direction: row;
	gap: 9px;
}

/* Responsive */
@media (max-width: 1120px) {
	.desktop-header__inner {
		grid-template-columns: auto 1fr;
	}

	.desktop-header__logo {
		grid-column: 1;
	}

	.desktop-header__nav {
		display: none;
	}

	.desktop-header__actions {
		grid-column: 2;
	}

	.cc-hero__grid {
		grid-template-columns: 1fr;
	}

	.cc-hero__copy {
		max-width: 780px;
	}

	.cc-hero__art {
		max-width: 650px;
		width: 100%;
		margin-inline: auto;
	}

	.cc-step-grid,
	.cc-model-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cc-finish-grid {
		height: auto;
	}

	.cc-finish {
		min-height: 260px;
	}

	.cc-finish:first-child {
		grid-column: span 2;
		grid-row: auto;
		min-height: 350px;
	}

	.site-footer__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.site-footer__brand,
	.site-footer__newsletter {
		grid-column: span 2;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(var(--cc-shop-cols-tablet, 3), minmax(0, 1fr));
	}

	/* Checkout: narrow the order review sidebar a bit */
	.woocommerce-checkout .woocommerce form.checkout {
		grid-template-columns: 1fr 340px;
		column-gap: 28px;
	}

	/* Cart: narrow totals sidebar */
	.woocommerce-cart .woocommerce {
		grid-template-columns: 1fr 300px;
		gap: 22px;
	}
}

@media (max-width: 768px) {
	.announcement-bar__extra {
		display: none;
	}

	.announcement-bar__content {
		justify-content: center;
	}

	.mobile-header__inner {
		height: 70px;
	}

	.cc-section__header {
		display: block;
	}

	.cc-section__header > p {
		margin-top: 16px;
	}

	.cc-hero {
		padding-top: 52px;
	}

	.cc-hero h1 {
		font-size: clamp(54px, 16vw, 78px);
	}

	.cc-hero__art {
		min-height: 470px;
	}

	.cc-case {
		right: 10%;
		width: 210px;
		height: 430px;
		border-radius: 43px;
	}

	.cc-case__print {
		border-radius: 36px;
		font-size: 24px;
	}

	.cc-case__print strong {
		font-size: 76px;
	}

	.cc-case__camera {
		width: 70px;
		height: 70px;
		border-radius: 20px;
	}

	.cc-upload-card {
		width: 125px;
	}

	.cc-review-grid,
	.cc-final-cta__inner {
		grid-template-columns: 1fr;
	}

	.cc-final-cta__art {
		max-width: 360px;
	}

	.blog .site-main > .container,
	.archive:not(.woocommerce) .site-main > .container,
	.search .site-main > .container {
		grid-template-columns: 1fr 1fr;
	}

	.woocommerce div.product {
		display: block;
	}

	.woocommerce div.product .summary {
		margin-top: 28px;
	}

	/* Cart: stack table above totals on mobile */
	.woocommerce-cart .woocommerce {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart .woocommerce .cart-collaterals {
		grid-column: 1;
	}

	/* Checkout: stack billing above order review on mobile */
	.woocommerce-checkout .woocommerce form.checkout {
		grid-template-columns: 1fr;
	}

	.woocommerce form.checkout #customer_details {
		grid-column: 1;
		grid-row: 1;
	}

	.woocommerce form.checkout h3#order_review_heading {
		grid-column: 1;
		grid-row: 2;
	}

	.woocommerce-checkout #order_review {
		grid-column: 1;
		grid-row: 3;
	}

	/* My Account: stack nav above content, nav becomes horizontal tabs */
	.woocommerce-account .woocommerce {
		grid-template-columns: 1fr;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		position: static;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		flex-direction: row;
		flex-wrap: wrap;
		padding: 8px;
		gap: 4px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout {
		border-top: none;
		margin-top: 0;
		padding-top: 0;
	}

	.woocommerce-account .woocommerce-Addresses {
		flex-direction: column;
	}

	/* Login/register on mobile: stack columns */
	body.woocommerce-account.logged-out .woocommerce {
		grid-template-columns: 1fr;
		max-width: 100%;
	}

	body.woocommerce-account.logged-out .woocommerce > .u-column1,
	body.woocommerce-account.logged-out .woocommerce > .u-column2 {
		grid-column: 1;
	}

	.site-footer__bottom-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(var(--cc-shop-cols-mobile, 2), minmax(0, 1fr));
	}
}

@media (max-width: 540px) {
	.cc-actions .cc-button {
		width: 100%;
	}

	.cc-hero__meta {
		display: grid;
	}

	.cc-hero__art {
		min-height: 400px;
	}

	.cc-case {
		right: 5%;
		width: 175px;
		height: 360px;
		border-radius: 37px;
	}

	.cc-case__print {
		border-radius: 30px;
		font-size: 20px;
	}

	.cc-case__print strong {
		font-size: 60px;
	}

	.cc-case__camera {
		top: 18px;
		left: 18px;
		width: 58px;
		height: 58px;
		padding: 7px;
	}

	.cc-upload-card {
		left: 2%;
		width: 108px;
	}

	.cc-step-grid,
	.cc-model-grid,
	.cc-review-grid,
	.blog .site-main > .container,
	.archive:not(.woocommerce) .site-main > .container,
	.search .site-main > .container {
		grid-template-columns: 1fr;
	}

	.cc-finish-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.cc-finish:first-child {
		grid-column: auto;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__brand,
	.site-footer__newsletter {
		grid-column: auto;
	}

	.mini-cart-sidebar {
		width: 100vw;
	}

	.mini-cart-sidebar__header,
	.mini-cart-sidebar .woocommerce-mini-cart,
	.mini-cart-sidebar .woocommerce-mini-cart__total,
	.mini-cart-sidebar .woocommerce-mini-cart__buttons {
		padding-right: 20px;
		padding-left: 20px;
	}
}
