/* ==========================================================================
   Ncure - Two Brothers Inspired E-commerce Theme
   Earthy, organic, premium aesthetic
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
	--nc-primary: #2d6a4f;
	--nc-primary-light: #40916c;
	--nc-primary-dark: #1b4332;
	--nc-accent: #d4a373;
	--nc-accent-light: #e9c46a;
	--nc-cream: #fefae0;
	--nc-cream-dark: #f5f0e1;
	--nc-bg: #faf8f5;
	--nc-white: #ffffff;
	--nc-dark: #1a1a1a;
	--nc-text: #3d3d3d;
	--nc-text-light: #6b6b6b;
	--nc-border: #e8e2d9;
	--nc-danger: #c1121f;
	--nc-success: #2d6a4f;
	--nc-radius: 12px;
	--nc-radius-sm: 8px;
	--nc-radius-lg: 20px;
	--nc-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	--nc-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
	--nc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--nc-font: 'DM Sans', 'Segoe UI', sans-serif;
	--nc-font-heading: 'Playfair Display', 'Georgia', serif;
}

/* ---------- Typography ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

body.ncure-theme {
	font-family: var(--nc-font);
	color: var(--nc-text);
	background-color: var(--nc-bg);
	-webkit-font-smoothing: antialiased;
}

.ncure-theme h1,
.ncure-theme h2,
.ncure-theme h3 {
	font-family: var(--nc-font-heading);
	color: var(--nc-dark);
	font-weight: 600;
}

.ncure-theme h4,
.ncure-theme h5,
.ncure-theme h6 {
	font-family: var(--nc-font);
	color: var(--nc-dark);
	font-weight: 600;
}

/* ---------- Top Announcement Bar ---------- */
.nc-topbar {
	background: var(--nc-primary-dark);
	color: #fff;
	padding: 8px 0;
	font-size: 13px;
	text-align: center;
	letter-spacing: 0.5px;
}

.nc-topbar a {
	color: var(--nc-accent-light);
	text-decoration: underline;
}

.nc-topbar .marquee-content {
	display: flex;
	animation: nc-marquee 20s linear infinite;
	white-space: nowrap;
}

@keyframes nc-marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* ---------- Header ---------- */
.nc-header {
	background: var(--nc-white);
	box-shadow: 0 1px 0 var(--nc-border);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--nc-transition);
}

.nc-header.scrolled {
	box-shadow: var(--nc-shadow);
}

.nc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	max-width: 1400px;
	margin: 0 auto;
}

.nc-logo img {
	height: 50px;
	transition: var(--nc-transition);
}

.nc-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nc-nav li a {
	font-size: 14px;
	font-weight: 500;
	color: var(--nc-text);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 8px 0;
	position: relative;
	transition: var(--nc-transition);
}

.nc-nav li a:hover,
.nc-nav li a.active {
	color: var(--nc-primary);
}

.nc-nav li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--nc-primary);
	transition: var(--nc-transition);
}

.nc-nav li a:hover::after {
	width: 100%;
}

.nc-nav .nc-dropdown {
	position: relative;
}

.nc-nav .nc-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--nc-white);
	border-radius: var(--nc-radius);
	box-shadow: var(--nc-shadow-hover);
	padding: 20px;
	min-width: 600px;
	display: none;
	z-index: 100;
}

.nc-nav .nc-dropdown:hover .nc-dropdown-menu {
	display: block;
}

.nc-dropdown-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.nc-dropdown-item {
	text-align: center;
	padding: 12px;
	border-radius: var(--nc-radius-sm);
	transition: var(--nc-transition);
}

.nc-dropdown-item:hover {
	background: var(--nc-cream);
}

.nc-dropdown-item img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 8px;
}

.nc-dropdown-item span {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: var(--nc-text);
}

