/* =========================================================
   Clay Creations — design system
   ========================================================= */
:root {
	--cc-blush: #f3d9de;
	--cc-rose: #c98a99;
	--cc-rose-deep: #8f5468;
	--cc-rose-darker: #74404f;
	--cc-sage: #a8c1a0;
	--cc-cream: #fbf3ea;
	--cc-ivory: #fffaf5;
	--cc-terracotta: #c9a27a;
	--cc-ink: #4a3b37;
	--cc-ink-soft: #6f5f58;
	--cc-radius: 18px;
	--cc-radius-sm: 10px;
	--cc-shadow: 0 10px 30px rgba(169, 103, 122, 0.14);
	--cc-shadow-hover: 0 18px 40px rgba(169, 103, 122, 0.22);
	--cc-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--cc-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
	background: var(--cc-ivory);
	color: var(--cc-ink);
	font-family: var(--cc-font-body);
	font-weight: 300;
	letter-spacing: 0.01em;
}
/* Storefront core sets overflow-x:hidden on body and .site by default.
   Setting only overflow-x (without overflow-y) forces the browser to
   compute overflow-y as "auto" too, and ANY ancestor with non-visible
   overflow breaks position:sticky for everything inside it — which is
   exactly what was stopping the shop filter bar from sticking. There's
   no real horizontal-overflow problem on this site to guard against, so
   it's safe to hand both axes back to normal page scrolling. */
body,
.site {
	overflow-x: visible;
	overflow: visible;
}

h1, h2, h3, h4, h5, h6,
.site-title, .storefront-product-search-inline label {
	font-family: var(--cc-font-heading);
	font-weight: 600;
	color: var(--cc-ink);
	letter-spacing: 0.01em;
}

a { color: var(--cc-rose-deep); }
a:hover { color: var(--cc-rose-darker); }

::selection { background: var(--cc-blush); color: var(--cc-ink); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
	background: linear-gradient(180deg, var(--cc-cream) 0%, var(--cc-ivory) 100%);
	border-bottom: 1px solid rgba(169, 103, 122, 0.15);
	/* Storefront's default is 1.618em top+bottom — a webshop header eating
	   over a third of the viewport pushes products below the fold for no
	   reason, so trim this down considerably. */
	padding-top: 0.65em !important;
	padding-bottom: 0.65em !important;
}

.site-header .site-branding img.custom-logo {
	max-height: 82px !important;
	max-width: 320px !important;
	width: auto !important;
	height: auto !important;
}

/* Tighter nav row to match — Storefront's default .875em top+bottom on
   every link adds up across the whole header. */
.main-navigation ul li a {
	padding: 0.55em 0 !important;
}

/* Single-row header: logo, nav, search, cart side by side (functions.php
   merges what Storefront normally splits into two stacked rows into one
   shared wrapper — this lays that wrapper out as a flex row). */
.site-header > .col-full {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 1rem 1.75rem;
}
/* WooCommerce's own CSS gives each of these four header pieces a fixed
   percentage width + float, all under a .woocommerce-active-prefixed
   selector — matching that same prefix (not just .site-header) so ours
   actually wins, since percentage widths + floats are exactly what
   breaks a single flex row. */
.woocommerce-active .site-header .site-branding {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	order: 1;
}
.woocommerce-active .site-header .main-navigation {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	clear: none !important;
	order: 2;
	flex: 1 1 auto;
	min-width: 0;
}
.woocommerce-active .site-header .site-search {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	order: 3;
	flex: 0 0 auto;
	min-width: 200px;
}
.woocommerce-active .site-header .site-header-cart {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	order: 4;
	flex: 0 0 auto;
	white-space: nowrap;
}
@media (max-width: 800px) {
	.site-header > .col-full {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.site-header .main-navigation {
		order: 4;
		flex-basis: 100%;
	}
}

/* The always-visible header product-search box doesn't collapse on its own
   at narrow widths and was forcing the whole header (and page) to overflow
   horizontally on phones. The handheld footer bar already provides a search
   icon on mobile, so just hide this duplicate instead of trying to shrink it. */
@media (max-width: 600px) {
	.site-header .site-search { display: none !important; }
}

.main-navigation ul li a {
	font-family: var(--cc-font-body);
	font-weight: 500;
	font-size: 0.92rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cc-ink);
	transition: color 0.25s ease;
}
.main-navigation ul li a:hover { color: var(--cc-rose-deep); }

