/* Bag Bijou theme stylesheet — ivory, dusty rose, champagne, espresso. */

/* ============ TOKENS ============ */
:root {
	--color-ivory: #fbf5f4;
	--color-blush: #f7edef;
	--color-rose: #aa7482;
	--color-rose-deep: #8d5e6a;
	--color-champagne: #d7c5a8;
	--color-espresso: #302728;
	--color-mauve: #ad7079;
	--color-white: #ffffff;
	--color-button-text: #ffffff;

	--font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--font-hero: 'Playfair Display', Georgia, serif;
	--font-body: 'Manrope', system-ui, -apple-system, sans-serif;
	--font-label: 'Manrope', system-ui, sans-serif;

	--radius: 0.75rem;
	--card-radius: 1rem;
	--ease-lux: cubic-bezier(0.22, 1, 0.36, 1);

	--btn-radius: 999px;
	--btn-height: 52px;
	--btn-padding: 16px 32px;
	--btn-font-size: 14px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.18em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 12px;

	--header-height: 96px;
	--shadow-soft: 0 4px 20px hsla(345, 20%, 30%, 0.07);
	--shadow-elevated: 0 20px 54px -20px hsla(345, 20%, 28%, 0.22);
	--shadow-cta: 0 12px 30px -12px hsla(345, 25%, 40%, 0.42);
	--gradient-rose: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-deep) 100%);
}

