/* Montserrat font is self-hosted and enqueued via functions.php (assets/vendor/fonts/montserrat/montserrat.css) */

/* =============================================================================
   1. Reset & Base
   ============================================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--primary:        #5021d9;
	--secondary:      #ab92ea;
	--nav-bg:         #3a0fcc;
	--white:          #ffffff;
	--light:          #f4f4f8;
	--text:           #1a1a2e;
	--muted:          #6b6b8a;
	--border:         #e2e2f0;
	--font:           'Segoe UI', system-ui, -apple-system, sans-serif;
	--radius:         10px;
	--card-radius:    25px;
	--transition:     all 0.3s ease;
	--shadow:         0 8px 25px rgba(0,0,0,0.06);
	--shadow-hover:   0 15px 35px rgba(0,0,0,.08);
	--border-shadow: color-mix( in srgb, var(--primary) 15%, transparent );
	--primary-light-bg: color-mix(in srgb, var(--primary) 8%, transparent);
	--btn-shadow: color-mix( in srgb, var(--primary) 30%, transparent );
	--main-bg: linear-gradient(135deg, var(--primary), var(--secondary));
	--radius-pill: 50px;
	--topbar-bg: color-mix(in srgb, var(--light) 45%, var(--white));
}

html body {
	--e-global-color-primary:   var(--primary) !important;
	--e-global-color-secondary: var(--secondary) !important;
	--e-global-color-text:      var(--text) !important;
	--e-global-color-accent:    var(--accent) !important;
}

html {
	overflow-x: hidden;
	width: 100%;
}

body {
	font-family: "Montserrat", sans-serif;
	line-height: 1.6;
	color: #333;
	font-size: 16px;
	background-color: #fdfdfd;
	overflow-x: hidden;
	width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}
img, svg, video {
	max-width: 100%;
	height: auto;
	display: block;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

button {
	border: none;
	background: none;
	cursor: pointer;
}

/* =============================================================================
   2. Layout Helpers
   ============================================================================= */

.section-padding {
    padding: 50px 0;
    overflow: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.content-area {
	display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
}

/* =============================================================================
   3. Header
   ============================================================================= */

/* -----------------------------------------------------------------------------
   3.1 Header — Announcement Bar
   ----------------------------------------------------------------------------- */

.sw-announcement-bar {
	background: var(--announcement-bg, var(--secondary, var(--primary)));
	color: var(--announcement-text, #fff);
}

.sw-announcement-bar-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 9px 44px;
	position: relative;
	text-align: center;
}

.sw-announcement-bar-text {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.4;
}

.sw-announcement-bar-text a {
	color: inherit;
	text-decoration: underline;
}

.sw-announcement-bar-btn {
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.18);
	color: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	padding: 4px 12px;
	border-radius: 20px;
	white-space: nowrap;
	transition: background 0.2s;
}

.sw-announcement-bar-btn:hover {
	background: rgba(255, 255, 255, 0.32);
	color: inherit;
}

.sw-announcement-bar-close {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	color: inherit;
	opacity: 0.75;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	line-height: 0;
	transition: opacity 0.2s;
}

.sw-announcement-bar-close:hover {
	opacity: 1;
}

.sw-announcement-bar.sw-announcement-bar--hidden {
	display: none;
}

@media (max-width: 782px) {
	.sw-announcement-bar-inner {
		padding: 8px 36px;
		gap: 8px;
	}

	.sw-announcement-bar-text {
		font-size: 0.75rem;
	}

	.sw-announcement-bar-btn {
		font-size: 0.7rem;
		padding: 3px 10px;
	}

	.sw-announcement-bar-close {
		right: 10px;
	}
}

/* -----------------------------------------------------------------------------
   3.2 Header — Shell
   ----------------------------------------------------------------------------- */

.sw-topbar {
	background: var(--topbar-bg);
	position: relative;
}

.sw-topbar::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
}

.sw-topbar-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding: 14px 24px;
	height: 72px;
}

/* -----------------------------------------------------------------------------
   3.3 Header — Logo
   ----------------------------------------------------------------------------- */

.sw-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	flex-shrink: 0;
	margin-right: 4px;
	transition: var(--transition);
}

.sw-logo:hover {
	transform: translateY(-1px);
}

img.custom-logo {
	height: 46px;
	width: auto;
	max-height: 46px;
	max-width: 180px;
	object-fit: contain;
	display: block;
}

.sw-logo .custom-logo-link {
	display: flex;
	align-items: center;
}

.sw-logo-text {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.8px;
	font-family: var(--font);
}

.sw-logo-badge {
	background: var(--main-bg);
	color: #fff;
	font-size: 0.58rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: var(--radius-pill);
	letter-spacing: 0.6px;
	text-transform: uppercase;
	vertical-align: middle;
	margin-left: 3px;
	box-shadow: 0 3px 8px var(--btn-shadow);
}

/* -----------------------------------------------------------------------------
   3.4 + 3.5 Header — Category + Search combo pill (signature element)
   ----------------------------------------------------------------------------- */

.sw-mobile-search-row {
	display: flex;
	align-items: stretch;
	flex: 1;
	max-width: 640px;
	background: var(--light);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	overflow: visible;
	transition: var(--transition);
	height: 44px;
}

.sw-mobile-search-row:focus-within {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px var(--border-shadow);
	background: var(--white);
}

.sw-cat-wrap {
	position: relative;
	flex-shrink: 0;
}

.sw-cat-trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: none;
	border-right: 1px solid var(--border);
	border-radius: 0;
	padding: 0 16px 0 18px;
	height: 44px;
	cursor: pointer;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text);
	white-space: nowrap;
	flex-shrink: 0;
	transition: var(--transition);
	position: relative;
	user-select: none;
}

.sw-cat-trigger:hover {
	color: var(--primary);
}

.sw-cat-trigger svg {
	transition: var(--transition);
	flex-shrink: 0;
}

.sw-cat-trigger.open svg {
	transform: rotate(180deg);
}

.sw-cat-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: var(--shadow-hover);
	min-width: 230px;
	z-index: 9999;
	display: none;
	padding: 8px 0;
}

.sw-cat-dropdown.open {
	display: block;
	animation: swDropIn 0.18s ease;
}

.sw-cat-dropdown a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	font-size: 0.875rem;
	color: var(--text);
	text-decoration: none;
	transition: var(--transition);
}

.sw-cat-dropdown a svg {
	color: var(--primary);
	flex-shrink: 0;
}

