/* ============================================================
   ODD PERFUME — Premium Theme Stylesheet
   ============================================================ */

:root {
	--odd-primary: #241507;
	--odd-accent: #F2661D;
	--odd-accent-dark: #C9520F;
	--odd-surface: #FCEFE2;
	--odd-white: #ffffff;
	--odd-font-display: 'Fraunces', Georgia, serif;
	--odd-font-body: 'Inter', -apple-system, sans-serif;
	--odd-font-mono: 'IBM Plex Mono', 'SF Mono', monospace;
	--odd-radius: 14px;
	--odd-transition: all .35s cubic-bezier(.22,.61,.36,1);
	--odd-space-section: clamp(56px, 8vw, 100px);
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

:focus-visible { outline: 2px solid var(--odd-accent); outline-offset: 3px; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
	margin: 0;
	font-family: var(--odd-font-body);
	color: var(--odd-primary);
	background: var(--odd-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	width: 100%;
	opacity: 0;
	animation: odd-page-fade-in .5s ease forwards;
}
@keyframes odd-page-fade-in { to { opacity: 1; } }
img { max-width: 100%; display: block; }
img.custom-logo { max-height: 60px; width: auto; }
a { color: inherit; }
.odd-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
h1, h2, h3, h4 { font-family: var(--odd-font-display); font-weight: 500; margin: 0 0 .5em; }
.odd-eyebrow { display: inline-block; font-family: var(--odd-font-mono); letter-spacing: .12em; text-transform: uppercase; font-size: 11px; font-weight: 500; color: var(--odd-accent); margin-bottom: 10px; }
.odd-section { padding: var(--odd-space-section) 0; }
.odd-section-title { text-align: center; font-size: clamp(26px, 3.4vw, 34px); letter-spacing: .05em; margin-bottom: 40px; text-transform: uppercase; }
.odd-page-title { font-size: clamp(24px, 3vw, 32px); margin: 40px 0 20px; text-transform: uppercase; letter-spacing: .04em; }
.odd-page-wrap { padding-bottom: 80px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 20px; top: 20px; background: #fff; padding: 10px; z-index: 9999; }

/* Scroll reveal animation (premium feel) */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); }
[data-aos].odd-in-view { opacity: 1; transform: translateY(0); }
[data-aos="zoom-in"] { transform: scale(.96); }
[data-aos="zoom-in"].odd-in-view { transform: scale(1); }

/* ============================================================
   MARQUEE (announcement bar + trust bar + discovery banner)
   ============================================================ */
.odd-marquee { background: var(--odd-primary); color: #fff; overflow: hidden; white-space: nowrap; padding: 10px 0; }
.odd-marquee-track { display: inline-flex; animation: odd-marquee-scroll 28s linear infinite; }
.odd-marquee-item { padding: 0 28px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; position: relative; }
.odd-marquee-item::after { content: '•'; position: absolute; right: -3px; opacity: .5; }
.odd-marquee-trust { background: var(--odd-surface); color: var(--odd-primary); }
.odd-marquee-discover { background: transparent; color: var(--odd-primary); opacity: .5; }
@keyframes odd-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HEADER
   ============================================================ */
.odd-site-header { position: sticky; top: 0; z-index: 500; border-bottom: 1px solid rgba(0,0,0,.06); transition: var(--odd-transition); padding-top: 3px; }
.odd-site-header::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.odd-site-header::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #FBC02D 0%, var(--odd-accent) 45%, var(--odd-accent-dark) 75%, var(--odd-primary) 100%); }
.odd-header-inner { max-width: 1280px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.odd-logo { min-width: 0; flex-shrink: 1; overflow: hidden; }
.odd-logo-text { display: inline-block; max-width: 100%; font-family: var(--odd-font-display); font-size: 24px; font-weight: 600; letter-spacing: .04em; text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; vertical-align: middle; }
.odd-logo img { max-height: 44px; width: auto; }
.odd-primary-nav { flex: 1; display: flex; justify-content: center; min-width: 0; }
.odd-nav-menu { list-style: none; display: flex; gap: 34px; margin: 0; padding: 0; }
.odd-nav-menu a { text-decoration: none; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; position: relative; padding: 6px 0; }
.odd-nav-menu a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--odd-accent); transition: width .3s ease; }
.odd-nav-menu a:hover::after { width: 100%; }
.odd-nav-menu a.odd-nav-highlight { color: var(--odd-accent-dark, #C9520F); }
.odd-header-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.odd-header-actions button, .odd-header-actions a { background: none; border: none; cursor: pointer; color: var(--odd-primary); display: flex; align-items: center; min-width: 24px; min-height: 24px; }
.odd-search-toggle.odd-active { color: var(--odd-accent); }
.odd-cart-icon { position: relative; }
.odd-cart-count { position: absolute; top: -8px; right: -10px; background: var(--odd-accent); color: #fff; font-size: 10px; width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.odd-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 601; flex-shrink: 0; padding: 8px; margin: -8px; }
.odd-mobile-toggle span { width: 24px; height: 2px; background: var(--odd-primary); transition: var(--odd-transition); }
body.odd-nav-open .odd-mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.odd-nav-open .odd-mobile-toggle span:nth-child(2) { opacity: 0; }
body.odd-nav-open .odd-mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.odd-search-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; background: var(--odd-surface); }
.odd-search-panel.odd-open { max-height: 90px; }
.odd-search-panel form { max-width: 1280px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; gap: 10px; }
.odd-search-panel input { flex: 1; padding: 12px 16px; border: 1px solid #ddd; border-radius: 999px; font-size: 14px; font-family: var(--odd-font-body); }
.odd-search-panel input:focus { outline: none; border-color: var(--odd-accent); }
.odd-search-panel button { flex-shrink: 0; }

/* ============================================================
   BUTTONS (shared with plugin, redeclared for standalone theme use)
   ============================================================ */
.odd-btn { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; padding: 15px 32px; background: var(--odd-accent); color: #fff; border: none; border-radius: 999px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: var(--odd-transition); text-decoration: none; font-weight: 600; }
.odd-btn::before {
	content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0;
	background: radial-gradient(circle at var(--odd-glow-x, 50%) var(--odd-glow-y, 50%), rgba(255,255,255,.4), transparent 55%);
	transition: opacity .3s ease;
}
.odd-btn:hover::before { opacity: 1; }
.odd-btn:hover { background: var(--odd-accent-dark); transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 24px rgba(242,102,29,.35); }
.odd-btn:active { transform: scale(.96); transition-duration: .1s; }
.odd-btn-lg { padding: 18px 40px; font-size: 14px; }
.odd-btn-outline { background: transparent; color: var(--odd-primary); border: 1.5px solid var(--odd-primary); }
.odd-btn-outline:hover { background: var(--odd-primary); color: #fff; }
.odd-btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.odd-btn-outline-light:hover { background: #fff; color: var(--odd-primary); }
.odd-section-cta { text-align: center; margin-top: 30px; }

/* ============================================================
   HERO
   ============================================================ */
.odd-hero { position: relative; height: 92vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.odd-hero-media { position: absolute; inset: 0; }
.odd-hero-media video, .odd-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.odd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.55) 100%); }
.odd-hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 720px; padding: 0 20px; }
.odd-hero-heading { font-size: clamp(34px, 6vw, 64px); line-height: 1.05; margin-bottom: 18px; }
.odd-hero-sub { font-size: clamp(14px, 1.6vw, 17px); margin-bottom: 32px; opacity: .92; max-width: 560px; margin-left: auto; margin-right: auto; }
.odd-hero-scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; }
.odd-hero-scroll-cue span { display: block; width: 1px; height: 40px; background: rgba(255,255,255,.7); animation: odd-scroll-pulse 1.8s ease-in-out infinite; }
@keyframes odd-scroll-pulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* ============================================================
   COLLECTION GRID / PRODUCT CARDS  (base look shared w/ plugin CSS)
   ============================================================ */
.odd-collection-section { background: var(--odd-white); }

.odd-quiz-teaser { padding: 80px 0; background: linear-gradient(135deg, var(--odd-surface, #FCEFE2) 0%, #fff 100%); text-align: center; }
.odd-quiz-teaser-inner { max-width: 560px; margin: 0 auto; }
.odd-quiz-teaser h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 14px; }
.odd-quiz-teaser p { opacity: .75; margin-bottom: 28px; }

/* ============================================================
   BUILD YOUR OWN BOX
   ============================================================ */
.odd-byb-section { position: relative; padding: 120px 0; text-align: center; background: var(--odd-primary); color: #fff; overflow: hidden; }
.odd-byb-bg { position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(242,102,29,.35), transparent 60%); }
.odd-byb-content { position: relative; z-index: 1; }
.odd-byb-heading { font-size: 46px; margin-bottom: 16px; }
.odd-byb-heading strong { color: var(--odd-accent); }
.odd-byb-section p { max-width: 460px; margin: 0 auto 30px; opacity: .8; }

/* ============================================================
   DISCOVERY SET
   ============================================================ */
.odd-discovery-section { background: var(--odd-surface); padding: 60px 0 100px; }
.odd-discovery-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; margin-top: 30px; }
.odd-discovery-text h2 { font-size: 38px; margin-bottom: 26px; }
.odd-discovery-image img { border-radius: var(--odd-radius); }

/* ============================================================
   TESTIMONIALS — video wall
   ============================================================ */
.odd-testimonials-section { background: var(--odd-white); padding: 90px 0; }
.odd-testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.odd-testimonial-card { background: var(--odd-surface); border-radius: var(--odd-radius); overflow: hidden; transition: var(--odd-transition); }
.odd-testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.odd-testimonial-play { position: relative; width: 100%; aspect-ratio: 4/5; border: none; padding: 0; cursor: pointer; background: #000; }
.odd-testimonial-play img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .3s ease; }
.odd-testimonial-play:hover img { opacity: 1; }
.odd-play-icon { position: absolute; inset: 0; margin: auto; width: 52px; height: 52px; background: rgba(255,255,255,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--odd-primary); font-size: 16px; }
.odd-testimonial-meta { padding: 18px; }
.odd-testimonial-stars { color: #e0a527; margin-bottom: 8px; }
.odd-testimonial-quote { font-size: 14px; line-height: 1.6; margin-bottom: 10px; min-height: 60px; }
.odd-testimonial-name { font-weight: 700; font-size: 13px; }
.odd-testimonial-name span { display: block; font-weight: 400; opacity: .6; font-size: 12px; }

.odd-video-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 2000; display: none; align-items: center; justify-content: center; }
.odd-video-lightbox.odd-open { display: flex; }
.odd-lightbox-inner { position: relative; max-width: 420px; width: 90%; }
.odd-lightbox-inner video { width: 100%; border-radius: var(--odd-radius); max-height: 80vh; }
.odd-lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.odd-lightbox-caption { color: #fff; text-align: center; margin-top: 12px; opacity: .8; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.odd-manifesto-section { position: relative; background-size: cover; background-position: center; padding: 140px 0; }
.odd-manifesto-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.odd-manifesto-content { position: relative; z-index: 1; text-align: center; color: #fff; }
.odd-manifesto-text { font-family: var(--odd-font-display); font-size: 32px; max-width: 780px; margin: 0 auto 34px; line-height: 1.35; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.odd-faq-section { background: var(--odd-surface); padding: 90px 0; }
.odd-faq-accordion { max-width: 780px; margin: 0 auto; }
.odd-faq-item { border-bottom: 1px solid rgba(0,0,0,.1); }
.odd-faq-question { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.odd-faq-icon { font-size: 20px; transition: transform .3s ease; }
.odd-faq-item.odd-open .odd-faq-icon { transform: rotate(45deg); }
.odd-faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.odd-faq-answer div { padding-bottom: 22px; opacity: .8; line-height: 1.6; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.odd-newsletter { background: var(--odd-primary); color: #fff; text-align: center; padding: 80px 0; }
.odd-newsletter h2 { font-size: 30px; }
.odd-newsletter p { opacity: .7; margin-bottom: 26px; }
.odd-newsletter-form { display: flex; justify-content: center; gap: 10px; max-width: 440px; margin: 0 auto; }
.odd-newsletter-form input { flex: 1; padding: 15px 18px; border-radius: 999px; border: none; font-size: 14px; }
#odd-newsletter-msg { margin-top: 14px; opacity: .8; }

/* ============================================================
   FOOTER
   ============================================================ */
.odd-site-footer { background: #111; color: rgba(255,255,255,.85); padding: 70px 0 30px; }
.odd-footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 50px; }
.odd-footer-col h4 { color: #fff; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; margin-bottom: 18px; }
.odd-footer-col ul { list-style: none; padding: 0; margin: 0; }
.odd-footer-col li { margin-bottom: 10px; font-size: 14px; }
.odd-footer-col a { text-decoration: none; opacity: .8; }
.odd-footer-col a:hover { opacity: 1; color: var(--odd-accent); }
.odd-footer-logo-col { text-align: right; }
.odd-footer-logo-col img { max-height: 48px; width: auto; max-width: 200px; object-fit: contain; }
.odd-footer-logo-col .custom-logo-link { display: inline-block; }
.odd-logo-text-large { font-family: var(--odd-font-display); font-size: 26px; color: #fff; margin-bottom: 10px; }
.odd-footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; opacity: .6; flex-wrap: wrap; gap: 10px; }
.odd-footer-policy-links a { margin-left: 16px; text-decoration: none; }

/* ============================================================
   SHOP ARCHIVE / SIDEBAR
   ============================================================ */
.odd-shop-archive { padding-bottom: 90px; }
.odd-shop-header { padding-top: 8px; margin-bottom: 40px; }
.odd-shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 60px; }
.odd-shop-layout.odd-no-filters { grid-template-columns: 1fr; }
.odd-shop-filters { align-self: start; position: sticky; top: 100px; }

.odd-filter-all-link { display: flex; justify-content: space-between; align-items: center; padding: 10px 0 18px; margin-bottom: 18px; border-bottom: 1px solid #ece5d8; font-family: var(--odd-font-display); font-size: 16px; text-decoration: none; color: var(--odd-primary); }
.odd-filter-all-link.odd-filter-active { color: var(--odd-accent-dark); font-weight: 600; }

.odd-filter-group { margin-bottom: 30px; }
.odd-filter-group:last-child { margin-bottom: 0; }
.odd-shop-filters h3 { font-family: var(--odd-font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; opacity: .5; margin: 0 0 14px; }
.odd-shop-filters ul { list-style: none; padding: 0; margin: 0; }
.odd-shop-filters li { margin-bottom: 2px; }
.odd-shop-filters a {
	position: relative;
	display: flex; justify-content: space-between; align-items: center;
	text-decoration: none; color: var(--odd-primary); opacity: .82;
	font-size: 14.5px; padding: 9px 4px 9px 14px;
	border-radius: 8px;
	transition: background .25s ease, opacity .25s ease, padding-left .25s ease;
}
.odd-shop-filters a::before {
	content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
	width: 3px; height: 0; background: var(--odd-accent); border-radius: 2px;
	transition: height .25s ease;
}
.odd-shop-filters a:hover { opacity: 1; background: var(--odd-surface); padding-left: 18px; }
.odd-shop-filters a:hover::before { height: 18px; }
.odd-shop-filters a.odd-filter-active { opacity: 1; font-weight: 600; color: var(--odd-accent-dark); background: var(--odd-surface); }
.odd-shop-filters a.odd-filter-active::before { height: 18px; }
.odd-filter-count { font-family: var(--odd-font-mono); font-size: 11px; opacity: .5; }
.odd-shop-filters a.odd-filter-active .odd-filter-count, .odd-shop-filters a:hover .odd-filter-count { opacity: .8; }

/* Staggered card reveal — used on any [data-aos] product grid */
.odd-product-grid[data-aos] .odd-product-card { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s cubic-bezier(.22,.61,.36,1); }
.odd-product-grid.odd-in-view .odd-product-card { opacity: 1; transform: translateY(0); }
.odd-product-grid.odd-in-view .odd-product-card:nth-child(1) { transition-delay: .03s; }
.odd-product-grid.odd-in-view .odd-product-card:nth-child(2) { transition-delay: .09s; }
.odd-product-grid.odd-in-view .odd-product-card:nth-child(3) { transition-delay: .15s; }
.odd-product-grid.odd-in-view .odd-product-card:nth-child(4) { transition-delay: .21s; }
.odd-product-grid.odd-in-view .odd-product-card:nth-child(5) { transition-delay: .27s; }
.odd-product-grid.odd-in-view .odd-product-card:nth-child(6) { transition-delay: .33s; }
.odd-product-grid.odd-in-view .odd-product-card:nth-child(n+7) { transition-delay: .38s; }

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.odd-single-product { padding: 50px 32px 100px; max-width: 1280px; margin: 0 auto; }
.odd-single-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.odd-single-main-image { border-radius: var(--odd-radius); overflow: hidden; aspect-ratio: 4/5; background: var(--odd-surface); }
.odd-single-main-image img, .odd-single-main-image video { width: 100%; height: 100%; object-fit: cover; }
.odd-single-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.odd-thumb-item { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: .6; transition: opacity .3s ease; }
.odd-thumb-item:hover { opacity: 1; }
.odd-single-title { font-size: 34px; text-transform: uppercase; }
.odd-single-rating { color: #e0a527; margin-bottom: 14px; }
.odd-single-price { font-family: var(--odd-font-mono); font-size: 24px; font-weight: 500; margin-bottom: 20px; }
.odd-single-price:has(del) { color: var(--odd-accent-dark); }
.odd-single-price del { opacity: .45; margin-left: 10px; font-size: 16px; color: var(--odd-primary); font-weight: 400; }
.odd-single-excerpt { opacity: .8; margin-bottom: 24px; line-height: 1.6; }
.odd-size-selector { margin-bottom: 20px; }
.odd-size-options { display: flex; gap: 10px; margin-top: 10px; }
.odd-size-pill { border: 1.5px solid #ddd; border-radius: 999px; padding: 8px 18px; cursor: pointer; font-size: 13px; transition: var(--odd-transition); }
.odd-size-pill input { display: none; }
.odd-size-pill:has(input:checked) { border-color: var(--odd-accent); background: var(--odd-accent); color: #fff; }
.odd-qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.odd-qty-row input { width: 70px; padding: 10px; border-radius: 8px; border: 1px solid #ddd; }
.odd-notes-pyramid { margin-top: 34px; padding-top: 24px; border-top: 1px solid #eee; }
.odd-story { margin-top: 24px; line-height: 1.7; opacity: .85; }
.odd-trust-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; font-size: 13px; opacity: .75; }
.odd-single-content { margin-top: 60px; max-width: 800px; }
.odd-single-reviews { margin-top: 60px; max-width: 800px; }

/* Reviews / comments */
.odd-comments-wrap h3 { font-size: 20px; margin-bottom: 20px; }
.odd-comment-list { list-style: none; padding: 0; margin: 0 0 40px; }
.odd-review-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid #eee; }
.odd-review-avatar img { border-radius: 50%; display: block; }
.odd-review-body { flex: 1; min-width: 0; }
.odd-review-meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.odd-review-author { font-size: 14px; }
.odd-review-date { font-size: 12px; opacity: .5; }
.odd-review-stars { display: block; color: #e0a527; letter-spacing: 2px; margin-bottom: 6px; font-size: 14px; }
.odd-review-text p { margin: 0; font-size: 14px; line-height: 1.6; opacity: .85; }

#respond { background: var(--odd-surface, #FCEFE2); padding: 28px; border-radius: 14px; }
#respond h3 { margin-top: 0; font-size: 18px; }
.odd-review-incentive { font-size: 12px; font-weight: 500; opacity: .6; text-transform: none; letter-spacing: normal; }
.comment-form-author input, .comment-form-email input, .comment-form-comment textarea {
	width: 100%; padding: 13px 14px; border: 1px solid #ddd; border-radius: 8px;
	font-size: 14px; font-family: inherit; margin-bottom: 14px; transition: border-color .2s ease, box-shadow .2s ease;
}
.comment-form-author input:focus, .comment-form-email input:focus, .comment-form-comment textarea:focus {
	outline: none; border-color: var(--odd-accent, #F2661D); box-shadow: 0 0 0 3px rgba(242,102,29,.12);
}
.comment-form-comment label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.comment-notes, .logged-in-as { font-size: 13px; opacity: .65; margin-bottom: 14px; }
.logged-in-as a { color: var(--odd-accent-dark, #C9520F); }
.form-submit { margin-top: 4px; }

/* Star rating — pure CSS click-to-rate widget */
.odd-rating-field { margin-bottom: 18px; }
.odd-rating-field > label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.odd-star-rating { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.odd-star-rating input { position: absolute; opacity: 0; pointer-events: none; }
.odd-star-rating label { font-size: 28px; line-height: 1; color: #ddd; cursor: pointer; transition: color .15s ease; }
.odd-star-rating input:checked ~ label,
.odd-star-rating label:hover,
.odd-star-rating label:hover ~ label { color: #e0a527; }
.odd-related-products { margin-top: 80px; }

/* ============================================================
   STORY / ABOUT PAGE
   ============================================================ */
.odd-story-hero { padding: 100px 0 60px; text-align: center; background: var(--odd-surface); }
.odd-story-hero-media { margin: -30px auto 0; position: relative; z-index: 2; max-width: 900px; }
.odd-story-hero-media img, .odd-story-hero-media video { width: 100%; border-radius: var(--odd-radius); box-shadow: 0 24px 48px rgba(36,21,7,.15); }
.odd-story-hero h1 { font-size: 42px; max-width: 780px; margin: 0 auto; }
.odd-story-content { padding: 60px 32px; max-width: 800px; line-height: 1.8; }
.odd-story-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 80px 32px; }
.odd-value-card { text-align: center; padding: 30px 20px; background: var(--odd-surface); border-radius: var(--odd-radius); }

/* ============================================================
   CONTACT
   ============================================================ */
.odd-contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; margin-top: 30px; }
.odd-contact-form input, .odd-contact-form textarea { width: 100%; padding: 14px; margin-bottom: 14px; border: 1px solid #ddd; border-radius: 8px; }

/* ============================================================
   BLOG
   ============================================================ */
.odd-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }
.odd-blog-thumb { display: flex; align-items: center; justify-content: center; border-radius: var(--odd-radius); overflow: hidden; aspect-ratio: 4/3; margin-bottom: 14px; background: var(--odd-surface, #FCEFE2); }
.odd-blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.odd-blog-thumb:empty::before { content: '✦'; font-size: 24px; color: var(--odd-accent, #F2661D); opacity: .4; }
.odd-blog-date { font-size: 12px; opacity: .5; text-transform: uppercase; letter-spacing: .06em; }
.odd-read-more { font-size: 13px; font-weight: 600; text-decoration: none; }
.odd-breadcrumb { font-size: 13px; opacity: .6; padding-top: 24px; display: block; }
.odd-breadcrumb a { text-decoration: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.odd-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
	.odd-story-values, .odd-blog-grid { grid-template-columns: repeat(2, 1fr); }
	.odd-shop-layout { grid-template-columns: 1fr; }
	.odd-single-grid, .odd-checkout-grid, .odd-contact-grid, .odd-discovery-content { grid-template-columns: 1fr !important; }
	.odd-footer-grid { grid-template-columns: 1fr 1fr; }

	.odd-shop-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin-bottom: 20px; position: static; }
	.odd-filter-all-link { flex-basis: 100%; border-bottom: none; padding: 0 0 4px; margin-bottom: 4px; font-size: 13px; }
	.odd-filter-group { display: contents; }
	.odd-shop-filters h3 { font-size: 11px; margin: 6px 0 0; opacity: .5; flex-basis: 100%; }
	.odd-shop-filters ul { display: flex; flex-wrap: wrap; gap: 8px; flex-basis: 100%; }
	.odd-shop-filters li { margin-bottom: 0; }
	.odd-shop-filters a { display: inline-flex; gap: 6px; padding: 7px 14px; border: 1px solid #e5ded2; border-radius: 999px; opacity: 1; font-size: 12px; background: none; }
	.odd-shop-filters a::before { display: none; }
	.odd-shop-filters a:hover, .odd-shop-filters a.odd-filter-active { padding-left: 14px; border-color: var(--odd-accent); background: var(--odd-surface); }
}
@media (max-width: 720px) {
	.odd-mobile-toggle { display: flex; }
	.odd-hero-heading { font-size: 38px; }
	.odd-section-title { font-size: 26px; }
	.odd-manifesto-text { font-size: 22px; }
	.odd-byb-heading { font-size: 30px; }
	.odd-testimonial-grid { grid-template-columns: 1fr 1fr; }
	.odd-footer-grid { grid-template-columns: 1fr; text-align: left; }
	.odd-footer-logo-col { text-align: left; }
	.odd-container { padding: 0 20px; }
	.odd-checkout-row { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
	.odd-testimonial-grid { grid-template-columns: 1fr; }
	.odd-header-inner { padding: 14px 16px; gap: 12px; }
	.odd-header-actions { gap: 12px; }
	.odd-logo-text { font-size: 19px; }
	.odd-account-profile { flex-wrap: wrap; }
	.odd-account-profile .odd-btn { margin-left: 0; width: 100%; }
	.odd-star-rating label { font-size: 32px; padding: 2px; }
	.odd-account-orders { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ============================================================
   MINI-CART DRAWER — slide-in bag, no page reload needed
   ============================================================ */
.odd-cart-drawer {
	position: fixed; top: 0; right: 0; bottom: 0; height: 100vh;
	width: min(400px, 92vw); background: #fff; z-index: 9999;
	display: flex; flex-direction: column;
	transform: translateX(100%); visibility: hidden;
	transition: transform .4s cubic-bezier(.22,.61,.36,1);
	box-shadow: -12px 0 40px rgba(0,0,0,.15);
}
body.odd-cart-open .odd-cart-drawer { transform: translateX(0); visibility: visible; }
body.odd-cart-open .odd-nav-backdrop { opacity: 1; visibility: visible; pointer-events: auto; }
.odd-cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid #eee; }
.odd-cart-drawer-header h3 { margin: 0; font-size: 18px; text-transform: uppercase; letter-spacing: .04em; }
.odd-cart-drawer-close { background: none; border: none; font-size: 18px; cursor: pointer; padding: 8px; }
.odd-cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }

.odd-mini-cart-empty { text-align: center; padding: 60px 20px; }
.odd-mini-cart-empty p { opacity: .6; margin-bottom: 20px; }

.odd-mini-cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid #f2f2f2; align-items: flex-start; }
.odd-mini-cart-item img { width: 64px; height: 80px; object-fit: cover; border-radius: 8px; background: var(--odd-surface); flex-shrink: 0; }
.odd-mini-cart-item-info { flex: 1; min-width: 0; }
.odd-mini-cart-item-name { font-size: 13px; margin: 0 0 8px; font-weight: 600; }
.odd-mini-cart-item-name span { font-weight: 400; opacity: .6; }
.odd-mini-cart-qty-row { display: flex; align-items: center; gap: 10px; }
.odd-mini-qty-btn { width: 26px; height: 26px; border: 1px solid #ddd; background: #fff; border-radius: 6px; cursor: pointer; font-size: 14px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.odd-mini-qty-btn:hover { background: var(--odd-surface); }
.odd-mini-qty-value { min-width: 18px; text-align: center; font-family: var(--odd-font-mono); font-size: 13px; }
.odd-mini-cart-item-price { margin-left: auto; font-family: var(--odd-font-mono); font-size: 13px; }
.odd-mini-cart-remove { background: none; border: none; opacity: .4; cursor: pointer; font-size: 14px; padding: 6px; flex-shrink: 0; }
.odd-mini-cart-remove:hover { opacity: 1; color: var(--odd-accent-dark); }

.odd-mini-cart-footer { border-top: 1px solid #eee; padding-top: 18px; margin-top: 10px; }
.odd-mini-cart-total { display: flex; justify-content: space-between; align-items: center; font-family: var(--odd-font-mono); font-size: 16px; margin-bottom: 16px; }
.odd-mini-cart-footer .odd-btn { width: 100%; margin-bottom: 10px; }

/* ============================================================
   STICKY MOBILE "ADD TO BAG" BAR — keeps the primary action
   reachable with one thumb, no scrolling back up needed
   ============================================================ */
.odd-sticky-add-bar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
	background: #fff; border-top: 1px solid #eee;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
	display: none; align-items: center; gap: 12px; flex-wrap: nowrap;
	min-height: 44px; box-sizing: border-box;
	box-shadow: 0 -8px 24px rgba(0,0,0,.06);
	transform: translateY(100%); transition: transform .35s ease;
}
.odd-sticky-add-bar.odd-visible { transform: translateY(0); }
.odd-sticky-add-bar-info { flex: 1 1 auto; min-width: 0; overflow: hidden; }
.odd-sticky-add-bar-name { font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.odd-sticky-add-bar-price { font-family: var(--odd-font-mono); font-size: 13px; color: var(--odd-accent); white-space: nowrap; }
.odd-sticky-add-bar .odd-btn { flex: 0 0 auto; padding: 12px 24px; font-size: 12px; white-space: nowrap; }

@media (max-width: 720px) {
	.odd-sticky-add-bar { display: flex; }
	/* Matches the bar's own padding formula exactly (44px content + 12px top
	   + 12px bottom + safe-area-inset-bottom) so it can never overlap page
	   content, regardless of how large a given device's gesture-nav inset is. */
	body.odd-single-product-page { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   PREMIUM MICRO-ANIMATIONS
   ============================================================ */
@keyframes odd-fly-to-cart {
	0% { transform: translate(0, 0) scale(1); opacity: 1; }
	100% { transform: translate(var(--odd-fly-x, 0), var(--odd-fly-y, 0)) scale(.15); opacity: 0; }
}
.odd-fly-clone {
	position: fixed; z-index: 10001; border-radius: 10px; object-fit: cover;
	pointer-events: none; animation: odd-fly-to-cart .7s cubic-bezier(.4,0,.6,1) forwards;
}
@keyframes odd-cart-bump { 0%, 100% { transform: scale(1); } 35% { transform: scale(1.35); } 60% { transform: scale(.92); } }
.odd-cart-icon.odd-bump { animation: odd-cart-bump .5s ease; }

.odd-add-to-cart.odd-added { background: #2e7d32 !important; transition: background .25s ease; }

/* ============================================================
   MOBILE NAV DRAWER — hardened: high z-index stack, closed by
   default with pointer-events disabled so it can never intercept
   clicks even if a future style change affects layout.
   ============================================================ */
.odd-nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 9998; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .35s ease, visibility .35s; }
body.odd-nav-open .odd-nav-backdrop { opacity: 1; visibility: visible; pointer-events: auto; }

@media (max-width: 720px) {
	.odd-primary-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		height: 100vh;
		width: min(320px, 84vw);
		background: #fff;
		z-index: 9999;
		padding: 100px 32px 40px;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform .4s cubic-bezier(.22,.61,.36,1);
		box-shadow: -12px 0 40px rgba(0,0,0,.15);
		visibility: hidden;
	}
	body.odd-nav-open .odd-primary-nav { transform: translateX(0); visibility: visible; }
	.odd-nav-menu { flex-direction: column; gap: 24px; }
	.odd-mobile-toggle { z-index: 10000; }
}