.site-header-cart .cart-contents,
.header-cart-icon a {
	color: var(--cc-ink);
}

/* =========================================================
   Buttons
   ========================================================= */
.button, .wp-block-button__link,
a.button, button.button,
.woocommerce a.button, .woocommerce button.button,
.single_add_to_cart_button {
	background: var(--cc-rose-deep) !important;
	color: #fff !important;
	border: none;
	border-radius: 999px !important;
	padding: 0.85em 2em !important;
	font-family: var(--cc-font-body);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.82rem;
	box-shadow: var(--cc-shadow);
	transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.25s ease;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
}
.button:hover, .wp-block-button__link:hover,
a.button:hover, button.button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover,
.single_add_to_cart_button:hover {
	background: var(--cc-rose-darker) !important;
	transform: translateY(-2px);
	box-shadow: var(--cc-shadow-hover);
}
/* Borderless, modern press feedback instead of a focus/click outline —
   the button itself compresses slightly, no ring or border ever drawn. */
.button:active, .wp-block-button__link:active,
a.button:active, button.button:active,
.woocommerce a.button:active, .woocommerce button.button:active,
.single_add_to_cart_button:active {
	transform: scale(0.95);
	box-shadow: var(--cc-shadow);
}
.button:focus, .wp-block-button__link:focus,
a.button:focus, button.button:focus,
.woocommerce a.button:focus, .woocommerce button.button:focus,
.single_add_to_cart_button:focus,
.button:focus-visible, .wp-block-button__link:focus-visible,
a.button:focus-visible, button.button:focus-visible,
.woocommerce a.button:focus-visible, .woocommerce button.button:focus-visible,
.single_add_to_cart_button:focus-visible {
	outline: none !important;
	box-shadow: var(--cc-shadow);
}
.button:disabled, .woocommerce button.button:disabled,
.button.disabled, .woocommerce a.button.disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none !important;
}

.button.alt, .checkout-button {
	background: var(--cc-rose-darker) !important;
}

/* =========================================================
   Hero carousel
   ========================================================= */
.cc-hero {
	position: relative;
	overflow: hidden;
	min-height: 560px;
	display: flex;
	align-items: center;
}

.cc-hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.1s ease;
	z-index: 1;
}
.cc-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* The photo itself is never faded, darkened or covered by any overlay —
   it stays 100% as-is above this bar. Text sits in a fully solid (non-
   transparent) band anchored to the bottom, so it never competes with the
   image for visibility; the two simply don't share the same space. */
.cc-hero-content {
	position: relative;
	z-index: 3;
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	padding: 0 1.5rem;
}
.cc-hero-content .cc-hero-title {
	text-shadow: 0 1px 3px rgba(255, 250, 245, 0.9), 0 2px 14px rgba(255, 250, 245, 0.7);
}
/* Only the short lines get a snug opaque tag behind them — the photo
   itself is never covered, faded, or banded. */
.cc-hero-content .cc-hero-eyebrow {
	background: rgba(255, 250, 245, 0.92);
	padding: 0.4em 1.1em;
	border-radius: 999px;
	box-shadow: 0 2px 10px rgba(74, 59, 55, 0.1);
}
.cc-hero-content .cc-hero-subtitle {
	display: inline-block;
	background: rgba(255, 250, 245, 0.92);
	padding: 0.7em 1.3em;
	border-radius: var(--cc-radius-sm);
	box-shadow: 0 2px 10px rgba(74, 59, 55, 0.1);
}

.cc-hero-eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--cc-rose-deep);
	margin-bottom: 1rem;
	font-weight: 500;
}