.sw-cat-dropdown a:hover {
	background: var(--primary-light-bg);
	color: var(--primary);
	padding-left: 22px;
}

@keyframes swDropIn {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

/* -----------------------------------------------------------------------------
   3.5 Header — Search Bar
   ----------------------------------------------------------------------------- */

.sw-search-form {
	flex: 1;
	display: flex;
	align-items: center;
	border: none;
	border-radius: 0;
	overflow: hidden;
	background: transparent;
}

.sw-search-form input {
	flex: 1;
	min-width: 0;
	border: none;
	background: transparent;
	padding: 0 16px;
	font-size: 0.875rem;
	color: var(--text);
	outline: none;
	font-family: var(--font);
}

.sw-search-form input::placeholder {
	color: var(--muted);
}

.sw-search-btn[type="submit"] {
	background: var(--main-bg);
	border: none;
	border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
	padding: 0 20px;
	height: 44px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	flex-shrink: 0;
}

.sw-search-btn:hover {
	filter: brightness(1.08);
}

/* -----------------------------------------------------------------------------
   3.6 Header — Icon Buttons
   ----------------------------------------------------------------------------- */

.sw-icons {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.sw-icon-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	color: var(--text);
	background: var(--light);
	text-decoration: none;
	transition: var(--transition);
}

.sw-icon-btn:hover {
	background: var(--primary-light-bg);
	color: var(--primary);
	transform: translateY(-2px);
}

.sw-icon-count {
	position: absolute;
	top: 0px;
	right: 0px;
	background: var(--main-bg);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 700;
	min-width: 17px;
	height: 17px;
	border: 2px solid var(--white);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 3px;
}

/* -----------------------------------------------------------------------------
   3.7 Header — Cart Total Button
   ----------------------------------------------------------------------------- */

.sw-cart-total {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 16px 0 8px;
	height: 44px;
	border: none;
	background: var(--main-bg);
	border-radius: 14px;
	font-size: 0.9rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: var(--transition);
	flex-shrink: 0;
	box-shadow: 0 6px 16px var(--btn-shadow);
}

.sw-cart-total:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px var(--btn-shadow);
}

.sw-cart-icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.22);
	border-radius: 9px;
}

.sw-cart-icon-wrap .sw-icon-count {
	top: -6px;
	right: -6px;
	border-color: var(--white);
}

/* -----------------------------------------------------------------------------
   3.8 Header — Auth (logged-in)
   ----------------------------------------------------------------------------- */

.sw-auth {
	position: relative;
	display: flex;
	align-items: center;
}

.sw-user-trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 6px 12px 6px 6px;
	border-radius: 14px;
	transition: var(--transition);
}

.sw-user-trigger svg {
	background: var(--primary-light-bg);
	color: var(--primary);
	padding: 6px;
	width: 30px;
	height: 30px;
	border-radius: 10px;
	box-sizing: border-box;
}

.sw-user-trigger:hover {
	background: var(--light);
}

.sw-user-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 190px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: var(--shadow-hover);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: var(--transition);
	z-index: 9999;
	padding: 8px 0;
}

.sw-auth:hover .sw-user-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sw-user-dropdown a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	color: var(--text);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	transition: var(--transition);
}

.sw-user-dropdown a:hover {
	background: var(--primary-light-bg);
	color: var(--primary);
}

.sw-auth-dropdown-sep {
	height: 1px;
	background: var(--border);
	margin: 4px 0;
}

/* -----------------------------------------------------------------------------
   3.9 Header — Auth (guest)
   ----------------------------------------------------------------------------- */

.sw-auth-guest {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.sw-btn-login {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	padding: 0 14px;
	height: 40px;
	border-radius: 12px;
	transition: var(--transition);
	white-space: nowrap;
}

.sw-btn-login:hover {
	background: var(--light);
	color: var(--primary);
}

.sw-btn-register {
	display: inline-flex;
	align-items: center;
	font-size: 0.82rem;
	font-weight: 700;
	color: #fff;
	background: var(--main-bg);
	text-decoration: none;
	padding: 0 18px;
	height: 40px;
	border-radius: 12px;
	transition: var(--transition);
	white-space: nowrap;
	box-shadow: 0 6px 16px var(--btn-shadow);
}

.sw-btn-register:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px var(--btn-shadow);
}

/* -----------------------------------------------------------------------------
   3.10 Header — Nav Bar
   ----------------------------------------------------------------------------- */

.sw-navbar {
	background: var(--main-bg);
	position: relative;
}

.sw-navbar-inner {
	max-width: 1250px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	height: 50px;
	position: relative;
}

.sw-allcat-wrap {
	position: relative;
	flex-shrink: 0;
	align-self: stretch;
}

.sw-allcat-btn {
	display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    background: var(--white);
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0 16px;
    width: 283px;
    height: 100%;
}

.sw-primary-nav {
	flex: 1;
}

.sw-primary-nav ul {
	display: flex;
	justify-content: center;
	gap: 4px;
	height: 50px;
	padding-left: 0;
}

.sw-primary-nav ul li {
	position: relative;
}

.sw-primary-nav ul li a,
.sw-primary-nav ul li > span {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0 16px;
	height: 50px;
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	font-family: var(--font);
	white-space: nowrap;
	position: relative;
}

.sw-primary-nav > ul > li > a::before {
	content: '';
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 8px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transform: scaleX(0);
	transition: transform 0.25s ease;
}

.sw-primary-nav > ul > li > a:hover,
.sw-primary-nav > ul > li.current-menu-item > a {
	color: #fff;
	background: transparent;
}

.sw-primary-nav > ul > li > a:hover::before,
.sw-primary-nav > ul > li.current-menu-item > a::before {
	transform: scaleX(1);
}

.sw-primary-nav ul li ul {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: var(--shadow-hover);
	min-width: 200px;
	padding: 8px 0;
	height: auto;
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.sw-primary-nav ul li ul li a {
	color: var(--text);
	height: auto;
	padding: 9px 18px;
	display: block;
	font-size: 0.85rem;
	background: transparent;
}

.sw-primary-nav ul li ul li a::before {
	display: none;
}

.sw-primary-nav ul li ul li a:hover {
	color: var(--primary);
	background: var(--primary-light-bg);
}

.sw-primary-nav ul li ul li.current-menu-item > a,
.sw-primary-nav ul li ul li.current_page_item > a {
	color: var(--primary);
	background: var(--primary-light-bg);
}

.sw-primary-nav ul li:hover > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sw-primary-nav ul li.menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-3px);
	margin-top: 2px;
	opacity: 0.85;
}

