/* =====================================================================
   SufiKit Marketplace — Core Stylesheet
   Design tokens, reset, base typography, layout primitives, buttons,
   cards, badges, icon system, header, footer.
   Section-specific styles (home, shop, product, blog, dashboard) live
   in their own files and are loaded conditionally — see inc/enqueue.php.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. DESIGN TOKENS
   Colors mirror the option defaults in inc/theme-options.php so an
   admin color change updates every stylesheet at once via :root override
   injected in wp_head (sk_options_frontend_css()).
   --------------------------------------------------------------------- */
:root {
	/* Brand — sampled directly from the reference screenshots (logo mark,
	   header CTA button, hero button all consistently sample to this
	   vivid blue). */
	--sk-primary: #0a5cf5;
	--sk-primary-dark: #0847c2;
	--sk-primary-light: #eaf1ff;
	--sk-secondary: #6d3ff5;
	--sk-secondary-light: #f2eefe;
	--sk-gradient: linear-gradient(135deg, var(--sk-primary) 0%, var(--sk-secondary) 100%);

	/* Feedback */
	--sk-success: #16a34a;
	--sk-success-light: #ecfdf5;
	--sk-warning: #f59e0b;
	--sk-warning-light: #fffbeb;
	--sk-danger: #ef4444;
	--sk-danger-light: #fef2f2;
	--sk-star: #fbbf24;

	/* Neutrals */
	--sk-text: #111827;
	--sk-text-light: #6b7280;
	--sk-text-muted: #9ca3af;
	--sk-border: #e5e7eb;
	--sk-border-light: #f1f5f9;
	--sk-bg: #ffffff;
	--sk-bg-soft: #f8fafc;
	--sk-btn-text: #ffffff;

	/* Shape */
	--sk-radius-sm: 8px;
	--sk-radius: 14px;
	--sk-radius-lg: 20px;
	--sk-radius-pill: 999px;
	--sk-btn-radius: 10px;

	/* Elevation */
	--sk-shadow-sm: 0 1px 2px rgba(17, 24, 39, .05);
	--sk-shadow: 0 4px 16px rgba(17, 24, 39, .06);
	--sk-shadow-lg: 0 12px 32px rgba(17, 24, 39, .10);
	--sk-shadow-neu: 8px 8px 20px rgba(148, 163, 184, .18), -8px -8px 20px rgba(255, 255, 255, .8);

	/* Type */
	--sk-font-heading: 'Plus Jakarta Sans', sans-serif;
	--sk-font-body: 'Inter', sans-serif;

	/* Layout */
	--sk-container: 1280px;
	--sk-header-height: 76px;
	--sk-header-height-scrolled: 68px;
	--sk-gap: 28px;
	--sk-gutter: 24px;
	--sk-transition: 200ms cubic-bezier(.4, 0, .2, 1);
}

/* ---------------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
	scroll-behavior: smooth; -webkit-text-size-adjust: 100%;
	overflow-x: hidden; max-width: 100%;
}
/* Safety net: no single element (fixed-width dropdown, negative-margin
   carousel bleed, unconverted inline width, etc.) should ever be able to
   push the page wider than the viewport and force pinch-zoom on mobile.
   NOTE: this is intentionally kept on <html> only, not <body>. Setting
   overflow-x: hidden on BOTH elements turns <body> into its own nested
   scroll container (per the CSS overflow spec, overflow-x: hidden forces
   the missing overflow-y to a used value of "auto"), and since <body>
   is unbounded in height that container's "scrollport" ends up covering
   the whole page instead of just the visible window — which silently
   breaks position: sticky for every sticky element on the site
   (header, checkout sidebar, dashboard nav, blog sidebar, shop filters,
   cart summary). Keep this rule on <html> only. */
body { max-width: 100%; }

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

body {
	margin: 0;
	font-family: var(--sk-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--sk-text);
	background: var(--sk-bg);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--sk-font-heading); font-weight: 700; line-height: 1.25; margin: 0 0 .5em; color: var(--sk-text); }
p { margin: 0 0 1em; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
	overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; white-space: nowrap;
}
.sk-skip-link {
	position: fixed; top: -100px; left: 10px; z-index: 10000;
	background: var(--sk-primary); color: #fff; padding: 12px 20px;
	border-radius: var(--sk-radius-sm); transition: top var(--sk-transition);
}
.sk-skip-link:focus { top: 10px; }

:focus-visible {
	outline: 2px solid var(--sk-primary);
	outline-offset: 2px;
}

/* ---------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   --------------------------------------------------------------------- */
.sk-container {
	max-width: var(--sk-container);
	margin-inline: auto;
	padding-inline: var(--sk-gutter);
}

.sk-section { padding-block: 64px; }
.sk-section__header {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 16px; margin-bottom: 28px;
}
.sk-section__header--center { flex-direction: column; align-items: center; text-align: center; }
.sk-section__title { font-size: 28px; margin: 0; }
.sk-section__title--sm { font-size: 22px; }
.sk-section__subtitle { color: var(--sk-text-light); max-width: 560px; margin-top: 8px; }
.sk-section__link { color: var(--sk-primary); font-weight: 600; white-space: nowrap; }
.sk-section__link:hover { text-decoration: underline; }
.sk-section__title-squiggle { display: inline-flex; margin-left: 10px; color: var(--sk-primary); vertical-align: middle; }

.sk-page-title { font-size: 32px; margin-bottom: 8px; }
.sk-page-subtitle { color: var(--sk-text-light); }
.sk-page-layout { padding-block: 48px; }
.sk-page-body { margin-top: 24px; }

/* ---------------------------------------------------------------------
   4. ICON SYSTEM
   Lightweight mask-based icons: one <span class="sk-icon sk-icon--x">
   per glyph, colored via currentColor, sized in em so it follows the
   parent's font-size. No icon font / JS library dependency.
   --------------------------------------------------------------------- */
.sk-icon {
	display: inline-block;
	width: 1.15em;
	height: 1.15em;
	background-color: currentColor;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	vertical-align: middle;
	flex-shrink: 0;
}

/* Inline <svg> icons rendered via sk_icon_svg() (footer). Real markup,
   not a mask/background-image, so it can never fail to load. */