.cc-hero-title {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	line-height: 1.15;
	margin: 0 0 1rem;
}

.cc-hero-subtitle {
	font-size: 1.05rem;
	color: var(--cc-ink-soft);
	margin: 0 0 2rem;
	font-weight: 300;
}

.cc-hero-dots {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	display: flex;
	gap: 10px;
}
.cc-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(74, 59, 55, 0.25);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}
.cc-hero-dot.is-active {
	background: var(--cc-rose-deep);
	transform: scale(1.25);
}

.cc-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 250, 245, 0.75);
	color: var(--cc-ink);
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease;
}
.cc-hero-arrow:hover { background: #fff; }
.cc-hero-arrow.prev { left: 24px; }
.cc-hero-arrow.next { right: 24px; }

/* =========================================================
   Infinite image marquee
   ========================================================= */
.cc-marquee-section {
	background: var(--cc-cream);
	padding: 2.5rem 0;
	overflow: hidden;
}
.cc-marquee-heading {
	text-align: center;
	font-size: 0.8rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--cc-rose-deep);
	margin-bottom: 1.5rem;
	font-weight: 500;
}
.cc-marquee-viewport { overflow: hidden; }
.cc-marquee-track {
	display: flex;
	width: max-content;
	gap: 20px;
	animation: cc-marquee-scroll 40s linear infinite;
}
.cc-marquee-section:hover .cc-marquee-track { animation-play-state: paused; }
.cc-marquee-item {
	flex: 0 0 auto;
	width: 180px;
	height: 180px;
	border-radius: var(--cc-radius);
	overflow: hidden;
	box-shadow: var(--cc-shadow);
}
.cc-marquee-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.cc-marquee-item:hover img { transform: scale(1.08); }

@keyframes cc-marquee-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* =========================================================
   Section spacing + headings
   ========================================================= */
.cc-section {
	padding: 4.5rem 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}
.cc-section-heading {
	text-align: center;
	margin-bottom: 2.5rem;
}
.cc-section-heading .cc-eyebrow {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--cc-rose-deep);
	margin-bottom: 0.6rem;
	font-weight: 500;
}
.cc-section-heading h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	margin: 0;
}
.cc-section-heading p {
	color: var(--cc-ink-soft);
	max-width: 520px;
	margin: 0.8rem auto 0;
}

/* =========================================================
   Product grid — full-bleed image cards, floating cart icon
   ========================================================= */
.woocommerce ul.products li.product.cc-product-card {
	background: #fff;
	border-radius: var(--cc-radius);
	padding: 0;
	overflow: hidden;
	box-shadow: var(--cc-shadow);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	list-style: none;
}
.woocommerce ul.products li.product.cc-product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--cc-shadow-hover);
}

.cc-product-media {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--cc-cream);
}
.cc-product-media-link {
	display: block;
	width: 100%;
	height: 100%;
}
.cc-product-media-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin: 0;
	transition: transform 0.6s ease;
}
.cc-product-card:hover .cc-product-media-link img {
	transform: scale(1.08);
}

.cc-product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(255, 250, 245, 0.92);
	color: var(--cc-ink);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.35em 0.8em;
	border-radius: 999px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.cc-product-badge--sale {
	background: var(--cc-rose-deep);
	color: #fff;
}
.cc-product-badge--stock {
	top: auto;
	bottom: 12px;
	left: 12px;
	background: rgba(74, 59, 55, 0.85);
	color: var(--cc-ivory);
}

.cc-add-to-cart {
	position: absolute;
	bottom: 12px;
	right: 12px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--cc-rose-deep) !important;
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(143, 84, 104, 0.4);
	transition: background 0.25s ease, transform 0.25s ease;
	text-decoration: none;
	padding: 0 !important;
	text-indent: 0;
	font-size: 0 !important;
	line-height: 1;
}
.cc-add-to-cart svg { flex-shrink: 0; }
.cc-add-to-cart:hover, .cc-add-to-cart:focus-visible {
	background: var(--cc-rose-darker) !important;
	transform: scale(1.08);
}
.cc-add-to-cart.added {
	background: var(--cc-sage) !important;
}
.cc-add-to-cart.loading {
	opacity: 0.6;
	pointer-events: none;
}
.cc-add-to-cart.added::after {
	font-family: var(--cc-font-body);
	content: '';
}