/* -----------------------------------------------------------------------------
   3.11 Header — Mobile Toggle
   ----------------------------------------------------------------------------- */

.sw-mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	color: #fff;
	padding: 8px;
}

.sw-mobile-toggle--topbar {
	display: none;
	background: var(--light);
	border-radius: 12px;
}

/* =============================================================================
   4. Blog Homepage
   ============================================================================= */

.sw-blog {
	padding: 50px 0;
}

.sw-blog-header {
	margin-bottom: 28px;
}

.sw-blog-heading {
	font-size: 22px;
	font-weight: 700;
	color: var(--text);
	position: relative;
	padding-bottom: 12px;
}

.sw-blog-heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 48px;
	height: 3px;
	background: var(--primary);
	border-radius: 2px;
}

.sw-post-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.sw-post-card {
	display: flex;
	background: var(--white);
	border-radius: var(--card-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.sw-post-card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-2px);
}

.sw-post-card__thumb {
	position: relative;
	flex-shrink: 0;
	width: 280px;
	min-height: 200px;
	overflow: hidden;
}

.sw-post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: var(--transition);
}

.sw-post-card:hover .sw-post-card__thumb img {
	transform: scale(1.04);
}

.sw-post-card__cat {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--primary);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: var(--radius);
	text-decoration: none;
	text-transform: uppercase;
	transition: var(--transition);
}

.sw-post-card__cat:hover {
	background: var(--secondary);
	color: #fff;
}

.sw-post-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
	flex: 1;
}

.sw-post-card__title {
	font-size: var(--blog-title-size-desktop, 20px);
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 12px;
}

.sw-post-card__title a {
	color: var(--text);
	text-decoration: none;
	transition: var(--transition);
}

.sw-post-card__title a:hover {
	color: var(--primary);
}

.sw-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 12px;
}

.sw-post-card__meta-item {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	color: var(--muted);
}

.sw-post-card__meta-item svg {
	flex-shrink: 0;
	color: var(--primary);
}

/* ---- Blog Layout: Grid View ---- */

.sw-post-list--grid {
	display: grid;
	grid-template-columns: repeat(var(--blog-cols-desktop, 3), 1fr);
	gap: 22px;
}

.sw-post-list--grid .sw-post-card {
	flex-direction: column;
	height: 100%;
}

.sw-post-list--grid .sw-post-card__thumb {
	width: 100%;
	min-height: 200px;
}

.sw-post-list--grid .sw-post-card__body {
    padding: 22px;
	justify-content: flex-start;
	flex: 1;
}

.sw-post-list--grid .sw-post-card__body .entry-summary {
	flex: 1;
}

.sw-post-list--grid .sw-post-card__body .sw-post-card__meta {
	gap: 5px;
}

.sw-post-list--grid .sw-post-card__body .sw-post-card__meta-item {
	font-size: 12px;
}

.sw-post-card .entry-summary {
	font-size: var(--blog-excerpt-size-desktop, 16px);
}

.read-more-btn {
	display: inline-block;
	padding: 9px 22px;
	border: 2px solid var(--primary);
	background: var(--main-bg);
	color: #fff;
	margin-top: 15px;
	font-size: 13px;
	font-weight: 600;
	border-radius: var(--radius);
	text-decoration: none;
	transition: var(--transition);
	align-self: flex-start;
	box-shadow: 0 14px 34px var(--btn-shadow);
}

.read-more-btn:hover {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
	box-shadow: none;
}

/* =============================================================================
   5. Pagination — Blog (WP core) + Shop (WooCommerce)
   ============================================================================= */

/* Shorthand: p = .nav-links .page-numbers, q = .woocommerce-pagination ul.page-numbers li .page-numbers */
:is(.nav-links, .woocommerce-pagination ul.page-numbers li) .page-numbers {
	--_p: ;
}
.sw-pagination, .navigation.pagination, .woocommerce-pagination {
	display: flex;
	justify-content: center;
	margin-top: 48px;
	margin-bottom: 12px;
}
.sw-pagination .nav-links, .navigation.pagination .nav-links {
	margin-top: 0;
}
.nav-links,
.woocommerce-pagination ul.page-numbers {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 8px;
	list-style: none;
	margin: 0;
	background: var(--light);
	border: 1px solid var(--border);
	border-radius: 999px;
	box-shadow: var(--shadow);
	height: auto;
	min-width: auto;
}
.woocommerce-pagination ul.page-numbers li {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
}
:is(.nav-links, .woocommerce-pagination ul.page-numbers li) .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 6px;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: var(--text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: var(--transition);
	cursor: pointer;
}
:is(.nav-links, .woocommerce-pagination ul.page-numbers li) .page-numbers:hover {
	background: color-mix(in srgb, var(--primary) 12%, transparent);
	color: var(--primary);
	transform: translateY(-1px);
}
:is(.nav-links, .woocommerce-pagination ul.page-numbers li) .page-numbers.current {
	background: var(--main-bg);
	color: #fff;
	box-shadow: 0 4px 14px var(--btn-shadow);
	transform: none;
}
:is(.nav-links, .woocommerce-pagination ul.page-numbers li) .page-numbers.prev,
:is(.nav-links, .woocommerce-pagination ul.page-numbers li) .page-numbers.next {
	font-size: 16px;
}
:is(.nav-links, .woocommerce-pagination ul.page-numbers li) .page-numbers.dots {
	color: var(--muted);
	background: transparent !important;
	pointer-events: none;
	min-width: 28px;
	letter-spacing: 1px;
	transform: none !important;
	box-shadow: none !important;
}

.nav-links .page-numbers.prev {
	margin-right: 6px;
	position: relative;
}

