/* ==========================================================
   NOVASK PREMIUM LAYER — blog, single, archive, search, 404,
   sidebar, footer, comments, WooCommerce (shop/single/related)
   ========================================================== */
:root {
	--nv-ink: #14142b;
	--nv-soft: #f6f6fb;
	--nv-line: #ececf4;
	--nv-muted: #6b6b85;
	--nv-shadow: 0 1px 2px rgba(20,20,43,.04), 0 10px 30px rgba(20,20,43,.06);
	--nv-shadow-lg: 0 2px 4px rgba(20,20,43,.05), 0 24px 50px rgba(20,20,43,.12);
	--nv-r: 18px;
}
.novask-content-area { background: var(--nv-soft); padding: 48px 0 72px; }
body.elementor-page .novask-content-area { background: transparent; padding: 0; }
.novask-layout-with-sidebar { gap: 44px; align-items: flex-start; }
.novask-layout-with-sidebar > .novask-main { flex: 1 1 68%; min-width: 0; }

/* ---------- shared bits ---------- */
.novask-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--novask-accent); }
.novask-chip { display: inline-block; padding: 5px 12px; border-radius: 30px; background: color-mix(in srgb, var(--novask-accent) 12%, #fff); color: var(--novask-accent); font-size: 12px; font-weight: 700; letter-spacing: .02em; text-decoration: none; transition: background .2s, color .2s; }
.novask-chip:hover { background: var(--novask-accent); color: #fff; }
.novask-dot { width: 4px; height: 4px; border-radius: 50%; background: #c4c4d6; display: inline-block; }
.novask-btn, button.novask-btn { border-radius: 12px; padding: 13px 26px; font-weight: 600; transition: transform .2s, box-shadow .2s, background .2s; }
.novask-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,90,95,.35); }
input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=tel], input[type=number], textarea, select { background: #fff; border: 1.5px solid var(--nv-line); border-radius: 12px; padding: 12px 16px; transition: border-color .2s, box-shadow .2s; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--novask-accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--novask-accent) 14%, transparent); }

/* ---------- hero band (archive / search) ---------- */
.novask-hero-band { position: relative; padding: 72px 0 64px; background: linear-gradient(135deg, #14142b 0%, #2b2466 55%, #6c5ce7 130%); color: #fff; text-align: center; overflow: hidden; }
.novask-hero-band::before { content: ""; position: absolute; width: 520px; height: 520px; right: -140px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%); }
.novask-hero-band h1 { position: relative; margin: 12px 0 0; color: #fff; font-size: clamp(30px, 4.6vw, 52px); font-weight: 800; letter-spacing: -.03em; }
.novask-hero-band h1 span { color: #ffd76a; }
.novask-hero-band .novask-eyebrow { color: #ffd76a; position: relative; }
.novask-hero-desc { position: relative; max-width: 620px; margin: 14px auto 0; color: rgba(255,255,255,.78); font-size: 17px; }
.novask-hero-desc p { margin: 0 0 6px; }
.novask-count { display: inline-block; margin-top: 8px; padding: 6px 14px; border-radius: 30px; background: rgba(255,255,255,.14); font-size: 13px; font-weight: 600; }
.novask-hero-desc .novask-search-form { display: flex; gap: 8px; max-width: 520px; margin: 22px auto 0; }
.novask-hero-desc .search-field { border-color: transparent; }
.novask-hero-band + .novask-container { margin-top: 48px; }

/* ---------- post cards ---------- */
.novask-post-grid { display: grid; gap: 28px; }
.novask-post-grid.novask-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.novask-post-grid.novask-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.novask-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--nv-r); overflow: hidden; box-shadow: var(--nv-shadow); transition: transform .35s cubic-bezier(.22,.9,.3,1), box-shadow .35s; margin: 0; }
.novask-card:hover { transform: translateY(-6px); box-shadow: var(--nv-shadow-lg); }
.novask-card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.novask-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.9,.3,1); }
.novask-card:hover .novask-card-media img { transform: scale(1.06); }
.novask-card-ph { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 64px; font-weight: 800; color: rgba(255,255,255,.85); }
.novask-card-body { display: flex; flex-direction: column; flex: 1; gap: 12px; padding: 24px; }
.novask-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.novask-card-date { font-size: 12.5px; color: var(--nv-muted); font-weight: 500; }
.novask-card-title { margin: 0; font-size: 21px; line-height: 1.3; font-weight: 800; letter-spacing: -.02em; }
.novask-card-title a { color: var(--nv-ink); transition: color .2s; }
.novask-card:hover .novask-card-title a { color: var(--novask-accent); }
.novask-card-excerpt { margin: 0; color: var(--nv-muted); font-size: 15px; line-height: 1.65; }
.novask-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--nv-line); font-size: 13px; color: var(--nv-muted); }
.novask-card-author { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--nv-ink); }
.novask-card-author img { width: 28px; height: 28px; border-radius: 50%; }
.novask-related .novask-card-title { font-size: 17px; }
.novask-related .novask-card-body { padding: 18px; gap: 10px; }

/* first post on the main blog = featured wide */
.blog .novask-post-grid > .novask-card:first-child, .home .novask-post-grid > .novask-card:first-child { grid-column: 1 / -1; flex-direction: row; }
.blog .novask-post-grid > .novask-card:first-child .novask-card-media, .home .novask-post-grid > .novask-card:first-child .novask-card-media { flex: 0 0 52%; aspect-ratio: auto; min-height: 320px; }
.blog .novask-post-grid > .novask-card:first-child .novask-card-title, .home .novask-post-grid > .novask-card:first-child .novask-card-title { font-size: 28px; }
.blog .novask-post-grid > .novask-card:first-child .novask-card-body, .home .novask-post-grid > .novask-card:first-child .novask-card-body { justify-content: center; padding: 34px; }