/* ============ RESET & BASE ============ */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; background-color: var(--color-ivory); }
html { scroll-behavior: smooth; }
body {
	background-color: var(--color-ivory);
	color: var(--color-espresso);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	-webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-bg__poster):not(.hero-bg__video):not(.theme-product-card__image):not(.product-main-image):not(.media-frame__media):not(.featured-slider__img):not(.site-logo-img):not(.pillar-card__texture):not(.section-texture) {
	height: auto;
}
.cover-img, .hero-bg__poster, .hero-bg__video, .theme-product-card__image, .product-main-image,
.media-frame__media, .featured-slider__img {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
a, button, summary, label[for], select,
input[type="submit"], input[type="button"], input[type="reset"], input[type="checkbox"], input[type="radio"],
[role="button"], [role="tab"] { cursor: pointer; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; color: inherit; padding: 0; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.01em;
	line-height: 1.08;
	color: var(--color-espresso);
	margin: 0;
}
p { margin: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.theme-icon { flex-shrink: 0; }

/* ============ LAYOUT ============ */
/* Matches Lovable .container-wide: w-full max-w-7xl mx-auto px-5 sm:px-6 lg:px-10 */
.container-wide { width: 100%; max-width: 80rem; margin-left: auto; margin-right: auto; padding-left: 1.25rem; padding-right: 1.25rem; box-sizing: border-box; }
@media (min-width: 640px) { .container-wide { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding-left: 2.5rem; padding-right: 2.5rem; } }
/* Vertical padding on these wrappers must not wipe the container gutters. */
.container-wide.hero-content,
.container-wide.site-footer-inner,
.container-wide.page-shell { padding-left: 1.25rem; padding-right: 1.25rem; }
@media (min-width: 640px) {
	.container-wide.hero-content,
	.container-wide.site-footer-inner,
	.container-wide.page-shell { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
	.container-wide.hero-content,
	.container-wide.site-footer-inner,
	.container-wide.page-shell { padding-left: 2.5rem; padding-right: 2.5rem; }
}

/* Lateral gutters live only on .container-wide — never on body, header, or WC wrappers. */
html, body, main, .site-header, .site-footer, .site-main,
.woocommerce, .woocommerce-page, .woocommerce-page #content,
.woocommerce-page .site-main, .entry-content {
	padding-left: 0;
	padding-right: 0;
}

main > section, main > .hero-section { margin: 0; position: relative; overflow: hidden; }
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 6rem 0 7rem; }
@media (min-width: 768px) { .section-pad { padding: 8rem 0; } }

.grid-12 { display: grid; grid-template-columns: minmax(0, 1fr); min-width: 0; max-width: 100%; }
.grid-12 > * { min-width: 0; max-width: 100%; }
.gap-lg { gap: 3rem; }
@media (min-width: 1024px) {
	.grid-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
	.gap-lg { gap: 4rem; }
}
.items-center { align-items: center; }
.col-span-4,
.col-span-5,
.col-span-6,
.col-span-7,
.col-span-8 { grid-column: 1 / -1; }
@media (min-width: 1024px) {
	.col-span-4 { grid-column: span 4 / span 4; }
	.col-span-5 { grid-column: span 5 / span 5; }
	.col-span-6 { grid-column: span 6 / span 6; }
	.col-span-7 { grid-column: span 7 / span 7; }
	.col-span-8 { grid-column: span 8 / span 8; }
}
.text-center { text-align: center; }
.justify-center { justify-content: center; }

/* Section surfaces */
.bb-section-ivory { background-color: var(--color-ivory); color: var(--color-espresso); }
.bb-section-white { background-color: var(--color-white); color: var(--color-espresso); }
.bb-section-blush { background-color: var(--color-blush); color: var(--color-espresso); }
.bb-section-espresso { background-color: var(--color-espresso); color: var(--color-ivory); }
.bb-section-espresso h1, .bb-section-espresso h2, .bb-section-espresso h3, .bb-section-espresso h4 { color: var(--color-ivory); }
.bb-section-espresso .section-copy,
.bb-section-espresso p {
	color: hsla(10, 43%, 97%, 0.82);
	color: color-mix(in srgb, var(--color-ivory) 82%, transparent);
}

.bb-section-mauve {
	background-color: var(--color-mauve);
	color: #f7f0ec;
}
.bb-section-mauve h1, .bb-section-mauve h2, .bb-section-mauve h3, .bb-section-mauve h4 { color: #f7f0ec; }
.bb-section-mauve .bb-eyebrow { color: #f0e2cf; }
.bb-section-mauve .bb-eyebrow::before { background: #f0e2cf; }
.bb-section-mauve .bb-btn-primary { background: #f7f0ec; color: var(--color-rose-deep); }
.bb-section-mauve .bb-btn-primary:hover { background: #ffffff; }
.bb-section-mauve .bb-btn-outline { color: #f7f0ec; border-color: hsla(0, 0%, 100%, 0.4); }
.bb-section-mauve .bb-card { background: hsl(351deg 27% 48%); border-color: hsla(0, 0%, 100%, 0.22); color: #f7f0ec; }
.bb-section-mauve .bb-flourish { color: #f0e2cf; }
.bb-section-mauve .section-copy, .bb-section-mauve p { color: hsla(0, 0%, 100%, 0.82); }

.section-texture { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; opacity: 0.12; pointer-events: none; }
.section-texture--dark { opacity: 0.14; }
.section-texture--faint { opacity: 0.08; }
.section-texture--strong { opacity: 0.16; }
.section-texture--video { opacity: 0.14; }
main > section > .container-wide:not(.hero-content) { position: relative; z-index: 1; }
.standard-copy { max-width: 36rem; font-size: 16px; line-height: 1.625; margin-bottom: 0; }

.section-heading-block { max-width: 42rem; margin-bottom: 3.5rem; }
.section-copy { max-width: 42rem; line-height: 1.7; color: hsla(353, 10%, 17%, 0.78); margin-bottom: 2.25rem; overflow-wrap: break-word; }
.section-actions { margin-top: 0; }
.intro-copy { font-size: 16px; }
@media (min-width: 768px) { .intro-copy { font-size: 17px; } }

/* ============ TYPOGRAPHY SCALES ============ */
.font-display { font-family: var(--font-display); }
.font-hero { font-family: var(--font-hero); font-weight: 500; letter-spacing: -0.015em; line-height: 1.04; }

.cs-label { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; font-size: 14px; line-height: 1.3; }

.bb-eyebrow { display: inline-flex; align-items: center; gap: 10px; max-width: 100%; flex-wrap: wrap; font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.28em; font-size: 14px; color: var(--color-rose-deep); }
.bb-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--color-rose); display: inline-block; }
.bb-eyebrow--champagne { color: var(--color-champagne); }
.bb-eyebrow--champagne::before { background: var(--color-champagne); }

.hero-title { font-size: 2.65rem; margin: 1.5rem 0 1.75rem; }
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-subtitle { font-size: 17px; line-height: 1.7; max-width: 36rem; margin-bottom: 2.5rem; color: hsla(353, 10%, 17%, 0.78); }
@media (min-width: 768px) { .hero-subtitle { font-size: 18px; } }

.intro-title, .about-title, .standard-title, .founder-title, .faq-title, .contact-title, .experience-title { font-size: 2.25rem; margin: 1.5rem 0 1.75rem; }
@media (min-width: 768px) { .intro-title, .about-title, .standard-title, .founder-title, .faq-title, .contact-title, .experience-title { font-size: 3rem; } }
@media (min-width: 1024px) { .intro-title { font-size: 3.4rem; } }

.shop-title, .social-title, .newsletter-title { font-size: 2.25rem; margin: 1.5rem 0 2.25rem; }
@media (min-width: 768px) { .shop-title, .social-title, .newsletter-title { font-size: 3rem; } }

.featured-title { font-size: 2.5rem; margin: 0 0 1rem; }
@media (min-width: 768px) { .featured-title { font-size: 3rem; } }
@media (min-width: 1024px) { .featured-title { font-size: 3.25rem; } }

/* ============ BUTTONS ============ */
.bb-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	max-width: 100%; white-space: normal; text-align: center;
	padding: var(--btn-padding); border-radius: var(--btn-radius);
	font-family: var(--font-label); font-weight: var(--btn-font-weight); font-size: var(--btn-font-size);
	letter-spacing: var(--btn-letter-spacing); text-transform: var(--btn-text-transform); cursor: pointer;
	transition: transform 420ms var(--ease-lux), opacity 420ms var(--ease-lux), background-color 420ms var(--ease-lux), color 420ms var(--ease-lux), border-color 420ms var(--ease-lux);
	border: none;
}
.bb-btn-primary { background: var(--color-rose-deep); color: var(--color-white); box-shadow: var(--shadow-cta); }
.bb-btn-primary:hover { transform: translateY(-2px); background: var(--color-rose); }
.bb-btn-outline { background: transparent; color: var(--color-espresso); border: 1px solid hsla(344, 24%, 56%, 0.5); }
.bb-btn-outline:hover { transform: translateY(-2px); opacity: 0.75; }
.bb-btn-ivory { background: var(--color-ivory); color: var(--color-espresso); }
.bb-btn-ivory:hover { transform: translateY(-2px); opacity: 0.85; }
.bb-btn:disabled, .bb-btn.disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.bb-nav-link { position: relative; display: inline-block; padding-bottom: 4px; transition: opacity 320ms var(--ease-lux); }
.bb-nav-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--color-rose); transform: scaleX(0); transform-origin: right center; transition: transform 450ms var(--ease-lux); }
.bb-nav-link:hover::after, .bb-nav-link:focus-visible::after { transform: scaleX(1); transform-origin: left center; }
.bb-nav-link:hover { opacity: 0.8; }

.bb-card { background: var(--color-white); border-radius: var(--card-radius); border: 1px solid hsl(20deg 22% 88%); overflow: hidden; transition: transform 520ms var(--ease-lux), opacity 520ms var(--ease-lux), border-color 520ms var(--ease-lux); }
.bb-card:hover { transform: translateY(-6px); border-color: hsla(344, 24%, 56%, 0.45); }

.bb-flourish { display: block; width: 120px; height: 18px; color: var(--color-rose); margin-top: 2.5rem; }

.theme-badge { background: var(--color-ivory); color: var(--color-rose-deep); padding: 6px 14px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.theme-badge--dark { background: var(--color-espresso); color: var(--color-ivory); }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; left: 0; right: 0; z-index: 50; width: 100%; background-color: var(--color-ivory); border-bottom: 1px solid hsla(344, 24%, 56%, 0.18); }
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
.site-nav { position: relative; display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between; height: 4.5rem; gap: 0.75rem; }
@media (min-width: 768px) { .site-nav { height: 6rem; } }
.site-brand { display: flex; align-items: center; flex-shrink: 0; min-width: 0; padding: 0.5rem 1rem 0.5rem 0; }
.site-logo-img { height: 3rem; max-height: 3rem; width: auto !important; object-fit: contain; transition: transform 700ms; display: block; }
@media (min-width: 768px) {
	.site-logo-img { height: var(--logo-height, 4rem); max-height: var(--logo-height, 4rem); }
}
.site-footer .site-logo-img { height: 5rem; max-height: 5rem; }
.site-brand:hover .site-logo-img { transform: scale(1.04); }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-espresso); }
.site-nav-links { display: none; }
@media (min-width: 1280px) { .site-nav-links { display: flex; align-items: center; gap: 2.25rem; position: absolute; left: 50%; transform: translateX(-50%); } }
.theme-nav-list { display: flex; gap: 2.25rem; list-style: none; margin: 0; padding: 0; }
.theme-nav-list a { font-family: var(--font-label); font-weight: 600; font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; white-space: nowrap; }
.site-nav-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.site-nav-shop-btn { display: none; padding: 12px 28px !important; }
@media (min-width: 1280px) { .site-nav-shop-btn { display: inline-flex; } }
.site-cart-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; transition: transform 300ms; }
.site-cart-btn:hover { transform: translateY(-2px); }
.theme-cart-count { position: absolute; top: 0; right: 0; min-width: 19px; height: 19px; padding: 0 4px; border-radius: 999px; font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; background: var(--color-rose-deep); color: var(--color-white); font-family: var(--font-label); }
.theme-cart-count:empty { display: none; }
.site-menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; }
.site-menu-toggle .icon-close { display: none; }
.site-menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.site-menu-toggle[aria-expanded="true"] .icon-close { display: inline-flex; }
@media (min-width: 1280px) { .site-menu-toggle { display: none; } }

.site-mobile-menu { display: none; flex-direction: column; gap: 0.25rem; margin-left: -1.25rem; margin-right: -1.25rem; padding: 1rem 1.25rem 1.25rem; background: var(--color-ivory); border-top: 1px solid hsla(344, 24%, 56%, 0.18); }
@media (min-width: 640px) {
	.site-mobile-menu { margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
	.site-mobile-menu { margin-left: -2.5rem; margin-right: -2.5rem; padding-left: 2.5rem; padding-right: 2.5rem; }
}
.site-mobile-menu.is-open { display: flex; }
.site-mobile-menu .bb-btn { margin-top: 0.75rem; width: 100%; }
.theme-nav-list--mobile { flex-direction: column; gap: 0; }
.theme-nav-list--mobile a { display: block; padding: 0.75rem 0.25rem; }
@media (min-width: 1280px) { .site-mobile-menu { display: none !important; } }

/* Header stays in flow, ivory, like the Lovable header — never overlaid on the hero. */
.site-header.is-solid { background-color: var(--color-ivory); }
body.theme-no-hero .site-main,
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: 2rem; }

/* ============ ANNOUNCEMENT TICKER ============ */
.bb-ticker-viewport { position: relative; overflow: hidden; background-color: var(--color-espresso); }
.bb-ticker-track { display: flex; width: max-content; padding: 0.625rem 0; animation: bb-ticker 64s linear infinite; will-change: transform; }
.bb-ticker-viewport:hover .bb-ticker-track { animation-play-state: paused; }
.bb-ticker-set { display: flex; align-items: center; gap: 2rem; padding-right: 2rem; }
.bb-ticker-item { display: flex; align-items: center; gap: 2rem; flex-shrink: 0; }
.bb-ticker-item .cs-label { color: var(--color-ivory); white-space: nowrap; }
.bb-ticker-dot { width: 4px; height: 4px; border-radius: 999px; background: var(--color-champagne); display: inline-block; flex-shrink: 0; }
@keyframes bb-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ HERO ============ */
.hero-section { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; background-color: var(--color-ivory); }
.hero-bg__video { opacity: 0; transition: opacity 600ms; }
.hero-bg__video.is-ready { opacity: 1; }
.slow-drift { animation: slow-drift 34s ease-in-out infinite; will-change: transform; }
@keyframes slow-drift { 0% { transform: scale(1.03) translate3d(0,0,0); } 50% { transform: scale(1.09) translate3d(-1%,-0.8%,0); } 100% { transform: scale(1.03) translate3d(0,0,0); } }
.hero-bg__gradient { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(100deg, hsla(10,43%,97%,0.97) 0%, hsla(10,43%,97%,0.88) 34%, hsla(10,43%,97%,0.42) 62%, hsla(10,43%,97%,0.16) 100%); }
.hero-content { position: relative; z-index: 3; padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 768px) { .hero-content { padding-top: 8rem; padding-bottom: 8rem; } }
.hero-copy { max-width: 42rem; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; max-width: 100%; }
.hero-actions .bb-btn { max-width: 100%; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* ============ MEDIA FRAMES ============ */
.media-frame { position: relative; width: 100%; max-width: 100%; overflow: hidden; border-radius: 1rem; background: var(--color-blush); }
.media-frame--tall { aspect-ratio: 4/5; border-radius: 1.25rem; }
.media-frame--square { aspect-ratio: 1/1; }
.media-frame--about { aspect-ratio: 5/4; border-radius: 1.25rem; }
.media-frame--wide { aspect-ratio: 3/2; border-radius: 1.25rem; }
.media-frame__media { transition: transform 1400ms var(--ease-lux); }
.media-frame:hover .media-frame__media { transform: scale(1.05); }

.standard-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; width: 100%; }
.standard-gallery .media-frame { min-width: 0; width: 100%; }

/* ============ FEATURED SLIDER ============ */
.featured-slider { display: block; width: 100%; max-width: 100%; overflow: hidden; border-radius: 1.25rem; position: relative; }
.featured-slider__viewport { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.featured-slider__img { opacity: 0; transition: opacity 900ms var(--ease-lux); }
.featured-slider__img.is-active { opacity: 1; }
.featured-slider__controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1rem; }
.featured-slider__nav { padding: 0.5rem; border-radius: 999px; color: var(--color-ivory); transition: opacity 200ms; }
.featured-slider__nav:hover { opacity: 0.7; }
.bb-section-ivory .featured-slider__nav, .bb-section-white .featured-slider__nav { color: var(--color-espresso); }
.featured-slider__dots { display: flex; align-items: center; gap: 0.625rem; }
.featured-slider__dot { width: 10px; height: 10px; border-radius: 999px; background: hsla(0,0%,100%,0.35); transition: all 500ms; }
.featured-slider__dot.is-active { background: #fff; transform: scale(1.3); }

.featured-price-row { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.featured-price { font-family: var(--font-display); font-size: 2.25rem; color: var(--color-ivory); }
@media (min-width: 768px) { .featured-price { font-size: 3rem; } }
.bb-section-mauve .featured-price { color: #fff; }
.featured-retail { font-size: 14px; opacity: 0.85; }
.featured-authentication { font-size: 14px; line-height: 1.6; padding: 1rem; border-radius: 0.75rem; margin: 0 0 2.5rem; background: hsla(0,0%,100%,0.14); }
.featured-copy { display: flex; flex-direction: column; justify-content: center; gap: 1.75rem; }
.featured-copy .bb-eyebrow,
.featured-copy .featured-title,
.featured-copy .featured-price-row,
.featured-copy .section-copy,
.featured-copy .featured-authentication { margin: 0; }
.featured-copy .bb-btn { margin-top: 0; }

/* ============ EXPERIENCE PILLARS ============ */
.pillars-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.pillar-card { position: relative; display: flex; flex-direction: column; height: 100%; padding: 2rem; overflow: hidden; border-radius: var(--card-radius); background: var(--color-white); border: 1px solid hsl(20deg 22% 88%); transition: transform 300ms; }
.pillar-card:hover { transform: translateY(-4px); }
.pillar-card__texture { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; opacity: 0.09; pointer-events: none; }
.pillar-card__content { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.pillar-card__num { font-family: var(--font-label); font-weight: 600; letter-spacing: 0.2em; color: var(--color-rose); }
.pillar-card__icon { margin-top: 1.5rem; color: var(--color-rose-deep); }
.pillar-card__title { font-size: 1.5rem; margin: 1.25rem 0 0.75rem; }
.pillar-card__copy { font-size: 15px; line-height: 1.7; color: hsla(353,10%,17%,0.75); }
.pillar-card__cta { margin-top: auto; padding-top: 2rem; }
.pillar-card__btn { width: 100%; padding: 12px 0 !important; }

/* ============ SHOP GRID ============ */
.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.shop-tabs { display: flex; gap: 0.75rem; margin-bottom: 2.5rem; }
.shop-tab { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.24em; font-size: 13px; padding: 12px 24px; border-radius: 999px; background: transparent; color: hsla(353,10%,17%,0.7); border: 1px solid hsla(344,24%,56%,0.35); transition: all 500ms; }
.shop-tab.is-active { background: var(--color-espresso); color: var(--color-ivory); border-color: var(--color-espresso); }

.theme-product-card-wrap { height: 100%; display: flex; }
.theme-product-card-wrap[hidden] { display: none; }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; width: 100%; background: var(--color-white); border-radius: var(--card-radius); border: 1px solid hsl(20deg 22% 88%); overflow: hidden; transition: transform 520ms var(--ease-lux), border-color 520ms var(--ease-lux); }
.theme-product-card:hover { transform: translateY(-6px); border-color: hsla(344,24%,56%,0.45); }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card .theme-product-card__actions,
.theme-product-card .theme-product-card__actions * { pointer-events: auto; position: relative; z-index: 3; }

.theme-product-card__image-wrapper { position: relative; aspect-ratio: 4/5; width: 100%; overflow: hidden; background: var(--color-blush); }
.theme-product-card__image { transition: transform 1400ms; }
.theme-product-card:hover .theme-product-card__image:not(.is-blurred) { transform: scale(1.06); }
.theme-product-card__image.is-blurred { filter: blur(6px); transform: scale(1.08); opacity: 0.8; }
.theme-product-card__soon-veil { position: absolute; inset: 0; background: hsla(10,43%,97%,0.45); }
.theme-product-card__badge { position: absolute; top: 0.875rem; left: 0.875rem; z-index: 1; }
.theme-product-card__badge .theme-badge { font-size: 13px; padding: 6px 14px; }

.theme-product-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.theme-product-card__title { font-size: 20px; line-height: 1.3; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 22px; } }
.theme-product-card__meta { margin-top: 0.5rem; min-height: 2.6rem; }
.theme-product-card__category { font-size: 14px; color: hsla(353,10%,17%,0.65); }
.theme-product-card__price { font-family: var(--font-display); font-size: 22px; color: var(--color-rose-deep); }
.theme-product-card__retail, .product-retail { display: block; font-family: var(--font-body); font-size: 14px; font-weight: 400; color: hsla(353, 10%, 17%, 0.65); }
.product-authentication { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 14px; line-height: 1.6; padding: 1rem; border-radius: 0.75rem; margin: 0 0 2rem; background: var(--color-ivory); color: hsla(353, 10%, 17%, 0.8); }
.theme-product-card__desc { margin-top: 0.75rem; font-size: 14px; line-height: 1.6; color: hsla(353,10%,17%,0.72); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.theme-product-card__actions { margin-top: auto; padding-top: 1.5rem; }
.theme-product-card__btn { width: 100%; padding: 12px 0 !important; }
.shop-empty { text-align: center; padding: 3rem 0; color: hsla(353,10%,17%,0.6); }

/* ============ ADD TO CART OVERRIDES (Section 11.4.1) ============ */
.single_add_to_cart_button.button, .add_to_cart_button.button, a.single_add_to_cart_button, a.add_to_cart_button {
	background-color: var(--color-rose-deep) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
	box-shadow: var(--shadow-cta);
}
.single_add_to_cart_button.button:hover, .add_to_cart_button.button:hover {
	opacity: 0.85 !important; background-color: var(--color-rose-deep) !important; color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled, .single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled, .add_to_cart_button.button.disabled {
	cursor: not-allowed !important; opacity: 0.4 !important; pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover, .single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover, .add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important; background-color: var(--color-rose-deep) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart { min-height: unset !important; }
.single-product .single_add_to_cart_button.loading::after, .ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.woocommerce-page a.added_to_cart.wc-forward, .single-product a.added_to_cart.wc-forward, body a.added_to_cart.wc-forward { display: none !important; }

/* ============ SINGLE PRODUCT ============ */
.single-product-main { padding: 2.5rem 0 6rem; }
.product-breadcrumb { padding: 1.5rem 0; font-family: var(--font-label); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: hsla(353,10%,17%,0.6); }
.product-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.product-breadcrumb__current { color: var(--color-espresso); }

.theme-product-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; align-items: start; min-width: 0; padding-top: 0.5rem; padding-bottom: 6rem; }
@media (min-width: 1024px) {
	.theme-product-layout { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; }
	.theme-product-gallery { grid-column: span 7; }
	.theme-product-info { grid-column: span 5; position: sticky; top: 7rem; align-self: start; }
}
.theme-product-gallery, .theme-product-info { min-width: 0; width: 100%; max-width: none; float: none; }
.single-product div.product .theme-product-gallery,
.single-product div.product .theme-product-info { width: auto; max-width: none; float: none; }

.product-main-image-btn { display: block; width: 100%; aspect-ratio: 4/5; position: relative; overflow: hidden; border-radius: 1rem; padding: 0; border: 0; background: var(--color-ivory); cursor: zoom-in; }
.product-main-image-btn > img,
.product-thumb > img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	object-position: center;
}
.product-main-image { transition: transform 1200ms; }
.product-main-image-btn:hover .product-main-image { transform: scale(1.06); }
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.75rem; margin-top: 1rem; width: 100%; }
.product-thumb { position: relative; width: 100%; aspect-ratio: 1/1; border-radius: 0.75rem; overflow: hidden; padding: 0; border: 0; background: var(--color-ivory); box-shadow: inset 0 0 0 1px hsla(344,24%,56%,0.25); transition: transform 500ms; }
.product-thumb.is-active { box-shadow: inset 0 0 0 2px var(--color-rose); }
.product-thumb:hover { transform: translateY(-4px); }

.product-title { font-family: var(--font-body); font-weight: 600; font-size: 1.875rem; margin: 1.25rem 0; text-transform: none; }
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 3rem; } }
.product-price-row { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.product-price { font-family: var(--font-display); font-size: 2.25rem; color: var(--color-rose-deep); }
.product-price .price del { opacity: 0.5; text-decoration: line-through; margin-right: 0.5rem; }
.stock-indicator--out { font-size: 14px; color: var(--color-rose-deep); margin-bottom: 1rem; }
.product-description { color: hsla(353,10%,17%,0.78); line-height: 1.7; margin-bottom: 1.5rem; overflow-wrap: break-word; word-break: break-word; }
.product-description p { margin: 0 0 1em; }

.theme-add-to-cart-area { display: block; margin-bottom: 1.5rem; }
.product-purchase-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .product-purchase-actions { flex-direction: row; } }
.product-purchase-actions .bb-btn { flex: 1 1 0; min-width: 0; }
.theme-quantity-wrapper { position: relative; z-index: 2; display: inline-flex; align-items: center; border-radius: 999px; background: var(--color-white); border: 1px solid hsla(344,24%,56%,0.25); }
.theme-qty-minus, .theme-qty-plus { position: relative; z-index: 1; padding: 12px 16px; transition: opacity 200ms; pointer-events: auto; }
.theme-qty-minus svg, .theme-qty-plus svg { pointer-events: none; }
.theme-qty-minus:hover, .theme-qty-plus:hover { opacity: 0.7; }
.theme-qty-input { width: 48px; text-align: center; border: none; background: transparent; font-family: var(--font-body); font-size: 15px; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.single-product .product-purchase-actions .single_add_to_cart_button,
.single-product .product-purchase-actions .product-request-photos {
	flex: 1 1 0;
	min-width: 0;
	text-align: center;
	white-space: normal;
}
.coming-soon-actions { margin-bottom: 1.5rem; }

.ship-note { display: flex; align-items: center; gap: 0.625rem; font-size: 14px; border-radius: 1rem; padding: 0.75rem 1rem; background: var(--color-ivory); color: hsla(353,10%,17%,0.78); margin-bottom: 1.5rem; }

.product-details-accordion { border-top: 1px solid hsla(344,24%,56%,0.22); }
.product-details-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; transition: opacity 200ms; }
.product-details-accordion__trigger:hover { opacity: 0.75; }
.product-details-accordion__chevron { transition: transform 500ms; }
.product-details-accordion__trigger[aria-expanded="false"] .product-details-accordion__chevron { transform: rotate(-180deg); }
.product-details-accordion__panel { padding-bottom: 1.5rem; overflow-wrap: break-word; }
.product-details-accordion__trigger[aria-expanded="false"] + .product-details-accordion__panel { display: none; }
.product-details-list li { position: relative; padding-left: 1.25rem; font-size: 15px; color: hsla(353,10%,17%,0.75); margin-bottom: 0.75rem; }
.product-details-list li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 6px; height: 6px; border-radius: 999px; background: var(--color-rose); }
.posted_in { overflow-wrap: break-word; word-break: break-word; }