.nav-links .page-numbers.prev::after {
	content: '';
	position: absolute;
	right: -7px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background: var(--border, #e8e8f0);
	pointer-events: none;
}

.nav-links .page-numbers.next {
	margin-left: 6px;
	position: relative;
}

.nav-links .page-numbers.next::before {
	content: '';
	position: absolute;
	left: -7px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background: var(--border, #e8e8f0);
	pointer-events: none;
}

.woocommerce-pagination ul.page-numbers li:has(.page-numbers.prev)::after {
	content: '';
	display: block;
	width: 1px;
	height: 20px;
	background: var(--border, #e8e8f0);
	margin-left: 6px;
}

.woocommerce-pagination ul.page-numbers li:has(.page-numbers.next)::before {
	content: '';
	display: block;
	width: 1px;
	height: 20px;
	background: var(--border, #e8e8f0);
	margin-right: 6px;
}

@media (max-width: 480px) {
	.nav-links, .woocommerce-pagination ul.page-numbers {
		padding: 5px;
		gap: 2px;
	}

}

/* =============================================================================
   6. Responsive — Blog Index
   ============================================================================= */

@media (max-width: 1024px) {
	.sw-post-card__thumb {
		width: 220px;
	}
}

@media (max-width: 767px) {
	.sw-post-card {
		flex-direction: column;
	}

	.sw-post-card__thumb {
		width: 100%;
		min-height: 200px;
	}

	.sw-post-card__body {
		padding: 20px;
	}

	.sw-sidebar {
		width: 100%;
	}

	.sw-post-list--grid {
		grid-template-columns: repeat(var(--blog-cols-tablet, 2), 1fr);
	}

	.sw-post-card__title {
		font-size: var(--blog-title-size-tablet, 18px);
	}

	.sw-post-card .entry-summary {
		font-size: var(--blog-excerpt-size-tablet, 15px);
	}
}

@media (max-width: 480px) {
    .sw-post-list--grid {
		grid-template-columns: repeat(var(--blog-cols-mobile, 1), 1fr);
	}
	
	.sw-post-card__title {
		font-size: var(--blog-title-size-mobile, 17px);
	}

	.sw-post-card .entry-summary {
		font-size: var(--blog-excerpt-size-mobile, 14px);
	}
}


/* =============================================================================
   7. Blog / Single Post
   ============================================================================= */
.blog-post--card {
	background: var(--white);
	border-radius: var(--card-radius, 12px);
	box-shadow: var(--shadow);
	overflow: hidden;
	padding: 0 0 40px;
	margin-bottom: 50px;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 0;
	display: block;
}

.post-meta--below-thumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 20px;
	padding: 20px 36px;
	border-bottom: 1px solid #f0f0f0;
	color: #666;
	font-size: 13.5px;
	margin-bottom: 0;
}

.post-meta span {
	margin-right: 15px;
}

.post-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.post-meta__item svg {
	flex-shrink: 0;
	color: var(--primary, #e84393);
}

.post-meta__item a {
	color: inherit;
	text-decoration: none;
}

.post-meta__item a:hover {
	color: var(--primary, #e84393);
}

.blog-post--card .post-content {
	padding: 30px 30px 0;
	font-size: 16px;
	line-height: 1.8;
	color: #3a3a4a;
}
.post-content ul {
	padding-left: 18px;
	margin: 0 0 20px;
}
.blog-post--card .post-content p   { margin-bottom: 1em; }
.blog-post--card .post-content img { max-width: 100%; border-radius: 10px; }
.blog-post--card .post-content h2,
.blog-post--card .post-content h3 { margin-top: 1.8em; }

/* =============================================================================
   8. Social Share Bar
   ============================================================================= */
.sw-post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 24px 36px 0;
	padding-top: 24px;
	border-top: 1px solid #f0f0f0;
}

.sw-post-tags__label {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #888;
	white-space: nowrap;
}

.sw-post-tags__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sw-post-tags__item {
	display: inline-flex;
	align-items: center;
	padding: 5px 14px;
	border-radius: 30px;
	background: #f5f5f7;
	color: #555;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.sw-post-tags__item:hover {
	background: var(--primary, #e84393);
	color: #fff;
}

.sw-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 36px 36px 0;
	padding-top: 28px;
	border-top: 1px solid #f0f0f0;
}

.sw-share__label {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #888;
	white-space: nowrap;
}

.sw-share__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sw-share__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 15px;
	border-radius: var(--radius);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: var(--transition);
	line-height: 1;
}

.sw-share__btn:hover  { opacity: .85; transform: translateY(-1px); }
.sw-share__btn:active { transform: translateY(0); }

.sw-share__btn--facebook { background: #1877f2; color: #fff; }
.sw-share__btn--twitter  { background: #000;    color: #fff; }
.sw-share__btn--linkedin { background: #0a66c2; color: #fff; }
.sw-share__btn--whatsapp { background: #25d366; color: #fff; }
.sw-share__btn--copy     { background: #f3f4f6; color: #444; border: 1px solid #e0e0e0; }

/* =============================================================================
   9. Prev / Next Post Navigation
   ============================================================================= */
.sw-post-nav {
	margin-bottom: 40px;
}

.sw-post-nav__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.sw-post-nav__item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	background: var(--white);
	border-radius: var(--card-radius, 12px);
	padding: 16px 20px;
	box-shadow: var(--shadow);
	text-decoration: none;
	color: #333;
	transition: var(--transition);
	border: 1px solid transparent;
}

.sw-post-nav__item:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-2px);
	border-color: var(--primary, #e84393);
}

.sw-post-nav__item--next {
	flex-direction: row-reverse;
	text-align: right;
}

.sw-post-nav__item--next .sw-post-nav__text {
	align-items: flex-end;
}

.sw-post-nav__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
	min-width: 0;
}

.sw-post-nav__direction {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--primary, #e84393);
}

.sw-post-nav__thumb {
	width: 64px;
	height: 64px;
	border-radius: var(--radius);
	overflow: hidden;
	flex-shrink: 0;
}

.sw-post-nav__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sw-post-nav__title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #1a1a2e;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* =============================================================================
   10. Responsive Tweaks (Single Post)
   ============================================================================= */
@media (max-width: 640px) {
	.post-meta--below-thumb    { padding: 16px 20px; gap: 6px 14px; }
	.blog-post--card .post-content { padding: 24px 20px 0; }
	.sw-share                  { margin: 28px 20px 0; }
	.sw-share__btn             { padding: 7px 12px; font-size: 12px; }
	.sw-post-nav__inner        { grid-template-columns: 1fr; }
	.sw-post-nav__item--next   { flex-direction: row-reverse; text-align: right; }
	.sw-post-nav__thumb        { width: 52px; height: 52px; }
	.sw-post-nav__title        { font-size: 13px; }
}

/* =============================================================================
   11. Related Posts
   ============================================================================= */

.sw-related-posts {
	margin: 50px 0;
}

.sw-related-posts__header {
	margin-bottom: 24px;
}

.sw-related-posts__header h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
	position: relative;
	padding-bottom: 12px;
}

.sw-related-posts__header h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: var(--primary);
	border-radius: var(--radius);
}

.sw-related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.sw-related-post {
	background: var(--white);
	border-radius: var(--card-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.sw-related-post:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.sw-related-post__thumb {
	display: block;
	overflow: hidden;
}

.sw-related-post__thumb img {
	width: 100%;
	height: 175px;
	object-fit: cover;
	display: block;
	transition: var(--transition);
}

.sw-related-post:hover .sw-related-post__thumb img {
	transform: scale(1.05);
}

.sw-related-post__content {
	padding: 18px;
}

.sw-related-post__meta {
	font-size: 12px;
	color: #888;
	margin-bottom: 5px;
}

.sw-related-post__title {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
}

.sw-related-post__title a {
	color: var(--text);
	text-decoration: none;
	transition: var(--transition);
}

.sw-related-post__title a:hover {
	color: var(--primary);
}

@media (max-width: 991px) {
	.sw-related-posts__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.sw-related-posts__grid {
		grid-template-columns: 1fr;
	}

	.sw-related-post__thumb img {
		height: 200px;
	}
}

/* =============================================================================
   12. Comments Section
   ============================================================================= */

.sw-comments-section {
	margin-top: 50px;
	padding: 20px;
	background: var(--white);
	border-radius: var(--card-radius);
	box-shadow: var(--shadow);
}

.comment-body {
	position: relative;
	background: var(--white);
	border: 1px solid #eef2f7;
	border-radius: var(--card-radius);
	padding: 24px;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.comment-body:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.comment-author {
	display: flex;
}

.comment-author img,
.comment-author .avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: var(--shadow);
	margin-right: 15px;
}

.comment-author .fn {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	text-decoration: none;
}

.comment-author .says {
	display: none;
}

.comment-metadata {
	margin-left: 75px;
	margin-top: -35px;
}

.comment-metadata a {
	color: #6b7280;
	font-size: 14px;
	text-decoration: none;
}

.comment-content {
	margin-top: 10px;
	margin-left: 75px;
	color: #374151;
	line-height: 1.8;
}

.comment-content p:last-child {
	margin-bottom: 0;
}

.reply {
	margin-top: 15px;
	margin-left: 75px;
}

.reply a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--main-bg);
	color: #fff !important;
	padding: 5px 15px;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.reply a:hover {
	opacity: .9;
}

.sw-comments-section .comment-form textarea,
.sw-comments-section .comment-form input[type="text"],
.sw-comments-section .comment-form input[type="email"],
.sw-comments-section .comment-form input[type="url"] {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: var(--radius);
	margin-bottom: 15px;
}

.sw-comments-section .submit {
	padding: 12px 24px;
	border: 0;
	border-radius: var(--radius);
	cursor: pointer;
	background: var(--main-bg);
	color: #fff;
	font-weight: 600;
	transition: var(--transition);
}
.sw-comments-section .submit:hover{
	transform: translateY(-2px);
	box-shadow: 0 18px 40px var(--btn-shadow);
}

.sw-comments-section textarea:focus,
.sw-comments-section input[type="text"]:focus,
.sw-comments-section input[type="email"]:focus,
.sw-comments-section input[type="url"]:focus {
	outline: none;
	border-color: var(--primary-color, #4f46e5);
	box-shadow:0 0 0 3px var(--border-shadow);
}

.comment-list > li,
.commentlist > li {
	list-style: none;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.comment-author {
		flex-wrap: wrap;
	}
	.comment-metadata {
		margin-top: -5px;
	}
	.comment-author {
		margin-bottom: 10px;
	}
	.comment-metadata,
	.comment-content,
	.reply {
		margin-left: 0;
	}
	.children {
		margin-left: 15px;
		padding-left: 15px;
	}
}
/* =============================================================================
   13. Sidebar & Widgets
   ============================================================================= */

.widget {
	background: var(--white);
	border-radius: var(--card-radius);
	padding: 30px 20px;
	margin-bottom: 35px;
	box-shadow: var(--shadow);
}

h2.wp-block-heading {
	margin-bottom: 15px;
}

.widget ul {
	font-weight: 500;
}

.widget ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 20px;
	margin-left: -20px;
	margin-right: -20px;
	font-size: 14px;
	transition: var(--transition);
}

.widget ul li:hover {
	background: var(--light);
}

.widget ul li a {
	color: var(--text);
	text-decoration: none;
	transition: var(--transition);
	flex: 1;
}

.widget ul li a:hover {
	color: var(--primary);
}

.wp-block-search__button {
	background: var(--main-bg);
	border-radius: var(--radius);
	transition: var(--transition);
}

.wp-block-search__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px var(--btn-shadow);
}

.wp-block-search__input {
	padding: 0 14px;
	transition: var(--transition);
}

.wp-block-search__input:focus {
	border-color: var(--primary) !important;
	outline: none;
	box-shadow:0 0 0 3px var(--border-shadow);
}

.widget .wp-block-latest-posts {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget .wp-block-latest-posts li {
	display: grid;
	grid-template-columns: 70px 1fr;
	grid-template-rows: auto auto;
	grid-template-areas:
	"thumb title"
	"thumb date";
	border-radius: 0;
}

.widget .wp-block-latest-posts li:last-child {
	border-bottom: none;
}

.widget .wp-block-latest-posts__featured-image {
	grid-area: thumb;
	grid-row: 1 / 3;
	align-self: center;
	line-height: 0;
}

.widget .wp-block-latest-posts__featured-image img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 15px;
	display: block;
}

.widget .wp-block-latest-posts__post-title {
	grid-area: title;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.45;
	color: var(--text);
	text-decoration: none;
	transition: var(--transition);
	align-self: end;
}

.widget .wp-block-latest-posts__post-title:hover {
	color: var(--primary);
}

.widget .wp-block-latest-posts__post-date {
	grid-area: date;
	font-size: 12px;
	color: var(--muted);
	align-self: start;
}

.wp-block-tag-cloud,
.tagcloud{
	display: flex;
	flex-wrap: wrap;
}

.wp-block-tag-cloud a,
.tagcloud a {
	font-size: 13px !important;
	font-weight: 500;
	text-decoration: none;
	padding: 8px 14px;
	margin: 0 8px 8px 0;
	border-radius: 50px;
	color: #2b2b2b;
	background: rgba(255,255,255,.8);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,.5);
	box-shadow: 0 6px 15px rgb(0 0 0 / 6%), inset 0 1px 0 rgba(255, 255, 255, .8);
	transition: var(--transition);
}

.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
	color: #fff;
	background: var(--primary);
	border-color: var(--primary);
	transform: translateY(-4px);
	box-shadow: 0 14px 34px var(--btn-shadow);
}

.wp-block-tag-cloud .tag-cloud-link::before,
.tagcloud a::before {
	content: "#";
	margin-right: 4px;
	opacity: .7;
}

/* =============================================================================
   14. Nothing Found / Search Empty
   ============================================================================= */

.sw-no-results__card {
	max-width: 650px;
	width: 100%;
	border-radius: var(--card-radius);
	padding: 50px;
	text-align: center;
}

.sw-no-results__icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-light-bg);
	border-radius: 50%;
}

