/**
 * Premium design enhancements
 * Refined typography, spacing, shadows, animations, and polish.
 */

/* ================================================================
   ANIMATIONS
   ================================================================ */
   @keyframes pm-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.categories-scroll-wrap {
	position: relative;
}
.categories-scroll-btn {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid var(--border);
	background: #fff;
	color: var(--text);
	font-size: 1.1rem;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
	padding: 0;
}
.categories-scroll-btn:hover {
	background: var(--accent-light);
	border-color: var(--accent);
	color: var(--accent-dark);
}
.categories-scroll-btn--left {
	left: 0;
}
.categories-scroll-btn--right {
	right: 0;
}
@media (max-width: 767.98px) {
	.categories-scroll-btn {
		display: inline-flex;
	}
	.categories-scroll-wrap .categories-scroll-target {
		padding-left: 44px;
		padding-right: 44px;
	}
}
@media (min-width: 768px) {
	.categories-scroll-btn {
		display: none !important;
	}
}
@keyframes pm-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes pm-scale-in {
	from {
		opacity: 0;
		transform: scale(0.96);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes pm-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Scroll-triggered animations */
.pm-animate {
	opacity: 0;
	transform: translateY(24px);
}
.pm-animate.pm-visible {
	animation: pm-fade-in-up 0.5s var(--ease) forwards;
}
.pm-animate--fast.pm-visible {
	animation-duration: 0.35s;
}
.pm-animate--slow.pm-visible {
	animation-duration: 0.65s;
}
.pm-animate--fade.pm-visible {
	animation-name: pm-fade-in;
	transform: none;
}
.pm-animate--scale.pm-visible {
	animation-name: pm-scale-in;
	transform: none;
}

/* Stagger children */
.pm-stagger > * {
	opacity: 0;
	transform: translateY(20px);
}
.pm-stagger.pm-visible > * {
	animation: pm-fade-in-up 0.45s var(--ease) forwards;
}
.pm-stagger.pm-visible > *:nth-child(1) { animation-delay: 0.05s; }
.pm-stagger.pm-visible > *:nth-child(2) { animation-delay: 0.1s; }
.pm-stagger.pm-visible > *:nth-child(3) { animation-delay: 0.15s; }
.pm-stagger.pm-visible > *:nth-child(4) { animation-delay: 0.2s; }
.pm-stagger.pm-visible > *:nth-child(5) { animation-delay: 0.25s; }
.pm-stagger.pm-visible > *:nth-child(6) { animation-delay: 0.3s; }
.pm-stagger.pm-visible > *:nth-child(7) { animation-delay: 0.35s; }
.pm-stagger.pm-visible > *:nth-child(8) { animation-delay: 0.4s; }
.pm-stagger.pm-visible > *:nth-child(9) { animation-delay: 0.45s; }
.pm-stagger.pm-visible > *:nth-child(10) { animation-delay: 0.5s; }

/* Page load: hero and above-fold */
.pm-animate-instant {
	animation: pm-fade-in-up 0.6s var(--ease) forwards;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.pm-animate,
	.pm-stagger > * {
		opacity: 1;
		transform: none;
	}
	.pm-animate.pm-visible,
	.pm-stagger.pm-visible > * {
		animation: none;
	}
}

/* ================================================================
   PREMIUM VARIABLES
   ================================================================ */
:root {
	--premium-shadow-card: 0 4px 24px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
	--premium-shadow-hover: 0 12px 32px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
	--premium-radius: 12px;
	--premium-radius-lg: 16px;
	--premium-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   HOME — Hero & Sections
   ================================================================ */
.hero-swiper {
	width: 100%;
	height: 180px;
	border-radius: var(--premium-radius-lg);
	box-shadow: var(--premium-shadow-card);
	overflow: hidden;
	padding: 0;
}
@media (min-width: 768px) {
	.hero-swiper {
		height: 340px;
	}
}
@media (min-width: 992px) {
	.hero-swiper {
		height: 380px;
	}
}
.hero-swiper .swiper-wrapper {
	padding: 0;
	box-sizing: border-box;
}
.hero-swiper .swiper-slide {
	height: 100%;
	padding: 0;
	box-sizing: border-box;
}
.hero-slide {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f5f5f5;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
.hero-slide-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.hero-swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255,255,255,.6);
	transition: all var(--premium-transition);
}
.hero-swiper .swiper-pagination-bullet-active {
	width: 24px;
	border-radius: 4px;
	background: #fff;
}
.hero-swiper .swiper-pagination {
	bottom: 16px !important;
}

/* ================================================================
   HOME — Categories slider section (full-width slider + category tabs + products)
   ================================================================ */
.home-categories-slider-section {
	margin-bottom: 2rem;
}
.home-categories-slider-container {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
@media (min-width: 576px) {
	.home-categories-slider-container {
		padding-left: 24px;
		padding-right: 24px;
	}
}
@media (min-width: 992px) {
	.home-categories-slider-container {
		padding-left: 32px;
		padding-right: 32px;
	}
}

/* Pull slider edge-to-edge: cancel container padding so image has no side gaps */
.home-categories-slider__swiper-wrap {
	width: calc(100% + 40px);
	max-width: none;
	margin-left: -20px;
	margin-right: -20px;
	border-radius: var(--premium-radius-lg);
	overflow: hidden;
	box-shadow: var(--premium-shadow-card);
	margin-bottom: 24px;
}
@media (min-width: 576px) {
	.home-categories-slider__swiper-wrap {
		width: calc(100% + 48px);
		margin-left: -24px;
		margin-right: -24px;
	}
}
@media (min-width: 992px) {
	.home-categories-slider__swiper-wrap {
		width: calc(100% + 64px);
		margin-left: -32px;
		margin-right: -32px;
	}
}
.home-categories-slider__swiper {
	width: 100%;
	height: 280px;
	overflow: hidden;
	padding: 0;
}
@media (min-width: 768px) {
	.home-categories-slider__swiper {
		height: 340px;
	}
}
@media (min-width: 1200px) {
	.home-categories-slider__swiper {
		height: 400px;
	}
}
.home-categories-slider__swiper .swiper-wrapper,
.home-categories-slider__swiper .swiper-slide {
	padding: 0;
	box-sizing: border-box;
}
.home-categories-slider__swiper .swiper-slide {
	height: 100%;
}
.home-categories-slider__slide {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f0f0f0;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
.home-categories-slider__slide--placeholder {
	background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}
.home-categories-slider__slide-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.home-categories-slider__swiper .swiper-pagination {
	bottom: 16px !important;
}
.home-categories-slider__swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255,255,255,.6);
	opacity: 1;
	transition: all var(--premium-transition);
}
.home-categories-slider__swiper .swiper-pagination-bullet-active {
	width: 24px;
	border-radius: 4px;
	background: #fff;
}

/* Category tabs — horizontal scroll */
.home-categories-slider__tabs-wrap {
	margin-bottom: 20px;
	-webkit-overflow-scrolling: touch;
}
.home-categories-slider__tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 8px;
	scrollbar-width: thin;
}
.home-categories-slider__tabs::-webkit-scrollbar {
	height: 6px;
}
.home-categories-slider__tabs::-webkit-scrollbar-track {
	background: #f0f0f0;
	border-radius: 3px;
}
.home-categories-slider__tabs::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 3px;
}
.home-categories-slider__tab {
	flex-shrink: 0;
	padding: 10px 20px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #4b5563;
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 999px;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}
.home-categories-slider__tab:hover {
	color: #1a1a1a;
	border-color: #d1d5db;
	background: #f9fafb;
}
.home-categories-slider__tab.active {
	color: #fff;
	background: #1a1a1a;
	border-color: #1a1a1a;
}
.home-categories-slider__tab:focus-visible {
	outline: 2px solid #1a1a1a;
	outline-offset: 2px;
}