/* Header Icons */
.nc-header-icons {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nc-icon-btn {
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	color: var(--nc-text);
	transition: var(--nc-transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.nc-icon-btn:hover {
	color: var(--nc-primary);
}

.nc-icon-btn svg {
	width: 22px;
	height: 22px;
}

.nc-icon-btn .nc-badge {
	position: absolute;
	top: -4px;
	right: -6px;
	background: var(--nc-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* Header User Dropdown */
.nc-user-dropdown {
	position: relative;
}

.nc-user-dropdown-menu {
	position: absolute;
	top: calc(100% + 2px);
	right: -31px;
	background: var(--nc-white);
	border-radius: var(--nc-radius-sm);
	box-shadow: var(--nc-shadow-hover);
	min-width: 180px;
	padding: 8px 0;
	display: none;
	z-index: 100;
}

.nc-user-dropdown:hover .nc-user-dropdown-menu {
	display: block;
}

.nc-user-dropdown-menu a {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
	color: var(--nc-text);
	text-decoration: none;
	transition: var(--nc-transition);
}

.nc-user-dropdown-menu a:hover {
	background: var(--nc-cream);
	color: var(--nc-primary);
}

/* Mobile Menu Toggle */
.nc-mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.nc-mobile-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--nc-dark);
	margin: 5px 0;
	transition: var(--nc-transition);
}

/* ---------- Hero Slider ---------- */
.nc-hero {
	position: relative;
	overflow: hidden;
}

.nc-hero-slide {
	position: relative;
	height: 85vh;
	min-height: 500px;
	max-height: 750px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
}

.nc-hero-slide::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}

.nc-hero-content {
	position: relative;
	z-index: 2;
	max-width: 550px;
	padding: 40px;
}

.nc-hero-content h1 {
	font-size: 48px;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 16px;
}

.nc-hero-content p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
	line-height: 1.6;
}

.nc-hero .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.nc-hero .swiper-pagination-bullet-active {
	background: #fff;
	width: 30px;
	border-radius: 6px;
}

/* ---------- Buttons ---------- */
.nc-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: var(--nc-transition);
	border: 2px solid transparent;
	letter-spacing: 0.5px;
}

.nc-btn-primary {
	background: var(--nc-primary);
	color: #fff;
	border-color: var(--nc-primary);
}

.nc-btn-primary:hover {
	background: var(--nc-primary-dark);
	border-color: var(--nc-primary-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.nc-btn-outline {
	background: transparent;
	color: var(--nc-primary);
	border-color: var(--nc-primary);
}

.nc-btn-outline:hover {
	background: var(--nc-primary);
	color: #fff;
}

.nc-btn-white {
	background: #fff;
	color: var(--nc-primary);
	border-color: #fff;
}

.nc-btn-white:hover {
	background: var(--nc-cream);
	border-color: var(--nc-cream);
}

.nc-btn-sm {
	padding: 8px 18px;
	font-size: 13px;
}

.nc-btn-lg {
	padding: 16px 36px;
	font-size: 16px;
}

/* ---------- Section Styling ---------- */
.nc-section {
	padding: 80px 0;
}

.nc-section-sm {
	padding: 50px 0;
}

.nc-section-title {
	text-align: center;
	margin-bottom: 50px;
}

.nc-section-title h2 {
	font-size: 36px;
	margin-bottom: 12px;
}

.nc-section-title p {
	font-size: 16px;
	color: var(--nc-text-light);
	max-width: 550px;
	margin: 0 auto;
}

.nc-section-title .nc-line {
	width: 60px;
	height: 3px;
	background: var(--nc-primary);
	margin: 16px auto 0;
	border-radius: 2px;
}

/* ---------- Categories Section ---------- */
.nc-categories {
	background: var(--nc-white);
}

.nc-categories-grid {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 10px;
	scrollbar-width: none;
}

.nc-categories-grid::-webkit-scrollbar {
	display: none;
}

.nc-category-card {
	flex: 0 0 auto;
	width: 160px;
	text-align: center;
	text-decoration: none;
	scroll-snap-align: start;
	transition: var(--nc-transition);
}

.nc-category-card:hover {
	transform: translateY(-4px);
}

.nc-category-img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 14px;
	border: 3px solid var(--nc-cream-dark);
	transition: var(--nc-transition);
}

.nc-category-card:hover .nc-category-img {
	border-color: var(--nc-primary);
}

.nc-category-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--nc-transition);
}