.cc-product-info {
	padding: 1rem 1.1rem 1.2rem;
}
.cc-product-info-link { text-decoration: none; color: inherit; display: block; }
.cc-product-info .woocommerce-loop-product__title {
	font-family: var(--cc-font-heading);
	font-weight: 600;
	font-size: 1.02rem;
	margin: 0 0 0.35rem;
	line-height: 1.3;
	color: var(--cc-ink);
}
.cc-product-info .price {
	color: var(--cc-rose-deep);
	font-weight: 500;
	font-size: 0.95rem;
}
.cc-product-info .price ins {
	text-decoration: none;
}

@media (max-width: 480px) {
	.cc-add-to-cart { width: 40px; height: 40px; }
}

/* =========================================================
   Category showcase grid
   ========================================================= */
.cc-category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1.5rem;
}
.cc-category-card {
	display: block;
	text-align: center;
	text-decoration: none;
	color: var(--cc-ink);
}
.cc-category-card-image {
	aspect-ratio: 1 / 1;
	border-radius: var(--cc-radius);
	overflow: hidden;
	box-shadow: var(--cc-shadow);
	margin-bottom: 0.8rem;
	background: var(--cc-cream);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cc-category-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.cc-category-card:hover .cc-category-card-image {
	box-shadow: var(--cc-shadow-hover);
	transform: translateY(-4px);
}
.cc-category-card:hover .cc-category-card-image img { transform: scale(1.06); }
.cc-category-card h3 {
	font-size: 1.05rem;
	margin: 0 0 0.2rem;
}
.cc-category-card span {
	font-size: 0.82rem;
	color: var(--cc-ink-soft);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* =========================================================
   Ordering steps
   ========================================================= */
.cc-ordering-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}
.cc-ordering-step {
	text-align: center;
	padding: 1.5rem 1rem;
}
.cc-ordering-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--cc-blush);
	color: var(--cc-rose-deep);
	font-family: var(--cc-font-heading);
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 1rem;
}
.cc-ordering-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.cc-ordering-step p { color: var(--cc-ink-soft); font-size: 0.92rem; }

/* =========================================================
   Brand story split section
   ========================================================= */
.cc-story {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}
.cc-story-image {
	border-radius: var(--cc-radius);
	overflow: hidden;
	box-shadow: var(--cc-shadow);
}
.cc-story-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cc-story h2 { margin-bottom: 1rem; }
.cc-story p { color: var(--cc-ink-soft); line-height: 1.8; margin-bottom: 1.2rem; }

@media (max-width: 782px) {
	.cc-story { grid-template-columns: 1fr; }
	.cc-hero { min-height: 460px; }
	.cc-hero-arrow { display: none; }
}

/* =========================================================
   Instagram CTA
   ========================================================= */
.cc-instagram {
	background: linear-gradient(135deg, var(--cc-blush) 0%, var(--cc-cream) 100%);
	text-align: center;
	border-radius: var(--cc-radius);
	padding: 3.5rem 1.5rem;
}
.cc-instagram h2 { margin-bottom: 0.6rem; }
.cc-instagram p { color: var(--cc-ink-soft); margin-bottom: 1.6rem; }
.cc-instagram .button {
	background: var(--cc-ink) !important;
}
.cc-instagram .button:hover { background: var(--cc-rose-deep) !important; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
	background: var(--cc-ink);
	color: var(--cc-ivory);
	/* Storefront's default footer padding (1.618em top, a huge 3.7em
	   bottom) is sized for a footer full of widget columns; this footer
	   is just a copyright line + social icons, so it should read as thin,
	   not leave a wall of empty dark space beneath the actual content. */
	padding: 1.2rem 0 !important;
}
.site-footer .site-info {
	padding: 0.5rem 0 !important;
}
.site-footer a { color: var(--cc-blush); }
.site-footer .widget-title { font-family: var(--cc-font-heading); }