.related-products-section { padding-top: 5rem; border-top: 1px solid hsla(344,24%,56%,0.22); }
.related-products-heading { margin-bottom: 2.5rem; }
.related-products-title { font-size: 1.875rem; margin-top: 1rem; }
@media (min-width: 768px) { .related-products-title { font-size: 3rem; } }

.theme-lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; background: hsla(353,10%,12%,0.94); backdrop-filter: blur(4px); }
.theme-lightbox.is-open { display: flex; }
.theme-lightbox__img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 1rem; }
.theme-lightbox__close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 999px; background: hsla(0,0%,100%,0.1); color: #fff; display: flex; align-items: center; justify-content: center; transition: background 200ms; }
.theme-lightbox__close:hover { background: hsla(0,0%,100%,0.25); }

/* ============ SIDE CART DRAWER ============ */
#theme-cart-overlay { position: fixed; inset: 0; z-index: 55; background: hsla(353,10%,17%,0.45); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity 300ms; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer { position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; z-index: 60; background: var(--color-ivory); box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 450ms var(--ease-lux); }
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid hsla(344,24%,56%,0.2); }
.theme-cart-drawer__title { font-size: 1.5rem; }
.theme-cart-drawer__close { width: 40px; height: 40px; border-radius: 999px; display: flex; align-items: center; justify-content: center; transition: transform 300ms; }
.theme-cart-drawer__close:hover { transform: translateY(-2px); }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1.25rem; }
.theme-cart-drawer__empty-icon { width: 80px; height: 80px; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: var(--color-blush); color: var(--color-rose-deep); }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; padding: 0.75rem; border-radius: 1rem; transition: background 200ms; }
.theme-cart-item:hover { background: var(--color-blush); }
.theme-cart-item__image { position: relative; display: block; width: 80px; height: 96px; overflow: hidden; border-radius: 0.75rem; flex-shrink: 0; background: var(--color-blush); }
.theme-cart-item__image img,
#theme-cart-drawer .theme-cart-item__image img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	object-position: center;
}
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { display: block; font-family: var(--font-display); font-size: 15px; line-height: 1.3; margin-bottom: 0.25rem; }
.theme-cart-item__price { font-size: 14px; font-weight: 600; color: var(--color-rose-deep); }
.theme-cart-item__variation { font-size: 12px; color: hsla(353,10%,17%,0.6); }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { width: 28px; height: 28px; border-radius: 999px; display: flex; align-items: center; justify-content: center; border: 1px solid hsla(344,24%,56%,0.3); transition: transform 200ms; }
.theme-cart-item__qty-btn:hover { transform: translateY(-2px); }
.theme-cart-item__qty { font-size: 14px; width: 24px; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 14px; color: hsla(353,10%,17%,0.6); transition: opacity 200ms; }
.theme-cart-item__remove:hover { opacity: 0.7; }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid hsla(344,24%,56%,0.2); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; align-items: baseline; }
.theme-cart-drawer__subtotal-value { font-family: var(--font-display); font-size: 1.875rem; color: var(--color-rose-deep); }
.theme-cart-drawer__checkout { width: 100%; }
.theme-cart-drawer__empty-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 14px; color: hsla(353,10%,17%,0.6); padding: 0.5rem; transition: opacity 200ms; }
.theme-cart-drawer__empty-btn:hover { opacity: 0.7; }