/* Product panels */
.home-categories-slider__products {
	position: relative;
	min-height: 200px;
}
.home-categories-slider__products-panel {
	display: none;
}
.home-categories-slider__products-panel.active {
	display: block;
	animation: pm-fade-in 0.25s ease;
}
.home-categories-slider__products .trending-grid {
	margin-bottom: 0;
}

/* Categories listing page (separate page template) */
.categories-listing-page__header {
	text-align: center;
}
.categories-listing-page__title {
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}
.categories-listing-page__intro {
	font-size: 1rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.categories-listing-section .home-categories-slider-container {
	padding-top: 0;
}

/* ================================================================
   CATEGORY ARCHIVE — Hero slider + categories strip (ZERO-style)
   ================================================================ */
.category-archive-hero-section {
	margin-bottom: 2rem;
	/* Light green gradient background — top to bottom */
	background: linear-gradient(to bottom, #d4edda 0%, #e8f5e9 30%, #f1f9f2 60%, #f8fdf9 85%, #ffffff 100%);
	padding-bottom: 32px;
	border-radius: 0 0 var(--premium-radius-lg) var(--premium-radius-lg);
	overflow: hidden;
}
.category-archive-hero-container {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	/* Extra right padding so fixed widget (e.g. accessibility icon) doesn't overlap categories */
	padding-left: 20px;
	padding-right: 20px;
}
@media (min-width: 576px) {
	.category-archive-hero-container {
		padding-left: 24px;
		padding-right: 56px;
	}
}
@media (min-width: 992px) {
	.category-archive-hero-container {
		padding-left: 32px;
		padding-right: 32px;
	}
}

/* Categories page slider — margin left and right */
.category-archive-hero__swiper-wrap {

	max-width: none;

	border-radius: var(--premium-radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(76, 175, 80, 0.15);
	margin-top: 24px;
	margin-bottom: 28px;
}
@media (min-width: 576px) {
	.category-archive-hero__swiper-wrap {
		width: calc(100% - 48px);
		margin-left: 24px;
		margin-right: 24px;
	}
}
@media (min-width: 992px) {
	.category-archive-hero__swiper-wrap {
		width: calc(100% - 64px);
		margin-left: 32px;
		margin-right: 32px;
	}
}
.category-archive-hero__swiper {
	width: 100%;
	height: 120px;
	overflow: hidden;
	padding: 0;
}
@media (min-width: 768px) {
	.category-archive-hero__swiper {
		height: 340px;
	}
}
@media (min-width: 1200px) {
	.category-archive-hero__swiper {
		height: 400px;
	}
}
.category-archive-hero__swiper .swiper-wrapper,
.category-archive-hero__swiper .swiper-slide {
	padding: 0;
	box-sizing: border-box;
}
.category-archive-hero__swiper .swiper-slide {
	height: 100%;
}
.category-archive-hero__slide {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
.category-archive-hero__slide--placeholder {
	background: linear-gradient(to bottom, rgba(212, 237, 218, 0.6) 0%, rgba(232, 245, 233, 0.5) 50%, rgba(255, 255, 255, 0.7) 100%);
}
.category-archive-hero__slide-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.category-archive-hero__swiper .swiper-pagination {
	display: none;
}

/* Categories strip — circular icons, horizontal scroll (ZERO-style) */
.category-archive-categories-wrap {
	margin-bottom: 0;
	-webkit-overflow-scrolling: touch;
	padding: 8px 0;
}
.category-archive-categories {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 20px;
	overflow-x: auto;
	overflow-y: hidden;
	/* Horizontal padding so first/last items aren't cut off when scrolling */
	padding-left: 12px;
	padding-right: 12px;
	padding-bottom: 12px;
	scrollbar-width: thin;
}
.category-archive-categories::-webkit-scrollbar {
	height: 6px;
}
.category-archive-categories::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.5);
	border-radius: 3px;
}
.category-archive-categories::-webkit-scrollbar-thumb {
	background: rgba(76, 175, 80, 0.4);
	border-radius: 3px;
}
.category-archive-category-card {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 72px;
	width: auto;
	max-width: 96px;
	text-decoration: none;
	color: #374151;
	font-weight: 600;
	font-size: 0.75rem;
	text-align: center;
	transition: color 0.2s ease, transform 0.2s ease;
	border: none;
	background: transparent;
}
.category-archive-category-card:hover {
	color: #1a1a1a;
	transform: translateY(-3px);
}
.category-archive-category-card.active {
	color: #2e7d32;
}
.category-archive-category-card.active .category-archive-category-card__img {
	border: 3px solid #2e7d32;
	box-shadow: 0 4px 16px rgba(46, 125, 50, 0.35);
}
/* Circular image container — padding inside the rounded box so image doesn’t touch the edge */
.category-archive-category-card__img {
	display: block;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fff;
	background-origin: content-box;
	background-clip: content-box;
	padding: 8px;
	border: 3px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	margin-bottom: 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.category-archive-category-card:hover .category-archive-category-card__img {
	border-color: rgba(255, 255, 255, 1);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.category-archive-category-card__name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	padding: 0 2px;
	line-height: 1.25;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow: hidden;
	text-overflow: ellipsis;
}

.category-archive-products {
	padding-top: 0;
}
.category-archive-products__title {
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}
/* Product card text — prevent overflow, allow wrap */
.category-archive-products .trending-card-body {
	min-width: 0;
}
.category-archive-products .trending-card-title {
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.category-archive-products .trending-card-pricing {
	flex-wrap: wrap;
	justify-content: center;
}
@media (max-width: 575.98px) {
	.category-archive-products .trending-card-body {
		padding: 10px 8px 14px;
	}
	.category-archive-products .trending-card-title {
		font-size: 0.8rem;
	}
}

/* Category archive — promo banners (one under categories, one under products) */
.category-archive-banner {
	width: 100%;
}
.category-archive-banner--under-categories {
	margin-top: 28px;;
	margin-bottom: 28px;
}
.category-archive-banner__link {
	display: block;
	border-radius: var(--premium-radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(76, 175, 80, 0.12);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.category-archive-banner__link:hover {
	box-shadow: 0 8px 28px rgba(76, 175, 80, 0.18);
	transform: translateY(-2px);
}
.category-archive-banner__img {
	width: 100%;
	height: 100px;
	display: block;
	object-fit: cover;
	min-height: 140px;
	background: linear-gradient(to bottom, #e8f5e9 0%, #f1f9f2 100%);
}
@media (min-width: 768px) {
	.category-archive-banner__img {
		min-height: 200px;
		max-height: 280px;
	}
}

/* Category archive page — no animations (scroll-in, hover, transitions) */
.category-archive-products .pm-animate,
.category-archive-products .pm-animate.pm-visible,
.category-archive-products .pm-stagger > *,
.category-archive-products .pm-stagger.pm-visible > * {
	opacity: 1;
	transform: none;
	animation: none;
}
.category-archive-hero-section .category-archive-category-card,
.category-archive-hero-section .category-archive-category-card:hover,
.category-archive-hero-section .category-archive-category-card__img,
.category-archive-hero-section .category-archive-category-card:hover .category-archive-category-card__img {
	transition: none;
	transform: none;
}
.category-archive-products .category-archive-banner__link,
.category-archive-products .category-archive-banner__link:hover {
	transition: none;
	transform: none;
}
.category-archive-products .trending-card,
.category-archive-products .trending-card:hover {
	transition: none;
	transform: none;
}

/* ================================================================
   PREMIUM PAGINATION — product/category archives
   paginate_links() has no wrapper; the_posts_pagination() uses .nav-links
   ================================================================ */
/* Container: taxonomy (direct .page-numbers inside nav) */
.pagination-premium {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 24px 0 16px;
}
/* Container: product archive (nav > .nav-links) */
.main-content .navigation.pagination {
	margin: 24px 0 16px;
	padding: 0;
}
.main-content .navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
/* Hide screen-reader heading from layout */
.main-content .navigation.pagination .screen-reader-text {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	height: 1px;
	width: 1px;
}

/* Page number / prev / next — taxonomy (direct children of .pagination-premium) */
.pagination-premium .page-numbers,
.main-content .navigation.pagination .nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 16px;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text) !important;
	text-decoration: none !important;
	background: #fff !important;
	border: 2px solid var(--border);
	border-radius: 999px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.pagination-premium a.page-numbers:hover,
.main-content .navigation.pagination .nav-links a.page-numbers:hover {
	background: var(--accent-light) !important;
	border-color: var(--accent);
	color: var(--accent-dark) !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 139, 62, 0.2);
}
.pagination-premium .page-numbers.current,
.main-content .navigation.pagination .nav-links .page-numbers.current {
	background: var(--accent) !important;
	border-color: var(--accent);
	color: #fff !important;
	cursor: default;
	box-shadow: 0 2px 8px rgba(46, 139, 62, 0.35);
}
.pagination-premium .page-numbers.prev,
.pagination-premium .page-numbers.next,
.main-content .navigation.pagination .nav-links .page-numbers.prev,
.main-content .navigation.pagination .nav-links .page-numbers.next {
	font-size: 0.85rem;
}
.pagination-premium .page-numbers.dots,
.main-content .navigation.pagination .nav-links .page-numbers.dots {
	border: none !important;
	background: transparent !important;
	min-width: 28px;
	width: auto;
	padding: 0 8px;
	cursor: default;
	box-shadow: none;
}
.pagination-premium .page-numbers.dots:hover,
.main-content .navigation.pagination .nav-links .page-numbers.dots:hover {
	transform: none;
	color: var(--text) !important;
}

/* Banner below hero */
.hero-swiper + .col-12 a,
.hero-swiper + [class*="col-"] a {
	border-radius: var(--premium-radius);
	overflow: hidden;
	display: block;
	box-shadow: var(--premium-shadow-card);
	transition: box-shadow var(--premium-transition), transform var(--premium-transition);
}
.hero-swiper + .col-12 a:hover,
.hero-swiper + [class*="col-"] a:hover {
	box-shadow: var(--premium-shadow-hover);
	transform: translateY(-2px);
}

/* Best Offers banner — same design as hero section banner */
.best-offers-banner-link {
    border-radius: var(--premium-radius);
    box-shadow: var(--premium-shadow-card);
    transition: box-shadow var(--premium-transition), transform var(--premium-transition);
}

.best-offers-banner-link:hover {
    box-shadow: var(--premium-shadow-hover);
    transform: translateY(-2px);
}

/* Ensure banner image is fully responsive */
.best-offers-banner-link img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%; /* Ensures image doesn't overflow */
}

/* Media query for mobile responsiveness */
@media (max-width: 767.98px) {
    .best-offers-banner-section {
        display: block; /* Ensure the banner is displayed */
        width: 100%; /* Take full width */
        padding: 0;  /* Remove any unnecessary padding */
        text-align: center; /* Align content */
    }

    .best-offers-banner-link img {
        max-width: 100%; /* Ensure image takes full width */
        height: auto; /* Ensure height is proportional */
    }
}


/* Section headings — keep original tabs and divider (no override) */

/* Product cards — no shadow, refined */
.product-card,
.trending-card {
	border-radius: var(--premium-radius);
	overflow: hidden;
	box-shadow: none;
	transition: transform var(--premium-transition);
}
.product-card:hover,
.trending-card:hover {
	transform: translateY(-2px);
}
.trending-card-body {
	border-top: none;
	background: #fff;
	padding: 18px 20px 22px;
}
.trending-card-title {
	font-weight: 700;
	font-size: .92rem;
}
.btn-add-to-cart-product {
	border-radius: 8px;
	padding: 10px 16px;
	font-weight: 700;
	letter-spacing: .02em;
	transition: all var(--premium-transition);
}
.btn-add-to-cart-product:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(46,139,62,.3);
}

/* Trending grid — equal-height cards, button pinned to bottom */
.trending-grid .trending-col {
	display: flex;
}
.trending-grid .trending-card-link {
	display: flex;
	width: 100%;
	height: 100%;
}
.trending-grid .trending-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 0;
}
.trending-grid .trending-card-image {
	flex-shrink: 0;
}
.trending-grid .trending-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
	min-height: 0;
}
.trending-grid .trending-card-body .btn-add-to-cart-product {
	margin-top: auto;
	flex-shrink: 0;
}

/* Features strip — premium tiles, no shadow */
.features-strip {
	background: var(--surface-elevated);
	padding: 18px 0;
	box-shadow: none;
	border: 1px solid var(--border);
}
.feature-item {
	padding: 16px 20px;
	border-radius: var(--premium-radius);
	transition: background var(--premium-transition);
}
.feature-item:hover {
	background: var(--accent-light);
}
.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	margin-bottom: 12px;
	box-shadow: 0 4px 12px rgba(46,139,62,.25);
}
.feature-text h6 {
	font-weight: 700;
	font-size: .95rem;
	margin-bottom: 4px;
}
.feature-text p {
	font-size: .82rem;
	color: var(--text-muted);
	margin: 0;
}