.nc-category-card:hover .nc-category-img img {
	transform: scale(1.1);
}

.nc-category-card h6 {
	font-size: 14px;
	font-weight: 600;
	color: var(--nc-text);
	margin: 0;
}

/* ---------- Product Cards ---------- */
.nc-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.nc-product-card {
	background: var(--nc-white);
	border-radius: var(--nc-radius);
	overflow: hidden;
	transition: var(--nc-transition);
	border: 1px solid var(--nc-border);
	text-decoration: none;
	display: block;
}

.nc-product-card:hover {
	box-shadow: var(--nc-shadow-hover);
	border-color: transparent;
	transform: translateY(-4px);
}

.nc-product-thumb {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1/1;
	background: var(--nc-cream);
}

.nc-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--nc-transition);
}

.nc-product-card:hover .nc-product-thumb img {
	transform: scale(1.05);
}

.nc-product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 12px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nc-product-badge.sale {
	background: var(--nc-danger);
	color: #fff;
}

.nc-product-badge.new {
	background: var(--nc-primary);
	color: #fff;
}

.nc-product-badge.trending {
	background: var(--nc-accent);
	color: #fff;
}

.nc-product-actions {
	position: absolute;
	top: 12px;
	right: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	transform: translateX(10px);
	transition: var(--nc-transition);
}

.nc-product-card:hover .nc-product-actions {
	opacity: 1;
	transform: translateX(0);
}

.nc-product-action-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--nc-white);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: var(--nc-transition);
	color: var(--nc-text);
}

.nc-product-action-btn:hover {
	background: var(--nc-primary);
	color: #fff;
}

.nc-product-action-btn.wishlisted {
	color: var(--nc-danger);
}

.nc-product-info {
	padding: 16px 18px 20px;
}

.nc-product-category {
	font-size: 12px;
	color: var(--nc-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	margin-bottom: 6px;
}

.nc-product-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--nc-dark);
	margin-bottom: 6px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nc-product-desc {
	font-size: 13px;
	color: var(--nc-text-light);
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nc-product-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
}

.nc-product-rating .stars {
	color: #f59e0b;
	font-size: 13px;
}

.nc-product-rating .count {
	font-size: 12px;
	color: var(--nc-text-light);
}