.cc-social-icons {
	display: flex;
	justify-content: center;
	gap: 14px;
	padding: 1.5rem 0 0.5rem;
}

.cc-footer-legal {
	text-align: center;
	font-size: 0.8rem;
	color: rgba(255, 250, 245, 0.65);
	margin-top: 0.75rem;
}
.cc-footer-legal a {
	color: rgba(255, 250, 245, 0.8);
}
.cc-footer-legal a:hover {
	color: #fff;
}

.cc-footer-developer {
	text-align: center;
	font-size: 0.76rem;
	color: rgba(255, 250, 245, 0.45);
	margin-top: 0.4rem;
}
.cc-footer-developer a {
	color: rgba(255, 250, 245, 0.6);
	text-decoration: underline;
}
.cc-footer-developer a:hover {
	color: #fff;
}
.cc-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 250, 245, 0.1);
	color: var(--cc-ivory) !important;
	transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.cc-social-icon:hover {
	background: var(--cc-rose-deep);
	color: #fff !important;
	transform: translateY(-3px);
}
.cc-social-icon--disabled {
	opacity: 0.35;
	cursor: not-allowed;
}
.cc-social-icon--disabled:hover {
	background: rgba(255, 250, 245, 0.1);
	transform: none;
}

/* Same icon row, used on light-background pages (e.g. Contact) instead
   of the dark footer — swap to a look that's visible on cream/white. */
.cc-social-icons--on-light {
	justify-content: flex-start;
	padding: 0.5rem 0 0;
}
.cc-social-icons--on-light .cc-social-icon {
	background: var(--cc-blush);
	color: var(--cc-rose-deep) !important;
}
.cc-social-icons--on-light .cc-social-icon:hover {
	background: var(--cc-rose-deep);
	color: #fff !important;
}
.cc-social-icons--on-light .cc-social-icon--disabled {
	background: var(--cc-blush);
	opacity: 0.5;
}
.cc-social-icons--on-light .cc-social-icon--disabled:hover {
	background: var(--cc-blush);
	color: var(--cc-rose-deep) !important;
}

/* =========================================================
   Sticky header
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
}
.site-header.is-scrolled {
	box-shadow: 0 4px 16px rgba(74, 59, 55, 0.08);
}

/* =========================================================
   Forms, selects, quantity inputs — shared across shop/cart/checkout
   ========================================================= */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="password"], input[type="search"], input[type="url"],