/* Side cards (banners) — no shadow */
.side-card {
	border-radius: var(--premium-radius);
	overflow: hidden;
	box-shadow: none;
	transition: transform var(--premium-transition);
}
.side-card:hover {
	transform: translateY(-2px);
}

/* ================================================================
   PRODUCT DETAIL — Premium layout
   ================================================================ */
.product-breadcrumb {

}
.product-breadcrumb .breadcrumb-item a {
	color: var(--text-light);
	transition: color var(--premium-transition);
}
.product-breadcrumb .breadcrumb-item a:hover {
	color: var(--accent);
}

.product-detail-main {
	padding: 32px 0 48px;
	background: linear-gradient(180deg, var(--surface) 0%, #fff 100px);
}
.product-detail-content {
	padding: 36px 40px 40px;


}
.product-detail-inner .row {
	--bs-gutter-x: 40px;
}

/* Gallery — premium frame */
.product-detail-gallery {
	position: sticky;
	top: 24px;
}
.product-detail-main-image {

}
.product-detail-thumbnails {
	gap: 10px;
}
.product-thumb {
	width: 68px;
	height: 68px;
	border-radius: 0;
	border: 2px solid transparent;
	transition: all var(--premium-transition);
}
.product-thumb:hover {
	border-color: var(--accent);
}
.product-thumb.active {
	border-color: var(--primary);
	box-shadow: 0 0 0 1px var(--primary);
}

/* Product info — premium typography */
.product-detail-info {
	max-width: 540px;
}
.product-detail-title {
	font-size: 1.85rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin-bottom: 12px;
}
.product-detail-rating {
	margin-bottom: 16px !important;
}
.product-detail-rating i {
	font-size: .95rem;
}
.product-detail-price {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 20px;
	letter-spacing: -0.02em;
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}
.product-detail-price-current {
	color: var(--accent);
}
.product-detail-price-old {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-muted);
	text-decoration: line-through;
}
.product-detail-extra,
.product-detail-meta {
	background: var(--surface);
	padding: 16px 20px;
	border-radius: 0;
	margin-bottom: 20px !important;
}
.product-detail-extra li,
.product-detail-meta li {
	padding: 4px 0;
}