.sw-no-results__title {
	font-size: 30px;
	font-weight: 800;
	color: #1a1a2e;
	margin-bottom: 12px;
}

.sw-no-results__desc {
	font-size: 17px;
	color: #6b7280;
	max-width: 500px;
	margin: 0 auto 30px;
}

.sw-no-results__search {
	margin-bottom: 25px;
}

.sw-no-results__search form {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.sw-no-results__search input[type="search"],
.sw-no-results__search input[type="text"] {
	flex: 1;
	height: 52px;
	border: 2px solid var(--primary);
	border-radius: var(--radius);
	padding: 0 18px;
	font-size: 15px;
	outline: none;
	transition: var(--transition);
}

.sw-no-results__search input:focus {
	box-shadow:0 0 0 3px var(--border-shadow);
	background: var(--white);
}

.sw-no-results__search button,
.sw-no-results__search input[type="submit"] {
	height: 52px;
	padding: 0 24px;
	border: none;
	border-radius: var(--radius);
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.sw-no-results__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: var(--radius);
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.sw-no-results__btn:hover {
	transform: translateY(-2px);
}

@media (max-width: 768px) {

	.sw-no-results__card {
		padding: 35px 25px;
	}

	.sw-no-results__search button,
	.sw-no-results__search input[type="submit"] {
		width: 100%;
	}
}
/* =============================================================================
   15. Footer
   ============================================================================= */

.sw-footer{
	border-top: 2px solid var(--primary);
	padding: 20px 0;
	text-align: center;
}

.sw-footer p{
	margin:0;
	font-size:14px;
}

#sw-scroll-top{
	position:fixed;
	right:20px;
	bottom:20px;
	width:48px;
	height:48px;
	border:none;
	border-radius:50%;
	background: var(--main-bg);
	color:#fff;
	cursor:pointer;
	z-index:999;
	display:flex;
	align-items:center;
	justify-content:center;
	opacity:0;
	visibility:hidden;
	transform:translateY(15px);
	transition: var(--transition);
	box-shadow:0 10px 25px var(--btn-shadow);
}

#sw-scroll-top i{
	font-size:18px;
	line-height:1;
}