/* ============ CONTACT MODAL ============ */
.theme-modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 1rem; }
.theme-modal.is-open { display: flex; }
.theme-modal-overlay { position: absolute; inset: 0; background: hsla(353,10%,17%,0.5); backdrop-filter: blur(2px); }
.theme-modal-content { position: relative; background: var(--color-ivory); border: 1px solid hsla(344,24%,56%,0.22); border-radius: 1.5rem; max-width: 32rem; width: 100%; max-height: 90vh; overflow-y: auto; padding: 2rem; box-shadow: var(--shadow-elevated); }
.theme-modal-close { position: absolute; top: 1.25rem; right: 1.25rem; width: 36px; height: 36px; border-radius: 999px; display: flex; align-items: center; justify-content: center; transition: background 200ms; }
.theme-modal-close:hover { background: hsla(344,24%,56%,0.12); }
.theme-modal-title { font-size: 1.875rem; margin-bottom: 0.5rem; }
.theme-modal-description { font-size: 14px; color: hsla(353,10%,17%,0.7); margin-bottom: 1.25rem; }
.theme-modal-contact-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 14px; color: hsla(353,10%,17%,0.7); margin-bottom: 1.5rem; }
.theme-modal-contact-link { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-modal-success { text-align: center; padding: 2rem 0; }
.theme-modal-success[hidden] { display: none; }
.theme-modal-success-icon { width: 64px; height: 64px; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; background: var(--gradient-rose); color: var(--color-white); }
.theme-contact-form.is-hidden { display: none; }
.theme-form-row--split { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form-row--split { grid-template-columns: 1fr 1fr; } }
.theme-form-field { margin-bottom: 1rem; }
.theme-form-field label { display: block; font-family: var(--font-label); font-size: 14px; font-weight: 500; margin-bottom: 0.375rem; }
.theme-form-field input, .theme-form-field textarea {
	width: 100%; padding: 0.75rem 1rem; border-radius: 1rem; font-size: 16px; font-family: var(--font-body);
	background: var(--color-blush); border: 1px solid hsla(344,24%,56%,0.22); color: var(--color-espresso);
}
.theme-form-field textarea { resize: none; }
.theme-form-field input:focus, .theme-form-field textarea:focus { outline: none; box-shadow: 0 0 0 2px var(--color-rose); }
.theme-form-actions { display: flex; justify-content: flex-end; }

/* ============ FAQ ============ */
.faq-item { border-top: 1px solid hsla(344,24%,56%,0.22); }
.faq-item__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; text-align: left; transition: opacity 200ms; }
.faq-item__trigger:hover { opacity: 0.75; }
.faq-item__question { font-size: 19px; min-width: 0; overflow-wrap: anywhere; }
@media (min-width: 768px) { .faq-item__question { font-size: 21px; } }
.faq-item__chevron { color: var(--color-rose-deep); transition: transform 500ms; flex-shrink: 0; }
.faq-item__trigger[aria-expanded="true"] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__panel { padding-bottom: 1.5rem; padding-right: 2.5rem; font-size: 15px; line-height: 1.7; color: hsla(353,10%,17%,0.75); }
.faq-item__panel[hidden] { display: none; }