/* Quantity selector — refined */
.quantity-selector {
	border-radius: var(--premium-radius);
	border: 1px solid var(--border);
	overflow: hidden;
}
.btn-qty {
	width: 44px;
	height: 44px;
}
.product-qty-input {
	width: 52px;
	height: 44px;
}

/* CTA buttons — premium */
.product-detail-actions {
	gap: 14px;
}
.btn-add-to-cart,
.btn-buy-now {
	padding: 16px 32px;
	border-radius: var(--premium-radius);
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: .04em;
	transition: all var(--premium-transition);
}
.btn-add-to-cart {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%) !important;
	box-shadow: 0 4px 16px rgba(46,139,62,.3);
}
.btn-add-to-cart:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(46,139,62,.35);
}
.btn-buy-now {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%) !important;
	border: none;
	color: #fff !important;
	box-shadow: 0 4px 16px rgba(46,139,62,.3);
}
.btn-buy-now:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(46,139,62,.35);
	color: #fff !important;
}

/* Product links (wishlist, compare) */
.product-detail-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.product-detail-link {
	font-size: .88rem;
	font-weight: 600;
	color: var(--text-light);
	transition: color var(--premium-transition);
}
.product-detail-link:hover {
	color: var(--accent);
}

/* Product tabs section — no shadow, no rounded corners */
.product-detail-tabs-section {
	background: var(--surface-elevated);
	padding: 32px 0 24px;
	margin-top: 48px;
	box-shadow: none;
	border: 1px solid var(--border);
	border-radius: 0;
}

/* Product detail tabs — trending-style (underline, like home page) */
.product-detail-tabs-wrap {
	margin-bottom: 0;
	border-bottom: 1px solid var(--border);
	padding-bottom: 0;
}
.product-detail-tabs.product-detail-tabs--trending-style {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: none;
}
.product-detail-tabs.product-detail-tabs--trending-style li {
	margin: 0;
}
.product-detail-tabs.product-detail-tabs--trending-style .product-detail-tab {
	display: inline-block;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	padding: 10px 18px;
	font-size: .8rem;
	font-weight: 600;
	color: #666;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	font-family: var(--font);
	text-transform: uppercase;
	letter-spacing: .04em;
	transition: color .15s var(--ease), border-color .15s var(--ease);
	margin-bottom: -1px;
}
.product-detail-tabs.product-detail-tabs--trending-style .product-detail-tab:hover,
.product-detail-tabs.product-detail-tabs--trending-style .product-detail-tab.active {
	color: var(--accent);
	border-bottom-color: var(--accent);
}

/* ================================================================
   PRODUCT DETAIL — Reference layout (like attached design)
   ================================================================ */