#sw-scroll-top:hover{
	transform:translateY(-3px);
}

#sw-scroll-top.show{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}
/* =============================================================================
   16. 404 Page
   ============================================================================= */

:root {
	--404-dark:       color-mix(in srgb, var(--primary) 80%, #000);
	--404-mid:        var(--secondary);
	--404-light:      color-mix(in srgb, var(--secondary) 55%, #fff);
	--404-suit-light: color-mix(in srgb, var(--secondary) 25%, #fff);
	--404-suit-dark:  color-mix(in srgb, var(--secondary) 45%, #fff);
	--404-visor-mid:  color-mix(in srgb, var(--secondary) 35%, #fff);
	--404-star:       color-mix(in srgb, var(--secondary) 40%, #fff);
	--404-oops:       var(--primary);
	--404-dot-color:  color-mix(in srgb, var(--secondary) 40%, #fff);
	--404-blob:       linear-gradient(135deg,
	color-mix(in srgb, var(--secondary) 45%, #fff),
	color-mix(in srgb, var(--primary)   65%, #fff));
}

.sw-404-wrap {
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--white);
	position: relative;
	overflow: hidden;
	padding: 40px 20px 60px;
}
.sw-404-blob-tl {
	position: absolute;
	top: -80px; left: -100px;
	width: 300px; height: 300px;
	background: var(--404-blob);
	border-radius: 50%;
	opacity: .5;
	pointer-events: none;
}
.sw-404-blob-br {
	position: absolute;
	bottom: -100px; right: -80px;
	width: 340px; height: 340px;
	background: var(--404-blob);
	border-radius: 50%;
	opacity: .4;
	pointer-events: none;
}
.sw-404-dot {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	background: var(--404-dot-color);
}
.sw-404-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 10;
}
.sw-404-illustration {
	width: 420px;
	max-width: 100%;
	height: auto;
}
.sw-404-illustration svg {
	width: 100%;
	height: auto;
	overflow: visible;
}
.sw-404-heading {
	font-family: 'Nunito', sans-serif;
	font-size: 26px;
	font-weight: 800;
	color: #1a1a2e;
	margin: 20px 0 0;
	letter-spacing: -.3px;
	text-align: center;
}
.sw-404-sub {
	font-size: 15px;
	color: #6b7280;
	margin: 8px 0 0;
	font-weight: 400;
	text-align: center;
}
.sw-404-actions {
	display: flex;
	gap: 14px;
	margin-top: 28px;
	flex-wrap: wrap;
	justify-content: center;
}
.sw-404-btn-home {
	background: var(--main-bg);
	color: #fff !important;
	border: none;
	padding: 12px 42px;
	font-size: 15px;
	font-weight: 700;
	border-radius: var(--radius);
	cursor: pointer;
	text-decoration: none !important;
	display: inline-block;
	transition: var(--transition);
	box-shadow: 0 8px 24px var(--btn-shadow);
}
.sw-404-btn-home:hover { opacity: .88; }
.sw-404-btn-shop {
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--secondary);
	padding: 10px 36px;
	font-size: 15px;
	font-weight: 700;
	border-radius: var(--radius);
	cursor: pointer;
	text-decoration: none !important;
	display: inline-block;
	transition: var(--transition);
}
.sw-404-btn-shop:hover {
	background: var(--secondary);
	color: #fff !important;
}
@media (max-width: 520px) {
	.sw-404-illustration { width: 310px; }
	.sw-404-heading { font-size: 20px; }
}
/* =============================================================================
   17. Responsive (Global Header Collapse)
   ============================================================================= */

@media (max-width: 900px) {
	.sw-topbar-inner {
		gap: 10px;
		padding: 10px 16px;
	}

	.sw-auth,
	.sw-auth-guest,
	.sw-cat-wrap {
		display: none;
	}
}

/* =============================================================================
   18. Mobile Two-Row Header (Drawer)
   ============================================================================= */

.sw-drawer-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 9998;
	opacity: 0;
	transition: var(--transition);
}
.sw-drawer-overlay.open {
	display: block;
	opacity: 1;
}

.sw-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 280px;
	max-width: 85vw;
	height: 100%;
	background: var(--white);
	z-index: 9999;
	transform: translateX(-100%);
	transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
	overflow-y: auto;
}
.sw-drawer.open {
	transform: translateX(0);
}

.sw-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-bottom: 1px solid var(--border, #e2e2f0);
	background: var(--main-bg);
	flex-shrink: 0;
}
.sw-drawer-head .sw-drawer-title {
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.3px;
}
.sw-drawer-close {
	background: none;
	border: none;
	cursor: pointer;
	color: #fff;
	padding: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius);
	transition: var(--transition);
}
.sw-drawer-close:hover {
	background: rgb(255 255 255 / 57%);
}

.sw-drawer-nav {
	flex: 1;
	padding: 12px 0;
}

.sw-drawer-nav ul li a {
	display: flex;
	align-items: center;
	padding: 13px 20px;
	font-size: 15px;
	font-weight: 500;
	color: var(--text-main, #1a1a2e);
	text-decoration: none;
	border-bottom: 1px solid var(--border, #e2e2f0);
	transition: var(--transition);
}
.sw-drawer-nav ul li a:hover {
	background: var(--primary-light-bg);
	color: var(--primary, #3b0fad);
}

.sw-drawer-nav ul li.menu-item-has-children {
	position: relative;
}

.sw-drawer-nav .sw-sub-toggle {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 0;
	background: none;
	border: none;
	border-left: 1px solid var(--border, #e2e2f0);
	cursor: pointer;
	color: var(--text-main, #1a1a2e);
	transition: var(--transition);
	z-index: 1;
}
.sw-drawer-nav .sw-sub-toggle:hover {
	background: var(--primary-light-bg);
	color: var(--primary, #3b0fad);
}
.sw-drawer-nav .sw-sub-toggle svg {
	transition: var(--transition);
}
.sw-drawer-nav li.menu-item-has-children.sw-open > .sw-sub-toggle svg {
	transform: rotate(180deg);
}

.sw-drawer-nav ul li ul {
	position: static !important;
	top: auto !important;
	left: auto !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	box-shadow: none !important;
	border: none !important;
	border-radius: 0 !important;
	min-width: 0 !important;
	padding: 0 !important;
	background: var(--light);
	max-height: 0;
	overflow: hidden;
	transition: var(--transition);
}
.sw-drawer-nav li.sw-open > ul {
	max-height: 1000px;
}

.sw-drawer-nav ul li ul li a {
	padding: 11px 20px 11px 36px;
	font-size: 14px;
	font-weight: 400;
	border-bottom: 1px solid var(--border, #e2e2f0);
	background: transparent;
	color: var(--text-main, #1a1a2e);
}

.sw-drawer-account {
	padding: 16px 20px;
	border-top: 1px solid var(--border, #e2e2f0);
	margin-top: auto;
}
.sw-drawer-account-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 12px 16px;
	border-radius: 12px;
	background: var(--main-bg);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
	box-shadow: 0 6px 16px var(--btn-shadow);
}
.sw-drawer-account-btn:hover {
	filter: brightness(1.08);
	color: #fff;
}
.sw-drawer-account-btn svg {
	flex-shrink: 0;
}

@media (max-width: 768px) {

	.sw-navbar {
		display: none !important;
	}

	.sw-topbar-inner {
		flex-wrap: wrap;
		height: auto;
		padding: 10px 12px 0;
		gap: 0;
		row-gap: 0;
		align-items: center;
		justify-content: flex-start;
	}

	.sw-mobile-toggle--topbar {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		background: none;
		border: none;
		color: var(--text-main, #1a1a2e);
		cursor: pointer;
		padding: 6px 8px 6px 2px;
		margin-right: 4px;
	}

	.sw-topbar-inner::after {
		content: '';
		flex: 1;
	}

	.sw-icons {
		order: 4;
		flex: 0 0 auto;
		gap: 4px;
		margin-left: 0;
	}

	.sw-auth,
	.sw-auth-guest,
	.sw-cat-wrap {
		display: none !important;
	}

	.sw-mobile-search-row {
		order: 10;
		flex: 0 1 100%;
		width: 100%;
		max-width: none;
		margin: 8px 0 10px;
	}

	.sw-mobile-search-row .sw-cat-wrap {
		display: flex !important;
		flex-shrink: 0;
	}

	.sw-mobile-search-row .sw-cat-trigger {
		padding: 0 10px 0 14px;
		font-size: 13px;
	}

	.sw-mobile-toggle:not(.sw-mobile-toggle--topbar) {
		display: none !important;
	}

	.content-area {
		grid-template-columns: 1fr;
	}

	.sw-sidebar {
		width: 100%;
	}

	.sw-sidebar {
		width: 100%;
		padding-left: 0;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}
}

/* Hide the "View cart" link WooCommerce injects after AJAX add-to-cart */
a.added_to_cart {
	display: none !important;
}

/* =============================================================================
   19. Sliding Toast Notifications
   ============================================================================= */

#sw-toast-container {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 99999;
	display: flex;
	flex-direction: column-reverse;
	gap: 10px;
	pointer-events: none;
}

.sw-toast {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 280px;
	max-width: 340px;
	padding: 14px 16px;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
	border-left: 4px solid var(--primary);
	pointer-events: auto;
	cursor: default;

	transform: translateX(calc(100% + 32px));
	opacity: 0;
	transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
	opacity   0.38s cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	overflow: hidden;
}

.sw-toast.sw-toast--show {
	transform: translateX(0);
	opacity: 1;
}

.sw-toast.sw-toast--hide {
	transform: translateX(calc(100% + 32px));
	opacity: 0;
}

.sw-toast__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb, var(--primary) 12%, transparent);
}

.sw-toast__icon svg {
	display: block;
}

.sw-toast--cart {
	border-left-color: #22c55e;
}
.sw-toast--cart .sw-toast__icon {
	background: rgba(34, 197, 94, 0.12);
}

.sw-toast--wish-add {
	border-left-color: var(--primary);
}

.sw-toast--wish-remove {
	border-left-color: #94a3b8;
}
.sw-toast--wish-remove .sw-toast__icon {
	background: rgba(148, 163, 184, 0.15);
}

.sw-toast__body {
	flex: 1;
	min-width: 0;
}
.sw-toast__title {
	font-size: 13px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.3;
	margin: 0 0 2px;
}
.sw-toast__msg {
	font-size: 12px;
	color: #64748b;
	line-height: 1.4;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sw-toast__close {
	flex-shrink: 0;
	background: none;
	border: none;
	padding: 2px;
	cursor: pointer;
	color: #94a3b8;
	line-height: 1;
	display: flex;
	align-items: center;
	transition: color 0.2s;
	margin-left: 4px;
}
.sw-toast__close:hover {
	color: #1a1a2e;
}

.sw-toast__progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	width: 100%;
	background: color-mix(in srgb, var(--primary) 20%, transparent);
	transform-origin: left center;
}
.sw-toast--cart .sw-toast__progress {
	background: rgba(34, 197, 94, 0.25);
}
.sw-toast--wish-remove .sw-toast__progress {
	background: rgba(148, 163, 184, 0.3);
}

.sw-toast__progress-bar {
	height: 100%;
	width: 100%;
	transform-origin: left center;
	background: var(--primary);
	transition: transform linear;
}
.sw-toast--cart .sw-toast__progress-bar {
	background: #22c55e;
}
.sw-toast--wish-remove .sw-toast__progress-bar {
	background: #94a3b8;
}

@media (max-width: 480px) {
	#sw-toast-container {
		bottom: 16px;
		right: 12px;
		left: 12px;
	}
	.sw-toast {
		min-width: 0;
		max-width: 100%;
	}
}
/* =============================================================================
   20. Breadcrumbs — Shop, Product, Blog, Archive & Page
   ============================================================================= */

.sw-breadcrumb {
	margin-bottom: 24px;
}

.sw-breadcrumb__inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 6px;
	width: fit-content;
	max-width: 100%;
	padding: 9px 18px;
	background: var(--light);
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
}

.sw-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--muted);
	white-space: nowrap;
}

.sw-breadcrumb__item a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--text);
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.sw-breadcrumb__item a:hover {
	color: var(--primary);
}

.sw-breadcrumb__item:last-child {
	color: var(--muted);
	font-weight: 500;
}

.sw-breadcrumb__item--home a {
	color: var(--primary);
}

.sw-breadcrumb__home-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--primary-light-bg);
	color: var(--primary);
	flex-shrink: 0;
}

.sw-breadcrumb__home-svg {
	display: block;
}

.sw-breadcrumb__sep {
	display: inline-flex;
	align-items: center;
	margin: 0 2px;
	color: var(--muted);
	opacity: .55;
	flex-shrink: 0;
}

.sw-breadcrumb__sep svg {
	display: block;
}

@media (max-width: 600px) {
	.sw-breadcrumb__inner {
		padding: 8px 14px;
		font-size: 12.5px;
	}
}

/* =============================================================================
   21. Preloader
   ============================================================================= */

.sw-preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	transition: opacity .4s ease, visibility .4s ease;
}

.sw-preloader--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.sw-preloader__dots {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sw-preloader__dots span {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--main-bg);
	box-shadow: 0 4px 14px var(--btn-shadow);
	animation: sw-preloader-bounce 1.1s ease-in-out infinite;
}

.sw-preloader__dots span:nth-child(2) {
	animation-delay: .15s;
}

.sw-preloader__dots span:nth-child(3) {
	animation-delay: .3s;
}

@keyframes sw-preloader-bounce {
	0%, 80%, 100% {
		transform: scale(.55);
		opacity: .45;
	}
	40% {
		transform: scale(1);
		opacity: 1;
	}
}
/* =============================================================================
   17. Sticky WhatsApp Chat Button
   ============================================================================= */

.sw-whatsapp-button{
	position: fixed;
	bottom: var(--sw-wa-offset-bottom, 20px);
	z-index: 998;
	display: flex;
	align-items: center;
}

.sw-whatsapp-button--bottom-right{
	right: var(--sw-wa-offset-side, 20px);
	flex-direction: row-reverse;
}

.sw-whatsapp-button--bottom-left{
	left: var(--sw-wa-offset-side, 20px);
	flex-direction: row;
}

.sw-whatsapp-button-link{
	width: var(--sw-wa-size, 60px);
	height: var(--sw-wa-size, 60px);
	background: var(--sw-wa-bg, #25D366);
	color: var(--sw-wa-icon-color, #fff);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0,0,0,.25);
	transition: transform .25s ease, box-shadow .25s ease;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.sw-whatsapp-button-link:hover{
	transform: scale(1.08);
	box-shadow: 0 8px 26px rgba(0,0,0,.32);
	color: var(--sw-wa-icon-color, #fff);
}

.sw-whatsapp-button-link i{
	font-size: var(--sw-wa-icon-size, 30px);
	line-height: 1;
}

.sw-whatsapp-button-tooltip{
	background: #111;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	padding: 8px 14px;
	border-radius: 6px;
	margin: 0 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(6px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
	pointer-events: none;
}

.sw-whatsapp-button--bottom-left .sw-whatsapp-button-tooltip{
	transform: translateX(-6px);
}

.sw-whatsapp-button:hover .sw-whatsapp-button-tooltip{
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.sw-whatsapp-button--pulse .sw-whatsapp-button-link::before{
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--sw-wa-bg, #25D366);
	opacity: .55;
	z-index: 1;
	animation: sw-wa-pulse 2s infinite;
}

@keyframes sw-wa-pulse{
	0%{
		transform: scale(1);
		opacity: .55;
	}
	100%{
		transform: scale(1.8);
		opacity: 0;
	}
}

@media (max-width: 767px){
	.sw-whatsapp-button--hide-mobile{
		display: none !important;
	}

	.sw-whatsapp-button-tooltip{
		display: none;
	}

	.sw-whatsapp-button-link{
		width: calc(var(--sw-wa-size, 60px) * 0.9);
		height: calc(var(--sw-wa-size, 60px) * 0.9);
	}
}

@media (min-width: 768px){
	.sw-whatsapp-button--hide-desktop{
		display: none !important;
	}
}