.nc-product-price {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.nc-product-price .current {
	font-size: 18px;
	font-weight: 700;
	color: var(--nc-dark);
}

.nc-product-price .original {
	font-size: 14px;
	color: var(--nc-text-light);
	text-decoration: line-through;
}

.nc-product-price .discount {
	font-size: 12px;
	color: var(--nc-primary);
	font-weight: 600;
	background: rgba(45, 106, 79, 0.1);
	padding: 2px 8px;
	border-radius: 50px;
}

.nc-product-card .nc-add-cart-btn {
	width: 100%;
	padding: 10px;
	background: var(--nc-primary);
	color: #fff;
	border: none;
	border-radius: var(--nc-radius-sm);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--nc-transition);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.nc-product-card .nc-add-cart-btn:hover {
	background: var(--nc-primary-dark);
}

/* ---------- Product Tabs ---------- */
.nc-product-tabs {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.nc-product-tab {
	padding: 10px 24px;
	border-radius: 50px;
	border: 2px solid var(--nc-border);
	background: transparent;
	color: var(--nc-text);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: var(--nc-transition);
}

.nc-product-tab:hover,
.nc-product-tab.active {
	border-color: var(--nc-primary);
	background: var(--nc-primary);
	color: #fff;
}

/* ---------- Video Reviews Section ---------- */
.nc-video-reviews {
	background: var(--nc-cream);
}

.nc-video-card {
	position: relative;
	border-radius: var(--nc-radius);
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 9/16;
	max-height: 350px;
}

.nc-video-card video,
.nc-video-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nc-video-card .nc-play-btn {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.3);
	transition: var(--nc-transition);
}

.nc-video-card:hover .nc-play-btn {
	background: rgba(0, 0, 0, 0.15);
}

.nc-play-btn svg {
	width: 50px;
	height: 50px;
	fill: #fff;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.nc-video-card .nc-video-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 16px 16px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: #fff;
}

.nc-video-info h6 {
	color: #fff;
	font-size: 14px;
	margin-bottom: 4px;
}

.nc-video-info .stars {
	color: #f59e0b;
	font-size: 12px;
}

/* ---------- Testimonials Section ---------- */
.nc-testimonials {
	background: var(--nc-white);
	overflow: hidden;
}

.nc-testimonial-card {
	background: var(--nc-cream);
	border-radius: var(--nc-radius);
	padding: 30px;
	text-align: center;
	transition: var(--nc-transition);
}

.nc-testimonial-card:hover {
	box-shadow: var(--nc-shadow);
}

.nc-testimonial-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 16px;
	border: 3px solid var(--nc-primary-light);
}

.nc-testimonial-card .nc-quote {
	font-size: 40px;
	line-height: 1;
	color: var(--nc-primary);
	font-family: Georgia, serif;
	margin-bottom: 10px;
}

.nc-testimonial-card p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--nc-text);
	margin-bottom: 16px;
	font-style: italic;
}

.nc-testimonial-card .name {
	font-weight: 700;
	color: var(--nc-dark);
	font-size: 15px;
	margin-bottom: 2px;
}

.nc-testimonial-card .role {
	font-size: 13px;
	color: var(--nc-text-light);
}

/* ---------- Footer ---------- */
.nc-footer {
	background: var(--nc-primary-dark);
	color: rgba(255, 255, 255, 0.8);
	padding: 70px 0 0;
}

.nc-footer h5 {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nc-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.nc-footer ul li {
	margin-bottom: 10px;
}

.nc-footer ul li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: var(--nc-transition);
}

.nc-footer ul li a:hover {
	color: var(--nc-accent-light);
	padding-left: 4px;
}

.nc-footer-logo img {
	height: 45px;
	margin-bottom: 16px;
}

.nc-footer-about {
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.nc-footer-social {
	display: flex;
	gap: 12px;
}

.nc-footer-social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	text-decoration: none;
	transition: var(--nc-transition);
}

.nc-footer-social a:hover {
	background: var(--nc-primary-light);
	border-color: var(--nc-primary-light);
	color: #fff;
}

.nc-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
	margin-top: 50px;
}