.product-detail-info--reference .product-detail-title {
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 6px;
}
.product-detail-was-price {
	font-size: .9rem;
	color: var(--text-muted);
	text-decoration: line-through;
}
.product-detail-subtitle {
	font-size: .95rem;
	color: var(--text);
	margin-bottom: 10px;
}
.product-detail-info--reference .product-detail-rating i {
	color: #ddd;
}
.product-detail-info--reference .product-detail-rating i.text-warning {
	color: #e6b800;
}
.product-detail-info--reference .product-detail-reviews {
	font-size: .9rem;
	color: var(--text);
	margin-left: 6px;
}
.product-detail-price--reference {
	font-size: 2rem;
	font-weight: 800;
	color: #1a1a1a;
}
.product-detail-price--reference .product-detail-price-current {
	color: #1a1a1a;
}
.product-detail-price--reference .product-detail-price-old {
	font-size: 1.1rem;
	color: var(--text-muted);
}
.product-detail-discount-badge {
	display: inline-block;
	background: var(--accent);
	color: #fff;
	font-size: .8rem;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 6px;
}
.product-detail-countdown-wrap {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--accent);
	color: #fff;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: .8rem;
}
.product-detail-countdown-label {
	opacity: .95;
}
.product-detail-countdown-timer {
	font-weight: 700;
	font-size: 1rem;
}
.product-detail-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 6px;
}
.product-swatch {
	width: 48px;
	height: 48px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	cursor: pointer;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.product-swatch img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.product-swatch:hover {
	border-color: var(--border);
}
.product-swatch.active {
	border-color: #1a1a1a;
	box-shadow: 0 0 0 1px #1a1a1a;
}

/* Color selection (required before add to cart) */
.product-detail-color-label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--text, #1a1a1a);
	margin-bottom: 8px;
}
.product-detail-color-required {
	color: #b91c1c;
}
.product-detail-color-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.product-color-option {
	padding: 8px 16px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #1a1a1a;
	background: #fff;
	border: 2px solid rgba(0, 0, 0, 0.15);
	border-radius: 999px;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.product-color-option:hover {
	border-color: rgba(0, 0, 0, 0.35);
	background: #f8f9fa;
}
.product-color-option--selected,
.product-color-option[aria-pressed="true"] {
	border-color: #1a1a1a;
	background: #1a1a1a;
	color: #fff;
}
.product-color-option--selected:hover,
.product-color-option[aria-pressed="true"]:hover {
	background: #333;
	border-color: #333;
	color: #fff;
}

/* ================================================================
   QUANTITY SELECTOR — PREMIUM
   ================================================================ */
.product-detail-qty--premium .product-detail-qty__label {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--text, #1a1a1a);
	margin-bottom: 10px;
	display: block;
}

.quantity-selector--premium {
	display: inline-flex;
	align-items: stretch;
	min-height: 48px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: border-color var(--premium-transition), box-shadow var(--premium-transition);
}
.quantity-selector--premium:focus-within {
	border-color: rgba(26, 26, 26, 0.35);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.quantity-selector__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	min-width: 48px;
	height: 48px;
	padding: 0;
	background: transparent;
	border: none;
	color: #1a1a1a;
	cursor: pointer;
	transition: background-color var(--premium-transition), color var(--premium-transition), transform 0.15s ease;
	-webkit-tap-highlight-color: transparent;
}
.quantity-selector__btn:hover:not(:disabled) {
	background: rgba(26, 26, 26, 0.06);
	color: #1a1a1a;
}
.quantity-selector__btn:active:not(:disabled) {
	background: rgba(26, 26, 26, 0.1);
	transform: scale(0.96);
}
.quantity-selector__btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.quantity-selector__btn--minus {
	border-radius: 999px 0 0 999px;
}
.quantity-selector__btn--plus {
	border-radius: 0 999px 999px 0;
}

.quantity-selector__icon {
	flex-shrink: 0;
	pointer-events: none;
}

.quantity-selector__input,
.quantity-selector--premium .product-qty-input {
	width: 56px;
	min-width: 56px;
	height: 48px;
	padding: 0 8px;
	margin: 0;
	border: none;
	border-left: 1px solid rgba(0, 0, 0, 0.08);
	border-right: 1px solid rgba(0, 0, 0, 0.08);
	background: transparent;
	font-size: 1rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	text-align: center;
	color: #1a1a1a;
	-moz-appearance: textfield;
	appearance: textfield;
	transition: background-color var(--premium-transition);
}
.quantity-selector__input::-webkit-outer-spin-button,
.quantity-selector__input::-webkit-inner-spin-button,
.quantity-selector--premium .product-qty-input::-webkit-outer-spin-button,
.quantity-selector--premium .product-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.quantity-selector__input:focus,
.quantity-selector--premium .product-qty-input:focus {
	outline: none;
	background: rgba(26, 26, 26, 0.03);
}

.product-detail-qty__stock {
	display: block;
	margin-top: 8px;
	font-size: 0.8125rem;
	color: #6b7280;
	letter-spacing: 0.01em;
}

/* Responsive: premium quantity */
@media (max-width: 575.98px) {
	.quantity-selector--premium {
		min-height: 44px;
	}
	.quantity-selector__btn {
		width: 44px;
		min-width: 44px;
		height: 44px;
	}
	.quantity-selector__input,
	.quantity-selector--premium .product-qty-input {
		width: 52px;
		min-width: 52px;
		height: 44px;
		font-size: 0.9375rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.quantity-selector__btn:active:not(:disabled) {
		transform: none;
	}
}

.quantity-selector--reference {
	border-radius: 10px;
	border: 1px solid var(--border);
	overflow: hidden;
}
.product-detail-actions--reference {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.btn-add-to-cart--outline {
	background: #fff !important;
	color: var(--accent) !important;
	border: 2px solid var(--accent) !important;
	border-radius: 999px;
	padding: 14px 28px !important;
	font-weight: 700;
	box-shadow: none !important;
}
.btn-add-to-cart--outline:hover {
	background: var(--accent-light) !important;
	color: var(--accent-dark) !important;
	border-color: var(--accent-dark) !important;
	transform: none;
}
.btn-buy-now--solid {
	background: var(--accent) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 999px;
	padding: 14px 28px !important;
	font-weight: 700;
	box-shadow: none !important;
}
.btn-buy-now--solid:hover {
	background: var(--accent-dark) !important;
	color: #fff !important;
	transform: none;
}
.product-detail-corporate-deal-inner {
	position: relative;
	background: #f5e6d3;
	border-radius: 10px;
	padding: 20px 24px;
	border: 1px solid #e8d4bc;
}
.product-detail-corporate-badge {
	position: absolute;
	top: -10px;
	left: 16px;
	background: #1a1a1a;
	color: #fff;
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .08em;
	padding: 4px 10px;
	border-radius: 4px;
}
.product-detail-corporate-title {
	font-size: 1.1rem;
	color: #1a1a1a;
}
.product-detail-corporate-link {
	font-size: .9rem;
	color: #1a1a1a;
	text-decoration: underline;
	font-weight: 600;
	transition: color .2s var(--ease);
}
.product-detail-corporate-link:hover {
	color: #333;
}
.product-detail-feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 16px 8px;
	gap: 8px;
}
.product-detail-feature-item i {
	font-size: 1.5rem;
	color: var(--text);
}
.product-detail-feature-item span {
	font-size: .75rem;
	font-weight: 600;
	color: var(--text);
	line-height: 1.3;
}

/* Reference tabs — blue underline active */
.product-detail-tabs-section--reference .product-detail-tabs-wrap--reference {
	border-bottom: 1px solid var(--border);
	padding-bottom: 0;
}
.product-detail-tabs.product-detail-tabs--reference {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.product-detail-tabs.product-detail-tabs--reference li {
	margin: 0;
}
.product-detail-tabs.product-detail-tabs--reference .product-detail-tab {
	display: inline-block;
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 12px 20px;
	font-size: .9rem;
	font-weight: 600;
	color: #999;
	cursor: pointer;
	font-family: var(--font);
	transition: color .2s var(--ease), border-color .2s var(--ease);
	margin-bottom: -1px;
}
.product-detail-tabs.product-detail-tabs--reference .product-detail-tab:hover {
	color: #333;
}
.product-detail-tabs.product-detail-tabs--reference .product-detail-tab.active {
	color: #1a1a1a;
	border-bottom-color: #2563eb;
}
.product-detail-tabs-section--reference {
	border-radius: 0 0 8px 0;
}

/* ================================================================
   REMOVE ORANGE RIGHT BAR (product details)
   ================================================================ */
.page-product-detail .product-page-sidebar-right {
	display: none;
}

/* ================================================================
   CART SIDEBAR — Premium drawer, no shadow
   ================================================================ */
.cart-sidebar {
	max-width: 400px;
	box-shadow: none;
	border-left: 1px solid var(--border);
}
.cart-sidebar-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	padding: 20px 24px;
}
.cart-sidebar-title {
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: .02em;
}
.cart-sidebar-close {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	transition: background var(--premium-transition);
}
.cart-sidebar-close:hover {
	background: rgba(255,255,255,.15);
}

.cart-sidebar-items {
	padding: 20px 24px;
}
.cart-sidebar-empty {
	padding: 48px 24px;
}
.cart-sidebar-empty-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--surface);
	display: flex;
	align-items: center;
	justify-content: center;
}
.cart-sidebar-empty-icon i {
	font-size: 2.5rem;
	color: var(--text-muted);
}
.cart-sidebar-empty-text {
	font-size: 1rem;
	color: var(--text-light);
	margin-bottom: 20px !important;
}
.btn-cart-sidebar {
	padding: 14px 28px;
	border-radius: var(--premium-radius);
	font-weight: 700;
	letter-spacing: .02em;
	transition: all var(--premium-transition);
}
.btn-cart-sidebar:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(46,139,62,.3);
}