textarea, select,
.woocommerce .quantity .qty {
	border: 1px solid rgba(169, 103, 122, 0.25) !important;
	border-radius: var(--cc-radius-sm) !important;
	padding: 0.7em 1em !important;
	font-family: var(--cc-font-body);
	background: #fff !important;
	color: var(--cc-ink);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
/* Strip native OS search-field chrome (macOS/iOS Safari & Chrome draw their
   own magnifying-glass icon inside type="search" inputs, which overlaps our
   placeholder text since the field has no reserved left-padding for it). */
input[type="search"] {
	-webkit-appearance: textfield !important;
	appearance: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}
/* Whatever renders that glyph, it sits in roughly the first 28px of the
   field — so just start the text well clear of it instead of chasing
   its exact source. Matches input[type="search"]'s own specificity
   (element+attribute) so it isn't silently lost to the general input
   padding rule above despite both using !important. */
input.search-field {
	padding-left: 2.4em !important;
}
input:focus, textarea:focus, select:focus {
	border-color: var(--cc-rose-deep) !important;
	box-shadow: 0 0 0 3px rgba(143, 84, 104, 0.15) !important;
	outline: none;
}
.woocommerce .quantity .qty {
	width: 4em !important;
	text-align: center;
}
.woocommerce-ordering select,
.woocommerce div.product form.cart .variations select {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%238f5468'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.293l3.71-4.06a.75.75 0 111.08 1.04l-4.24 4.65a.75.75 0 01-1.08 0L5.21 8.27a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 0.8em center !important;
	background-size: 1em !important;
	padding-right: 2.4em !important;
}
.woocommerce-ordering select::-ms-expand {
	display: none;
}

/* =========================================================
   WooCommerce notices
   ========================================================= */
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews {
	background: var(--cc-cream) !important;
	border-top-color: var(--cc-rose-deep) !important;
	border-radius: var(--cc-radius-sm);
	color: var(--cc-ink) !important;
	padding: 1em 1.5em !important;
}
.woocommerce-message::before, .woocommerce-info::before {
	color: var(--cc-rose-deep) !important;
}
.woocommerce-error { border-top-color: #b3454a !important; }

/* =========================================================
   Category filter pills (Shop page + category archives)
   ========================================================= */
.cc-cat-filter {
	position: sticky;
	top: var(--cc-header-height, 80px);
	z-index: 40;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0 0 2rem;
	padding: 0.9rem 0;
	background: var(--cc-ivory);
}
#cc-shop-results.is-loading {
	opacity: 0.5;
	transition: opacity 0.15s ease;
}
.cc-cat-filter-pill {
	display: inline-block;
	padding: 0.55em 1.3em;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(169, 103, 122, 0.25);
	color: var(--cc-ink);
	font-family: var(--cc-font-body);
	font-weight: 500;
	font-size: 0.88rem;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.cc-cat-filter-pill:hover {
	border-color: var(--cc-rose-deep);
	color: var(--cc-rose-deep);
	transform: translateY(-1px);
}
.cc-cat-filter-pill.is-active {
	background: var(--cc-rose-deep);
	border-color: var(--cc-rose-deep);
	color: #fff;
}

/* =========================================================
   Shop toolbar (result count + sorting)
   ========================================================= */
.woocommerce-result-count { color: var(--cc-ink-soft); }
.woocommerce-pagination ul.page-numbers {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	justify-content: center;
}
.woocommerce-pagination .page-numbers li { list-style: none; }
.woocommerce-pagination .page-numbers a, .woocommerce-pagination .page-numbers span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	color: var(--cc-ink);
	box-shadow: var(--cc-shadow);
	font-family: var(--cc-font-body);
	font-weight: 500;
	text-decoration: none;
}
.woocommerce-pagination .page-numbers .current {
	background: var(--cc-rose-deep);
	color: #fff;
}
.woocommerce-pagination .page-numbers a:hover {
	background: var(--cc-blush);
}

/* =========================================================
   Single product page
   ========================================================= */
.single-product div.product {
	background: #fff;
	border-radius: var(--cc-radius);
	padding: 2.5rem;
	box-shadow: var(--cc-shadow);
}
.single-product div.product .woocommerce-product-gallery {
	border-radius: var(--cc-radius);
	overflow: hidden;
}
.single-product div.product .woocommerce-product-gallery img {
	border-radius: var(--cc-radius);
}
.single-product div.product .product_title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	margin-bottom: 0.5rem;
}
.single-product div.product p.price {
	font-size: 1.4rem;
	color: var(--cc-rose-deep);
	font-weight: 600;
	margin-bottom: 1rem;
}
.single-product div.product .woocommerce-product-details__short-description {
	color: var(--cc-ink-soft);
	line-height: 1.75;
	margin-bottom: 1.5rem;
}
.single-product div.product form.cart {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}
.single-product div.product .product_meta {
	font-size: 0.85rem;
	color: var(--cc-ink-soft);
	border-top: 1px solid rgba(169, 103, 122, 0.15);
	padding-top: 1rem;
}
.single-product div.product .product_meta a { color: var(--cc-rose-deep); }