/* ---------- pagination ---------- */
.novask-pagination { margin-top: 44px; }
.novask-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.novask-pagination a, .novask-pagination span { min-width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; border: 0; border-radius: 12px; background: #fff; color: var(--nv-ink); font-weight: 600; box-shadow: var(--nv-shadow); transition: background .2s, color .2s, transform .2s; }
.novask-pagination a:hover { background: var(--novask-accent); color: #fff; transform: translateY(-2px); }
.novask-pagination .current { background: var(--nv-ink); color: #fff; }

/* ---------- single post ---------- */
.novask-single-hero { background: #fff; padding: 64px 0 40px; text-align: center; border-bottom: 1px solid var(--nv-line); }
.novask-single-hero-inner { max-width: 860px; }
.novask-single-hero .entry-title { margin: 18px 0 24px; font-size: clamp(30px, 4.8vw, 54px); font-weight: 800; line-height: 1.12; letter-spacing: -.035em; color: var(--nv-ink); }
.novask-single-meta { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; font-size: 14px; color: var(--nv-muted); font-weight: 500; }
.novask-single-meta a { color: var(--nv-muted); }
.novask-single-author { display: inline-flex; align-items: center; gap: 12px; text-align: left; }
.novask-single-author img { width: 40px; height: 40px; border-radius: 50%; }
.novask-single-author span { display: flex; flex-direction: column; line-height: 1.3; }
.novask-single-author strong { color: var(--nv-ink); font-size: 15px; }
.novask-single-author em { font-style: normal; font-size: 12.5px; }
.novask-single-cover { max-width: 1040px; margin-top: 40px; }
.novask-single-cover img { width: 100%; height: auto; border-radius: 22px; box-shadow: var(--nv-shadow-lg); }
.single-post .novask-content-area, .archive .novask-content-area, .search .novask-content-area { padding-top: 0; }
.single-post .novask-single-cover + .novask-container, .single-post .novask-single-hero + .novask-container { margin-top: 44px; }
.novask-single { background: #fff; border-radius: 22px; padding: 44px 48px; box-shadow: var(--nv-shadow); margin: 0 0 28px; }
.novask-single .entry-content { font-size: 18px; line-height: 1.85; color: #33334d; }
.novask-single .entry-content > * + * { margin-top: 1.3em; }
.novask-single .entry-content h2, .novask-single .entry-content h3 { margin-top: 1.9em; color: var(--nv-ink); }
.novask-single .entry-content h2 { font-size: 30px; letter-spacing: -.025em; }
.novask-single .entry-content h3 { font-size: 23px; }
.novask-single .entry-content a { text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--novask-accent) 40%, transparent); text-underline-offset: 3px; }
.novask-single .entry-content img { border-radius: 14px; }
.novask-single .entry-content blockquote { margin: 2em 0; padding: 22px 28px; border-left: 4px solid var(--novask-accent); background: var(--nv-soft); border-radius: 0 14px 14px 0; font-size: 20px; font-weight: 500; color: var(--nv-ink); }
.novask-single .entry-content blockquote p:last-child { margin-bottom: 0; }
.novask-single .entry-content ul, .novask-single .entry-content ol { padding-left: 1.4em; }
.novask-single .entry-content li + li { margin-top: .4em; }
.novask-single .entry-content pre { background: #14142b; color: #e7e7ff; padding: 22px 26px; border-radius: 14px; overflow-x: auto; font-size: 14.5px; }
.novask-single .entry-content :not(pre) > code { background: var(--nv-soft); padding: 2px 7px; border-radius: 6px; font-size: .9em; }
.novask-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--nv-line); }
.novask-tags a { padding: 6px 14px; border-radius: 30px; background: var(--nv-soft); color: var(--nv-muted); font-size: 13px; font-weight: 600; transition: all .2s; }
.novask-tags a::before { content: "#"; opacity: .5; }
.novask-tags a:hover { background: var(--nv-ink); color: #fff; }
.novask-share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.novask-share > span { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--nv-muted); margin-right: 4px; }
.novask-share a { padding: 8px 16px; border-radius: 10px; background: var(--nv-soft); color: var(--nv-ink); font-size: 13.5px; font-weight: 600; transition: all .2s; }
.novask-share a:hover { background: var(--novask-accent); color: #fff; transform: translateY(-2px); }

.novask-authorbox { display: flex; gap: 24px; align-items: center; padding: 30px 34px; margin-bottom: 28px; background: #fff; border-radius: 22px; box-shadow: var(--nv-shadow); }
.novask-authorbox img { width: 84px; height: 84px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 4px var(--nv-soft); }
.novask-authorbox h3 { margin: 4px 0 6px; font-size: 20px; }
.novask-authorbox h3 a { color: var(--nv-ink); }
.novask-authorbox p { margin: 0; color: var(--nv-muted); font-size: 15px; }

.post-navigation { margin-bottom: 44px; }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.post-navigation .nav-previous a, .post-navigation .nav-next a { display: flex; flex-direction: column; gap: 6px; height: 100%; padding: 22px 26px; background: #fff; border-radius: 18px; box-shadow: var(--nv-shadow); transition: transform .3s, box-shadow .3s; }
.post-navigation .nav-next a { text-align: right; }
.post-navigation a:hover { transform: translateY(-4px); box-shadow: var(--nv-shadow-lg); }
.post-navigation .nav-subtitle { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--novask-accent); }
.post-navigation .nav-title { font-size: 16px; font-weight: 700; color: var(--nv-ink); line-height: 1.35; }

.novask-related { margin: 0 0 48px; }
.novask-section-head { margin-bottom: 26px; }
.novask-section-head h2 { margin: 6px 0 0; font-size: 30px; font-weight: 800; letter-spacing: -.03em; }

/* ---------- comments ---------- */
.novask-comments-area { background: #fff; border-radius: 22px; padding: 40px 44px; box-shadow: var(--nv-shadow); margin-top: 0; }
.comments-title, .comment-reply-title { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 26px; }
.comment-list .comment-body { border: 0; background: var(--nv-soft); border-radius: 16px; padding: 22px 24px; }
.comment-author { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--nv-ink); }
.comment-author img { border-radius: 50%; width: 44px; height: 44px; }
.comment-author .says { display: none; }
.comment-metadata { font-size: 12.5px; margin: 6px 0 12px; }
.comment-metadata a { color: var(--nv-muted); }
.reply a { font-size: 13px; font-weight: 700; }
.comment-form label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--nv-ink); }
.comment-form p { margin-bottom: 18px; }
.comment-form-cookies-consent { display: flex; gap: 10px; align-items: center; }
.comment-form-cookies-consent label { margin: 0; font-weight: 400; }
.comment-form-cookies-consent input { width: auto; }

/* ---------- sidebar ---------- */
.novask-sidebar { flex: 0 0 320px; position: sticky; top: 104px; }
.novask-sidebar .widget { background: #fff; border-radius: var(--nv-r); padding: 26px; box-shadow: var(--nv-shadow); margin-bottom: 24px; }
.novask-sidebar .widget-title, .novask-sidebar .wp-block-heading { margin: 0 0 18px; padding: 0 0 14px; font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--nv-ink); border-bottom: 1px solid var(--nv-line); position: relative; }
.novask-sidebar .widget-title::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 44px; height: 3px; border-radius: 3px; background: var(--novask-accent); }
.novask-sidebar h2 { font-size: 15px; }
.novask-sidebar ul { list-style: none; margin: 0; padding: 0; }
.novask-sidebar li { padding: 10px 0; border-bottom: 1px dashed var(--nv-line); font-size: 14.5px; line-height: 1.5; }
.novask-sidebar li:last-child { border-bottom: 0; padding-bottom: 0; }
.novask-sidebar li:first-child { padding-top: 0; }
.novask-sidebar a { color: var(--nv-ink); font-weight: 500; transition: color .2s, padding .2s; }
.novask-sidebar a:hover { color: var(--novask-accent); }
.novask-sidebar .wp-block-search__inside-wrapper { display: flex; gap: 8px; }
.novask-sidebar .wp-block-search__label { display: none; }
.novask-sidebar .wp-block-search__button, .novask-sidebar .search-submit { padding: 11px 18px; border-radius: 12px; background: var(--nv-ink); }
.novask-sidebar .wp-block-search__button:hover { background: var(--novask-accent); }
.novask-sidebar .wp-block-latest-posts__list li, .novask-sidebar .wp-block-categories li { padding: 10px 0; }
.novask-sidebar .tagcloud a { display: inline-block; padding: 6px 13px; margin: 0 4px 8px 0; border-radius: 30px; background: var(--nv-soft); font-size: 13px !important; }
.novask-sidebar .tagcloud a:hover { background: var(--nv-ink); color: #fff; }

/* ---------- search / forms ---------- */
.novask-search-form { display: flex; gap: 8px; }
.novask-search-form .search-field { flex: 1; }
.novask-search-form .search-submit { border-radius: 12px; padding: 12px 22px; }
.content-none, .no-results { background: #fff; padding: 48px; border-radius: 22px; text-align: center; box-shadow: var(--nv-shadow); }

/* ---------- 404 ---------- */
.novask-404 { text-align: center; padding: 70px 0 30px; }
.novask-404-num { display: block; font-size: clamp(110px, 20vw, 220px); line-height: 1; font-weight: 900; letter-spacing: -.06em; background: linear-gradient(135deg, #6c5ce7, var(--novask-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.novask-404 h1 { margin: 6px 0 12px; font-size: 34px; font-weight: 800; }
.novask-404 p { max-width: 460px; margin: 0 auto 26px; color: var(--nv-muted); }
.novask-404-search { max-width: 460px; margin: 0 auto 24px; }

/* ---------- footer ---------- */
.novask-footer { background: #0f0f24; color: #b4b4cc; margin-top: 0; }
.novask-footer-widgets { padding: 72px 20px 48px; gap: 44px; }
.novask-footer .widget-title, .novask-footer h2, .novask-footer h3 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .1em; border: 0; margin-bottom: 20px; }
.novask-footer ul { list-style: none; margin: 0; padding: 0; }
.novask-footer li { padding: 6px 0; }
.novask-footer a { color: #b4b4cc; transition: color .2s; }
.novask-footer a:hover { color: #fff; }
.novask-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: 13.5px; }

/* ==========================================================
   WOOCOMMERCE
   ========================================================== */
.novask-woocommerce-wrap { background: transparent; padding-top: 40px; }
.woocommerce-breadcrumb { font-size: 13.5px; color: var(--nv-muted); margin: 0 0 22px !important; }
.woocommerce-breadcrumb a { color: var(--nv-muted); font-weight: 500; }
.woocommerce-breadcrumb a:hover { color: var(--novask-accent); }
.woocommerce .woocommerce-products-header__title, .woocommerce-products-header h1 { font-size: 40px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 8px; }
.woocommerce .woocommerce-result-count { font-size: 14px; color: var(--nv-muted); margin: 8px 0 26px; }
.woocommerce .woocommerce-ordering { margin: 0 0 26px; }
.woocommerce .woocommerce-ordering select { padding: 10px 40px 10px 16px; border-radius: 12px; font-size: 14px; font-weight: 500; }

.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; margin: 0 0 40px; padding: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { position: relative; float: none; width: auto; margin: 0; padding: 0 0 22px; background: #fff; border-radius: var(--nv-r); overflow: hidden; box-shadow: var(--nv-shadow); text-align: left; transition: transform .35s cubic-bezier(.22,.9,.3,1), box-shadow .35s; display: flex; flex-direction: column; }
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: var(--nv-shadow-lg); }
.woocommerce ul.products li.product a img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; margin: 0 0 16px; transition: transform .7s cubic-bezier(.22,.9,.3,1); }
.woocommerce ul.products li.product:hover a img { transform: scale(1.06); }
.woocommerce ul.products li.product > a:first-child { display: block; overflow: hidden; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0 20px; margin: 0 0 6px; font-size: 16px; font-weight: 700; line-height: 1.35; letter-spacing: -.01em; color: var(--nv-ink); }
.woocommerce ul.products li.product .price { display: block; padding: 0 20px; margin: 0 0 14px; color: var(--novask-accent); font-size: 17px; font-weight: 800; }
.woocommerce ul.products li.product .price del { color: #a9a9bd; font-weight: 500; font-size: 14px; margin-right: 6px; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .star-rating { margin: 0 20px 8px; font-size: 13px; }
.woocommerce ul.products li.product .button { margin: auto 20px 0; text-align: center; padding: 12px 16px; border-radius: 12px; background: var(--nv-ink); color: #fff; font-size: 14px; font-weight: 600; transition: background .2s, transform .2s; }
.woocommerce ul.products li.product .button:hover { background: var(--novask-accent); }
.woocommerce ul.products li.product .added_to_cart { display: block; margin: 8px 20px 0; text-align: center; font-size: 13px; font-weight: 600; }
.woocommerce span.onsale, .woocommerce ul.products li.product .onsale { position: absolute; top: 14px; left: 14px; right: auto; min-width: 0; min-height: 0; margin: 0; padding: 6px 12px; border-radius: 30px; background: var(--novask-accent); color: #fff; font-size: 12px; font-weight: 800; line-height: 1.2; z-index: 3; box-shadow: 0 6px 16px rgba(255,90,95,.4); }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; gap: 8px; justify-content: center; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { min-width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border-radius: 12px; background: #fff; box-shadow: var(--nv-shadow); font-weight: 600; color: var(--nv-ink); }
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--nv-ink); color: #fff; }
.woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--novask-accent); color: #fff; }

/* single product */
.woocommerce div.product { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.woocommerce div.product > * { grid-column: 1 / -1; }
.woocommerce div.product div.images, .woocommerce div.product div.summary, .woocommerce-page div.product div.images, .woocommerce-page div.product div.summary { float: none !important; width: 100% !important; margin: 0 !important; grid-column: auto; }
.woocommerce div.product div.images { position: relative; padding: 18px; background: #fff; border-radius: 22px; box-shadow: var(--nv-shadow); }
.woocommerce div.product div.images img { border-radius: 14px; }
.woocommerce div.product div.images .flex-control-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.woocommerce div.product div.images .flex-control-thumbs li { width: auto; float: none; }
.woocommerce div.product div.images .flex-control-thumbs img { opacity: .55; border-radius: 10px; transition: opacity .2s; cursor: pointer; }
.woocommerce div.product div.images .flex-control-thumbs img.flex-active, .woocommerce div.product div.images .flex-control-thumbs img:hover { opacity: 1; }
.woocommerce div.product div.summary { padding: 8px 0; }
.woocommerce div.product .product_title { font-size: 38px; font-weight: 800; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 14px; }
.woocommerce div.product p.price, .woocommerce div.product span.price { font-size: 30px; font-weight: 800; color: var(--novask-accent); margin-bottom: 18px; }
.woocommerce div.product p.price del { font-size: 20px; color: #a9a9bd; font-weight: 500; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product .woocommerce-product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--nv-muted); font-size: 16px; line-height: 1.75; margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--nv-line); }
.woocommerce div.product form.cart { display: flex; align-items: stretch; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.woocommerce div.product form.cart .variations { width: 100%; margin-bottom: 8px; border: 0; }
.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th { text-align: left; display: block; padding: 0 0 8px; border: 0; background: none; }
.woocommerce div.product form.cart .variations label { font-weight: 700; font-size: 14px; color: var(--nv-ink); }
.woocommerce div.product form.cart .variations select { width: 100%; }
.woocommerce div.product form.cart .single_variation_wrap { width: 100%; }
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart { display: flex; gap: 14px; flex-wrap: wrap; }
.woocommerce .quantity .qty { width: 84px; height: 54px; text-align: center; border-radius: 12px; font-weight: 700; padding: 0 8px; }
.woocommerce div.product form.cart .single_add_to_cart_button { flex: 1; min-width: 190px; height: 54px; border-radius: 14px; background: var(--novask-accent); font-size: 16px; font-weight: 700; box-shadow: 0 12px 28px rgba(255,90,95,.35); transition: transform .2s, box-shadow .2s, background .2s; }
.woocommerce div.product form.cart .single_add_to_cart_button:hover { background: var(--nv-ink); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(20,20,43,.3); }
.woocommerce div.product .product_meta { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--nv-muted); padding-top: 22px; border-top: 1px solid var(--nv-line); }
.woocommerce div.product .product_meta a { font-weight: 600; color: var(--nv-ink); }
.woocommerce div.product .product_meta a:hover { color: var(--novask-accent); }
.woocommerce div.product .onsale { top: 30px; left: 30px; }

/* tabs */
.woocommerce div.product .woocommerce-tabs, .woocommerce-page div.product .woocommerce-tabs { width: 100%; margin-top: 24px; padding: 8px 40px 40px; background: #fff; border-radius: 22px; box-shadow: var(--nv-shadow); }
.woocommerce div.product .woocommerce-tabs ul.tabs { display: flex; gap: 8px; padding: 18px 0 0; margin: 0 0 28px; border-bottom: 1px solid var(--nv-line); overflow: visible; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before, .woocommerce div.product .woocommerce-tabs ul.tabs::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: none; border: 0; border-radius: 0; margin: 0; padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 14px 20px; font-weight: 700; font-size: 15px; color: var(--nv-muted); border-bottom: 3px solid transparent; margin-bottom: -1px; display: block; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--nv-ink); border-bottom-color: var(--novask-accent); }
.woocommerce div.product .woocommerce-tabs .panel h2 { font-size: 24px; font-weight: 800; margin-bottom: 18px; }
.woocommerce #reviews #comments ol.commentlist { padding: 0; }
.woocommerce #reviews #comments ol.commentlist li { list-style: none; margin-bottom: 16px; }
.woocommerce #reviews #comments ol.commentlist li img.avatar { position: static; float: left; width: 50px; height: 50px; border-radius: 50%; margin-right: 16px; padding: 0; border: 0; background: none; }
.woocommerce #reviews #comments ol.commentlist li .comment-text { margin: 0 0 0 66px; border: 0; padding: 18px 22px; background: var(--nv-soft); border-radius: 14px; }
.woocommerce #review_form #respond .comment-form-rating label { display: block; }
.woocommerce table.shop_attributes { border: 0; }
.woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td { border: 0; border-bottom: 1px solid var(--nv-line); padding: 14px 8px; background: none; font-style: normal; }

/* related / upsells / cross-sells */
.woocommerce .related.products, .woocommerce .up-sells.products, .woocommerce .cross-sells { margin-top: 56px; }
.woocommerce .related.products > h2, .woocommerce .up-sells.products > h2, .woocommerce .cross-sells > h2 { position: relative; font-size: 30px; font-weight: 800; letter-spacing: -.03em; margin: 0 0 28px; padding-left: 18px; }
.woocommerce .related.products > h2::before, .woocommerce .up-sells.products > h2::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 5px; border-radius: 5px; background: linear-gradient(180deg, #6c5ce7, var(--novask-accent)); }

/* cart / checkout / notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error { border: 0; border-radius: 14px; background: #fff; box-shadow: var(--nv-shadow); border-left: 4px solid var(--novask-accent); padding: 18px 22px 18px 54px; }
.woocommerce-message::before, .woocommerce-info::before { top: 18px; color: var(--novask-accent); }
.woocommerce-cart table.cart, .woocommerce table.shop_table { border: 0; border-radius: 18px; overflow: hidden; background: #fff; box-shadow: var(--nv-shadow); border-collapse: separate; }
.woocommerce table.shop_table th { background: var(--nv-soft); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--nv-muted); }
.woocommerce table.shop_table td { border-color: var(--nv-line); }
.woocommerce table.shop_table td.product-thumbnail img { width: 72px; border-radius: 10px; }
.woocommerce .cart_totals, .woocommerce-checkout #order_review { background: #fff; padding: 28px; border-radius: 18px; box-shadow: var(--nv-shadow); }
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce #place_order { border-radius: 14px; padding: 16px 26px; font-weight: 700; background: var(--novask-accent); }
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce #place_order:hover { background: var(--nv-ink); }
.woocommerce-checkout .col2-set, .woocommerce-checkout #customer_details { background: #fff; padding: 28px; border-radius: 18px; box-shadow: var(--nv-shadow); }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
	.woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.novask-sidebar { flex-basis: 280px; }
}
@media (max-width: 900px) {
	.novask-layout-with-sidebar { flex-direction: column; }
	.novask-sidebar { flex: 1 1 auto; width: 100%; position: static; }
	.novask-post-grid.novask-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.woocommerce div.product { grid-template-columns: 1fr; gap: 28px; }
	.woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.blog .novask-post-grid > .novask-card:first-child, .home .novask-post-grid > .novask-card:first-child { flex-direction: column; }
	.blog .novask-post-grid > .novask-card:first-child .novask-card-media, .home .novask-post-grid > .novask-card:first-child .novask-card-media { flex: none; min-height: 0; aspect-ratio: 16 / 10; }
}
@media (max-width: 640px) {
	.novask-post-grid.novask-cols-2, .novask-post-grid.novask-cols-3 { grid-template-columns: 1fr; }
	.novask-single, .novask-comments-area { padding: 26px 22px; }
	.novask-single .entry-content { font-size: 17px; }
	.novask-authorbox { flex-direction: column; text-align: center; }
	.post-navigation .nav-links { grid-template-columns: 1fr; }
	.woocommerce div.product .woocommerce-tabs { padding: 4px 20px 26px; }
	.woocommerce div.product .woocommerce-tabs ul.tabs { overflow-x: auto; }
	.woocommerce ul.products { gap: 14px; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product .price { padding: 0 14px; font-size: 14px; }
	.woocommerce ul.products li.product .button { margin: auto 14px 0; padding: 10px; }
	.novask-hero-band { padding: 52px 0 46px; }
}

.novask-footer-brand { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: 56px 20px 40px; }
.novask-footer-logo { font-size: 26px; font-weight: 800; letter-spacing: -.03em; color: #fff !important; }
.novask-footer-brand p { margin: 8px 0 0; max-width: 420px; }
.novask-footer-links { display: flex; gap: 26px; flex-wrap: wrap; font-weight: 500; }

/* ---------- mobile header + woo grid hardening ---------- */
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce-page[class*=columns-] ul.products li.product, .woocommerce[class*=columns-] ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; }
.woocommerce ul.products li.product .button { white-space: normal; }
.woocommerce ul.products li.product .star-rating { float: none; }
.novask-menu-toggle { position: relative; width: 44px; height: 44px; padding: 0 !important; border: 0; border-radius: 12px; background: var(--nv-soft); color: transparent !important; font-size: 0; }
.novask-menu-toggle::before { content: ""; position: absolute; left: 13px; top: 15px; width: 18px; height: 2px; border-radius: 2px; background: var(--nv-ink); box-shadow: 0 6px 0 var(--nv-ink), 0 12px 0 var(--nv-ink); }
@media (max-width: 782px) {
	.novask-header-inner { min-height: 64px; }
	.novask-header-left { flex: 1; justify-content: space-between; }
	.novask-header-right { display: flex; margin-left: 12px; }
	.novask-primary-nav { order: 3; }
	.woocommerce-page .novask-woocommerce-wrap { padding-top: 24px; }
	.woocommerce .woocommerce-ordering select { width: 100%; }
}

/* ---------- generic pages / cart / checkout / account ---------- */
.page .novask-content-area { padding-top: 0; }
.novask-page-body { margin-top: 44px; }
.page .novask-entry { background: #fff; border-radius: 22px; padding: 40px 44px; box-shadow: var(--nv-shadow); margin-bottom: 40px; }
.page .novask-entry .entry-content { font-size: 17px; line-height: 1.8; }
.is-wide .novask-main { flex: 1 1 100%; max-width: 100%; }
.woocommerce-cart .novask-entry, .woocommerce-checkout .novask-entry, .woocommerce-account .novask-entry { background: transparent; box-shadow: none; padding: 0; }
.wc-block-components-sidebar-layout { display: flex; flex-wrap: nowrap; gap: 32px; align-items: flex-start; }
.wc-block-components-sidebar-layout .wc-block-components-main { flex: 1 1 0; min-width: 0; width: auto !important; }
.wc-block-components-sidebar-layout .wc-block-components-sidebar { flex: 0 0 380px; width: 380px !important; }
@media (max-width: 900px) { .wc-block-components-sidebar-layout { flex-direction: column; } .wc-block-components-sidebar-layout .wc-block-components-sidebar { flex: none; width: 100% !important; } }
.wc-block-cart, .wc-block-checkout { font-family: inherit; }
.wc-block-cart__main, .wc-block-checkout__main { background: #fff; border-radius: 20px; padding: 28px 30px; box-shadow: var(--nv-shadow); }
.wc-block-cart__sidebar, .wc-block-checkout__sidebar { background: #fff; border-radius: 20px; padding: 26px 28px !important; box-shadow: var(--nv-shadow); align-self: start; }
.wc-block-cart-items th, .wc-block-components-totals-item__label, .wc-block-cart__totals-title { font-size: 12.5px !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: .08em; color: var(--nv-muted) !important; }
.wc-block-cart-items__row { border-color: var(--nv-line) !important; }
.wc-block-cart-item__image img { border-radius: 12px; width: 80px; }
.wc-block-components-product-name { color: var(--nv-ink) !important; font-weight: 700; font-size: 16px; }
.wc-block-components-product-metadata__description { color: var(--nv-muted); }
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value { font-size: 24px; font-weight: 800; color: var(--novask-accent); }
.wc-block-components-button:not(.is-link), .wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button { background: var(--novask-accent) !important; color: #fff !important; border: 0 !important; border-radius: 14px !important; padding: 16px 26px !important; font-weight: 700 !important; box-shadow: 0 12px 28px rgba(255,90,95,.32); transition: transform .2s, background .2s; }
.wc-block-components-button:not(.is-link):hover { background: var(--nv-ink) !important; transform: translateY(-2px); }
.wc-block-components-quantity-selector { border-radius: 12px !important; border-color: var(--nv-line) !important; }
.wc-block-components-text-input input, .wc-block-components-select .wc-block-components-select__select, .wc-block-components-textarea, .wc-blocks-components-select__select { border-radius: 12px !important; border: 1.5px solid var(--nv-line) !important; }
.wc-block-components-checkout-step__title, .wc-block-components-title { font-size: 20px !important; font-weight: 800 !important; letter-spacing: -.02em; }
.wc-block-components-panel__button { font-weight: 600; }
.wc-block-components-order-summary { background: none; }
.wc-block-components-radio-control__option { border-radius: 12px !important; }
body.logged-in.woocommerce-account .woocommerce { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 32px; align-items: start; }
body.logged-in.woocommerce-account .woocommerce-notices-wrapper { grid-column: 1 / -1; }
.woocommerce-account .woocommerce-notices-wrapper { margin-bottom: 20px; }
body:not(.logged-in).woocommerce-account .woocommerce { max-width: 520px; margin: 0 auto; }
body:not(.logged-in).woocommerce-account .u-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: none; }
body:not(.logged-in).woocommerce-account .u-columns .u-column1, body:not(.logged-in).woocommerce-account .u-columns .u-column2 { float: none; width: auto; }
body:not(.logged-in).woocommerce-account .woocommerce:has(.u-columns) { max-width: 940px; }
.woocommerce-account .woocommerce h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 18px; }
.woocommerce-account form .form-row { margin-bottom: 16px; }
.woocommerce-account form .form-row label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--nv-ink); }
.woocommerce-account form .woocommerce-form-login__submit { width: 100%; margin-top: 6px; }
.woocommerce-account .lost_password { margin: 14px 0 0; }
.woocommerce-account .woocommerce-MyAccount-navigation, .woocommerce-account .woocommerce-MyAccount-content { float: none; width: auto; background: #fff; border-radius: 20px; padding: 24px 28px; box-shadow: var(--nv-shadow); }
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation li a { display: block; padding: 11px 14px; border-radius: 10px; font-weight: 600; color: var(--nv-ink); }
.woocommerce-MyAccount-navigation li.is-active a, .woocommerce-MyAccount-navigation li a:hover { background: var(--nv-soft); color: var(--novask-accent); }
.woocommerce-form-login, .woocommerce-form-register { background: #fff; border-radius: 20px; padding: 28px !important; box-shadow: var(--nv-shadow); border: 0 !important; }
@media (max-width: 782px) { body.logged-in.woocommerce-account .woocommerce, body:not(.logged-in).woocommerce-account .u-columns { grid-template-columns: 1fr; } .wc-block-cart__main, .wc-block-checkout__main, .wc-block-cart__sidebar { padding: 20px; } .page .novask-entry { padding: 24px 20px; } }

.novask-header-cta { padding: 11px 22px; border-radius: 12px; font-size: 14.5px; line-height: 1.2; white-space: nowrap; box-shadow: 0 8px 20px rgba(255,90,95,.28); }
@media (max-width: 782px) { .novask-header-cta { padding: 9px 14px; font-size: 13px; } }
.woocommerce-account .woocommerce::before, .woocommerce-account .woocommerce::after { display: none !important; content: none !important; }

/* ---------- brand lock-up (animated) ---------- */
.novask-site-branding { min-width: 0; }
.novask-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; line-height: 1; }
.novask-brand-mark { display: block; width: auto; height: 40px; overflow: visible; filter: drop-shadow(0 6px 12px rgba(34,198,255,.32)); }
.nb-svg { width: 40px; }
.nb-u { transform-box: fill-box; transform-origin: 50% 100%; animation: nbSquish 6.5s ease-in-out infinite; }
.nb-spark { transform-box: fill-box; transform-origin: 50% 50%; animation: nbDrop 6.5s cubic-bezier(.5,0,.75,1) infinite; }
@keyframes nbDrop {
	0% { transform: translateY(-30px) scale(.3) rotate(-90deg); opacity: 0; }
	4% { opacity: 1; }
	14% { transform: translateY(2px) scale(1) rotate(0); }
	18% { transform: translateY(-3px) scale(1.05); }
	22% { transform: translateY(0) scale(1); }
	30% { transform: translateY(0) scale(1.18) rotate(20deg); }
	40% { transform: translateY(0) scale(1) rotate(0); }
	55% { transform: translateY(0) scale(1.18) rotate(-20deg); }
	65%, 84% { transform: translateY(0) scale(1) rotate(0); opacity: 1; }
	94% { transform: translateY(-22px) scale(.4) rotate(90deg); opacity: 0; }
	100% { transform: translateY(-30px) scale(.3) rotate(-90deg); opacity: 0; }
}
@keyframes nbSquish { 0%, 12%, 26%, 100% { transform: scale(1, 1); } 15% { transform: scale(1.04, .93); } 20% { transform: scale(.98, 1.03); } }
.novask-brand:hover .nb-u { animation-duration: 1.4s; }
.novask-wordmark { display: inline-flex; font-size: 24px; font-weight: 800; letter-spacing: -.01em; font-family: "Inter", sans-serif; }
.novask-wordmark .wl { display: inline-block; text-transform: uppercase; text-align: center; will-change: transform; }
.novask-wordmark .wm-a { color: var(--nv-ink); }
.novask-wordmark .wm-b { background: linear-gradient(135deg, #00d9a6 0%, #22c6ff 50%, #7a5cf0 100%); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: nbFlow 5s ease-in-out infinite; }
@keyframes nbFlow { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.novask-wordmark .wl.is-scr { color: #22c6ff; -webkit-text-fill-color: #22c6ff; background: none; }
.novask-wordmark .wl.is-wave { animation: nbWave .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes nbWave { 0% { transform: translateY(0); } 40% { transform: translateY(-5px); } 100% { transform: translateY(0); } }
.novask-brand.is-footer .novask-brand-mark { height: 46px; }
.novask-brand.is-footer .nb-svg { width: 46px; }
.novask-brand.is-footer .wm-a { color: #fff; }
.novask-brand.is-footer .novask-wordmark { font-size: 28px; }
.novask-header .custom-logo-link { display: none; }
@media (prefers-reduced-motion: reduce) { .nb-u, .nb-spark, .novask-wordmark .wm-b, .novask-wordmark .wl.is-wave { animation: none !important; } .nb-spark { opacity: 1; } }
@media (max-width: 782px) { .novask-brand-mark { height: 32px; } .nb-svg { width: 32px; } .novask-wordmark { font-size: 20px; } .novask-brand { gap: 9px; } }
@media (max-width: 400px) { .novask-wordmark { font-size: 18px; } }
@media (max-width: 480px) {
	.novask-header-left { gap: 6px; }
	.novask-brand-mark { height: 28px; } .nb-svg { width: 28px; }
	.novask-wordmark { font-size: 17px; }
	.novask-menu-toggle { width: 38px; height: 38px; }
	.novask-menu-toggle::before { left: 10px; top: 13px; }
	.novask-header-right { gap: 8px; margin-left: 6px; }
	.novask-cart-contents { width: 38px; height: 38px; }
	.novask-header-cta { padding: 9px 12px; font-size: 12.5px; }
}

/* ---------- back to top ---------- */
.novask-btt { position: fixed; right: 26px; bottom: 26px; z-index: 990; width: 54px; height: 54px; padding: 0 !important; border: 0; border-radius: 50%; background: var(--nv-ink); color: #fff !important; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 32px rgba(20,20,43,.32); opacity: 0; transform: translateY(24px) scale(.8); pointer-events: none; transition: opacity .35s ease, transform .45s cubic-bezier(.34,1.56,.64,1), background .25s, box-shadow .25s; }
.novask-btt[hidden] { display: flex; }
.novask-btt.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.novask-btt:hover { background: linear-gradient(135deg, #00d9a6, #22c6ff 50%, #7a5cf0); box-shadow: 0 16px 36px rgba(34,198,255,.45); transform: translateY(-4px); }
.novask-btt-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.novask-btt-ring circle { fill: none; stroke-width: 3; }
.novask-btt-ring .bg { stroke: rgba(255,255,255,.16); }
.novask-btt-ring .fg { stroke: #22c6ff; stroke-linecap: round; stroke-dasharray: 131.95; stroke-dashoffset: calc(131.95 - 131.95 * var(--p, 0)); transition: stroke-dashoffset .12s linear; }
.novask-btt:hover .novask-btt-ring .fg { stroke: #fff; }
.novask-btt-arrow { width: 22px; height: 22px; position: relative; transition: transform .25s; }
.novask-btt:hover .novask-btt-arrow { transform: translateY(-3px); }
.novask-btt:focus-visible { outline: 3px solid #22c6ff; outline-offset: 3px; }
body:has(.ultrakit-stt-wrapper) .novask-btt { display: none; }
@media (max-width: 600px) { .novask-btt { right: 16px; bottom: 16px; width: 48px; height: 48px; } }
@media (prefers-reduced-motion: reduce) { .novask-btt { transition: opacity .2s; } }

/* ---------- transparent overlay header (front page + Widgets) ---------- */
.novask-header { transition: background .35s ease, box-shadow .35s ease, border-color .35s ease; }
body.novask-header-overlay .novask-header { position: fixed; left: 0; right: 0; top: 0; }
body.admin-bar.novask-header-overlay .novask-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar.novask-header-overlay .novask-header { top: 46px; } }
@media (max-width: 600px) { body.admin-bar.novask-header-overlay .novask-header { top: 0; } }
/* transparent state: at the top, and no menu / mobile drawer open */
body.novask-header-overlay:not(.novask-header-stuck) .novask-header:not(:has(.is-open)):not(:has(.novask-primary-nav.is-open)) { background: transparent; box-shadow: none; }
body.novask-header-overlay:not(.novask-header-stuck) .novask-header:not(:has(.is-open)):not(:has(.novask-primary-nav.is-open))::before { opacity: 0; }
body.novask-header-overlay:not(.novask-header-stuck) .novask-header:not(:has(.is-open)):not(:has(.novask-primary-nav.is-open)) .novask-primary-nav > ul > li > a { color: #fff; }
body.novask-header-overlay:not(.novask-header-stuck) .novask-header:not(:has(.is-open)):not(:has(.novask-primary-nav.is-open)) .wm-a { color: #fff; }
body.novask-header-overlay:not(.novask-header-stuck) .novask-header:not(:has(.is-open)):not(:has(.novask-primary-nav.is-open)) .novask-cart-contents { background: rgba(255,255,255,.14); color: #fff; }
body.novask-header-overlay:not(.novask-header-stuck) .novask-header:not(:has(.is-open)):not(:has(.novask-primary-nav.is-open)) .novask-cart-count { box-shadow: 0 0 0 2px rgba(20,20,43,.6); }
body.novask-header-overlay:not(.novask-header-stuck) .novask-header:not(:has(.is-open)):not(:has(.novask-primary-nav.is-open)) .novask-menu-toggle { background: rgba(255,255,255,.14); }
body.novask-header-overlay:not(.novask-header-stuck) .novask-header:not(:has(.is-open)):not(:has(.novask-primary-nav.is-open)) .novask-menu-toggle::before { background: #fff; box-shadow: 0 6px 0 #fff, 0 12px 0 #fff; }
body.novask-header-overlay:not(.novask-header-stuck) .novask-header:not(:has(.is-open)):not(:has(.novask-primary-nav.is-open)) .novask-brand-mark { filter: drop-shadow(0 4px 14px rgba(34,198,255,.55)); }

/* ---------- mobile drawer menu (was overlapping the header row) ---------- */
@media (max-width: 782px) {
	.novask-header-inner { flex-wrap: wrap; align-content: flex-start; min-height: 64px; }
	.novask-header-left { min-height: 64px; }
	.novask-header-right { min-height: 64px; }
	.novask-primary-nav { flex: 0 0 100%; width: 100%; order: 3; }
	.novask-primary-nav.is-open { padding-bottom: 14px; }
	.novask-primary-nav ul { gap: 0; }
	.novask-primary-nav > ul > li > a { height: auto; line-height: 1.4; padding: 15px 4px; border-top: 1px solid var(--nv-line); font-size: 16px; }
}
@media (max-width: 900px) {
	.novask-layout-with-sidebar { align-items: stretch; }
	.novask-layout-with-sidebar > .novask-main, .is-wide .novask-main { flex: 0 0 auto; width: 100%; max-width: 100%; }
}

/* ---------- header hairline (translucent, gradient) ---------- */
.novask-header { border-bottom: 0; }
.novask-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; pointer-events: none; background: linear-gradient(90deg, rgba(20,20,43,.05), rgba(34,198,255,.45) 30%, rgba(122,92,240,.45) 70%, rgba(20,20,43,.05)); opacity: .9; transition: opacity .35s; }
body.novask-header-overlay:not(.novask-header-stuck) .novask-header:not(:has(.is-open)):not(:has(.novask-primary-nav.is-open))::after { background: linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.28) 30%, rgba(255,255,255,.28) 70%, rgba(255,255,255,.04)); }

/* ---------- CTA: gradient button with a crystal shine that sweeps constantly ---------- */
.novask-header-cta, .novask-header-cta:hover, .novask-header-cta:focus { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(120deg, #00d9a6 0%, #22c6ff 48%, #7a5cf0 100%); background-size: 160% 100%; color: #fff !important; font-weight: 700; letter-spacing: .01em; border: 0; box-shadow: 0 10px 26px rgba(34,198,255,.38), inset 0 1px 0 rgba(255,255,255,.4); transition: transform .25s, box-shadow .25s, background-position .6s; }
.novask-header-cta:hover { transform: translateY(-2px); background-position: 100% 0; box-shadow: 0 16px 34px rgba(122,92,240,.45), inset 0 1px 0 rgba(255,255,255,.5); }
.novask-header-cta::before { content: ""; position: absolute; top: -20%; bottom: -20%; left: 0; width: 46%; z-index: 1; pointer-events: none; background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.15) 30%, rgba(255,255,255,.75) 50%, rgba(255,255,255,.15) 70%, transparent 100%); transform: translateX(-160%) skewX(-22deg); animation: nbShine 2.8s cubic-bezier(.4,0,.2,1) infinite; }
@keyframes nbShine { 0% { transform: translateX(-160%) skewX(-22deg); } 55%, 100% { transform: translateX(340%) skewX(-22deg); } }
@media (prefers-reduced-motion: reduce) { .novask-header-cta::before { animation: none; opacity: 0; } }

/* ---------- taller header + large CTA ---------- */
.novask-header-inner { min-height: 92px; }
.novask-primary-nav > ul > li > a { height: 92px; line-height: 92px; font-size: 15.5px; }
.novask-brand-mark { height: 44px; } .nb-svg { width: 44px; }
.novask-wordmark { font-size: 27px; }
.novask-header .novask-header-cta { padding: 16px 34px; font-size: 16.5px; border-radius: 14px; }
@media (max-width: 782px) {
	.novask-header-inner { min-height: 72px; }
	.novask-header-left, .novask-header-right { min-height: 72px; }
	.novask-primary-nav > ul > li > a { height: auto; line-height: 1.4; }
	.novask-brand-mark { height: 34px; } .nb-svg { width: 34px; }
	.novask-wordmark { font-size: 21px; }
	.novask-header .novask-header-cta { padding: 12px 20px; font-size: 14.5px; }
}
@media (max-width: 480px) {
	.novask-brand-mark { height: 30px; } .nb-svg { width: 30px; }
	.novask-wordmark { font-size: 18px; }
	.novask-header .novask-header-cta { padding: 11px 15px; font-size: 13.5px; }
}

/* ---------- hero spacing on overlay-header pages: equal space above (below the header) and below ---------- */
:root { --nv-header-h: 92px; --hero-gap: 100px; }
@media (max-width: 782px) { :root { --nv-header-h: 72px; --hero-gap: 64px; } }
body.novask-header-overlay .uk-hero-ov { padding-top: calc(var(--hero-gap) + var(--nv-header-h)) !important; padding-bottom: var(--hero-gap) !important; }
body.admin-bar.novask-header-overlay .uk-hero-ov { padding-top: calc(var(--hero-gap) + var(--nv-header-h)) !important; }

/* ---------- capsule CTA ---------- */
.novask-header .novask-header-cta, .novask-header .novask-header-cta:hover { padding: 18px 46px; font-size: 16.5px; border-radius: 999px; }
@media (max-width: 782px) { .novask-header .novask-header-cta, .novask-header .novask-header-cta:hover { padding: 13px 26px; font-size: 14.5px; } }
@media (max-width: 480px) { .novask-header .novask-header-cta, .novask-header .novask-header-cta:hover { padding: 12px 20px; font-size: 13.5px; } }