/* Cart items — improved card design */
.cart-sidebar--improved .cart-sidebar-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px;
	background: var(--surface-elevated);
	border-radius: var(--premium-radius);
	margin-bottom: 12px;
	border: 1px solid var(--border);
	box-shadow: none;
}
.cart-sidebar--improved .cart-sidebar-item:last-child {
	margin-bottom: 0;
}
.cart-sidebar--improved .cart-sidebar-item-thumb {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border-radius: 8px;
	overflow: hidden;
	display: block;
	background: var(--surface);
}
.cart-sidebar--improved .cart-sidebar-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cart-sidebar--improved .cart-sidebar-item-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.cart-sidebar--improved .cart-sidebar-item-title {
	font-weight: 600;
	font-size: .95rem;
	line-height: 1.35;
	color: var(--text);
	text-decoration: none;
	display: block;
	transition: color var(--premium-transition);
}
.cart-sidebar--improved .cart-sidebar-item-title:hover {
	color: var(--accent);
}
.cart-sidebar--improved .cart-sidebar-item-qty-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
.cart-sidebar--improved .cart-qty-controls {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--border);
	border-radius: 6px;
	overflow: hidden;
	background: var(--surface);
}
.cart-sidebar--improved .cart-qty-btn {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: none;
	color: var(--text);
	font-size: 1rem;
	cursor: pointer;
	transition: background var(--premium-transition), color var(--premium-transition);
}
.cart-sidebar--improved .cart-qty-btn:hover {
	background: var(--accent-light);
	color: var(--accent);
}
.cart-sidebar--improved .cart-qty-value {
	min-width: 24px;
	text-align: center;
	font-size: .9rem;
	font-weight: 600;
}
.cart-sidebar--improved .cart-sidebar-item-total {
	font-weight: 700;
	color: var(--accent);
	font-size: 1rem;
}
.cart-sidebar--improved .cart-item-remove {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: none;
	color: var(--text-muted);
	cursor: pointer;
	border-radius: 6px;
	transition: all var(--premium-transition);
}
.cart-sidebar--improved .cart-item-remove:hover {
	background: #fee2e2;
	color: #dc2626;
}

.cart-sidebar-footer {
	padding: 20px 24px;
	background: var(--surface-elevated);
	border-top: 2px solid var(--border);
}
.cart-sidebar-subtotal {
	font-size: 1rem;
	margin-bottom: 16px;
}
.cart-sidebar-subtotal strong {
	font-size: 1.25rem;
	color: var(--primary);
}
.btn-cart-checkout {
	padding: 16px 24px;
	border-radius: var(--premium-radius);
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: .02em;
	display: block;
	text-align: center;
	transition: all var(--premium-transition);
}
.btn-cart-checkout:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 20px rgba(46,139,62,.35);
}

/* ================================================================
   HEADER & GLOBAL POLISH
   ================================================================ */