/* ============ FOOTER ============ */
.site-footer { background: var(--color-ivory); border-top: 1px solid hsla(344,24%,56%,0.2); }
.site-footer-inner { padding-top: 4rem; padding-bottom: 5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }
.footer-col--brand { grid-column: span 1; }
@media (min-width: 1024px) { .footer-col--brand { grid-column: span 2; } }
.footer-logo-img { height: 5rem; max-height: 5rem; }
.founder-quote { font-size: 16px; line-height: 1.7; max-width: 42rem; padding-left: 1.5rem; margin: 0 0 1.75rem; color: hsla(353, 10%, 17%, 0.8); border-left: 1px solid hsla(344, 24%, 56%, 0.45); }
@media (min-width: 768px) { .founder-quote { font-size: 17px; } }
.founder-name { color: var(--color-rose-deep); margin-top: 0.25rem; }
.contact-card { padding: 2rem; }
@media (min-width: 768px) { .contact-card { padding: 2.5rem; } }
.contact-card__title { color: var(--color-rose-deep); margin-bottom: 1.5rem; }
.contact-card__list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 16px;
	color: var(--color-espresso);
}
.contact-card__icon,
.contact-card__link .theme-icon,
.contact-card__link svg {
	display: block !important;
	flex: 0 0 20px;
	width: 20px !important;
	height: 20px !important;
	min-width: 20px;
	min-height: 20px;
	color: var(--color-rose);
	stroke: var(--color-rose) !important;
	fill: none;
	overflow: visible;
	visibility: visible;
	opacity: 1;
}
.contact-card .bb-flourish { color: var(--color-rose); opacity: 0.7; margin-top: 2rem; }
.footer-tagline { margin-top: 1.25rem; max-width: 24rem; font-size: 15px; line-height: 1.7; color: hsla(353,10%,17%,0.75); }
.footer-heading { color: var(--color-rose-deep); margin-bottom: 1.25rem; }
.footer-heading--legal { margin-top: 2rem; }
.footer-link-list { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.footer-link-list a,
.footer-link-list button {
	display: inline-block;
	width: auto;
	max-width: 100%;
	margin: 0;
	padding: 0 0 4px;
	border: 0;
	background: none;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0;
	text-transform: none;
	text-align: left;
	color: hsla(353,10%,17%,0.78);
	vertical-align: baseline;
}
.footer-link-list a.footer-icon-link { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.75rem; border-top: 1px solid hsla(344,24%,56%,0.2); display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-copyright, .footer-credit { font-size: 14px; color: hsla(353,10%,17%,0.65); }

.back-to-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 40; width: 44px; height: 44px; border-radius: 999px; display: flex; align-items: center; justify-content: center; background: var(--gradient-rose); color: #fff; opacity: 0; pointer-events: none; transition: all 500ms; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); }
@media (min-width: 768px) { .back-to-top { width: 48px; height: 48px; } }

/* ============ NEWSLETTER ============ */
.newsletter-inner { width: 100%; max-width: 80rem; margin-left: auto; margin-right: auto; }
.newsletter-copy { margin: 0 auto 2.25rem; }
.newsletter-form-wrap { min-height: 4rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 36rem; margin: 0 auto; }
@media (min-width: 640px) { .newsletter-form { flex-direction: row; } }
.newsletter-input { flex: 1; padding: 1rem 1.25rem; border-radius: 999px; font-size: 15px; background: hsla(0,0%,100%,0.9); border: 1px solid hsla(344,24%,56%,0.25); color: var(--color-espresso); }
.newsletter-input:focus { outline: none; box-shadow: 0 0 0 2px var(--color-rose); }
.newsletter-success[hidden] { display: none; }

/* ============ ANIMATIONS / REVEAL / PARALLAX / TILT ============ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1100ms var(--ease-lux), transform 1100ms var(--ease-lux); transition-delay: var(--cs-fade-delay, 0ms); }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
[data-reveal-child] { opacity: 0; transform: translateY(24px); transition: opacity 1000ms var(--ease-lux), transform 1000ms var(--ease-lux); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal-child].is-revealed { opacity: 1; transform: translateY(0); }
.reveal-item { opacity: 0; transform: translateY(24px); transition: opacity 900ms var(--ease-lux), transform 900ms var(--ease-lux); }
.reveal-item.is-revealed { opacity: 1; transform: translateY(0); }
/* Customizer preview fallback — never hide content while editing (Section 2.1.5) */
body.is-customizer [data-reveal], body.is-customizer [data-reveal-child], body.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }

/* Desktop gutters match hero / experience: one container-wide, no extra section padding. */
@media (min-width: 1024px) {
	.site-header > .container-wide,
	.site-footer > .container-wide,
	.hero-section > .container-wide,
	main > section > .container-wide,
	.single-product-main > .container-wide,
	.page-shell.container-wide {
		width: 100%;
		max-width: 80rem;
		margin-left: auto;
		margin-right: auto;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
	.shop-section,
	.intro-section,
	.featured-section,
	.standard-section,
	.about-section,
	.founder-section,
	.faq-section,
	.contact-section,
	.social-section,
	.newsletter-section,
	.experience-section {
		padding-left: 0;
		padding-right: 0;
	}
}

.parallax-bg { transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.15); will-change: transform; backface-visibility: hidden; }
[data-tilt] { transform-style: preserve-3d; transition: transform 520ms var(--ease-lux); }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

@media (prefers-reduced-motion: reduce) {
	[data-reveal], [data-reveal-child], .reveal-item { opacity: 1 !important; transform: none !important; transition: none !important; }
	.bb-card, .bb-card:hover, .theme-product-card, .theme-product-card:hover { transition: none !important; transform: none !important; }
	.slow-drift, .bb-ticker-track { animation: none !important; }
	[data-tilt] { transform: none !important; }
}

/* ============ 404 / GENERIC PAGES ============ */
.not-found-page { min-height: 60vh; display: flex; align-items: center; padding: 6rem 0; }
.not-found-inner { text-align: center; max-width: 32rem; margin: 0 auto; }
.not-found-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.not-found-copy { margin-bottom: 2rem; color: hsla(353,10%,17%,0.7); }
.page-shell { padding-top: 3rem; padding-bottom: 5rem; }
.page-title { font-size: 2.5rem; margin-bottom: 2rem; }

/* ============ WOOCOMMERCE: CART / ACCOUNT / CHECKOUT WIDTH PARITY ============ */
body.woocommerce-cart .entry-content, body.woocommerce-account .entry-content { max-width: 100%; }

/* ============ CHECKOUT BLOCK OVERRIDES (Section 13) ============ */
body.woocommerce-checkout .site-main { padding-top: var(--header-height, 96px); padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content { max-width: 100%; }
body.woocommerce-checkout .page-title,
body.woocommerce-checkout .entry-content { max-width: 100%; }

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0; width: 100%; max-width: none;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-checkout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2rem);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large { display: grid; }
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-blush);
	border-radius: var(--card-radius);
	padding: var(--section-padding, 2rem);
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	font-family: var(--font-body); color: var(--color-espresso);
	border: 1px solid hsla(344,24%,56%,0.25) !important; border-radius: 1rem !important;
	background-color: var(--color-white);
	width: 100% !important; max-width: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { box-shadow: 0 0 0 2px var(--color-rose) !important; }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-rose-deep) !important; border-radius: var(--btn-radius) !important;
	font-family: var(--font-label) !important; text-transform: uppercase !important; letter-spacing: 0.18em !important;
	font-weight: 600 !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { background-color: var(--color-rose) !important; }

/* ============ THANK YOU PAGE ============ */
body.theme-thankyou-page { overflow-x: hidden; }
.theme-thankyou { text-align: center; max-width: 40rem; margin: 0 auto; }
.theme-thankyou__icon { width: 80px; height: 80px; border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; background: var(--gradient-rose); color: #fff; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-order h2, body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem; }
body.theme-thankyou-page .woocommerce-customer-details {
	display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem;
}
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; }