.nc-footer-bottom p {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

/* Newsletter in footer */
.nc-newsletter-input {
	display: flex;
	border-radius: 50px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.nc-newsletter-input input {
	flex: 1;
	padding: 12px 20px;
	border: none;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 14px;
	outline: none;
}

.nc-newsletter-input input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.nc-newsletter-input button {
	padding: 12px 24px;
	background: var(--nc-accent);
	color: #fff;
	border: none;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: var(--nc-transition);
}

.nc-newsletter-input button:hover {
	background: var(--nc-accent-light);
}

/* ---------- Breadcrumb ---------- */
.nc-breadcrumb {
	padding: 120px 0 50px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.nc-breadcrumb::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.nc-breadcrumb .content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.nc-breadcrumb h1 {
	color: #fff;
	font-size: 36px;
	margin-bottom: 10px;
}

.nc-breadcrumb nav ol {
	background: transparent;
	justify-content: center;
}

.nc-breadcrumb nav ol li,
.nc-breadcrumb nav ol li a {
	color: rgba(255, 255, 255, 0.8);
}

/* ---------- Product Detail Page ---------- */
.nc-product-gallery {
	position: sticky;
	top: 100px;
}

.nc-gallery-main {
	border-radius: var(--nc-radius);
	overflow: hidden;
	margin-bottom: 12px;
	background: var(--nc-cream);
}

.nc-gallery-main img {
	width: 100%;
	height: 500px;
	object-fit: contain;
}

.nc-gallery-thumbs {
	display: flex;
	gap: 10px;
}

.nc-gallery-thumb {
	width: 80px;
	height: 80px;
	border-radius: var(--nc-radius-sm);
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: var(--nc-transition);
}

.nc-gallery-thumb.active,
.nc-gallery-thumb:hover {
	border-color: var(--nc-primary);
}

.nc-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nc-product-detail-info .nc-price-tag {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin: 16px 0;
}

.nc-price-tag .price {
	font-size: 28px;
	font-weight: 700;
	color: var(--nc-dark);
}

.nc-price-tag .mrp {
	font-size: 18px;
	color: var(--nc-text-light);
	text-decoration: line-through;
}

.nc-price-tag .save {
	font-size: 14px;
	color: var(--nc-primary);
	font-weight: 600;
}

.nc-product-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin: 20px 0;
}

.nc-feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: var(--nc-cream);
	border-radius: var(--nc-radius-sm);
	font-size: 13px;
	font-weight: 500;
}

.nc-feature-item i {
	color: var(--nc-primary);
	font-size: 16px;
}

.nc-qty-selector {
	display: flex;
	align-items: center;
	border: 2px solid var(--nc-border);
	border-radius: var(--nc-radius-sm);
	overflow: hidden;
	width: fit-content;
}

.nc-qty-selector button {
	width: 44px;
	height: 44px;
	background: var(--nc-cream);
	border: none;
	font-size: 18px;
	cursor: pointer;
	transition: var(--nc-transition);
}

.nc-qty-selector button:hover {
	background: var(--nc-border);
}

.nc-qty-selector input {
	width: 50px;
	height: 44px;
	text-align: center;
	border: none;
	font-size: 16px;
	font-weight: 600;
	outline: none;
}

.nc-action-btns {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.nc-action-btns .nc-btn {
	flex: 1;
	justify-content: center;
}

/* Reviews Section on product page */
.nc-review-card {
	padding: 20px;
	border-bottom: 1px solid var(--nc-border);
}

.nc-review-card:last-child {
	border-bottom: none;
}

.nc-review-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.nc-review-avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--nc-cream);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--nc-primary);
}

/* ---------- Cart & Mini Cart ---------- */
.nc-mini-cart {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	width: 340px;
	background: var(--nc-white);
	border-radius: var(--nc-radius);
	box-shadow: var(--nc-shadow-hover);
	padding: 20px;
	display: none;
	z-index: 100;
}

.nc-header-icons .nc-cart-wrap:hover .nc-mini-cart {
	display: block;
}

.nc-mini-cart-item {
	display: flex;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--nc-border);
}

.nc-mini-cart-item img {
	width: 60px;
	height: 60px;
	border-radius: var(--nc-radius-sm);
	object-fit: cover;
}

/* ---------- Search Overlay ---------- */
.nc-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding-top: 120px;
}

.nc-search-overlay.active {
	display: flex;
}

.nc-search-box {
	background: var(--nc-white);
	border-radius: var(--nc-radius);
	padding: 8px;
	width: 90%;
	max-width: 600px;
	display: flex;
	box-shadow: var(--nc-shadow-hover);
}

.nc-search-box input {
	flex: 1;
	padding: 16px 20px;
	border: none;
	font-size: 16px;
	outline: none;
	background: transparent;
}

.nc-search-box button {
	padding: 12px 24px;
	background: var(--nc-primary);
	color: #fff;
	border: none;
	border-radius: var(--nc-radius-sm);
	cursor: pointer;
	font-size: 16px;
}