.header-navigation {
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-cart-icon {
	transition: transform var(--premium-transition);
}
.header-cart-link:hover .header-cart-icon {
	transform: scale(1.08);
}
.main-content {
	padding-bottom: 48px;
}
body {
	background: var(--surface);
}

/* Categories sidebar */
.categories-column {
	border-radius: var(--premium-radius);
	overflow: hidden;
}

/* Daily deals product cards */
.product-section {
	padding: 32px 0;
}
.product-section .product-card {
	border-radius: var(--premium-radius);
}

/* Product description content */
.product-description-content {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-light);
}
.product-description-heading {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 16px;
}

/* Product FAQ list */
.product-faq-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.product-faq-item {
	margin: 0 0 20px;
	padding: 0 0 20px;
	border-bottom: 1px solid var(--border);
}
.product-faq-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.product-faq-question {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text, #1a1a1a);
	margin: 0 0 8px;
	line-height: 1.4;
}
.product-faq-answer {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-light, #6b7280);
	margin: 0;
	padding-left: 0;
}

/* Breadcrumb on product page */
.page-product-detail .product-breadcrumb {
	margin-bottom: 0;
}

/* Product details — categories sidebar top spacing */
.page-product-detail .product-detail-sidebar-col {

}
.page-product-detail .product-sidebar-card,
.page-product-detail .categories-sidebar-shared {
	margin-top: 0;
}

/* Home — categories sidebar matches product detail style */
#categoriesSidebar .categories-sidebar-shared {
	margin-bottom: 0;
}

/* Categories sidebar — no "Shop by Category" heading */
.categories-sidebar--no-header .product-sidebar-card__nav {
	padding-top: 12px;
}


/* Categories sidebar — show 8 by default, expand on toggle */
.categories-sidebar-shared .pm-cat-hidden {
	display: none;
}
.categories-sidebar-shared.pm-cat-expanded .pm-cat-hidden {
	display: block;
}