.woocommerce-tabs {
	margin-top: 2.5rem;
}
.woocommerce-tabs ul.tabs {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	padding: 0;
	border-bottom: 1px solid rgba(169, 103, 122, 0.2);
	margin-bottom: 1.5rem;
}
.woocommerce-tabs ul.tabs li { margin: 0; padding: 0; }
.woocommerce-tabs ul.tabs li a {
	font-family: var(--cc-font-heading);
	font-weight: 600;
	font-size: 1rem;
	color: var(--cc-ink-soft);
	text-decoration: none;
	padding-bottom: 0.8rem;
	display: inline-block;
	border-bottom: 2px solid transparent;
}
.woocommerce-tabs ul.tabs li.active a {
	color: var(--cc-ink);
	border-bottom-color: var(--cc-rose-deep);
}
.woocommerce-tabs .panel { color: var(--cc-ink-soft); line-height: 1.75; }

.related.products {
	margin-top: 3.5rem;
}
.related.products > h2 {
	font-size: 1.6rem;
	text-align: center;
	margin-bottom: 2rem;
}

/* Trust badges under add-to-cart on single product */
.cc-trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	margin: 1.5rem 0;
	padding: 1.2rem;
	background: var(--cc-cream);
	border-radius: var(--cc-radius-sm);
}
.cc-trust-badge {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.85rem;
	color: var(--cc-ink);
}
.cc-trust-badge svg { flex-shrink: 0; color: var(--cc-rose-deep); }

/* =========================================================
   Cart & checkout
   ========================================================= */
.woocommerce-cart table.cart, .woocommerce-checkout table.shop_table {
	border: none;
	border-radius: var(--cc-radius);
	overflow: hidden;
	box-shadow: var(--cc-shadow);
	background: #fff;
}
.woocommerce-cart table.cart th, .woocommerce-checkout table.shop_table th {
	background: var(--cc-cream);
	font-family: var(--cc-font-heading);
	font-weight: 600;
	border: none;
	padding: 1em;
}
.woocommerce-cart table.cart td, .woocommerce-checkout table.shop_table td {
	border: none;
	border-top: 1px solid rgba(169, 103, 122, 0.1);
	padding: 1em;
}
.woocommerce-cart table.cart td.product-remove a {
	color: var(--cc-rose-deep) !important;
	border-radius: 50%;
}
.woocommerce-cart .cart-collaterals .cart_totals {
	background: #fff;
	border-radius: var(--cc-radius);
	padding: 1.5rem;
	box-shadow: var(--cc-shadow);
}
.woocommerce-cart .cart_totals h2 { font-size: 1.3rem; }

.woocommerce-checkout-review-order {
	background: #fff;
	border-radius: var(--cc-radius);
	padding: 1.5rem;
	box-shadow: var(--cc-shadow);
}
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout h3 {
	font-family: var(--cc-font-heading);
}
.woocommerce-checkout .form-row label {
	font-size: 0.88rem;
	color: var(--cc-ink);
}

/* WhatsApp/bank-transfer ordering reminder on checkout */
.cc-checkout-notice {
	background: var(--cc-blush);
	border-radius: var(--cc-radius-sm);
	padding: 1.2rem 1.5rem;
	margin-bottom: 1.5rem;
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
}
.cc-checkout-notice svg { flex-shrink: 0; color: var(--cc-rose-deep); margin-top: 2px; }
.cc-checkout-notice p { margin: 0; font-size: 0.92rem; color: var(--cc-ink); line-height: 1.6; }
.cc-checkout-notice strong { color: var(--cc-rose-deep); }

@media (max-width: 782px) {
	.single-product div.product { padding: 1.5rem; }
}

/* =========================================================
   WooCommerce Blocks (Cart / Checkout block components) —
   these ship their own CSS with hardcoded WP-blue focus rings
   and precise floating-label padding math; theme colors here
   without touching the padding/position values the label
   animation depends on.
   ========================================================= */