/* ---------- Wishlist ---------- */
.nc-wishlist-section .nc-products-grid {
	grid-template-columns: repeat(4, 1fr);
}

/* ---------- Shop Page ---------- */
.nc-shop-filters {
	background: var(--nc-white);
	border-radius: var(--nc-radius);
	padding: 24px;
	border: 1px solid var(--nc-border);
}

.nc-filter-group h6 {
	font-size: 15px;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--nc-border);
}

.nc-filter-group ul {
	list-style: none;
	padding: 0;
}

.nc-filter-group ul li a {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	color: var(--nc-text);
	text-decoration: none;
	font-size: 14px;
	transition: var(--nc-transition);
}

.nc-filter-group ul li a:hover {
	color: var(--nc-primary);
}

/* ---------- Mobile Toolbar ---------- */
.nc-mobile-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--nc-white);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 999;
	padding: 8px 0;
}

.nc-mobile-bar-inner {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.nc-mobile-bar-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	text-decoration: none;
	color: var(--nc-text-light);
	font-size: 11px;
	position: relative;
}

.nc-mobile-bar-item svg {
	width: 22px;
	height: 22px;
}

.nc-mobile-bar-item.active {
	color: var(--nc-primary);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
	.nc-products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 991px) {
	.nc-nav {
		display: none;
	}

	.nc-mobile-toggle {
		display: block;
	}

	.nc-hero-slide {
		height: 60vh;
		min-height: 400px;
	}

	.nc-hero-content h1 {
		font-size: 32px;
	}

	.nc-section {
		padding: 50px 0;
	}

	.nc-section-title h2 {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.nc-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.nc-hero-slide {
		height: 50vh;
		min-height: 350px;
	}

	.nc-hero-content h1 {
		font-size: 26px;
	}

	.nc-hero-content p {
		font-size: 15px;
	}

	.nc-mobile-bar {
		display: block;
	}

	.nc-footer {
		padding-bottom: 70px;
	}

	.nc-product-features {
		grid-template-columns: 1fr;
	}

	.nc-action-btns {
		flex-direction: column;
	}

	.nc-gallery-main img {
		height: 350px;
	}
}

@media (max-width: 480px) {
	.nc-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.nc-product-info {
		padding: 12px;
	}

	.nc-product-name {
		font-size: 14px;
	}

	.nc-product-price .current {
		font-size: 16px;
	}

	.nc-category-card {
		width: 100px;
	}

	.nc-category-img {
		width: 80px;
		height: 80px;
	}
}

/* ---------- Utility ---------- */
.nc-bg-cream {
	background: var(--nc-cream);
}

.nc-bg-white {
	background: var(--nc-white);
}

.nc-text-primary {
	color: var(--nc-primary);
}

.nc-text-muted {
	color: var(--nc-text-light);
}

/* Swiper overrides for ncure theme */
.ncure-theme .swiper-button-next,
.ncure-theme .swiper-button-prev {
	width: 44px;
	height: 44px;
	background: var(--nc-white);
	border-radius: 50%;
	box-shadow: var(--nc-shadow);
}

.ncure-theme .swiper-button-next::after,
.ncure-theme .swiper-button-prev::after {
	font-size: 16px;
	color: var(--nc-dark);
	font-weight: bold;
}

/* Smooth scroll */
.ncure-theme {
	scroll-behavior: smooth;
}

/* Custom scrollbar */
.ncure-theme ::-webkit-scrollbar {
	width: 6px;
}

.ncure-theme ::-webkit-scrollbar-track {
	background: var(--nc-cream);
}

.ncure-theme ::-webkit-scrollbar-thumb {
	background: var(--nc-border);
	border-radius: 3px;
}

.ncure-theme ::-webkit-scrollbar-thumb:hover {
	background: var(--nc-text-light);
}