.sk-svg-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}
.sk-icon--search           { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.2' y2='16.2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='21' y1='21' x2='16.2' y2='16.2'/%3E%3C/svg%3E"); }
.sk-icon--cart             { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1.4' fill='currentColor' stroke='none'/%3E%3Ccircle cx='18' cy='20' r='1.4' fill='currentColor' stroke='none'/%3E%3Cpath d='M2.5 3h2.4l2.1 11.4a2 2 0 0 0 2 1.6h8.3a2 2 0 0 0 2-1.6L21 7H6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1.4' fill='currentColor' stroke='none'/%3E%3Ccircle cx='18' cy='20' r='1.4' fill='currentColor' stroke='none'/%3E%3Cpath d='M2.5 3h2.4l2.1 11.4a2 2 0 0 0 2 1.6h8.3a2 2 0 0 0 2-1.6L21 7H6'/%3E%3C/svg%3E"); }
.sk-icon--heart            { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21C12 21 4 14.5 4 9C4 6 6.5 4 9.3 4C10.9 4 12 5 12 5C12 5 13.1 4 14.7 4C17.5 4 20 6 20 9C20 14.5 12 21 12 21Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21C12 21 4 14.5 4 9C4 6 6.5 4 9.3 4C10.9 4 12 5 12 5C12 5 13.1 4 14.7 4C17.5 4 20 6 20 9C20 14.5 12 21 12 21Z'/%3E%3C/svg%3E"); }
.sk-icon--user             { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.6'/%3E%3Cpath d='M4.5 20c0-4.1 3.4-7 7.5-7s7.5 2.9 7.5 7'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='3.6'/%3E%3Cpath d='M4.5 20c0-4.1 3.4-7 7.5-7s7.5 2.9 7.5 7'/%3E%3C/svg%3E"); }
.sk-icon--grid             { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='3.5' width='7' height='7' rx='1.2'/%3E%3Crect x='13.5' y='3.5' width='7' height='7' rx='1.2'/%3E%3Crect x='3.5' y='13.5' width='7' height='7' rx='1.2'/%3E%3Crect x='13.5' y='13.5' width='7' height='7' rx='1.2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='3.5' width='7' height='7' rx='1.2'/%3E%3Crect x='13.5' y='3.5' width='7' height='7' rx='1.2'/%3E%3Crect x='3.5' y='13.5' width='7' height='7' rx='1.2'/%3E%3Crect x='13.5' y='13.5' width='7' height='7' rx='1.2'/%3E%3C/svg%3E"); }
.sk-icon--clock            { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3.5 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3.5 2'/%3E%3C/svg%3E"); }
.sk-icon--list             { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'/%3E%3Cline x1='8' y1='12' x2='21' y2='12'/%3E%3Cline x1='8' y1='18' x2='21' y2='18'/%3E%3Ccircle cx='4' cy='6' r='1' fill='currentColor' stroke='none'/%3E%3Ccircle cx='4' cy='12' r='1' fill='currentColor' stroke='none'/%3E%3Ccircle cx='4' cy='18' r='1' fill='currentColor' stroke='none'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'/%3E%3Cline x1='8' y1='12' x2='21' y2='12'/%3E%3Cline x1='8' y1='18' x2='21' y2='18'/%3E%3Ccircle cx='4' cy='6' r='1' fill='currentColor' stroke='none'/%3E%3Ccircle cx='4' cy='12' r='1' fill='currentColor' stroke='none'/%3E%3Ccircle cx='4' cy='18' r='1' fill='currentColor' stroke='none'/%3E%3C/svg%3E"); }
.sk-icon--filter           { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 5h17l-6 7.3V19l-5 2.2v-9z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 5h17l-6 7.3V19l-5 2.2v-9z'/%3E%3C/svg%3E"); }
.sk-icon--eye              { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.6-6.5 10-6.5S22 12 22 12s-3.6 6.5-10 6.5S2 12 2 12z'/%3E%3Ccircle cx='12' cy='12' r='2.8'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.6-6.5 10-6.5S22 12 22 12s-3.6 6.5-10 6.5S2 12 2 12z'/%3E%3Ccircle cx='12' cy='12' r='2.8'/%3E%3C/svg%3E"); }
.sk-icon--play             { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4.5v15l13-7.5z' fill='currentColor' stroke='none'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4.5v15l13-7.5z' fill='currentColor' stroke='none'/%3E%3C/svg%3E"); }
.sk-icon--mail             { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.5' y='5' width='19' height='14' rx='2.5'/%3E%3Cpath d='M3.5 6.5L12 13l8.5-6.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.5' y='5' width='19' height='14' rx='2.5'/%3E%3Cpath d='M3.5 6.5L12 13l8.5-6.5'/%3E%3C/svg%3E"); }
.sk-icon--home             { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 11.5L12 4l8 7.5'/%3E%3Cpath d='M6 10v10h12V10'/%3E%3Cpath d='M10 20v-6h4v6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 11.5L12 4l8 7.5'/%3E%3Cpath d='M6 10v10h12V10'/%3E%3Cpath d='M10 20v-6h4v6'/%3E%3C/svg%3E"); }
.sk-icon--shield           { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5l7.5 3v6c0 5-3.4 8.2-7.5 9.5-4.1-1.3-7.5-4.5-7.5-9.5v-6z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5l7.5 3v6c0 5-3.4 8.2-7.5 9.5-4.1-1.3-7.5-4.5-7.5-9.5v-6z'/%3E%3C/svg%3E"); }
.sk-icon--download         { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='M7 10.5l5 5 5-5'/%3E%3Cpath d='M4.5 19.5h15'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12'/%3E%3Cpath d='M7 10.5l5 5 5-5'/%3E%3Cpath d='M4.5 19.5h15'/%3E%3C/svg%3E"); }
.sk-icon--refresh          { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 13.7-5.7L20 8.5'/%3E%3Cpath d='M20 3.5v5h-5'/%3E%3Cpath d='M20 12a8 8 0 0 1-13.7 5.7L4 15.5'/%3E%3Cpath d='M4 20.5v-5h5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 13.7-5.7L20 8.5'/%3E%3Cpath d='M20 3.5v5h-5'/%3E%3Cpath d='M20 12a8 8 0 0 1-13.7 5.7L4 15.5'/%3E%3Cpath d='M4 20.5v-5h5'/%3E%3C/svg%3E"); }
.sk-icon--support          { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13v-1a8 8 0 0 1 16 0v1'/%3E%3Crect x='2.5' y='13' width='4.5' height='6' rx='1.8'/%3E%3Crect x='17' y='13' width='4.5' height='6' rx='1.8'/%3E%3Cpath d='M19.5 19v.5a3 3 0 0 1-3 3H13'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13v-1a8 8 0 0 1 16 0v1'/%3E%3Crect x='2.5' y='13' width='4.5' height='6' rx='1.8'/%3E%3Crect x='17' y='13' width='4.5' height='6' rx='1.8'/%3E%3Cpath d='M19.5 19v.5a3 3 0 0 1-3 3H13'/%3E%3C/svg%3E"); }
.sk-icon--money            { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6' width='20' height='12' rx='2'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cline x1='6' y1='12' x2='6.01' y2='12'/%3E%3Cline x1='18' y1='12' x2='18.01' y2='12'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6' width='20' height='12' rx='2'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cline x1='6' y1='12' x2='6.01' y2='12'/%3E%3Cline x1='18' y1='12' x2='18.01' y2='12'/%3E%3C/svg%3E"); }
.sk-icon--quality          { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5l2.9 5.9 6.5.9-4.7 4.6 1.1 6.5L12 17l-5.8 3 1.1-6.5-4.7-4.6 6.5-.9z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5l2.9 5.9 6.5.9-4.7 4.6 1.1 6.5L12 17l-5.8 3 1.1-6.5-4.7-4.6 6.5-.9z'/%3E%3C/svg%3E"); }
.sk-icon--users            { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8.5' cy='8' r='3.2'/%3E%3Cpath d='M2.5 20c0-3.6 2.7-6.3 6-6.3s6 2.7 6 6.3'/%3E%3Ccircle cx='17' cy='9' r='2.4'/%3E%3Cpath d='M15.3 13.8c2.4.5 4.2 2.5 4.2 5.2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8.5' cy='8' r='3.2'/%3E%3Cpath d='M2.5 20c0-3.6 2.7-6.3 6-6.3s6 2.7 6 6.3'/%3E%3Ccircle cx='17' cy='9' r='2.4'/%3E%3Cpath d='M15.3 13.8c2.4.5 4.2 2.5 4.2 5.2'/%3E%3C/svg%3E"); }
.sk-icon--box              { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8l9-4.5 9 4.5-9 4.5z'/%3E%3Cpath d='M3 8v8l9 4.5V12'/%3E%3Cpath d='M21 8v8l-9 4.5V12'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8l9-4.5 9 4.5-9 4.5z'/%3E%3Cpath d='M3 8v8l9 4.5V12'/%3E%3Cpath d='M21 8v8l-9 4.5V12'/%3E%3C/svg%3E"); }
.sk-icon--bag              { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 8h11l1 12.5h-13z'/%3E%3Cpath d='M9 8V6a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 8h11l1 12.5h-13z'/%3E%3Cpath d='M9 8V6a3 3 0 0 1 6 0v2'/%3E%3C/svg%3E"); }
.sk-icon--plugin           { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4H8.5C8.5 2 9.8 1 11 1C12.2 1 13.5 2 13.5 4H18V8.5C16 8.5 15 9.8 15 11C15 12.2 16 13.5 18 13.5V18H4Z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4H8.5C8.5 2 9.8 1 11 1C12.2 1 13.5 2 13.5 4H18V8.5C16 8.5 15 9.8 15 11C15 12.2 16 13.5 18 13.5V18H4Z'/%3E%3C/svg%3E"); }
.sk-icon--theme            { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.5' y='4.5' width='19' height='14' rx='2'/%3E%3Cline x1='2.5' y1='8.5' x2='21.5' y2='8.5'/%3E%3Ccircle cx='5' cy='6.5' r='0.6' fill='currentColor' stroke='none'/%3E%3Ccircle cx='7' cy='6.5' r='0.6' fill='currentColor' stroke='none'/%3E%3Cpath d='M6 12.5h7M6 15.5h4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.5' y='4.5' width='19' height='14' rx='2'/%3E%3Cline x1='2.5' y1='8.5' x2='21.5' y2='8.5'/%3E%3Ccircle cx='5' cy='6.5' r='0.6' fill='currentColor' stroke='none'/%3E%3Ccircle cx='7' cy='6.5' r='0.6' fill='currentColor' stroke='none'/%3E%3Cpath d='M6 12.5h7M6 15.5h4'/%3E%3C/svg%3E"); }
.sk-icon--blogpost         { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 3.5h9l5 5v12h-14z'/%3E%3Cpath d='M14 3.5v5h5'/%3E%3Cpath d='M8 13h8M8 16h5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 3.5h9l5 5v12h-14z'/%3E%3Cpath d='M14 3.5v5h5'/%3E%3Cpath d='M8 13h8M8 16h5'/%3E%3C/svg%3E"); }
.sk-icon--htmldoc          { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6z'/%3E%3Cpath d='M14 3v4h4'/%3E%3Cpath d='M9.3 13l-1.6 1.6 1.6 1.6M14.7 13l1.6 1.6-1.6 1.6M12.5 12.5l-1 5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h8l4 4v14H6z'/%3E%3Cpath d='M14 3v4h4'/%3E%3Cpath d='M9.3 13l-1.6 1.6 1.6 1.6M14.7 13l1.6 1.6-1.6 1.6M12.5 12.5l-1 5'/%3E%3C/svg%3E"); }
.sk-icon--rocket           { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5c2.8 2 4.5 5.7 4.5 9.3 0 1.8-.7 3.5-1.7 4.6l-2.8 2.8-2.8-2.8c-1-1.1-1.7-2.8-1.7-4.6 0-3.6 1.7-7.3 4.5-9.3z'/%3E%3Ccircle cx='12' cy='10.5' r='1.8'/%3E%3Cpath d='M8 16l-2.5 4.5 4.5-2.5M16 16l2.5 4.5-4.5-2.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5c2.8 2 4.5 5.7 4.5 9.3 0 1.8-.7 3.5-1.7 4.6l-2.8 2.8-2.8-2.8c-1-1.1-1.7-2.8-1.7-4.6 0-3.6 1.7-7.3 4.5-9.3z'/%3E%3Ccircle cx='12' cy='10.5' r='1.8'/%3E%3Cpath d='M8 16l-2.5 4.5 4.5-2.5M16 16l2.5 4.5-4.5-2.5'/%3E%3C/svg%3E"); }
.sk-icon--gem              { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h12l3.5 5.5L12 21 2.5 8.5z'/%3E%3Cpath d='M2.5 8.5h19M9 3l-2.5 5.5L12 21M15 3l2.5 5.5L12 21'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h12l3.5 5.5L12 21 2.5 8.5z'/%3E%3Cpath d='M2.5 8.5h19M9 3l-2.5 5.5L12 21M15 3l2.5 5.5L12 21'/%3E%3C/svg%3E"); }
.sk-icon--code             { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 5L2.5 12l6 7'/%3E%3Cpath d='M15.5 5l6 7-6 7'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 5L2.5 12l6 7'/%3E%3Cpath d='M15.5 5l6 7-6 7'/%3E%3C/svg%3E"); }
.sk-icon--gift             { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='9' width='18' height='4'/%3E%3Crect x='4.5' y='13' width='15' height='8'/%3E%3Cline x1='12' y1='9' x2='12' y2='21'/%3E%3Cpath d='M12 9C10 5 6.5 5 6 7c-.4 1.6 2 2 6 2z'/%3E%3Cpath d='M12 9c2-4 5.5-4 6-2 .4 1.6-2 2-6 2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='9' width='18' height='4'/%3E%3Crect x='4.5' y='13' width='15' height='8'/%3E%3Cline x1='12' y1='9' x2='12' y2='21'/%3E%3Cpath d='M12 9C10 5 6.5 5 6 7c-.4 1.6 2 2 6 2z'/%3E%3Cpath d='M12 9c2-4 5.5-4 6-2 .4 1.6-2 2-6 2z'/%3E%3C/svg%3E"); }
.sk-icon--facebook         { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 9h3V5h-3a4 4 0 0 0-4 4v2H8v4h2v6h4v-6h3l.6-4h-3.6V9c0-.6.4-1 1-1z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 9h3V5h-3a4 4 0 0 0-4 4v2H8v4h2v6h4v-6h3l.6-4h-3.6V9c0-.6.4-1 1-1z'/%3E%3C/svg%3E"); }
.sk-icon--twitter          { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 5.9c-.7.3-1.5.6-2.3.7.8-.5 1.5-1.3 1.8-2.3-.8.5-1.7.8-2.6 1a4.1 4.1 0 0 0-7 3.7A11.6 11.6 0 0 1 3.4 4.6a4 4 0 0 0 1.3 5.5c-.7 0-1.3-.2-1.9-.5v.1c0 2 1.4 3.6 3.3 4a4 4 0 0 1-1.9.1 4.1 4.1 0 0 0 3.8 2.8A8.2 8.2 0 0 1 2 18.4a11.6 11.6 0 0 0 6.3 1.8c7.5 0 11.7-6.3 11.7-11.7v-.5c.8-.6 1.5-1.3 2-2.1z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 5.9c-.7.3-1.5.6-2.3.7.8-.5 1.5-1.3 1.8-2.3-.8.5-1.7.8-2.6 1a4.1 4.1 0 0 0-7 3.7A11.6 11.6 0 0 1 3.4 4.6a4 4 0 0 0 1.3 5.5c-.7 0-1.3-.2-1.9-.5v.1c0 2 1.4 3.6 3.3 4a4 4 0 0 1-1.9.1 4.1 4.1 0 0 0 3.8 2.8A8.2 8.2 0 0 1 2 18.4a11.6 11.6 0 0 0 6.3 1.8c7.5 0 11.7-6.3 11.7-11.7v-.5c.8-.6 1.5-1.3 2-2.1z'/%3E%3C/svg%3E"); }
.sk-icon--instagram        { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.5' fill='%23fff' stroke='none'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.2' fill='%23fff' stroke='none'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.5' fill='%23fff' stroke='none'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.2' fill='%23fff' stroke='none'/%3E%3C/svg%3E"); }
.sk-icon--youtube          { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='5' width='20' height='14' rx='4'/%3E%3Cpath d='M10 9l6 3-6 3z' fill='%23fff' stroke='none'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='5' width='20' height='14' rx='4'/%3E%3Cpath d='M10 9l6 3-6 3z' fill='%23fff' stroke='none'/%3E%3C/svg%3E"); }
.sk-icon--linkedin         { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='2' width='20' height='20' rx='3'/%3E%3Ccircle cx='6.5' cy='7' r='1.6' fill='%23fff' stroke='none'/%3E%3Crect x='5' y='10' width='3' height='9' fill='%23fff' stroke='none'/%3E%3Cpath d='M11 10h3v1.5c.6-1 1.7-1.7 3-1.7 2.2 0 3.5 1.5 3.5 4.2V19h-3v-4.5c0-1.1-.4-1.9-1.5-1.9-.8 0-1.3.6-1.5 1.1-.1.2-.1.5-.1.8V19h-3z' fill='%23fff' stroke='none'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='2' width='20' height='20' rx='3'/%3E%3Ccircle cx='6.5' cy='7' r='1.6' fill='%23fff' stroke='none'/%3E%3Crect x='5' y='10' width='3' height='9' fill='%23fff' stroke='none'/%3E%3Cpath d='M11 10h3v1.5c.6-1 1.7-1.7 3-1.7 2.2 0 3.5 1.5 3.5 4.2V19h-3v-4.5c0-1.1-.4-1.9-1.5-1.9-.8 0-1.3.6-1.5 1.1-.1.2-.1.5-.1.8V19h-3z' fill='%23fff' stroke='none'/%3E%3C/svg%3E"); }


/* ---------------------------------------------------------------------
   5. BUTTONS
   --------------------------------------------------------------------- */
.sk-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 24px; border-radius: var(--sk-btn-radius); border: 1px solid transparent;
	font-weight: 600; font-size: 15px; cursor: pointer; transition: all var(--sk-transition);
	white-space: nowrap;
}
.sk-btn--primary { background: var(--sk-primary); color: var(--sk-btn-text); box-shadow: 0 4px 14px rgba(10, 92, 245, .28); }
.sk-btn--primary:hover { background: var(--sk-primary-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(10, 92, 245, .35); }
.sk-btn--outline { background: #fff; color: var(--sk-primary); border-color: var(--sk-border); }
.sk-btn--outline:hover { border-color: var(--sk-primary); background: var(--sk-primary-light); }
.sk-btn--ghost { background: transparent; color: var(--sk-text); border-color: var(--sk-border); }
.sk-btn--ghost:hover { background: var(--sk-bg-soft); }
.sk-btn--white { background: #fff; color: var(--sk-primary); }
.sk-btn--white:hover { background: var(--sk-primary-light); }
.sk-btn--large { padding: 15px 32px; font-size: 16px; }
.sk-btn--small { padding: 8px 14px; font-size: 13px; }
.sk-btn--full { width: 100%; }
.sk-btn[disabled] { opacity: .5; cursor: not-allowed; pointer-events: none; }

.sk-icon-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 50%; background: #fff;
	border: none; box-shadow: var(--sk-shadow); color: var(--sk-text);
	transition: all var(--sk-transition);
}
.sk-icon-btn:hover { background: var(--sk-primary); color: #fff; transform: translateY(-2px); }

.sk-wishlist-btn {
	position: absolute; top: 12px; right: 12px; width: 36px; height: 36px;
	border-radius: 50%; background: #fff; border: none; box-shadow: var(--sk-shadow);
	display: flex; align-items: center; justify-content: center; color: var(--sk-text-light);
	transition: all var(--sk-transition); z-index: 2;
}
.sk-wishlist-btn:hover, .sk-wishlist-btn.is-active { color: #fff; background: var(--sk-danger); }
.sk-wishlist-btn--boxed { position: static; width: 100%; height: auto; border-radius: var(--sk-btn-radius); color: var(--sk-text); border: 1px solid var(--sk-border); padding: 12px; gap: 8px; }
.sk-wishlist-btn--boxed.is-active { background: var(--sk-danger); border-color: var(--sk-danger); }

/* ---------------------------------------------------------------------
   6. BADGES
   --------------------------------------------------------------------- */
.sk-badge {
	display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px;
	border-radius: var(--sk-radius-pill); font-size: 12px; font-weight: 700;
	background: var(--sk-bg-soft); color: var(--sk-text-light);
}
.sk-badge--sale { background: var(--sk-danger); color: #fff; }
.sk-badge--category { background: var(--sk-primary-light); color: var(--sk-primary); }
.sk-badge--tag { background: var(--sk-bg-soft); color: var(--sk-text-light); }

/* Product card status pill — top-left over the media, per reference design. */
.sk-badge--status { position: absolute; top: 12px; left: 12px; z-index: 2; box-shadow: var(--sk-shadow-sm); }
.sk-badge--status-sale { background: var(--sk-success); color: #fff; }
.sk-badge--status-new { background: var(--sk-primary); color: #fff; }
.sk-badge--status-popular { background: var(--sk-secondary); color: #fff; }
.sk-badge--status-out-of-stock { background: var(--sk-text-light); color: #fff; }

/* ---------------------------------------------------------------------
   7. RATING STARS
   --------------------------------------------------------------------- */
.sk-rating { display: inline-flex; align-items: center; gap: 2px; font-size: 13px; color: var(--sk-text-light); }
.sk-star { color: var(--sk-border); font-size: 15px; line-height: 1; }
.sk-star--full, .sk-star--half { color: var(--sk-star); }
.sk-rating__value { font-weight: 700; color: var(--sk-text); margin-left: 4px; }
.sk-rating__count { color: var(--sk-text-muted); }
.sk-view-count { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--sk-text-muted); margin-left: 14px; }
.sk-view-count svg { flex-shrink: 0; }

/* ---------------------------------------------------------------------
   8. HEADER
   --------------------------------------------------------------------- */
.sk-header { background: #fff; border-bottom: 1px solid var(--sk-border-light); position: relative; z-index: 100; }
.sk-header--sticky { position: sticky; top: 0; }

.sk-topbar { background: #f8f8fb; color: #52525f; font-size: 13px; border-bottom: 1px solid var(--sk-border-light); }
.sk-topbar__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 8px; gap: 16px; }
.sk-topbar__right { display: flex; align-items: center; gap: 20px; }
.sk-topbar a:hover { color: var(--sk-primary); }
.sk-topbar-menu { display: flex; gap: 20px; }

.sk-main-header__inner { display: flex; align-items: center; gap: 28px; padding-block: 16px; }
.sk-mobile-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 8px; }
.sk-mobile-toggle span { width: 22px; height: 2px; background: var(--sk-text); border-radius: 2px; }

.sk-logo__text { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sk-logo__mark {
	display: flex; align-items: center; justify-content: center; width: 36px; height: 36px;
	border-radius: var(--sk-radius-sm); background: var(--sk-primary); color: #fff;
	font-family: var(--sk-font-heading); font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.sk-logo__title { font-family: var(--sk-font-heading); font-weight: 800; font-size: 19px; color: var(--sk-text); }
.custom-logo { max-height: 40px; width: auto; }
.sk-mobile-page-title { display: none; }

/* Search: an icon button that reveals a full-width overlay bar right
   below the header, instead of a permanently-docked search field. */
.sk-header-search-overlay {
	border-top: 1px solid var(--sk-border-light); background: #fff;
	max-height: 0; overflow: hidden; transition: max-height var(--sk-transition);
}
.sk-header-search-overlay:not([hidden]) { max-height: 90px; }
.sk-header-search-overlay[hidden] { display: none; }
.sk-header-search-overlay .sk-container { padding-block: 14px; position: relative; }
.sk-search-form { display: flex; align-items: center; border: 1px solid var(--sk-border); border-radius: var(--sk-radius-sm); overflow: hidden; background: #fff; }
.sk-search-form__input { flex: 1; border: none; background: transparent; padding: 12px 16px; outline: none; }
.sk-search-form__submit { background: var(--sk-primary); color: #fff; border: none; padding: 0 20px; display: flex; align-items: center; align-self: stretch; }
.sk-search-form__close { background: none; border: none; font-size: 22px; line-height: 1; color: var(--sk-text-light); padding: 0 14px; }
.sk-search-suggestions {
	position: absolute; top: calc(100% - 2px); left: 24px; right: 24px; background: #fff;
	border-radius: var(--sk-radius); box-shadow: var(--sk-shadow-lg); padding: 12px; max-height: 420px; overflow-y: auto; z-index: 200;
}
.sk-search-group__label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--sk-text-muted); font-weight: 700; margin: 8px 4px; }
.sk-search-result { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: var(--sk-radius-sm); }
.sk-search-result:hover { background: var(--sk-bg-soft); }
.sk-search-result__thumb { width: 42px; height: 42px; border-radius: var(--sk-radius-sm); object-fit: cover; }
.sk-search-result__price { display: block; font-size: 12px; color: var(--sk-primary); font-weight: 700; }
.sk-search-empty { padding: 16px; text-align: center; color: var(--sk-text-light); }

.sk-header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.sk-header-action {
	position: relative; display: flex; align-items: center; gap: 8px; padding: 9px;
	border-radius: var(--sk-radius-sm); color: var(--sk-text); background: none; border: none; cursor: pointer;
}
.sk-header-action:hover { background: var(--sk-bg-soft); }
.sk-header-action__count {
	position: absolute; top: 0; right: 0; background: var(--sk-secondary); color: #fff;
	font-size: 10px; font-weight: 700; min-width: 17px; height: 17px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; transform: translate(30%, -30%);
}
.sk-avatar { border-radius: 50%; width: 32px; height: 32px; display: block; }

.sk-mini-cart {
	position: absolute; top: 100%; right: 24px;
	width: 360px; max-width: calc(100vw - 32px); background: #fff;
	border-radius: var(--sk-radius); box-shadow: var(--sk-shadow-lg); padding: 16px;
	z-index: 200; display: none;
}
.sk-mini-cart.is-open { display: block; }
.sk-mini-cart__empty { text-align: center; padding: 20px 0; color: var(--sk-text-light); font-size: 14px; }
.sk-mini-cart__items { list-style: none; margin: 0 0 14px; padding: 0; max-height: 320px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.sk-mini-cart__item { display: flex; align-items: center; gap: 10px; }
.sk-mini-cart__item img { width: 48px; height: 48px; border-radius: var(--sk-radius-sm); object-fit: cover; flex-shrink: 0; }
.sk-mini-cart__item-info { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sk-mini-cart__item-info a { font-size: 13px; font-weight: 600; color: var(--sk-text); text-decoration: none; }
.sk-mini-cart__item-info span { font-size: 12px; color: var(--sk-text-light); }
.sk-mini-cart__remove { border: none; background: var(--sk-bg-soft); color: var(--sk-text-light); width: 22px; height: 22px; border-radius: 50%; font-size: 14px; flex-shrink: 0; }
.sk-mini-cart__footer { border-top: 1px solid var(--sk-border-light); padding-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.sk-mini-cart__total { display: flex; align-items: center; justify-content: space-between; font-size: 14px; margin-bottom: 4px; }

/* Header account icon → Login/Register dropdown ---------------------- */
.sk-account-menu { position: relative; }
.sk-account-dropdown {
	position: absolute; top: calc(100% + 10px); right: 0;
	width: 220px; max-width: calc(100vw - 32px); background: #fff;
	border-radius: var(--sk-radius); box-shadow: var(--sk-shadow-lg); padding: 14px;
	display: flex; flex-direction: column; gap: 10px; z-index: 210;
}
.sk-account-dropdown[hidden] { display: none; }

/* Header currency switcher ------------------------------------------- */
.sk-currency-switcher { position: relative; }
.sk-currency-switcher__toggle { font-size: 13px; font-weight: 700; letter-spacing: .02em; padding: 9px 12px; }
.sk-currency-switcher__dropdown {
	position: absolute; top: calc(100% + 10px); right: 0;
	min-width: 160px; background: #fff;
	border-radius: var(--sk-radius); box-shadow: var(--sk-shadow-lg); padding: 6px;
	display: flex; flex-direction: column; z-index: 210;
}
.sk-currency-switcher__dropdown[hidden] { display: none; }
.sk-currency-switcher__option {
	border: none; background: none; text-align: left; padding: 8px 10px; border-radius: var(--sk-radius-sm);
	font-size: 13px; color: var(--sk-text); cursor: pointer;
}
.sk-currency-switcher__option:hover { background: var(--sk-bg-soft); }
.sk-currency-switcher__option.is-active { color: var(--sk-primary); font-weight: 700; }

/* Login / Register modal ---------------------------------------------
   Base .sk-modal rules are also defined in shop.css (used there for
   Quick View / video preview), but the account modals must work on
   every template, not just the shop, so the shared overlay/panel/close
   styles are repeated here for main.css, which is always loaded. */
.sk-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.sk-modal.is-open { display: flex; }
.sk-modal__overlay { position: absolute; inset: 0; background: rgba(17, 24, 39, .6); }
.sk-modal__panel { position: relative; background: #fff; border-radius: var(--sk-radius-lg); max-width: 760px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 32px; z-index: 1; }
.sk-modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--sk-bg-soft); border: none; font-size: 20px; }

.sk-auth-modal__panel { max-width: 420px; }
.sk-auth-modal__title { font-size: 22px; margin-bottom: 4px; }
.sk-auth-modal__subtitle { color: var(--sk-text-light); font-size: 14px; margin-bottom: 20px; }

.sk-auth-form { display: flex; flex-direction: column; gap: 16px; }
.sk-auth-form__field { display: flex; flex-direction: column; gap: 6px; }
.sk-auth-form__field label { font-size: 13px; font-weight: 600; color: var(--sk-text); }
.sk-auth-form__field input, .sk-auth-form__field select, .sk-auth-form__field textarea {
	border: 1px solid var(--sk-border); border-radius: var(--sk-btn-radius); padding: 11px 14px;
	font-size: 15px; outline: none; transition: border-color var(--sk-transition); font-family: inherit;
	width: 100%; background: #fff; color: var(--sk-text);
}
.sk-auth-form__field textarea { resize: vertical; }
.sk-auth-form__field input:focus, .sk-auth-form__field select:focus, .sk-auth-form__field textarea:focus { border-color: var(--sk-primary); }
.sk-auth-form__row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.sk-auth-form__row a, .sk-auth-form__row button { color: var(--sk-primary); font-weight: 600; background: none; border: none; padding: 0; cursor: pointer; font-size: inherit; font-family: inherit; }
.sk-auth-form__checkbox { display: flex; align-items: center; gap: 6px; color: var(--sk-text-light); cursor: pointer; }
.sk-auth-form__switch { text-align: center; font-size: 14px; color: var(--sk-text-light); margin: 0; }
.sk-auth-form__switch button { background: none; border: none; color: var(--sk-primary); font-weight: 700; cursor: pointer; padding: 0; }
.sk-auth-form__message {
	border-radius: var(--sk-radius-sm); padding: 10px 14px; font-size: 14px; font-weight: 500;
	background: var(--sk-danger); color: #fff;
}
.sk-auth-form__message[data-state="success"] { background: var(--sk-success); }
.sk-auth-form__message[hidden] { display: none; }
.sk-auth-form button[type="submit"][disabled] { opacity: .7; cursor: wait; }
.sk-auth-form__divider { display: flex; align-items: center; gap: 12px; margin: 18px 0 4px; color: var(--sk-text-light); font-size: 13px; }
.sk-auth-form__divider::before, .sk-auth-form__divider::after { content: ''; flex: 1; height: 1px; background: var(--sk-border); }
.sk-google-btn { display: flex; justify-content: center; margin-bottom: 4px; }

/* Primary nav: plain single-row links with simple dropdowns (no mega
   category button/bar) — the walker still supports full mega panels
   for any menu item tagged with the "mega-menu" CSS class if needed. */
.sk-primary-nav { flex: 1; }
.sk-primary-menu { display: flex; align-items: center; gap: 2px; }
.sk-menu-item { position: relative; }
.sk-menu-link { display: flex; align-items: center; gap: 5px; padding: 10px 14px; font-weight: 500; font-size: 15px; color: var(--sk-text); border-radius: var(--sk-radius-sm); }
.sk-menu-link:hover { color: var(--sk-primary); }
.sk-menu-item.current-menu-item > .sk-menu-link,
.sk-menu-item.current_page_item > .sk-menu-link { color: var(--sk-primary); font-weight: 600; }
.sk-menu-caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform var(--sk-transition); }
.sk-submenu { position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; border-radius: var(--sk-radius); box-shadow: var(--sk-shadow-lg); padding: 10px; display: none; z-index: 150; }
.sk-menu-item--has-children:hover > .sk-submenu { display: block; }
.sk-submenu .sk-menu-link { padding: 10px 12px; }
.sk-mega-panel { position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: var(--sk-shadow-lg); display: none; z-index: 150; border-radius: 0 0 var(--sk-radius) var(--sk-radius); }
.sk-menu-item--mega:hover .sk-mega-panel { display: block; }
.sk-mega-panel__inner { max-width: var(--sk-container); margin-inline: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 28px 24px; }

/* ---------------------------------------------------------------------
   9. MOBILE MENU / BOTTOM NAV
   --------------------------------------------------------------------- */
.sk-mobile-menu { position: fixed; inset: 0; z-index: 1000; visibility: hidden; }
.sk-mobile-menu[aria-hidden="false"] { visibility: visible; }
.sk-mobile-menu__overlay { position: absolute; inset: 0; background: rgba(17,24,39,.5); opacity: 0; transition: opacity var(--sk-transition); }
.sk-mobile-menu[aria-hidden="false"] .sk-mobile-menu__overlay { opacity: 1; }
.sk-mobile-menu__panel {
	position: absolute; top: 0; left: 0; bottom: 0; width: 85%; max-width: 340px;
	background: #fff; padding: 0; overflow-y: auto; transform: translateX(-100%);
	transition: transform var(--sk-transition); display: flex; flex-direction: column;
}
.sk-mobile-menu[aria-hidden="false"] .sk-mobile-menu__panel { transform: translateX(0); }
.sk-mobile-menu__header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 12px; }
.sk-mobile-menu__close { background: none; border: none; font-size: 24px; line-height: 1; color: var(--sk-text-light); }
.sk-search-form--mobile { margin: 0 20px 16px; }
.sk-mobile-menu nav[aria-label] { border-top: 6px solid var(--sk-bg-soft); padding-top: 4px; }
.sk-mobile-menu__list li a { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--sk-border-light); font-weight: 500; }
.sk-mobile-menu__list li { position: relative; }
.sk-mobile-menu__list .sk-mobile-menu__caret {
	position: absolute; right: 20px; top: 0; width: 44px; height: 48px; background: none; border: none;
	display: flex; align-items: center; justify-content: center; padding: 0;
}
.sk-mobile-menu__list .sk-mobile-menu__caret .sk-menu-caret { transition: transform var(--sk-transition); }
.sk-mobile-menu__list li.is-open > .sk-mobile-menu__caret .sk-menu-caret { transform: rotate(135deg); }
.sk-mobile-menu__list .sub-menu, .sk-mobile-menu__list .sk-submenu, .sk-mobile-menu__list .sk-mega-panel { position: static; display: none; box-shadow: none; padding-left: 12px; }
.sk-mobile-menu__list li.is-open > .sub-menu,
.sk-mobile-menu__list li.is-open > .sk-submenu,
.sk-mobile-menu__list li.is-open > .sk-mega-panel { display: block; }
.sk-mobile-menu__footer { display: flex; flex-direction: column; gap: 8px; padding: 16px 20px 24px; border-top: 6px solid var(--sk-bg-soft); margin-top: 4px; }

.sk-mobile-bottom-nav { display: none; }

/* ---------------------------------------------------------------------
   10. PRODUCT CARD (used across home/shop/wishlist/search/related)
   --------------------------------------------------------------------- */
.sk-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sk-gap); }
.sk-product-grid--4col { grid-template-columns: repeat(4, 1fr); }

.sk-product-card {
	background: #fff; border-radius: var(--sk-radius-lg); overflow: hidden;
	box-shadow: var(--sk-shadow); border: 1px solid var(--sk-border-light);
	transition: box-shadow var(--sk-transition), transform var(--sk-transition);
	display: flex; flex-direction: column;
}
.sk-product-card:hover { box-shadow: var(--sk-shadow-lg); transform: translateY(-4px); }

.sk-product-card__media { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--sk-bg-soft); }
.sk-product-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.sk-product-card:hover .sk-product-card__thumb img { transform: scale(1.06); }
.sk-badge--version-circle {
	position: absolute; top: 12px; right: 12px; z-index: 2; width: 40px; height: 40px; padding: 0;
	border-radius: 50%; background: var(--sk-secondary); color: #fff; display: flex; align-items: center; justify-content: center;
	font-size: 11px; font-weight: 800; box-shadow: var(--sk-shadow); text-align: center; line-height: 1.1;
}
.sk-product-card__body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.sk-badge--type { align-self: flex-start; background: var(--sk-bg-soft); color: var(--sk-text-light); font-weight: 600; margin-bottom: 2px; }
.sk-product-card__title { font-size: 16px; margin: 0; }
.sk-product-card__title a:hover { color: var(--sk-primary); }
.sk-product-card__rating { margin-top: 2px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sk-product-card__sold { font-size: 11.5px; color: var(--sk-text-muted); }
.sk-product-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; }
.sk-product-card__price { font-size: 18px; font-weight: 800; color: var(--sk-text); }
.sk-product-card__price del { color: var(--sk-text-muted); font-weight: 400; font-size: 14px; margin-right: 4px; }
.sk-product-card__price ins { text-decoration: none; }
.sk-product-card__actions { display: flex; align-items: center; gap: 8px; }
.sk-icon-btn--square { width: 36px; height: 36px; border: 1px solid var(--sk-border); box-shadow: none; border-radius: var(--sk-radius-sm); }
.sk-icon-btn--square:hover { border-color: var(--sk-primary); background: var(--sk-primary); color: #fff; }

/* Carousels (best sellers / new arrivals / testimonials) — simple
   horizontal scroll-snap track; JS (main.js) adds prev/next controls. */
.sk-carousel {
	display: flex; gap: var(--sk-gap); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; scrollbar-width: none;
	-webkit-mask-image: linear-gradient(to right, #000 0%, #000 90%, transparent 100%);
	mask-image: linear-gradient(to right, #000 0%, #000 90%, transparent 100%);
}
.sk-carousel::-webkit-scrollbar { display: none; }
.sk-carousel__item { flex: 0 0 260px; scroll-snap-align: start; }

/* ---------------------------------------------------------------------
   11. EMPTY STATES / MISC UTILITIES
   --------------------------------------------------------------------- */
.sk-empty-state { text-align: center; padding: 60px 20px; color: var(--sk-text-light); }
.sk-empty-state h2 { margin-bottom: 8px; }

/* Password reset ("forgot password" / "set new password") standalone
   card on the My Account page — reuses .sk-auth-form for the fields
   but isn't inside a .sk-modal, so it needs its own frame. */
.sk-reset-card {
	max-width: 420px; margin: 40px auto; background: #fff; border: 1px solid var(--sk-border);
	border-radius: var(--sk-radius-lg); padding: 40px 32px; text-align: center;
}
.sk-reset-card__icon {
	width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	margin: 0 auto 16px; background: var(--sk-primary-light); color: var(--sk-primary);
}
.sk-reset-card__icon--warning { background: var(--sk-warning-light); color: var(--sk-warning); }
.sk-reset-card h2 { margin: 0 0 8px; font-size: 20px; color: var(--sk-text); }
.sk-reset-card > p { margin: 0 0 24px; color: var(--sk-text-light); font-size: 14px; line-height: 1.6; }
.sk-reset-card .sk-auth-form { text-align: left; }
.sk-reset-card .sk-auth-form__message { margin-bottom: 4px; }

.sk-breadcrumbs { padding-block: 16px; font-size: 13px; color: var(--sk-text-muted); }
.sk-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.sk-breadcrumbs a { display: inline-flex; align-items: center; }
.sk-breadcrumbs a:hover { color: var(--sk-primary); }
.sk-breadcrumbs__icon { margin-right: 5px; }
.sk-breadcrumbs__sep { margin-left: 6px; }

.sk-pagination ul { display: flex; justify-content: center; gap: 6px; margin-top: 32px; }
.sk-pagination a, .sk-pagination span { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; border-radius: var(--sk-radius-sm); border: 1px solid var(--sk-border); font-weight: 600; }
.sk-pagination .current { background: var(--sk-primary); color: #fff; border-color: var(--sk-primary); }
.sk-pagination a:hover { border-color: var(--sk-primary); color: var(--sk-primary); }

.sk-trust-badges { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; }
.sk-trust-badges__item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 180px; }
.sk-trust-badges__icon {
	display: flex; align-items: center; justify-content: center; width: 48px; height: 48px;
	border-radius: 50%; flex-shrink: 0;
}
.sk-trust-badges__icon .sk-icon { width: 1.3em; height: 1.3em; }
.sk-trust-badges__item strong { display: block; font-size: 14px; }
.sk-trust-badges__item small { color: var(--sk-text-light); font-size: 12px; }

.sk-back-to-top {
	position: fixed; bottom: 24px; right: 24px; width: 46px; height: 46px; border-radius: 50%;
	background: var(--sk-gradient); color: #fff; border: none; font-size: 18px; box-shadow: var(--sk-shadow-lg);
	z-index: 500; transition: opacity var(--sk-transition), transform var(--sk-transition);
	align-items: center; justify-content: center; padding: 0; line-height: 1;
}
.sk-back-to-top.is-visible { display: flex; }
.sk-back-to-top:not(.is-visible) { display: none; }

.sk-carousel-dots { display: none; justify-content: center; gap: 6px; margin-top: 20px; }
.sk-carousel-dots[hidden] { display: none !important; }
.sk-carousel-dots__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sk-border); border: none; padding: 0; transition: all var(--sk-transition); }
.sk-carousel-dots__dot.is-active { background: var(--sk-primary); width: 18px; border-radius: 3px; }

.sk-ad-zone:empty, .sk-ad-wrap:empty { display: none; }
.sk-ad-wrap { text-align: center; margin-block: 24px; }

/* ---------------------------------------------------------------------
   12. FOOTER
   --------------------------------------------------------------------- */
.sk-newsletter-section { background: #fff; border-top: 1px solid var(--sk-border-light); border-bottom: 1px solid var(--sk-border-light); }
.sk-footer-newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 32px; flex-wrap: wrap; }
.sk-footer-newsletter__text { display: flex; align-items: center; gap: 16px; }
.sk-footer-newsletter__icon {
	display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; flex-shrink: 0;
	border-radius: var(--sk-radius); background: var(--sk-primary-light); color: var(--sk-primary);
}
.sk-footer-newsletter__icon .sk-icon { width: 1.6em; height: 1.6em; }
.sk-footer-newsletter__text h3 { margin-bottom: 2px; font-size: 17px; }
.sk-footer-newsletter__text p { margin: 0; color: var(--sk-text-light); font-size: 14px; }
.sk-newsletter-form { display: flex; gap: 10px; }
.sk-newsletter-form input { padding: 12px 16px; border-radius: var(--sk-btn-radius); min-width: 280px; }
.sk-newsletter-form__message { text-align: center; font-size: 13px; margin-top: 8px; }

.sk-footer { background: var(--sk-bg-soft); color: var(--sk-text-light); margin-top: 0; border-top: 1px solid var(--sk-border-light); }
.sk-footer-main { padding-block: 48px; }
.sk-footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; }
.sk-footer-col--brand .sk-logo__text { display: inline-flex; align-items: center; gap: 10px; }
.sk-footer-col--brand .sk-logo__title { color: var(--sk-text); }
.sk-footer-col--brand p { color: var(--sk-text-light); font-size: 14px; margin-top: 14px; }

.sk-footer-title { font-size: 15px; margin: 0 0 16px; }
.sk-footer-title__btn {
	display: flex; align-items: center; justify-content: space-between; width: 100%;
	background: none; border: none; color: var(--sk-text); font: inherit; font-weight: 700; padding: 0;
	cursor: default;
}
.sk-footer-chevron { display: none; }
.sk-footer-links li { margin-bottom: 10px; }
.sk-footer-links a { color: var(--sk-text-light); font-size: 14px; }
.sk-footer-links a:hover { color: var(--sk-primary); }

.sk-social-links { display: flex; gap: 10px; margin-top: 16px; }
.sk-social-links__item {
	width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--sk-text);
	display: flex; align-items: center; justify-content: center; box-shadow: var(--sk-shadow-sm);
}
.sk-social-links__item .sk-icon { width: 16px; height: 16px; }
.sk-social-links__item:hover { background: var(--sk-primary); color: #fff; }

.sk-footer-bottom { border-top: 1px solid var(--sk-border); padding-block: 20px; }
.sk-footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--sk-text-light); }
.sk-footer-legal-menu { display: flex; gap: 16px; }
.sk-footer-legal-menu a:hover { color: var(--sk-primary); }
.sk-payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.sk-payment-icon { padding: 4px 10px; border: 1px solid var(--sk-border); border-radius: 4px; font-size: 11px; font-weight: 700; background: #fff; color: var(--sk-text-light); }

.sk-trust-badges-section { padding-block: 40px; background: #fff; }

/* ---------------------------------------------------------------------
   13. FORMS (generic)
   --------------------------------------------------------------------- */
input[type="text"], input[type="email"], input[type="search"], input[type="password"],
input[type="number"], input[type="tel"], input[type="url"], select, textarea {
	border: 1px solid var(--sk-border); border-radius: var(--sk-btn-radius); padding: 11px 14px;
	background: #fff; width: 100%; transition: border-color var(--sk-transition);
}
input:focus, select:focus, textarea:focus { border-color: var(--sk-primary); outline: none; }
label { font-weight: 600; font-size: 14px; display: block; margin-bottom: 6px; }

/* Honeypot field (inc/security-antispam.php) — off-screen, not
   display:none/visibility:hidden, since some basic bots skip fields
   hidden that way. Real visitors never see or reach it. */
.sk-hp-field {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}