.wc-block-components-button:not(.is-link) {
	background: var(--cc-rose-deep) !important;
	color: #fff !important;
	border-radius: 999px !important;
	font-family: var(--font-body, var(--cc-font-body));
	font-weight: 500;
	letter-spacing: 0.03em;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.15s ease;
}
.wc-block-components-button:not(.is-link):hover {
	background: var(--cc-rose-darker) !important;
}
.wc-block-components-button:not(.is-link):focus {
	box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px var(--cc-rose-deep) !important;
	outline: 3px solid transparent;
}
.wc-block-components-button:not(.is-link).is-style-outline,
.wc-block-components-button:not(.is-link).outlined {
	background: transparent !important;
	color: var(--cc-rose-deep) !important;
	box-shadow: inset 0 0 0 1px var(--cc-rose-deep) !important;
}

/* Floating-label text inputs (checkout fields) — recolor only,
   padding/height are left untouched so the label position math
   (top/translateY in WooCommerce's own CSS) keeps working. */
.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="number"],
.wc-block-components-text-input input[type="password"],
.wc-block-components-text-input input[type="url"] {
	border-color: rgba(143, 84, 104, 0.3) !important;
	border-radius: 8px !important;
	/* restore WooCommerce Blocks' own padding — the floating label's
	   top/transform position is calculated against this exact value */
	padding: 16px 12px !important;
}
.wc-block-components-text-input.is-active input[type="text"],
.wc-block-components-text-input.is-active input[type="email"],
.wc-block-components-text-input.is-active input[type="tel"],
.wc-block-components-text-input.is-active input[type="number"],
.wc-block-components-text-input.is-active input[type="password"],
.wc-block-components-text-input.is-active input[type="url"] {
	padding: 24px 9px 8px !important;
}
.wc-block-components-text-input input:focus {
	border-color: var(--cc-rose-deep) !important;
	box-shadow: none !important;
}
.wc-block-components-text-input label {
	color: var(--cc-ink-soft);
}
/* Same floating-label mechanism, but WooCommerce Blocks' <select> fields
   (Country/Region, State/County) use a differently-named component
   (wc-blocks- with an s, not wc-block-) and our generic `select { padding }`
   rule elsewhere was crushing this down, making the label overlap the
   selected value. Restore the padding this component actually needs. */
.wc-blocks-components-select__select {
	border-color: rgba(143, 84, 104, 0.3) !important;
	border-radius: 8px !important;
	padding: 16px 9px 0 !important;
}
.wc-blocks-components-select__select:focus {
	border-color: var(--cc-rose-deep) !important;
	box-shadow: none !important;
	padding: 16px 8.5px 0 !important;
}
.wc-blocks-components-select__label {
	color: var(--cc-ink-soft);
}
.wc-block-components-radio-control__input:checked {
	background-color: var(--cc-rose-deep) !important;
	border-color: var(--cc-rose-deep) !important;
}
.wc-block-components-checkbox input[type="checkbox"]:checked + .wc-block-components-checkbox__mark {
	fill: var(--cc-rose-deep);
}
.wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	color: var(--cc-rose-deep);
}

/* =========================================================
   Accessibility: respect reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
	.cc-marquee-track { animation: none; }
	.cc-hero-slide { transition: none; }
	* { scroll-behavior: auto !important; }
}

/* Focus visibility for keyboard users. Storefront's own customizer-generated
   CSS sets a thick default-blue outline on plain :focus (not just
   :focus-visible) and is printed after this stylesheet, so it otherwise
   wins on every click. Override both pseudo-classes explicitly, with
   !important, so clicking a button never shows that default blue ring. */
a:focus,
button:focus,
.button:focus,
.cc-hero-arrow:focus,
.cc-hero-dot:focus,
.cc-cat-filter-pill:focus,
a:focus-visible,
button:focus-visible,
.button:focus-visible,
.cc-hero-arrow:focus-visible,
.cc-hero-dot:focus-visible,
.cc-cat-filter-pill:focus-visible {
	outline: none !important;
}
.cc-hero-arrow:active,
.cc-add-to-cart:active,
.cc-cat-filter-pill:active {
	transform: scale(0.92);
}