/* More Categories button — remove blue focus border/outline */
.product-sidebar-list__link--more,
.product-sidebar-list__link--more:focus,
.product-sidebar-list__link--more:focus-visible {
	outline: none !important;
	box-shadow: none !important;
	border: none !important;
}
.product-sidebar-list__item--toggle {
	margin: 6px 0 2px;
}
.product-sidebar-list__link--toggle {
	width: calc(100% - 24px);
	margin: 0 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #fff;
	color: var(--text);
	border: 1px dashed var(--border);
	border-radius: var(--radius-md);
	padding: 10px 14px;
	font-size: .85rem;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.product-sidebar-list__link--toggle:hover {
	background: var(--surface);
	border-color: var(--primary);
	color: var(--primary);
}

/* ================================================================
   THANK YOU ORDER MODAL — Premium
   ================================================================ */
.pm-thankyou-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(6px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pm-thankyou-modal-overlay.pm-thankyou-modal--open {
	opacity: 1;
	visibility: visible;
}
.pm-thankyou-modal {
	position: relative;
	width: 100%;
	max-width: 420px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
	padding: 40px 32px 32px;
	text-align: center;
	transform: scale(0.92);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pm-thankyou-modal--open .pm-thankyou-modal {
	transform: scale(1);
}
.pm-thankyou-modal__icon {
	color: #16a34a;
	margin-bottom: 20px;
}
.pm-thankyou-modal__icon svg {
	display: block;
	margin: 0 auto;
}
.pm-thankyou-modal__title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 12px;
	line-height: 1.3;
	letter-spacing: -0.02em;
}
.pm-thankyou-modal__text {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #6b7280;
	margin: 0 0 16px;
}
.pm-thankyou-modal__order-id {
	font-size: 0.875rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 24px;
	letter-spacing: 0.02em;
}
.pm-thankyou-modal__btn {
	display: block;
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
	padding: 14px 24px;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	background: #1a1a1a;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}
.pm-thankyou-modal__btn:hover {
	background: #333;
	color: #fff;
	transform: translateY(-1px);
}
.pm-thankyou-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: transparent;
	border: none;
	color: #6b7280;
	cursor: pointer;
	border-radius: 50%;
	transition: color 0.2s ease, background 0.2s ease;
}
.pm-thankyou-modal__close:hover {
	color: #1a1a1a;
	background: rgba(0, 0, 0, 0.06);
}

/* ================================================================
   PRODUCT INFO — Premium mobile view
   ================================================================ */
@media (max-width: 767.98px) {
	.page-product-detail .product-detail-main {
		padding-top: 12px;
		padding-bottom: 32px;
		background: #f8f9fa;
	}
	.page-product-detail .product-detail-content {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 28px;
	}
	.page-product-detail .product-detail-inner .row {
		--bs-gutter-y: 0;
	}
	/* Card-style info block */
	.page-product-detail .product-detail-info.product-detail-info--reference {
		background: #fff;
		border-radius: 16px;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
		padding: 20px 16px 24px;
		margin: 16px -4px 0;
		max-width: none;
	}
	.page-product-detail .product-detail-was-price {
		font-size: 0.8125rem;
		color: #6b7280;
		margin-bottom: 4px;
	}
	.page-product-detail .product-detail-title {
		font-size: 1.25rem;
		font-weight: 800;
		letter-spacing: -0.02em;
		line-height: 1.3;
		margin-bottom: 6px;
		color: #1a1a1a;
	}
	.page-product-detail .product-detail-subtitle {
		font-size: 0.875rem;
		color: #6b7280;
		line-height: 1.4;
		margin-bottom: 12px;
	}
	.page-product-detail .product-detail-rating {
		margin-bottom: 14px !important;
		font-size: 0.875rem;
	}
	.page-product-detail .product-detail-rating i {
		font-size: 0.9rem;
	}
	.page-product-detail .product-detail-reviews {
		color: #6b7280;
	}
	.page-product-detail .product-detail-price.product-detail-price--reference {
		margin-bottom: 18px;
		flex-wrap: wrap;
		align-items: baseline;
		gap: 8px;
	}
	.page-product-detail .product-detail-price--reference .product-detail-price-current {
		font-size: 1.5rem;
		font-weight: 800;
		letter-spacing: -0.02em;
		color: #1a1a1a;
	}
	.page-product-detail .product-detail-price--reference .product-detail-price-old {
		font-size: 1rem;
		font-weight: 600;
		color: #9ca3af;
	}
	.page-product-detail .product-detail-promo-row {
		margin-bottom: 18px !important;
		gap: 10px;
	}
	.page-product-detail .product-detail-discount-badge {
		font-size: 0.75rem;
		padding: 6px 12px;
		border-radius: 8px;
		font-weight: 700;
	}
	.page-product-detail .product-detail-countdown-wrap {
		padding: 8px 12px;
		border-radius: 10px;
		background: #fef3c7;
		border: 1px solid #fde68a;
	}
	.page-product-detail .product-detail-countdown-label {
		font-size: 0.7rem;
		display: block;
		margin-bottom: 2px;
	}
	.page-product-detail .product-detail-countdown-timer {
		font-size: 0.9rem;
		font-weight: 700;
		color: #92400e;
	}
	.page-product-detail .product-detail-views {
		font-size: 0.8125rem;
		margin-bottom: 16px !important;
	}
	/* Image swatches */
	.page-product-detail .product-detail-swatch-row {
		margin-bottom: 18px !important;
	}
	.page-product-detail .product-detail-swatches {
		gap: 10px;
	}
	.page-product-detail .product-swatch {
		width: 44px;
		height: 44px;
		border-radius: 8px;
	}
	/* Color selection */
	.page-product-detail .product-detail-color-row {
		margin-bottom: 20px !important;
	}
	.page-product-detail .product-detail-color-label {
		font-size: 0.8125rem;
		margin-bottom: 10px;
	}
	.page-product-detail .product-detail-color-options {
		gap: 10px;
	}
	.page-product-detail .product-color-option {
		padding: 10px 18px;
		font-size: 0.875rem;
		min-height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 999px;
	}
	/* Quantity */
	.page-product-detail .product-detail-qty {
		margin-bottom: 22px !important;
	}
	.page-product-detail .product-detail-qty--premium .product-detail-qty__label {
		font-size: 0.8125rem;
		margin-bottom: 10px;
	}
	.page-product-detail .product-detail-qty .quantity-selector--premium {
		width: 100%;
		max-width: 160px;
		min-height: 48px;
	}
	.page-product-detail .product-detail-qty__stock {
		margin-top: 8px;
		font-size: 0.8125rem;
	}
	/* CTAs — full width, premium touch targets */
	.page-product-detail .product-detail-actions.product-detail-actions--reference {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 22px !important;
	}
	.page-product-detail .product-detail-actions .btn-add-to-cart,
	.page-product-detail .product-detail-actions .btn-buy-now {
		width: 100%;
		justify-content: center;
		min-height: 52px;
		padding: 16px 24px !important;
		font-size: 0.9rem;
		font-weight: 700;
		border-radius: 999px;
		letter-spacing: 0.03em;
	}
	.page-product-detail .product-detail-actions .btn-add-to-cart--outline {
		border-width: 2px;
	}
	.page-product-detail .product-detail-actions .btn-buy-now--solid {
		box-shadow: 0 4px 14px rgba(26, 26, 26, 0.25);
	}
	/* Corporate deal */
	.page-product-detail .product-detail-corporate-deal {
		margin-bottom: 20px !important;
	}
	.page-product-detail .product-detail-corporate-deal-inner {
		padding: 18px 20px;
		border-radius: 12px;
	}
	.page-product-detail .product-detail-corporate-title {
		font-size: 1rem;
	}
	.page-product-detail .product-detail-corporate-link {
		font-size: 0.875rem;
	}
	/* Feature strip — 2 per row on mobile */
	.page-product-detail .product-detail-features-strip {
		margin-bottom: 20px !important;
		gap: 0;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.page-product-detail .product-detail-features-strip .col-6 {
		padding: 14px 8px;
		max-width: none;
		flex: none;
	}
	.page-product-detail .product-detail-feature-item {
		padding: 12px 6px;
		gap: 6px;
	}
	.page-product-detail .product-detail-feature-item i {
		font-size: 1.25rem;
	}
	.page-product-detail .product-detail-feature-item span {
		font-size: 0.7rem;
		line-height: 1.25;
	}
	/* Sold out */
	.page-product-detail .product-detail-info .text-danger {
		font-size: 0.875rem;
	}
}

/* Product info mobile — small phones: tighter padding */
@media (max-width: 575.98px) {
	.page-product-detail .product-detail-container {
		padding-left: 12px;
		padding-right: 12px;
	}
	.page-product-detail .product-detail-info.product-detail-info--reference {
		padding: 18px 14px 22px;
		border-radius: 14px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
		margin: 14px 0 0;
	}
	.page-product-detail .product-detail-title {
		font-size: 1.15rem;
	}
	.page-product-detail .product-detail-price--reference .product-detail-price-current {
		font-size: 1.35rem;
	}
	.page-product-detail .product-detail-actions .btn-add-to-cart,
	.page-product-detail .product-detail-actions .btn-buy-now {
		min-height: 50px;
		padding: 14px 20px !important;
		font-size: 0.875rem;
	}
}

/* ================================================================
   FOOTER — Improved layout and spacing
   ================================================================ */
.site-footer {
	margin-top: 4rem;
}
.footer-top {
	padding: 48px 0 40px;
}
.footer-top .row {
	align-items: flex-start;
}
.footer-heading {
	font-size: .85rem;
	letter-spacing: .06em;
	margin-bottom: 20px;
}
.footer-links li {
	margin-bottom: 10px;
}
.footer-links li a {
	font-size: .9rem;
	color: var(--text-light);
}
.footer-contact li {
	margin-bottom: 14px;
}
.footer-mid {

}
.footer-bottom {

}
.footer-copyright {
	font-size: .85rem;
}

/* Footer responsive — 2-col layout on mobile (sync with style.css) */
@media (max-width: 767.98px) {
	.footer-top {
		padding: 32px 0 28px;
	}
	.footer-top [class*="col-"] {
		margin-bottom: 28px;
	}
	.footer-heading {
		font-size: .8rem;
		margin-bottom: 12px;
	}
	.footer-contact {
		font-size: .8125rem;
	}
	.footer-contact li {
		margin-bottom: 10px;
	}
	.footer-links li {
		margin-bottom: 8px;
	}
	.footer-links li a {
		font-size: .85rem;
	}
	.footer-social-icon {
		width: 32px;
		height: 32px;
		font-size: .9rem;
	}
}
@media (max-width: 575.98px) {
	.footer-top {
		padding: 6px;
	}
	.footer-top [class*="col-"] {
		margin-bottom: 24px;
	}
	.footer-heading {
		font-size: .75rem;
		margin-bottom: 10px;
	}
	.footer-contact {
		font-size: .75rem;
	}
	.footer-links li a {
		font-size: .8rem;
	}
}
