/* ===== BASE / TYPOGRAPHY ===== */
.hp-tagline {
	text-align: center; color: rgba(255,255,255,0.85);
	font-size: 1.05rem; margin: -6px 0 18px;
	font-family: bariol_regular, sans-serif;
}

/* ===== BREADCRUMBS ===== */
.ns-breadcrumb {
	display: flex; align-items: center; flex-wrap: wrap;
	gap: 4px 8px; font-size: 0.82rem; color: #9e8faf;
	padding: 10px 0 12px; border-bottom: 1px solid #ede7f6;
	margin-bottom: 0;
}
.ns-breadcrumb a { color: #622d8e; text-decoration: none; transition: color 0.15s; }
.ns-breadcrumb a:hover { color: #4e2070; text-decoration: underline; }
.ns-breadcrumb-sep { color: #d4c8eb; }

/* ===== HERO SECTION (root /produkty only) ===== */
.ns-hero {
	background: linear-gradient(135deg, #622d8e 0%, #8b45b5 100%);
	border-radius: 18px; padding: 48px 40px 36px;
	margin-bottom: 32px; text-align: center; overflow: hidden;
	position: relative;
}
.ns-hero::before {
	content: ''; position: absolute; inset: 0;
	background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.08) 0%, transparent 60%);
	pointer-events: none;
}
.ns-hero-headline {
	font-family: bariol_bold, sans-serif;
	font-size: 2.1rem; color: #fff;
	margin: 0 0 10px; line-height: 1.2;
}
.ns-hero-sub {
	font-size: 1.05rem; color: rgba(255,255,255,0.82);
	margin: 0 0 30px; font-family: bariol_regular, sans-serif;
}
.ns-hero-cards {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 12px; max-width: 700px; margin: 0 auto;
}
.ns-hero-card {
	display: flex; align-items: center; gap: 10px;
	background: rgba(255,255,255,0.13);
	border: 1.5px solid rgba(255,255,255,0.22);
	border-radius: 12px; padding: 13px 16px;
	text-decoration: none !important; color: #fff;
	font-family: bariol_bold, sans-serif; font-size: 0.9rem;
	transition: background 0.18s, border-color 0.18s, transform 0.15s;
	backdrop-filter: blur(4px);
}
.ns-hero-card:hover {
	background: rgba(255,255,255,0.22);
	border-color: rgba(255,255,255,0.4);
	transform: translateY(-2px);
	color: #fff;
}
.ns-hero-card-icon { font-size: 1.35rem; flex-shrink: 0; line-height: 1; }
.ns-hero-card-text { text-align: left; line-height: 1.25; }

@media (max-width: 700px) {
	.ns-hero { padding: 32px 20px 28px; border-radius: 12px; }
	.ns-hero-headline { font-size: 1.5rem; }
	.ns-hero-sub { font-size: 0.9rem; margin-bottom: 20px; }
	.ns-hero-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 420px) {
	.ns-hero-cards { grid-template-columns: repeat(2, 1fr); }
	.ns-hero-card { padding: 10px 12px; font-size: 0.83rem; }
}

/* ===== SORT PILLS ===== */
.ns-sort-bar {
	display: flex; align-items: center; justify-content: space-between;
	gap: 10px; margin-bottom: 16px; flex-wrap: wrap;
}
.ns-sort-pills {
	display: flex; align-items: center; gap: 6px;
	overflow-x: auto; padding-bottom: 2px;
	scrollbar-width: none; flex: 1; min-width: 0;
}
.ns-sort-pills::-webkit-scrollbar { display: none; }
.ns-sort-pill {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 7px 16px; border-radius: 24px; font-size: 0.82rem;
	border: 1.5px solid #ede7f6; background: #fff; color: #4a3860;
	cursor: pointer; white-space: nowrap; flex-shrink: 0;
	font-family: bariol_regular, sans-serif;
	transition: border-color 0.15s, background 0.15s, color 0.15s;
	text-decoration: none !important;
}
.ns-sort-pill:hover { border-color: #c49fdf; color: #622d8e; background: #f9f5ff; }
.ns-sort-pill.is-active {
	background: #622d8e; border-color: #622d8e; color: #fff;
	font-family: bariol_bold, sans-serif;
}
.ns-sort-pill.is-active:hover { background: #4e2070; border-color: #4e2070; }
.ns-result-count {
	font-size: 0.85rem; color: #9e8faf;
	white-space: nowrap; flex-shrink: 0;
}

/* ===== ACTIVE FILTER CHIPS ===== */
.ns-active-chips {
	display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
	margin-bottom: 14px;
}
.ns-chip {
	display: inline-flex; align-items: center; gap: 5px;
	background: #f0e8f8; border: 1.5px solid #c49fdf;
	color: #622d8e; font-size: 0.78rem; padding: 4px 11px 4px 13px;
	border-radius: 20px; text-decoration: none !important;
	font-family: bariol_regular, sans-serif;
	transition: background 0.15s, border-color 0.15s;
}
.ns-chip:hover { background: #e2d5f5; border-color: #a97fcf; }
.ns-chip-x { font-size: 0.85rem; opacity: 0.7; }

/* ===== MAIN LAYOUT ===== */
.ns-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 28px; align-items: start;
}

/* ===== SIDEBAR ===== */
.ns-sidebar {
	position: sticky; top: 16px;
	background: #fff; border: 1px solid #ede7f6;
	border-radius: 14px; overflow: hidden;
}
.ns-sidebar-head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 15px 18px 13px; border-bottom: 1px solid #ede7f6;
	background: #f9f5ff;
}
.ns-sidebar-head-title {
	font-family: bariol_bold, sans-serif;
	font-size: 0.97rem; color: #2d1a42; margin: 0;
}
.ns-sidebar-reset {
	font-size: 0.78rem; color: #622d8e;
	text-decoration: underline; transition: color 0.15s;
}
.ns-sidebar-reset:hover { color: #4e2070; }
.ns-filter-sec {
	border-bottom: 1px solid #f0eaf8; padding: 13px 18px;
}
.ns-filter-sec:last-child { border-bottom: none; }
.ns-filter-sec-title {
	font-family: bariol_bold, sans-serif; font-size: 0.75rem;
	text-transform: uppercase; letter-spacing: 0.06em; color: #b0a0c0;
	margin: 0 0 9px;
}
.ns-cat-link {
	display: flex; align-items: center; justify-content: space-between;
	padding: 6px 0; font-size: 0.86rem; color: #4a3860;
	text-decoration: none !important; transition: color 0.12s; gap: 6px;
}
.ns-cat-link:hover, .ns-cat-link.is-active { color: #622d8e; }
.ns-cat-link.is-active { font-family: bariol_bold, sans-serif; }
.ns-cat-link-arrow { font-size: 0.72rem; color: #c9b8e0; margin-left: auto; }
.ns-cat-back { font-size: 0.8rem; color: #9e8faf; }
.ns-filter-option {
	display: flex; align-items: center; gap: 8px;
	padding: 5px 0; font-size: 0.85rem; color: #4a3860; cursor: pointer;
}
.ns-filter-option input[type="radio"],
.ns-filter-option input[type="checkbox"] {
	accent-color: #622d8e; width: 15px; height: 15px; flex-shrink: 0;
}
.ns-filter-count { margin-left: auto; font-size: 0.74rem; color: #c9b8e0; }
.ns-sale-label { font-family: bariol_bold, sans-serif; color: #c0392b; }
.ns-sale-label input { accent-color: #c0392b; }
.ns-price-row { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.ns-price-input {
	width: 72px; padding: 5px 8px; font-size: 0.82rem; color: #3d2b5a;
	border: 1.5px solid #e0d4f0; border-radius: 7px; outline: none;
	font-family: bariol_regular, sans-serif; transition: border-color 0.15s;
}
.ns-price-input:focus { border-color: #a97fcf; }
.ns-price-sep { font-size: 0.75rem; color: #c9b8e0; }
.ns-brand-search {
	width: 100%; padding: 5px 10px; font-size: 0.82rem; color: #3d2b5a;
	border: 1.5px solid #e0d4f0; border-radius: 7px; outline: none;
	font-family: bariol_regular, sans-serif; transition: border-color 0.15s;
	margin-bottom: 8px; box-sizing: border-box;
}
.ns-brand-search:focus { border-color: #a97fcf; }
.ns-brand-list { max-height: 190px; overflow-y: auto; }
.ns-brand-list::-webkit-scrollbar { width: 4px; }
.ns-brand-list::-webkit-scrollbar-thumb { background: #e0d4f0; border-radius: 4px; }
.ns-filter-soon { font-size: 0.75rem; color: #c9b8e0; margin: 4px 0 0; font-style: italic; }
.ns-problem-link {
	display: flex; align-items: center; gap: 7px;
	padding: 6px 0; font-size: 0.85rem; color: #4a3860;
	text-decoration: none !important; transition: color 0.12s;
}
.ns-problem-link:hover { color: #622d8e; }
.ns-problem-icon { font-size: 0.95rem; }
.ns-filter-submit {
	display: block; width: 100%; margin-top: 10px;
	background: #622d8e; color: #fff; border: none;
	border-radius: 8px; padding: 9px 0;
	font-family: bariol_bold, sans-serif; font-size: 0.9rem;
	cursor: pointer; transition: background 0.15s;
}
.ns-filter-submit:hover { background: #4e2070; }

/* ===== PRODUCT GRID ===== */
.ns-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.ns-card {
	background: #fff; border: 1px solid #ede7f6; border-radius: 12px;
	overflow: hidden; text-decoration: none !important;
	display: flex; flex-direction: column;
	transition: box-shadow 0.18s, border-color 0.18s, transform 0.15s;
}
.ns-card:hover {
	box-shadow: 0 6px 22px rgba(98,45,142,0.14);
	border-color: #c49fdf; transform: translateY(-3px);
}
.ns-card-img-wrap {
	height: 200px; background: #faf7ff;
	display: flex; align-items: center; justify-content: center;
	position: relative; overflow: hidden;
}
.ns-card-img-wrap img {
	width: 100%; height: 100%; object-fit: contain;
	display: block; padding: 10px; transition: transform 0.25s;
}
.ns-card:hover .ns-card-img-wrap img { transform: scale(1.04); }
.ns-card-badge {
	position: absolute; top: 8px; left: 8px;
	background: #e53e3e; color: #fff;
	font-family: bariol_bold, sans-serif; font-size: 0.72rem;
	padding: 3px 8px; border-radius: 12px; letter-spacing: 0.03em;
	line-height: 1.4;
}
.ns-card-partner {
	position: absolute; top: 8px; right: 8px;
	background: rgba(255,255,255,0.94); border: 1px solid #e8e0f3;
	border-radius: 5px; padding: 2px 7px;
	font-size: 0.67rem; font-family: bariol_bold, sans-serif;
	color: #622d8e; max-width: 85px;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ns-card-body {
	padding: 13px 15px 14px;
	display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.ns-card-brand {
	font-size: 0.7rem; color: #b0a0c0;
	text-transform: uppercase; letter-spacing: 0.05em;
}
.ns-card-name {
	font-family: bariol_bold, sans-serif; font-size: 0.88rem;
	color: #2d1a42; line-height: 1.3; margin: 0;
	display: -webkit-box; -webkit-line-clamp: 2;
	-webkit-box-orient: vertical; overflow: hidden;
}
.ns-card:hover .ns-card-name { color: #622d8e; }
.ns-card-for {
	font-size: 0.76rem; color: #9e8faf; font-style: italic;
	line-height: 1.4; overflow: hidden;
	white-space: nowrap; text-overflow: ellipsis;
}
.ns-card-rating {
	display: flex; align-items: center; gap: 2px; margin: 3px 0;
}
.ns-star { font-size: 0.72rem; line-height: 1; }
.ns-star-full { color: #f59e0b; }
.ns-star-empty { color: #e0d4f0; }
.ns-rating-val { font-size: 0.7rem; color: #9e8faf; margin-left: 3px; }
.ns-rating-count { font-size: 0.67rem; color: #c9b8e0; }
.ns-card-footer {
	display: flex; align-items: center; justify-content: space-between;
	margin-top: auto; padding-top: 10px; border-top: 1px solid #f5f0ff; gap: 8px;
}
.ns-card-price-wrap { display: flex; flex-direction: column; gap: 1px; }
.ns-card-price-prefix { font-size: 0.7rem; color: #9e8faf; }
.ns-card-price {
	font-family: bariol_bold, sans-serif; font-size: 0.95rem; color: #2d1a42;
}
.ns-card-orig-price {
	font-size: 0.73rem; color: #b0a0c0; text-decoration: line-through;
}
.ns-card-cta {
	background: #622d8e; color: #fff !important;
	font-family: bariol_bold, sans-serif; font-size: 0.75rem;
	padding: 6px 11px; border-radius: 6px;
	text-decoration: none !important; white-space: nowrap;
	transition: background 0.15s; flex-shrink: 0;
}
.ns-card:hover .ns-card-cta { background: #4e2070; }

/* ===== MOBILE FILTER BUTTON ===== */
.ns-mobile-filter-btn {
	display: none; align-items: center; gap: 7px;
	background: #622d8e; color: #fff; border: none;
	border-radius: 8px; padding: 9px 18px;
	font-family: bariol_bold, sans-serif; font-size: 0.9rem;
	cursor: pointer; transition: background 0.15s;
}
.ns-mobile-filter-btn:hover { background: #4e2070; }

/* ===== MOBILE DRAWER ===== */
.ns-overlay {
	display: none; position: fixed; inset: 0;
	background: rgba(0,0,0,0.48); z-index: 1000;
}
.ns-overlay.open { display: block; }
.ns-drawer {
	position: absolute; bottom: 0; left: 0; right: 0;
	background: #fff; border-radius: 18px 18px 0 0;
	max-height: 88vh; overflow-y: auto;
	padding: 20px 20px 36px;
}
.ns-drawer-head {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid #ede7f6;
}
.ns-drawer-close {
	background: none; border: none; font-size: 1.4rem;
	color: #9e8faf; cursor: pointer; padding: 0;
}

/* ===== EMPTY / COMING SOON ===== */
.ns-empty {
	text-align: center; padding: 56px 24px; color: #b0a0c0;
}
.ns-empty-icon { font-size: 3.2rem; margin-bottom: 16px; display: block; }
.ns-empty-title { font-family: bariol_bold, sans-serif; font-size: 1.1rem; color: #7a6a8e; margin: 0 0 8px; }
.ns-empty-text { font-size: 0.88rem; color: #b0a0c0; margin: 0 0 20px; line-height: 1.6; max-width: 340px; margin-left: auto; margin-right: auto; }
.ns-coming-soon {
	background: linear-gradient(135deg, #f9f5ff 0%, #fff0f6 100%);
	border: 1.5px dashed #dcc9f0; border-radius: 14px;
	padding: 40px 32px; text-align: center;
}
.ns-coming-soon-icon { font-size: 2.8rem; display: block; margin-bottom: 14px; }
.ns-coming-soon h3 { font-family: bariol_bold, sans-serif; font-size: 1.1rem; color: #3d2b5a; margin: 0 0 8px; }
.ns-coming-soon p { font-size: 0.88rem; color: #9e8faf; margin: 0; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
	.ns-layout { grid-template-columns: 240px 1fr; gap: 20px; }
}
@media (max-width: 900px) {
	.ns-layout { grid-template-columns: 1fr; }
	.ns-sidebar { display: none; }
	.ns-mobile-filter-btn { display: flex; }
	.ns-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 520px) {
	.ns-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.ns-card-img-wrap { height: 160px; }
	.ns-sort-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 380px) {
	.ns-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ===== QUICKFILTER PILLS ===== */
.ns-quick-filters {
	display: flex; gap: 6px; flex-wrap: wrap;
	margin-bottom: 14px;
}
.ns-qf-pill {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 5px 13px; border-radius: 20px; font-size: 0.78rem;
	background: #f5f0ff; border: 1.5px solid #dcc9f0;
	color: #622d8e; text-decoration: none !important;
	font-family: bariol_regular, sans-serif;
	transition: background 0.15s, border-color 0.15s;
	white-space: nowrap;
}
.ns-qf-pill:hover { background: #ede5f8; border-color: #c49fdf; }
.ns-qf-pill.is-active { background: #622d8e; border-color: #622d8e; color: #fff; }

/* ===== PRICE SLIDER ===== */
.ns-price-slider-wrap { margin: 10px 0 6px; position: relative; }
.ns-price-slider-track {
	position: relative; height: 4px; background: #e0d4f0;
	border-radius: 2px; margin: 16px 0 12px;
}
.ns-price-slider-fill {
	position: absolute; height: 100%;
	background: #622d8e; border-radius: 2px;
	pointer-events: none;
}
.ns-price-range {
	position: absolute; width: 100%; height: 4px; top: 0;
	-webkit-appearance: none; appearance: none;
	background: transparent; pointer-events: none; margin: 0;
}
.ns-price-range::-webkit-slider-thumb {
	-webkit-appearance: none; width: 17px; height: 17px;
	background: #622d8e; border: 2.5px solid #fff; border-radius: 50%;
	cursor: pointer; pointer-events: all;
	box-shadow: 0 1px 5px rgba(98,45,142,0.35);
}
.ns-price-range::-moz-range-thumb {
	width: 17px; height: 17px; background: #622d8e;
	border: 2.5px solid #fff; border-radius: 50%;
	cursor: pointer; pointer-events: all;
	box-shadow: 0 1px 5px rgba(98,45,142,0.35);
}

/* ===== SHARE BUTTON ===== */
.ns-share-btn {
	display: inline-flex; align-items: center; gap: 5px;
	background: none; border: 1.5px solid #ede7f6;
	border-radius: 8px; padding: 6px 11px; cursor: pointer;
	font-size: 0.78rem; color: #9e8faf; transition: all 0.15s;
	font-family: bariol_regular, sans-serif; white-space: nowrap;
}
.ns-share-btn:hover { border-color: #c49fdf; color: #622d8e; }
.ns-share-btn.copied { border-color: #48bb78; color: #276749; background: #f0fff4; }

/* ===== LOAD MORE ===== */
.ns-load-more-wrap { text-align: center; padding: 24px 0 8px; }
.ns-load-more-btn {
	background: #fff; color: #622d8e;
	border: 2px solid #622d8e; border-radius: 10px;
	padding: 11px 36px; font-family: bariol_bold, sans-serif;
	font-size: 0.9rem; cursor: pointer;
	transition: background 0.15s, color 0.15s;
}
.ns-load-more-btn:hover { background: #622d8e; color: #fff; }
.ns-load-more-btn:disabled { border-color: #e0d4f0; color: #c9b8e0; cursor: not-allowed; background: #fff; }
.ns-paginator-hidden { display: none !important; }
.ns-load-progress { font-size: 0.78rem; color: #b0a0c0; margin-top: 8px; }

/* ===== MOBILE DRAWER — SORT SEKCE ===== */
.ns-drawer-sort { display: flex; flex-wrap: wrap; gap: 6px; }
.ns-drawer-sort-pill {
	padding: 6px 14px; border-radius: 20px; font-size: 0.8rem;
	border: 1.5px solid #ede7f6; background: #fff; color: #4a3860;
	text-decoration: none !important;
	font-family: bariol_regular, sans-serif;
	transition: all 0.15s; white-space: nowrap;
}
.ns-drawer-sort-pill.is-active {
	background: #622d8e; border-color: #622d8e; color: #fff;
	font-family: bariol_bold, sans-serif;
}

/* ===== POROVNÁNÍ (COMPARISON) ===== */
.ns-card-compare-wrap {
	position: absolute; top: 8px; left: 8px; z-index: 3;
	width: 22px; height: 22px; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
}
.ns-card-compare-cb { display: none; }
.ns-card-compare-icon {
	width: 20px; height: 20px; border-radius: 5px;
	border: 2px solid #dcc9f0; background: rgba(255,255,255,0.9);
	display: flex; align-items: center; justify-content: center;
	font-size: 0.65rem; color: #c9b8e0; transition: all 0.15s;
	flex-shrink: 0;
}
.ns-card-compare-wrap:hover .ns-card-compare-icon {
	border-color: #622d8e; color: #622d8e;
}
.ns-card-compare-cb:checked + .ns-card-compare-icon {
	background: #622d8e; border-color: #622d8e; color: #fff;
}
/* Posun sale badge když je checkbox viditelný */
.ns-card-badge { left: 36px; }

.ns-compare-bar {
	position: fixed; bottom: 0; left: 0; right: 0;
	background: #2d1a42; color: #fff;
	padding: 12px 24px; z-index: 500;
	display: none; align-items: center; gap: 14px;
	box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
	flex-wrap: wrap;
}
.ns-compare-bar.is-visible { display: flex; }
.ns-compare-slots { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; min-width: 0; }
.ns-compare-slot {
	display: flex; align-items: center; gap: 6px;
	background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
	border-radius: 8px; padding: 6px 10px; font-size: 0.76rem;
	min-width: 100px; max-width: 180px;
}
.ns-compare-slot-name {
	flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ns-compare-slot-del {
	cursor: pointer; opacity: 0.6; font-size: 0.9rem;
	background: none; border: none; color: #fff; padding: 0; flex-shrink: 0;
}
.ns-compare-slot-del:hover { opacity: 1; }
.ns-compare-cta {
	background: #622d8e; color: #fff; border: none; border-radius: 8px;
	padding: 9px 20px; font-family: bariol_bold, sans-serif; font-size: 0.88rem;
	cursor: pointer; transition: background 0.15s; white-space: nowrap;
}
.ns-compare-cta:hover { background: #8b45b5; }
.ns-compare-cta:disabled { background: #9e8faf; cursor: not-allowed; }
.ns-compare-clear {
	background: none; border: 1px solid rgba(255,255,255,0.3);
	color: rgba(255,255,255,0.7); border-radius: 6px;
	padding: 7px 12px; font-size: 0.78rem; cursor: pointer;
	font-family: bariol_regular, sans-serif; white-space: nowrap;
}
.ns-compare-clear:hover { background: rgba(255,255,255,0.1); color: #fff; }

.ns-compare-modal-bg {
	display: none; position: fixed; inset: 0;
	background: rgba(0,0,0,0.6); z-index: 2000;
	overflow-y: auto; padding: 24px 16px;
	align-items: flex-start; justify-content: center;
}
.ns-compare-modal-bg.open { display: flex; }
.ns-compare-modal {
	background: #fff; border-radius: 16px; padding: 28px 24px;
	max-width: 960px; width: 100%; margin: auto; position: relative;
}
.ns-compare-modal-head {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid #ede7f6;
}
.ns-compare-modal-title {
	font-family: bariol_bold, sans-serif; font-size: 1.1rem; color: #2d1a42; margin: 0;
}
.ns-compare-modal-close {
	background: none; border: none; font-size: 1.5rem;
	color: #9e8faf; cursor: pointer; padding: 0; line-height: 1;
}
.ns-compare-modal-close:hover { color: #622d8e; }
.ns-compare-tbl-wrap { overflow-x: auto; }
.ns-compare-tbl {
	width: 100%; border-collapse: collapse; min-width: 320px;
}
.ns-compare-tbl th {
	text-align: center; padding: 12px 14px 16px;
	font-family: bariol_bold, sans-serif; font-size: 0.86rem; color: #2d1a42;
	border-bottom: 2px solid #ede7f6; background: #f9f5ff;
	vertical-align: top; width: calc(100% / 4);
}
.ns-compare-tbl th:first-child { width: 110px; background: #fff; border-bottom-color: #ede7f6; }
.ns-compare-tbl th img {
	width: 80px; height: 80px; object-fit: contain; display: block; margin: 0 auto 8px;
	background: #faf7ff; border-radius: 8px; padding: 4px;
}
.ns-compare-tbl td {
	padding: 10px 14px; text-align: center; font-size: 0.83rem;
	color: #4a3860; border-bottom: 1px solid #f0eaf8; vertical-align: middle;
}
.ns-compare-tbl tr:last-child td { border-bottom: none; }
.ns-compare-tbl td:first-child {
	text-align: left; font-family: bariol_bold, sans-serif;
	font-size: 0.72rem; color: #b0a0c0; text-transform: uppercase;
	letter-spacing: 0.05em; background: #f9f5ff;
}
.ns-cmp-price { font-family: bariol_bold, sans-serif; color: #2d1a42; font-size: 1rem; }
.ns-cmp-orig { font-size: 0.73rem; color: #b0a0c0; text-decoration: line-through; }
.ns-cmp-sale { color: #e53e3e; font-size: 0.8rem; font-family: bariol_bold, sans-serif; }
.ns-cmp-link {
	display: inline-block; margin-top: 8px;
	background: #622d8e; color: #fff !important; border-radius: 6px;
	padding: 5px 12px; font-size: 0.76rem; font-family: bariol_bold, sans-serif;
	text-decoration: none !important;
}
.ns-cmp-link:hover { background: #4e2070; }

/* ===== HOVER PREVIEW ===== */
.ns-hover-preview {
	display: none; position: fixed; z-index: 400;
	background: #fff; border: 1px solid #dcc9f0;
	border-radius: 14px; padding: 16px 18px;
	box-shadow: 0 8px 36px rgba(98,45,142,0.18);
	width: 270px; pointer-events: none;
	transition: opacity 0.12s;
}
.ns-hover-preview.is-visible { display: block; }
.ns-hover-preview-img {
	width: 100%; height: 150px; object-fit: contain;
	display: block; margin-bottom: 10px;
	background: #faf7ff; border-radius: 8px; padding: 4px;
}
.ns-hover-preview-brand {
	font-size: 0.68rem; color: #b0a0c0; text-transform: uppercase;
	letter-spacing: 0.05em; margin-bottom: 3px;
}
.ns-hover-preview-name {
	font-family: bariol_bold, sans-serif; font-size: 0.86rem;
	color: #2d1a42; line-height: 1.3; margin-bottom: 6px;
}
.ns-hover-preview-desc {
	font-size: 0.76rem; color: #9e8faf; line-height: 1.5; margin-bottom: 8px;
}
.ns-hover-preview-price {
	font-family: bariol_bold, sans-serif; font-size: 0.98rem; color: #622d8e;
}
.ns-hover-preview-orig {
	font-size: 0.72rem; color: #b0a0c0; text-decoration: line-through; margin-left: 5px;
}
.ns-hover-preview-rating { font-size: 0.75rem; color: #9e8faf; margin-top: 4px; }
@media (max-width: 900px) { .ns-hover-preview { display: none !important; } }
