/**
 * NBR Mobility Custom Styles
 * Modern, clean design with rounded corners
 */

/* =====================================================
   BASE & RESET
   ===================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* =====================================================
   MODERN VARIABLES
   ===================================================== */
:root {
	--radius-sm: 0.5rem;
	--radius-md: 1rem;
	--radius-lg: 1.5rem;
	--radius-xl: 2rem;
	--radius-full: 9999px;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
	--shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
	--shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 10px 20px -10px rgba(0, 0, 0, 0.04);
	--transition-fast: 0.15s ease;
	--transition-normal: 0.25s ease;
	--transition-slow: 0.4s ease;
}

/* =====================================================
   HEADER STYLES
   ===================================================== */
.nbr-top-bar {
	font-size: 0.75rem;
}

/* WooCommerce pages - fix header spacing */
body.woocommerce-page header.wp-block-template-part,
body.archive header.wp-block-template-part,
body.tax-product_cat header.wp-block-template-part {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

body.woocommerce-page header.wp-block-template-part > *,
body.archive header.wp-block-template-part > *,
body.tax-product_cat header.wp-block-template-part > * {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.nbr-top-bar a {
	transition: color var(--transition-fast);
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

.nbr-top-bar a:hover {
	color: #60a5fa;
	text-decoration: none !important;
}

/* Fix WooCommerce adding underlines/borders and extra spacing to top bar elements */
.nbr-top-bar .wp-block-group,
.nbr-top-bar .is-layout-flex,
.nbr-top-bar p {
	border: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.nbr-top-bar p {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	line-height: 1.4 !important;
}

/* Fix WordPress block layout adding margin to header elements on WooCommerce pages */
/* Override block gap at ALL nesting levels within header elements */
.nbr-top-bar,
.nbr-top-bar *,
.nbr-main-header,
.nbr-main-header *,
.nbr-nav,
.nbr-nav * {
	--wp--style--block-gap: 0 !important;
}

/* Zero out all margins on nested elements in header */
.nbr-top-bar .wp-block-group,
.nbr-top-bar .is-layout-constrained > *,
.nbr-top-bar .is-layout-flex > *,
.nbr-main-header .wp-block-group,
.nbr-main-header .is-layout-constrained > *,
.nbr-main-header .is-layout-flex > *,
.nbr-nav .wp-block-group,
.nbr-nav .is-layout-constrained > *,
.nbr-nav .is-layout-flex > * {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* Force header elements to ignore is-layout-constrained behavior on WooCommerce pages — desktop only */
@media (min-width: 783px) {
	.woocommerce-page .nbr-top-bar.is-layout-constrained,
	.woocommerce-page .nbr-main-header.is-layout-constrained,
	.woocommerce-page .nbr-nav.is-layout-constrained,
	body.archive .nbr-top-bar.is-layout-constrained,
	body.archive .nbr-main-header.is-layout-constrained,
	body.archive .nbr-nav.is-layout-constrained {
		display: block !important;
	}

	/* Re-enable flex on the inner containers */
	.woocommerce-page .nbr-top-bar > .is-layout-flex,
	.woocommerce-page .nbr-main-header > .is-layout-flex,
	body.archive .nbr-top-bar > .is-layout-flex,
	body.archive .nbr-main-header > .is-layout-flex {
		display: flex !important;
	}
}

.nbr-main-header {
	border-bottom: 1px solid #f1f5f9;
}

/* Logo Styling */
.nbr-logo {
	margin: 0;
}

.nbr-logo img {
	max-height: 50px;
	width: auto;
	height: auto;
	transition: opacity var(--transition-fast);
}

.nbr-logo a:hover img {
	opacity: 0.85;
}

@media (max-width: 768px) {
	.nbr-logo img {
		max-height: 40px;
	}
}

/* Modern Search Bar - Fully Rounded */
.wp-block-search.nbr-search-form {
	max-width: 50rem;
	flex: 1;
}

.wp-block-search.nbr-search-form .wp-block-search__inside-wrapper {
	border-radius: var(--radius-full) !important;
	border: 2px solid #e2e8f0;
	background: #f8fafc;
	overflow: hidden;
	transition: all var(--transition-normal);
}

.wp-block-search.nbr-search-form .wp-block-search__inside-wrapper:focus-within {
	border-color: #3b82f6;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.wp-block-search.nbr-search-form .wp-block-search__input {
	border: none !important;
	background: transparent !important;
	padding: 0.875rem 1.5rem !important;
	font-size: 0.9375rem;
}

.wp-block-search.nbr-search-form .wp-block-search__input::placeholder {
	color: #94a3b8;
}

.wp-block-search.nbr-search-form .wp-block-search__button {
	background: #2563eb !important;
	border: none !important;
	border-radius: var(--radius-full) !important;
	margin: 0.35rem !important;
	padding: 0.625rem 1rem !important;
	transition: all var(--transition-fast);
}

.wp-block-search.nbr-search-form .wp-block-search__button:hover {
	background: #1d4ed8 !important;
	transform: scale(1.02);
}

/* =====================================================
   NAVIGATION - Compact with Dividers
   ===================================================== */
.nbr-nav {
	padding-top: 0.375rem;
	padding-bottom: 0.375rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

/* Menu dividers between items */
.nbr-nav .wp-block-navigation__container > .wp-block-navigation-item {
	position: relative;
}

.nbr-nav .wp-block-navigation__container > .wp-block-navigation-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: calc(var(--wp--preset--spacing--60, 2rem) / -2);
	top: 50%;
	transform: translateY(-50%);
	height: 1rem;
	width: 1px;
	background: rgba(255, 255, 255, 0.35);
}

.nbr-nav a {
	color: white;
	text-decoration: none;
	padding: 0.5rem 0;
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all var(--transition-fast);
	position: relative;
}

.nbr-nav a:hover {
	color: #93c5fd;
}

.nbr-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #60a5fa;
	transition: width var(--transition-normal);
}

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

/* Navigation Dropdown/Submenu Styles */
.nbr-nav .wp-block-navigation-submenu {
	position: relative;
}

/* Parent item with submenu */
.nbr-nav .wp-block-navigation-item.has-child {
	padding-bottom: 0.5rem;
	margin-bottom: -0.5rem;
}

.nbr-nav .wp-block-navigation-item.has-child > .wp-block-navigation-item__content {
	color: white !important;
}

.nbr-nav .wp-block-navigation-item.has-child:hover > .wp-block-navigation-item__content {
	color: #93c5fd !important;
}

/* Submenu toggle button (arrow) */
.nbr-nav .wp-block-navigation__submenu-icon {
	background: transparent !important;
	border: none !important;
	color: white !important;
	padding: 0 !important;
	margin-left: 0.25rem !important;
}

.nbr-nav .wp-block-navigation__submenu-icon svg {
	stroke: currentColor !important;
	width: 10px !important;
	height: 10px !important;
}

.nbr-nav .wp-block-navigation-item.has-child:hover .wp-block-navigation__submenu-icon {
	color: #93c5fd !important;
}

/* The dropdown container */
.nbr-nav .wp-block-navigation__submenu-container.wp-block-navigation-submenu {
	position: absolute !important;
	top: 100% !important;
	left: 0 !important;
	transform: none !important;
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
	border: none !important;
	border-radius: 0.5rem !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
	min-width: 200px !important;
	padding: 0.5rem 0 !important;
	z-index: 1000 !important;
	margin-top: 0 !important;
	gap: 0 !important;
}

/* Dropdown items container */
.nbr-nav .wp-block-navigation__submenu-container .wp-block-navigation-item {
	display: block !important;
	width: 100% !important;
}

/* Dropdown links */
.nbr-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	color: white !important;
	padding: 0.625rem 1.25rem !important;
	display: block !important;
	white-space: nowrap !important;
	transition: background-color 0.15s ease !important;
	text-decoration: none !important;
}

.nbr-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
	background-color: rgba(255, 255, 255, 0.15) !important;
	color: #93c5fd !important;
}

/* Remove underline effect from dropdown items */
.nbr-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content::after {
	display: none !important;
}

/* =====================================================
   HERO SECTION - Modern Gradient
   ===================================================== */
.nbr-hero {
	position: relative;
	background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
	overflow: hidden;
}

.nbr-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 200%;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

.nbr-hero-badge {
	display: inline-block;
	background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.5rem 1.25rem;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.nbr-hero h1 {
	color: white;
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
}

.nbr-hero p:not(.nbr-hero-badge) {
	color: #cbd5e1;
	font-size: 1.125rem;
	line-height: 1.7;
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
}

/* Hero Buttons - More Rounded & Modern */
.nbr-btn-primary .wp-block-button__link,
.wp-block-button.nbr-btn-primary .wp-block-button__link {
	background: white !important;
	color: #1e3a8a !important;
	padding: 1rem 2rem !important;
	border-radius: var(--radius-full) !important;
	font-weight: 700 !important;
	transition: all var(--transition-normal) !important;
	box-shadow: var(--shadow-lg), 0 4px 20px rgba(255, 255, 255, 0.2) !important;
}

.nbr-btn-primary .wp-block-button__link:hover,
.wp-block-button.nbr-btn-primary .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl), 0 8px 30px rgba(255, 255, 255, 0.25) !important;
}

.nbr-btn-outline .wp-block-button__link,
.wp-block-button.nbr-btn-outline .wp-block-button__link {
	background: rgba(255, 255, 255, 0.1) !important;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.8) !important;
	border-radius: var(--radius-full) !important;
	padding: 1rem 2rem !important;
	transition: all var(--transition-normal) !important;
}

.nbr-btn-outline .wp-block-button__link:hover,
.wp-block-button.nbr-btn-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.2) !important;
	border-color: white !important;
	transform: translateY(-2px);
}

/* =====================================================
   USP BAR - Modern Cards with Gradient Accents
   ===================================================== */
.nbr-usp-bar {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	border-bottom: none;
	position: relative;
}

.nbr-usp-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
	padding: 2rem 1.5rem;
	background: white;
	border-radius: var(--radius-xl);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(226, 232, 240, 0.8);
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.nbr-usp-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 100%);
	transform: scaleX(0);
	transition: transform var(--transition-normal);
}

.nbr-usp-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px -10px rgba(30, 58, 138, 0.15), 0 8px 16px -8px rgba(30, 58, 138, 0.1);
	border-color: transparent;
}

.nbr-usp-item:hover::before {
	transform: scaleX(1);
}

.nbr-usp-icon {
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	color: #2563eb;
	border-radius: var(--radius-xl);
	transition: all var(--transition-normal);
	font-size: 1.5rem;
	position: relative;
}

.nbr-usp-icon svg {
	width: 1.75rem;
	height: 1.75rem;
	stroke-width: 1.75;
	transition: all var(--transition-normal);
}

.nbr-usp-item:hover .nbr-usp-icon {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: white;
	transform: scale(1.1);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.nbr-usp-item:hover .nbr-usp-icon svg {
	stroke: white;
}

.nbr-usp-content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.nbr-usp-title {
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.nbr-usp-text {
	font-size: 0.875rem;
	color: #64748b;
	line-height: 1.4;
}

/* USP Bar responsive adjustments */
@media (max-width: 1024px) {
	.nbr-usp-bar .wp-block-columns {
		flex-wrap: wrap !important;
	}

	.nbr-usp-bar .wp-block-column {
		flex-basis: calc(50% - 0.75rem) !important;
		flex-grow: 0 !important;
	}
}

@media (max-width: 600px) {
	.nbr-usp-bar .wp-block-column {
		flex-basis: 100% !important;
	}

	.nbr-usp-item {
		flex-direction: row;
		text-align: left;
		padding: 1.25rem 1.5rem;
		gap: 1.25rem;
	}

	.nbr-usp-icon {
		width: 3.5rem;
		height: 3.5rem;
		flex-shrink: 0;
	}

	.nbr-usp-icon svg {
		width: 1.5rem;
		height: 1.5rem;
	}

	.nbr-usp-content {
		align-items: flex-start;
	}
}

/* =====================================================
   CATEGORY GRID - Modern Cards
   ===================================================== */
.nbr-categories-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.nbr-category-card {
	background: white;
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-radius: var(--radius-xl);
	overflow: hidden;
	transition: all var(--transition-normal);
	height: 100%;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	position: relative;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nbr-category-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
	transform: scaleX(0);
	transition: transform var(--transition-normal);
}

.nbr-category-card:hover {
	border-color: transparent;
	box-shadow: 0 20px 40px -10px rgba(30, 58, 138, 0.15), 0 8px 16px -8px rgba(30, 58, 138, 0.1);
	transform: translateY(-8px);
}

.nbr-category-card:hover::after {
	transform: scaleX(1);
}

/* Category card link wrapper */
.nbr-category-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.nbr-category-link:hover,
.nbr-category-link:focus {
	text-decoration: none;
	color: inherit;
}

/* Actual product images */
.nbr-category-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform var(--transition-normal);
}

.nbr-category-card:hover .nbr-category-img {
	transform: scale(1.05);
}

.nbr-category-image {
	height: 10rem;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
}

.nbr-category-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0) 0%, rgba(37, 99, 235, 0.03) 100%);
	opacity: 0;
	transition: opacity var(--transition-normal);
}

.nbr-category-card:hover .nbr-category-image {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.nbr-category-card:hover .nbr-category-image::before {
	opacity: 1;
}

.nbr-category-icon {
	width: 4.5rem;
	height: 4.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border-radius: var(--radius-xl);
	transition: all var(--transition-normal);
}

.nbr-category-icon svg {
	width: 2.25rem;
	height: 2.25rem;
	stroke: #2563eb;
	stroke-width: 1.5;
	transition: all var(--transition-normal);
}

.nbr-category-card:hover .nbr-category-icon {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	transform: scale(1.1);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.nbr-category-card:hover .nbr-category-icon svg {
	stroke: white;
}

/* Category card images */
.nbr-category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-normal);
}

.nbr-category-card:hover .nbr-category-image img {
	transform: scale(1.05);
}

.nbr-category-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: #94a3b8;
}

.nbr-category-placeholder svg {
	width: 2.5rem;
	height: 2.5rem;
	stroke: #cbd5e1;
	stroke-width: 1.5;
}

.nbr-category-placeholder span {
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.nbr-category-content {
	padding: 1.5rem 1.25rem;
	text-align: center;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.nbr-category-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin: 0;
	min-height: 1.5em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nbr-category-price {
	font-size: 0.9375rem;
	color: #0ea5e9;
	font-weight: 600;
	margin-top: auto;
}

.nbr-category-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	background: #f1f5f9;
	border-radius: var(--radius-full);
	margin: 0.5rem auto 0;
	transition: all var(--transition-normal);
}

.nbr-category-arrow svg {
	width: 1rem;
	height: 1rem;
	stroke: #64748b;
	stroke-width: 2;
	transition: all var(--transition-normal);
}

.nbr-category-card:hover .nbr-category-arrow {
	background: #2563eb;
	transform: translateX(4px);
}

.nbr-category-card:hover .nbr-category-arrow svg {
	stroke: white;
}

/* Categories Grid Layout */
.nbr-categories-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1.5rem;
	align-items: stretch;
}

.nbr-categories-grid > .wp-block-group {
	height: 100%;
}

.nbr-categories-grid .nbr-category-card {
	height: 100%;
}

/* Override WP block editor flow layout margins */
.nbr-categories-grid .nbr-category-card > :first-child,
.nbr-categories-grid .nbr-category-card .nbr-category-image,
.nbr-categories-grid .nbr-category-card .nbr-category-content > :first-child,
.nbr-categories-grid > * > :first-child,
.nbr-category-card > *:first-child {
	margin-block-start: 0 !important;
	margin-top: 0 !important;
}

.nbr-categories-grid .wp-block-group.nbr-category-card {
	margin: 0;
}

.nbr-categories-grid .nbr-category-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 1200px) {
	.nbr-categories-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 900px) {
	.nbr-categories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.nbr-category-image {
		height: 8rem;
	}

	.nbr-category-icon {
		width: 3.5rem;
		height: 3.5rem;
	}

	.nbr-category-icon svg {
		width: 1.75rem;
		height: 1.75rem;
	}

	.nbr-category-content {
		padding: 1.25rem 1rem;
	}

	.nbr-category-title {
		font-size: 1rem;
	}

	.nbr-category-price {
		font-size: 0.875rem;
	}
}

@media (max-width: 480px) {
	.nbr-categories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.75rem;
	}

	.nbr-category-image {
		height: 6rem;
	}

	.nbr-category-icon {
		width: 3rem;
		height: 3rem;
	}

	.nbr-category-icon svg {
		width: 1.5rem;
		height: 1.5rem;
	}

	.nbr-category-content {
		padding: 1rem 0.75rem;
	}

	.nbr-category-title {
		font-size: 0.9375rem;
	}

	.nbr-category-price {
		font-size: 0.8125rem;
	}

	.nbr-category-arrow {
		display: none;
	}
}

/* =====================================================
   PRODUCT CARDS - Modern Design
   ===================================================== */
.nbr-products-section {
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.nbr-product-card {
	background: white;
	border: 1px solid transparent;
	border-radius: var(--radius-xl);
	padding: 1.25rem;
	transition: all var(--transition-normal);
	box-shadow: var(--shadow-sm);
}

.nbr-product-card:hover {
	border-color: #e2e8f0;
	box-shadow: var(--shadow-xl);
	transform: translateY(-6px);
}

.nbr-product-image {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: var(--radius-lg);
	height: 12rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 1rem;
	font-size: 3rem;
	transition: all var(--transition-normal);
}

.nbr-product-card:hover .nbr-product-image {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.nbr-product-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: white;
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 0.375rem 0.75rem;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: 0.025em;
	box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.nbr-product-category {
	font-size: 0.6875rem;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
}

.nbr-product-title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.3;
	margin: 0.5rem 0;
}

.nbr-product-rating {
	color: #facc15;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
}

.nbr-product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	margin-top: 1rem;
	border-top: 1px solid #f1f5f9;
}

.nbr-product-price {
	font-size: 1.25rem;
	font-weight: 800;
	color: #1e3a8a;
}

/* Product cart button */
.nbr-product-card .wp-block-button .wp-block-button__link {
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
	color: #2563eb !important;
	border-radius: var(--radius-md) !important;
	padding: 0.625rem !important;
	transition: all var(--transition-fast) !important;
}

.nbr-product-card .wp-block-button .wp-block-button__link:hover {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
	color: white !important;
	transform: scale(1.05);
}

/* =====================================================
   CTA SECTION - Modern Gradient
   ===================================================== */
.nbr-cta-section {
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.nbr-cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 150%;
	height: 100%;
	background: radial-gradient(ellipse at center top, rgba(96, 165, 250, 0.2) 0%, transparent 60%);
	pointer-events: none;
}

.nbr-cta-section h2 {
	color: white;
	position: relative;
}

.nbr-cta-section p {
	color: #bfdbfe;
	font-size: 1.25rem;
	position: relative;
}

.nbr-cta-button .wp-block-button__link {
	background: white !important;
	color: #1e3a8a !important;
	padding: 1.125rem 2.5rem !important;
	border-radius: var(--radius-full) !important;
	font-size: 1.125rem !important;
	font-weight: 700 !important;
	transition: all var(--transition-normal) !important;
	box-shadow: var(--shadow-lg), 0 4px 20px rgba(255, 255, 255, 0.2) !important;
	position: relative;
}

.nbr-cta-button .wp-block-button__link:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: var(--shadow-xl), 0 8px 30px rgba(255, 255, 255, 0.3) !important;
}

/* =====================================================
   FOOTER - Modern Dark
   ===================================================== */
.nbr-footer {
	background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
	color: #94a3b8;
}

.nbr-footer h3,
.nbr-footer h4,
.nbr-footer h5 {
	color: white;
}

.nbr-footer a {
	color: #94a3b8;
	text-decoration: none;
	transition: color var(--transition-fast);
}

.nbr-footer a:hover {
	color: #60a5fa;
}

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

.nbr-footer li {
	padding: 0.25rem 0;
}

.nbr-footer-bottom {
	border-top: 1px solid #1e293b;
}

.nbr-social-icon {
	width: 2.5rem;
	height: 2.5rem;
	background: #1e293b;
	border-radius: var(--radius-md);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition-fast);
	color: #94a3b8;
}

.nbr-social-icon:hover {
	background: #2563eb;
	color: white;
	transform: translateY(-2px);
}

/* =====================================================
   GLOBAL BUTTON STYLES
   ===================================================== */
.wp-block-button__link {
	border-radius: var(--radius-full) !important;
	transition: all var(--transition-normal) !important;
}

/* =====================================================
   UTILITIES
   ===================================================== */
.nbr-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

.nbr-section-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 0.75rem;
	letter-spacing: -0.025em;
}

.nbr-section-subtitle {
	color: #64748b;
	font-size: 1.0625rem;
}

/* Grid utilities */
.nbr-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.nbr-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.nbr-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.nbr-grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }

@media (max-width: 1024px) {
	.nbr-grid-6 { grid-template-columns: repeat(3, 1fr); }
	.nbr-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.nbr-grid-6 { grid-template-columns: repeat(2, 1fr); }
	.nbr-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.nbr-grid-3 { grid-template-columns: repeat(1, 1fr); }
}

/* Hide on mobile/desktop */
@media (max-width: 782px) {
	.nbr-hide-mobile { display: none !important; }
}

@media (min-width: 783px) {
	.nbr-hide-desktop { display: none !important; }
}

/* =====================================================
   SMOOTH SCROLL & ANIMATIONS
   ===================================================== */
html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* =====================================================
   HERO ALIGNMENT FIX
   ===================================================== */
.nbr-hero .wp-block-cover__inner-container {
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 1rem;
	padding-right: 1rem;
	width: 100%;
}

@media (min-width: 782px) {
	.nbr-hero .wp-block-cover__inner-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* =====================================================
   MOBILE ACTION BAR (Black Top Bar)
   ===================================================== */
.nbr-mobile-action-bar {
	display: flex;
	background: #000000;
	width: 100%;
}

.nbr-action-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px 8px;
	color: white;
	text-decoration: none;
	transition: background 0.2s ease;
}

.nbr-action-item:hover {
	background: #1a1a1a;
}

.nbr-action-item svg {
	width: 28px;
	height: 28px;
	margin-bottom: 4px;
	stroke: white;
}

.nbr-action-item span {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.025em;
}

/* =====================================================
   MOBILE HEADER (White Logo Bar)
   ===================================================== */
.nbr-mobile-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: white;
	padding: 16px 16px;
	border-bottom: 1px solid #e2e8f0;
	position: sticky;
	top: 0;
	z-index: 1000;
	min-height: 70px;
}

.nbr-logo-mobile {
	display: block;
	line-height: 0;
}

.nbr-logo-mobile img {
	height: 46px;
	width: auto;
}

/* Mobile Icons Container */
.nbr-mobile-icons {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Mobile Icon Buttons */
.nbr-mobile-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	color: #2563eb;
	cursor: pointer;
	padding: 0;
	border-radius: 8px;
	transition: background 0.15s ease;
}

.nbr-mobile-icon-btn:hover {
	background: #f1f5f9;
}

.nbr-mobile-icon-btn svg {
	width: 28px;
	height: 28px;
	stroke-width: 2;
}

/* =====================================================
   MOBILE SEARCH OVERLAY
   ===================================================== */
.nbr-mobile-search-overlay {
	display: none !important;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1002;
	background: white;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nbr-mobile-search-overlay.is-open {
	display: block !important;
}

.nbr-mobile-search-inner {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	gap: 12px;
}

.nbr-mobile-search-form {
	flex: 1;
	display: flex;
	align-items: center;
	background: #f1f5f9;
	border-radius: 9999px;
	overflow: hidden;
}

.nbr-mobile-search-input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 16px;
	font-size: 16px;
	outline: none;
}

.nbr-mobile-search-input::placeholder {
	color: #94a3b8;
}

.nbr-mobile-search-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #2563eb;
	border: none;
	border-radius: 9999px;
	margin: 4px;
	color: white;
	cursor: pointer;
	transition: background 0.15s ease;
}

.nbr-mobile-search-submit:hover {
	background: #1d4ed8;
}

.nbr-mobile-search-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: #f1f5f9;
	border: none;
	color: #64748b;
	cursor: pointer;
	padding: 0;
	border-radius: 8px;
	flex-shrink: 0;
}

.nbr-mobile-search-close:hover {
	background: #e2e8f0;
	color: #0f172a;
}

/* =====================================================
   MOBILE NAVIGATION OVERLAY
   ===================================================== */
.nbr-mobile-nav-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0f172a;
	z-index: 1003;
	flex-direction: column;
}

.nbr-mobile-nav-overlay.is-open {
	display: flex;
}

.nbr-mobile-nav-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nbr-mobile-nav-title {
	color: white;
	font-size: 18px;
	font-weight: 600;
}

.nbr-mobile-nav-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	color: white;
	cursor: pointer;
	padding: 0;
	border-radius: 8px;
	transition: background 0.15s ease;
}

.nbr-mobile-nav-close:hover {
	background: rgba(255, 255, 255, 0.1);
}

.nbr-mobile-nav-links {
	flex: 1;
	padding: 8px 0;
	overflow-y: auto;
}

.nbr-mobile-nav-links a {
	display: block;
	padding: 16px 20px;
	color: white;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.15s ease;
}

.nbr-mobile-nav-links a:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #60a5fa;
}

.nbr-mobile-nav-footer {
	padding: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nbr-mobile-nav-phone {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 20px;
	background: #2563eb;
	color: white;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	border-radius: 9999px;
	transition: background 0.15s ease;
}

.nbr-mobile-nav-phone:hover {
	background: #1d4ed8;
}

.nbr-mobile-nav-phone svg {
	stroke: white;
}

/* =====================================================
   STATS BAR - Trust Numbers
   ===================================================== */
.nbr-stats-bar {
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
	position: relative;
	overflow: hidden;
}

.nbr-stats-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 150%;
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

.nbr-stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
	padding: 1rem;
	position: relative;
}

.nbr-stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: white;
	line-height: 1;
	margin: 0;
}

.nbr-stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nbr-stat-icon svg {
	width: 2.5rem;
	height: 2.5rem;
	stroke: white;
}

.nbr-stat-label {
	font-size: 0.9375rem;
	font-weight: 500;
	color: #bfdbfe;
	margin: 0;
}

/* Stats Bar responsive */
@media (max-width: 900px) {
	.nbr-stats-bar .wp-block-columns {
		flex-wrap: wrap !important;
	}

	.nbr-stats-bar .wp-block-column {
		flex-basis: calc(50% - 0.75rem) !important;
		flex-grow: 0 !important;
	}

	.nbr-stat-number {
		font-size: 2rem;
	}

	.nbr-stat-icon svg {
		width: 2rem;
		height: 2rem;
	}
}

@media (max-width: 480px) {
	.nbr-stats-bar .wp-block-column {
		flex-basis: calc(50% - 0.5rem) !important;
	}

	.nbr-stat-item {
		padding: 0.75rem 0.5rem;
	}

	.nbr-stat-number {
		font-size: 1.75rem;
	}

	.nbr-stat-label {
		font-size: 0.8125rem;
	}

	.nbr-stat-icon svg {
		width: 1.75rem;
		height: 1.75rem;
	}
}

/* =====================================================
   ABOUT INTRO - Contact Section
   ===================================================== */
.nbr-about-intro {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border-bottom: 1px solid #e2e8f0;
}

.nbr-about-intro > .wp-block-group > p a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(0, 0, 0, 0.3);
	text-underline-offset: 2px;
	transition: text-decoration-color var(--transition-fast);
}

.nbr-about-intro > .wp-block-group > p a:hover {
	text-decoration-color: rgba(0, 0, 0, 0.6);
}

.nbr-about-contact {
	gap: 2rem;
}

.nbr-contact-item {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.nbr-contact-icon {
	width: 1.25rem;
	height: 1.25rem;
	stroke: #2563eb;
	flex-shrink: 0;
}

.nbr-contact-item p {
	margin: 0;
	font-size: 1rem;
}

.nbr-contact-item a {
	color: #1e3a8a;
	text-decoration: none;
	transition: color 0.15s ease;
}

.nbr-contact-item a:hover {
	color: #2563eb;
}

@media (max-width: 600px) {
	.nbr-about-contact {
		flex-direction: column;
		gap: 1rem;
	}

	.nbr-contact-item {
		justify-content: center;
	}

	.nbr-contact-item p {
		font-size: 0.9375rem;
	}
}

/* Adjust hide classes for proper breakpoint */
@media (max-width: 782px) {
	.nbr-hide-mobile {
		display: none !important;
	}

	.nbr-hide-desktop {
		display: block !important;
	}

	.nbr-mobile-action-bar {
		display: flex !important;
	}

	.nbr-mobile-header {
		display: flex !important;
	}
}

@media (min-width: 783px) {
	.nbr-hide-desktop,
	.nbr-mobile-action-bar,
	.nbr-mobile-header,
	.nbr-mobile-search-overlay,
	.nbr-mobile-nav-overlay {
		display: none !important;
	}

	.nbr-hide-mobile {
		display: block !important;
	}
}

/* =====================================================
   PAGE HERO STYLES
   ===================================================== */
.nbr-page-hero {
	text-align: center;
}

.nbr-page-hero h1 {
	margin-bottom: 0.5rem;
}

/* Hero tick list - horizontal on desktop */
.nbr-page-hero .wp-block-group.is-layout-flex {
	gap: 1.5rem;
}

/* Hero tick list - vertical on mobile */
@media (max-width: 782px) {
	.nbr-page-hero {
		padding-top: var(--wp--preset--spacing--60) !important;
		padding-bottom: var(--wp--preset--spacing--60) !important;
	}

	.nbr-page-hero h1 {
		font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
	}

	/* Tagline under the heading - make it bigger */
	.nbr-page-hero > p,
	.nbr-page-hero > .wp-block-group > p:first-of-type {
		font-size: 1.125rem !important;
	}

	/* Make the tick items stack vertically */
	.nbr-page-hero .wp-block-group.is-layout-flex {
		flex-direction: column !important;
		align-items: center !important;
		gap: 0.5rem !important;
	}

	.nbr-page-hero .wp-block-group.is-layout-flex p {
		margin: 0 !important;
		font-size: 0.9375rem !important;
	}
}

/* =====================================================
   CATEGORY PAGE MOBILE STYLES
   ===================================================== */
@media (max-width: 782px) {
	/* Three-column cards stack on mobile */
	.wp-block-columns {
		flex-direction: column;
	}

	/* Card padding adjustments */
	.wp-block-group[style*="border-radius: 0.75rem"] {
		padding: var(--wp--preset--spacing--40) !important;
	}

	/* FAQ details styling */
	.wp-block-details {
		padding: 0.75rem 0;
		border-bottom: 1px solid #e2e8f0;
	}

	.wp-block-details summary {
		cursor: pointer;
	}

	/* CTA section mobile */
	.wp-block-buttons {
		flex-direction: column;
		width: 100%;
		padding-left: var(--wp--preset--spacing--40);
		padding-right: var(--wp--preset--spacing--40);
	}

	.wp-block-button {
		width: 100%;
	}

	.wp-block-button__link {
		width: 100%;
		justify-content: center;
	}

	/* Comparison columns on mobile */
	.wp-block-columns .wp-block-column ul {
		margin-bottom: var(--wp--preset--spacing--40);
	}
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* Contact Cards Grid */
.nbr-contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.nbr-contact-card {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: var(--radius-xl);
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all var(--transition-normal);
	text-decoration: none;
	display: block;
}

.nbr-contact-card:hover {
	border-color: transparent;
	box-shadow: 0 20px 40px -10px rgba(30, 58, 138, 0.15);
	transform: translateY(-4px);
}

.nbr-contact-card-icon {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	border-radius: var(--radius-xl);
	transition: all var(--transition-normal);
}

.nbr-contact-card-icon svg {
	width: 1.75rem;
	height: 1.75rem;
	stroke: #2563eb;
	stroke-width: 2;
	transition: all var(--transition-normal);
}

.nbr-contact-card:hover .nbr-contact-card-icon {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.nbr-contact-card:hover .nbr-contact-card-icon svg {
	stroke: white;
}

.nbr-contact-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 0.5rem;
}

.nbr-contact-card p {
	font-size: 1rem;
	color: #1e3a8a;
	font-weight: 600;
	margin: 0 0 0.25rem;
}

.nbr-contact-card span {
	font-size: 0.875rem;
	color: #64748b;
}

@media (max-width: 900px) {
	.nbr-contact-cards {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.nbr-contact-card {
		display: flex;
		align-items: center;
		text-align: left;
		padding: 1.25rem 1.5rem;
		gap: 1rem;
	}

	.nbr-contact-card-icon {
		margin: 0;
		flex-shrink: 0;
		width: 3.5rem;
		height: 3.5rem;
	}

	.nbr-contact-card-content {
		flex: 1;
	}
}

/* Contact Form Container */
.nbr-contact-form-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

@media (max-width: 900px) {
	.nbr-contact-form-section {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Contact Form Styles */
.nbr-contact-form {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: var(--radius-xl);
	padding: 2rem;
}

.nbr-contact-form h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 1.5rem;
}

.nbr-form-group {
	margin-bottom: 1.25rem;
}

.nbr-form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.5rem;
}

.nbr-form-group label .required {
	color: #ef4444;
}

.nbr-form-input,
.nbr-form-select,
.nbr-form-textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	font-size: 1rem;
	border: 2px solid #e2e8f0;
	border-radius: var(--radius-md);
	background: #f8fafc;
	transition: all var(--transition-fast);
	font-family: inherit;
}

.nbr-form-input:focus,
.nbr-form-select:focus,
.nbr-form-textarea:focus {
	outline: none;
	border-color: #2563eb;
	background: white;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.nbr-form-textarea {
	min-height: 140px;
	resize: vertical;
}

.nbr-form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 0.75rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	padding-right: 2.5rem;
}

/* Honeypot field - hidden from users */
.nbr-form-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

/* Submit Button */
.nbr-form-submit {
	width: 100%;
	padding: 1rem 2rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: white;
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	border: none;
	border-radius: var(--radius-full);
	cursor: pointer;
	transition: all var(--transition-normal);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.nbr-form-submit:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.nbr-form-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.nbr-form-submit .btn-loading {
	display: none;
	align-items: center;
	gap: 0.5rem;
}

.nbr-form-submit .btn-loading svg {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Form Message */
.nbr-form-message {
	display: none;
	padding: 1rem 1.25rem;
	border-radius: var(--radius-md);
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.nbr-form-success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.nbr-form-error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

/* Contact Info Sidebar */
.nbr-contact-info {
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
	border-radius: var(--radius-xl);
	padding: 2rem;
	color: white;
}

.nbr-contact-info h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	margin: 0 0 1.5rem;
}

/* Opening Hours */
.nbr-hours-list {
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}

.nbr-hours-list li {
	display: flex;
	justify-content: space-between;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 0.9375rem;
}

.nbr-hours-list li:last-child {
	border-bottom: none;
}

.nbr-hours-day {
	color: #bfdbfe;
}

.nbr-hours-time {
	font-weight: 600;
	color: white;
}

.nbr-hours-closed {
	color: #94a3b8;
}

/* Quick Contact */
.nbr-quick-contact h3 {
	font-size: 1rem;
	font-weight: 600;
	color: #bfdbfe;
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.nbr-quick-contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	color: white;
	text-decoration: none;
	transition: color var(--transition-fast);
}

.nbr-quick-contact-item:hover {
	color: #93c5fd;
}

.nbr-quick-contact-item svg {
	width: 1.25rem;
	height: 1.25rem;
	stroke: #60a5fa;
	flex-shrink: 0;
}

.nbr-quick-contact-item span {
	font-size: 0.9375rem;
}

/* What to Expect */
.nbr-expect-list {
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.nbr-expect-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	color: #cbd5e1;
}

.nbr-expect-list li svg {
	width: 1.25rem;
	height: 1.25rem;
	stroke: #22c55e;
	flex-shrink: 0;
	margin-top: 0.125rem;
}

/* Google Map */
.nbr-map-section {
	margin-top: 3rem;
}

.nbr-map-section h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 1.5rem;
	text-align: center;
}

.nbr-map-container {
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid #e2e8f0;
	height: 400px;
}

.nbr-map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

@media (max-width: 600px) {
	.nbr-map-container {
		height: 300px;
	}

	.nbr-contact-form,
	.nbr-contact-info {
		padding: 1.5rem;
	}
}

/* =====================================================
   ASSESSMENT FORM STYLES
   ===================================================== */
.nbr-form {
	max-width: 100%;
}

.nbr-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 600px) {
	.nbr-form-row {
		grid-template-columns: 1fr;
	}
}

.nbr-form-field {
	margin-bottom: 1rem;
}

.nbr-form-field label {
	display: block;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 0.5rem;
}

.nbr-form-field label .required {
	color: #dc2626;
}

.nbr-form-field label .optional {
	color: #64748b;
	font-weight: 400;
	font-size: 0.875rem;
}

.nbr-form-field input,
.nbr-form-field select,
.nbr-form-field textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
	color: #0f172a;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	font-family: inherit;
}

.nbr-form-field input:focus,
.nbr-form-field select:focus,
.nbr-form-field textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.nbr-form-field input::placeholder,
.nbr-form-field textarea::placeholder {
	color: #94a3b8;
}

.nbr-form-field select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	padding-right: 2.5rem;
}

.nbr-form-field textarea {
	resize: vertical;
	min-height: 80px;
}

.nbr-form-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 1rem 2rem;
	font-size: 1.0625rem;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast);
	margin-top: 0.5rem;
}

.nbr-form-submit:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.nbr-form-submit:active {
	transform: translateY(0);
}

.nbr-form-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.nbr-form-submit .btn-loading {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.nbr-form-submit .spinner {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.nbr-form-message {
	padding: 1rem;
	border-radius: 8px;
	font-size: 0.9375rem;
	margin-bottom: 1rem;
	text-align: center;
}

.nbr-form-success {
	background: #dcfce7;
	color: #166534;
	border: 1px solid #86efac;
}

.nbr-form-error {
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fca5a5;
}

/* Assessment page columns - equal height */
.nbr-assessment-columns {
	align-items: stretch !important;
}

.nbr-assessment-columns > .wp-block-column {
	display: flex;
	flex-direction: column;
}

.nbr-assessment-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nbr-assessment-card.is-layout-flex {
	height: 100%;
}

/* =====================================================
   SHOWROOM CARDS (Contact Page)
   ===================================================== */
.nbr-showroom-columns {
	align-items: stretch;
}

.nbr-showroom-columns > .wp-block-column {
	display: flex;
	flex-direction: column;
}

.nbr-showroom-card {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* =====================================================
   COOKIE CONSENT BANNER & MODAL
   ===================================================== */

/* Cookie Banner - Fixed Bottom */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
	padding: 25px;
	z-index: 9999;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.active {
	transform: translateY(0);
	opacity: 1;
}

.cookie-banner-inner {
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.cookie-banner-text h3 {
	color: #fff;
	font-size: 1.5rem;
	margin: 0 0 8px 0;
	font-weight: 700;
}

.cookie-banner-text p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 0.95rem;
	margin: 0;
	line-height: 1.6;
}

.cookie-banner-text a {
	color: #fff;
	text-decoration: underline;
}

.cookie-banner-text a:hover {
	text-decoration: none;
}

.cookie-banner-buttons {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

/* Cookie Buttons */
.cookie-btn {
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	border: none;
	font-family: inherit;
}

.cookie-btn-accept {
	background: #fff;
	color: #2563eb;
}

.cookie-btn-accept:hover {
	background: #f3f4f6;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-btn-reject {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.cookie-btn-reject:hover {
	background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
	background: rgba(255, 255, 255, 0.25);
}

/* Cookie Modal Overlay */
.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.active {
	opacity: 1;
	visibility: visible;
}

.cookie-modal-content {
	background: #fff;
	border-radius: 16px;
	max-width: 700px;
	width: 100%;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
	transform: scale(1);
}

.cookie-modal-header {
	padding: 25px 30px;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cookie-modal-header h3 {
	font-size: 1.75rem;
	color: #1e293b;
	margin: 0;
	font-weight: 700;
}

.cookie-modal-close {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: transparent;
	font-size: 2rem;
	color: #6b7280;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
	line-height: 1;
}

.cookie-modal-close:hover {
	background: #f3f4f6;
}

.cookie-modal-body {
	padding: 30px;
	overflow-y: auto;
	flex: 1;
}

.cookie-modal-body > p {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0 0 25px 0;
}

/* Cookie Category Cards */
.cookie-category {
	background: #f9fafb;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	margin-bottom: 20px;
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.cookie-category:last-child {
	margin-bottom: 0;
}

.cookie-category-info {
	flex: 1;
}

.cookie-category-info h4 {
	font-size: 1.1rem;
	color: #1e293b;
	margin: 0 0 8px 0;
	font-weight: 600;
}

.cookie-category-info p {
	font-size: 0.9rem;
	color: #64748b;
	margin: 0;
	line-height: 1.6;
}

.cookie-always-active {
	font-size: 0.85rem;
	color: #2563eb;
	font-weight: 600;
	margin-top: 8px;
}

/* Toggle Switch */
.cookie-toggle {
	position: relative;
	width: 60px;
	height: 34px;
	flex-shrink: 0;
}

.cookie-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.cookie-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ccc;
	border-radius: 34px;
	transition: 0.4s;
}

.cookie-toggle-slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background: #fff;
	border-radius: 50%;
	transition: 0.4s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
	background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
	transform: translateX(26px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
	background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
	opacity: 0.6;
	cursor: not-allowed;
}

/* Cookie Modal Footer */
.cookie-modal-footer {
	padding: 20px 30px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.cookie-btn-save {
	background: #2563eb;
	color: #fff;
}

.cookie-btn-save:hover {
	background: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cookie-btn-accept-all {
	background: #10b981;
	color: #fff;
}

.cookie-btn-accept-all:hover {
	background: #059669;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Mobile Responsive */
@media (max-width: 968px) {
	.cookie-banner {
		padding: 20px;
	}

	.cookie-banner-inner {
		flex-direction: column;
		text-align: center;
	}

	.cookie-banner-text h3 {
		font-size: 1.25rem;
	}

	.cookie-banner-text p {
		font-size: 0.9rem;
	}

	.cookie-banner-buttons {
		flex-direction: column;
		width: 100%;
	}

	.cookie-btn {
		width: 100%;
		text-align: center;
	}

	.cookie-modal-content {
		max-height: 95vh;
	}

	.cookie-modal-header {
		padding: 20px;
	}

	.cookie-modal-header h3 {
		font-size: 1.4rem;
	}

	.cookie-modal-body {
		padding: 20px;
	}

	.cookie-category {
		flex-direction: column;
		gap: 15px;
		padding: 15px;
	}

	.cookie-modal-footer {
		flex-direction: column;
		padding: 15px 20px;
	}

	.cookie-modal-footer .cookie-btn {
		width: 100%;
	}
}

/* =====================================================
   WOOCOMMERCE - HIDE UNWANTED HEADER ELEMENTS
   ===================================================== */

/* Hide WooCommerce mini-cart and account icons from header
   TODO: Integrate cart icon properly into header design when checkout flow is finalised */
.wp-block-woocommerce-mini-cart,
.wp-block-woocommerce-customer-account {
	display: none !important;
}

/* =====================================================
   WOOCOMMERCE - SINGLE PRODUCT PAGE (Redesigned)
   ===================================================== */

/* Page background */
.single-product {
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.single-product main.wp-block-group {
	padding-top: 0;
	padding-bottom: 4rem;
}

/* Product container */
.single-product .woocommerce.product {
	max-width: 1300px;
	margin: 0 auto;
	padding: 2rem 1.5rem;
}

/* Two-column layout */
.single-product .wp-block-columns {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.single-product .wp-block-columns > .wp-block-column {
	min-width: 0 !important;
	max-width: 100% !important;
	flex: none !important;
}

/* Product Gallery - Left Column */
.single-product .woocommerce-product-gallery {
	background: #fff;
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 2rem;
}

.single-product .woocommerce-product-gallery__wrapper {
	border-radius: 1rem;
	overflow: hidden;
}

.single-product .woocommerce-product-gallery__image img {
	border-radius: 0.75rem;
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.single-product .woocommerce-product-gallery__image:hover img {
	transform: scale(1.02);
}

.single-product .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 44px;
	height: 44px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 10;
	transition: all 0.2s ease;
}

.single-product .woocommerce-product-gallery__trigger:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Product Summary - Right Column */
.single-product .summary.entry-summary {
	padding: 0;
}

/* Product Title */
.single-product .product_title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 1rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

/* Hide elements we don't need */
.single-product .tagged_as,
.single-product .price:empty,
.single-product .wc-block-components-product-sku {
	display: none !important;
}

/* Short Description - Styled box */
.single-product .woocommerce-product-details__short-description,
.single-product .wp-block-post-excerpt {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #475569;
	margin: 1.5rem 0;
	padding: 1.5rem 1.5rem 1.5rem 1.75rem;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: 1rem;
	border-left: 4px solid #1e3a8a;
}

.single-product .wp-block-post-excerpt__excerpt {
	margin: 0;
}

/* Category & Brand links */
.single-product .taxonomy-product_cat,
.single-product .taxonomy-product_brand {
	font-size: 0.875rem;
	color: #64748b;
	margin-bottom: 0.5rem;
}

.single-product .taxonomy-product_cat a,
.single-product .taxonomy-product_brand a {
	color: #1e3a8a;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.single-product .taxonomy-product_cat a:hover,
.single-product .taxonomy-product_brand a:hover {
	color: #2563eb;
	text-decoration: underline;
}

/* Product meta ordering */
.single-product .wp-block-column:has(.taxonomy-product_brand) {
	display: flex;
	flex-direction: column;
}

.single-product .wp-block-column > .taxonomy-product_brand {
	order: 1;
}

.single-product .wp-block-column > .taxonomy-product_cat {
	order: 2;
}

/* Classic WooCommerce product meta */
.single-product .product_meta {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e2e8f0;
	font-size: 0.875rem;
	color: #64748b;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.single-product .product_meta .sku_wrapper {
	display: none;
}

.single-product .product_meta a {
	color: #1e3a8a;
	text-decoration: none;
	font-weight: 500;
}

.single-product .product_meta a:hover {
	text-decoration: underline;
}

/* ===== CTA Section Styling ===== */
.nbr-product-cta {
	margin: 2rem 0;
}

.nbr-product-cta-inner {
	background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
	border-radius: 1rem;
	padding: 1.75rem;
	color: #fff;
}

.nbr-cta-heading {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
	font-size: 1.125rem;
	font-weight: 600;
}

.nbr-cta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
}

.nbr-cta-icon svg {
	stroke: #fff;
}

.nbr-cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.nbr-cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	padding: 1rem 1.5rem;
	border-radius: 0.625rem;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.nbr-cta-btn svg {
	flex-shrink: 0;
}

.nbr-cta-btn-primary {
	background: #fff;
	color: #1e3a8a;
}

.nbr-cta-btn-primary:hover {
	background: #f0f9ff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.nbr-cta-btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.nbr-cta-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
}

/* ===== Trust Signals ===== */
.nbr-product-trust {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 1.5rem;
}

.nbr-trust-item {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.875rem 1rem;
	background: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	font-size: 0.875rem;
	font-weight: 500;
	color: #334155;
}

.nbr-trust-item svg {
	stroke: #1e3a8a;
	flex-shrink: 0;
}

/* ===== Add to Cart styling for purchasable products ===== */
.single-product form.cart .single_add_to_cart_button {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: #fff;
	border: none;
	border-radius: var(--radius-md);
	padding: 0.875rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-fast);
}
.single-product form.cart .single_add_to_cart_button:hover {
	background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.single-product form.cart .quantity {
	margin-right: 1rem;
}
.single-product form.cart .quantity .qty {
	width: 4rem;
	padding: 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: var(--radius-md);
	text-align: center;
	font-size: 1rem;
}

/* ===== Tabs Section ===== */
.single-product .woocommerce-tabs,
.single-product .wp-block-woocommerce-product-details {
	grid-column: 1 / -1;
	margin-top: 4rem;
}

/* Hide reviews tab */
.single-product .woocommerce-tabs .reviews_tab,
.single-product .woocommerce-tabs #tab-reviews {
	display: none !important;
}

.single-product .woocommerce-tabs ul.tabs {
	list-style: none;
	padding: 0;
	margin: 0 0 0 0;
	display: flex;
	gap: 0.25rem;
	background: #fff;
	border-radius: 1rem 1rem 0 0;
	padding: 0.5rem 0.5rem 0;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.single-product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
}

.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 1rem 2rem;
	font-weight: 600;
	font-size: 0.9375rem;
	color: #64748b;
	text-decoration: none;
	border-radius: 0.75rem 0.75rem 0 0;
	transition: all 0.2s ease;
	background: transparent;
}

.single-product .woocommerce-tabs ul.tabs li a:hover {
	color: #1e3a8a;
	background: #f8fafc;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
	color: #1e3a8a;
	background: #f8fafc;
}

.single-product .woocommerce-tabs .panel,
.single-product .woocommerce-Tabs-panel,
.single-product .wp-block-woocommerce-product-details .woocommerce-Tabs-panel {
	background: #fff !important;
	padding: 2.5rem !important;
	border-radius: 0 0 1rem 1rem !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
	margin-top: 0 !important;
}

.single-product .woocommerce-tabs .panel h2:first-child {
	margin-top: 0;
}

.single-product .woocommerce-tabs .panel h2 {
	font-size: 1.375rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 1rem;
	margin-top: 2rem;
}

/* Description content */
.single-product .woocommerce-Tabs-panel--description h2,
.single-product .woocommerce-Tabs-panel--description h3 {
	color: #0f172a;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	font-weight: 700;
}

.single-product .woocommerce-Tabs-panel--description h2:first-child,
.single-product .woocommerce-Tabs-panel--description h3:first-child {
	margin-top: 0;
}

.single-product .woocommerce-Tabs-panel--description p {
	color: #475569;
	line-height: 1.8;
	margin-bottom: 1rem;
	font-size: 1rem;
}

.single-product .woocommerce-Tabs-panel--description ul {
	margin: 1.5rem 0;
	padding-left: 0;
	list-style: none;
}

.single-product .woocommerce-Tabs-panel--description li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.75rem;
	color: #475569;
	line-height: 1.7;
}

.single-product .woocommerce-Tabs-panel--description li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	border-radius: 50%;
}

/* Product attributes table */
.single-product .woocommerce-product-attributes {
	width: 100%;
	border-collapse: collapse;
}

.single-product .woocommerce-product-attributes tr {
	border-bottom: 1px solid #e2e8f0;
}

.single-product .woocommerce-product-attributes tr:last-child {
	border-bottom: none;
}

.single-product .woocommerce-product-attributes th,
.single-product .woocommerce-product-attributes td {
	padding: 1rem 0;
	text-align: left;
}

.single-product .woocommerce-product-attributes th {
	font-weight: 600;
	color: #0f172a;
	width: 35%;
}

.single-product .woocommerce-product-attributes td {
	color: #475569;
}

.single-product .woocommerce-product-attributes td p {
	margin: 0;
}

/* ===== Related Products ===== */
.single-product .related.products {
	grid-column: 1 / -1;
	margin-top: 4rem;
	padding: 3rem;
	background: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.single-product .related.products > h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 2rem;
	text-align: center;
}

.single-product .related.products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 1.5rem !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.single-product .related.products ul.products li.product {
	background: #f8fafc;
	border-radius: 1rem;
	padding: 1.25rem;
	transition: all 0.2s ease;
	margin: 0 !important;
	width: 100% !important;
}

.single-product .related.products ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.single-product .related.products ul.products li.product a img {
	border-radius: 0.75rem;
	margin-bottom: 1rem;
}

.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
	font-size: 1rem !important;
	font-weight: 600 !important;
	color: #0f172a !important;
	margin-bottom: 0.75rem !important;
}

.single-product .related.products ul.products li.product .button {
	display: block;
	width: 100%;
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: #fff;
	text-align: center;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 0.875rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.single-product .related.products ul.products li.product .button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(30, 58, 138, 0.3);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
	.single-product .wp-block-columns {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.single-product .woocommerce-product-gallery {
		position: static;
		max-width: 600px;
		margin: 0 auto;
	}

	.single-product .related.products ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 768px) {
	.single-product .woocommerce.product {
		padding: 1rem;
	}

	.single-product .product_title {
		font-size: 1.5rem;
	}

	.nbr-product-trust {
		grid-template-columns: 1fr;
	}

	.single-product .woocommerce-tabs ul.tabs {
		flex-wrap: wrap;
	}

	.single-product .woocommerce-tabs ul.tabs li a {
		padding: 0.75rem 1.25rem;
		font-size: 0.875rem;
	}

	.single-product .woocommerce-tabs .panel,
	.single-product .woocommerce-Tabs-panel {
		padding: 1.5rem !important;
	}

	.single-product .related.products {
		padding: 1.5rem;
	}

	.single-product .related.products ul.products {
		grid-template-columns: 1fr !important;
		gap: 1rem !important;
	}

	.single-product .woocommerce-product-attributes th {
		width: 45%;
	}
}

/* =====================================================
   PRODUCT CATEGORY / ARCHIVE PAGES
   ===================================================== */

/* Main container */
.tax-product_cat main,
.post-type-archive-product main {
	background: var(--wp--preset--color--lighter);
	padding-bottom: 4rem;
}

/* Breadcrumbs */
.wc-block-breadcrumbs {
	padding: 1.5rem 0 1rem;
}

.wc-block-breadcrumbs .woocommerce-breadcrumb {
	color: #64748b;
	font-size: 0.875rem;
}

.wc-block-breadcrumbs .woocommerce-breadcrumb a {
	color: #1e3a8a;
	text-decoration: none;
}

.wc-block-breadcrumbs .woocommerce-breadcrumb a:hover {
	text-decoration: underline;
}

/* Page title */
.tax-product_cat .wp-block-query-title,
.post-type-archive-product .wp-block-query-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 0.5rem;
}

/* Category description */
.tax-product_cat .wp-block-term-description,
.post-type-archive-product .wp-block-term-description {
	color: #64748b;
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

/* Results count and sorting row */
.tax-product_cat .wp-block-group.is-content-justification-space-between,
.post-type-archive-product .wp-block-group.is-content-justification-space-between {
	padding: 1rem 0;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid #e2e8f0;
}

.wc-block-product-results-count .woocommerce-result-count {
	color: #64748b;
	font-size: 0.9rem;
	margin: 0;
}

.wc-block-catalog-sorting select {
	padding: 0.5rem 2rem 0.5rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: var(--radius-md);
	background: #fff;
	color: #0f172a;
	font-size: 0.875rem;
	cursor: pointer;
	transition: border-color var(--transition-fast);
}

.wc-block-catalog-sorting select:hover,
.wc-block-catalog-sorting select:focus {
	border-color: #1e3a8a;
	outline: none;
}

/* Product grid - force consistent card sizes */
.wc-block-product-template {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
	gap: 1.5rem !important;
	max-width: 100%;
}

/* Cap maximum card width so they don't get too large */
.wc-block-product-template .wc-block-product {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: 1.25rem;
	transition: all var(--transition-normal);
	display: flex;
	flex-direction: column;
	max-width: 380px;
}

.wc-block-product-template .wc-block-product:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

/* Product image */
.wc-block-product .wc-block-components-product-image {
	margin-bottom: 1rem;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: #f8fafc;
}

.wc-block-product .wc-block-components-product-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
	transition: transform var(--transition-normal);
}

.wc-block-product:hover .wc-block-components-product-image img {
	transform: scale(1.05);
}

/* Product title */
.wc-block-product .wp-block-post-title {
	font-size: 1.1rem !important;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.wc-block-product .wp-block-post-title a {
	color: inherit;
	text-decoration: none;
}

.wc-block-product .wp-block-post-title a:hover {
	color: #1e3a8a;
}

/* Product price */
.wc-block-product .wc-block-components-product-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 1rem;
}

/* Product button */
.wc-block-product .wp-block-woocommerce-product-button {
	margin-top: auto;
}

.wc-block-product .wp-block-woocommerce-product-button .wp-block-button__link {
	display: block;
	width: 100%;
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: #fff;
	border: none;
	padding: 0.875rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: var(--radius-full);
	text-align: center;
	text-decoration: none;
	transition: all var(--transition-normal);
}

.wc-block-product .wp-block-woocommerce-product-button .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px -5px rgba(30, 58, 138, 0.4);
}

/* Pagination */
.wc-block-pagination {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
}

/* =====================================================
   PRODUCT FILTER BAR
   ===================================================== */

.nbr-product-filters {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: 1.25rem 1.5rem;
	margin-bottom: 2rem;
}

.nbr-filters-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.nbr-filters-label {
	font-weight: 600;
	color: #0f172a;
	font-size: 0.9rem;
}

.nbr-filter-group {
	position: relative;
}

.nbr-filter-select {
	appearance: none;
	background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 1rem center;
	border: 1px solid #e2e8f0;
	border-radius: var(--radius-md);
	padding: 0.625rem 2.5rem 0.625rem 1rem;
	font-size: 0.875rem;
	color: #0f172a;
	cursor: pointer;
	min-width: 160px;
	transition: all var(--transition-fast);
}

.nbr-filter-select:hover {
	border-color: #cbd5e1;
	background-color: #fff;
}

.nbr-filter-select:focus {
	outline: none;
	border-color: #1e3a8a;
	box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* =====================================================
   CUSTOM STYLED DROPDOWN
   ===================================================== */

.nbr-custom-dropdown {
	position: relative;
	display: inline-block;
}

.nbr-dropdown-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: var(--radius-md);
	padding: 0.625rem 1rem;
	font-size: 0.875rem;
	font-family: inherit;
	color: #0f172a;
	cursor: pointer;
	min-width: 160px;
	transition: all var(--transition-fast);
	text-align: left;
}

/* Wider brand dropdown to fit brand names on one line */
.nbr-custom-dropdown:has([data-filter="brand"]) .nbr-dropdown-toggle,
.nbr-custom-dropdown:has([data-filter="brand"]) .nbr-dropdown-menu {
	min-width: 220px;
}

.nbr-dropdown-toggle:hover {
	border-color: #cbd5e1;
	background-color: #fff;
}

.nbr-dropdown-toggle:focus {
	outline: none;
	border-color: #1e3a8a;
	box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.nbr-custom-dropdown.open .nbr-dropdown-toggle {
	border-color: #1e3a8a;
	background-color: #fff;
	box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.nbr-dropdown-text {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nbr-dropdown-arrow {
	flex-shrink: 0;
	color: #64748b;
	transition: transform var(--transition-fast);
}

.nbr-custom-dropdown.open .nbr-dropdown-arrow {
	transform: rotate(180deg);
}

.nbr-dropdown-menu {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	min-width: 100%;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: var(--radius-md);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.2s ease;
	max-height: 280px;
	overflow-y: auto;
}

.nbr-custom-dropdown.open .nbr-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nbr-dropdown-item {
	padding: 0.625rem 1rem;
	font-size: 0.875rem;
	color: #0f172a;
	cursor: pointer;
	transition: all var(--transition-fast);
	border-bottom: 1px solid #f1f5f9;
}

.nbr-dropdown-item:last-child {
	border-bottom: none;
}

.nbr-dropdown-item:hover,
.nbr-dropdown-item:focus {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: #fff;
	outline: none;
}

.nbr-dropdown-item.selected {
	background: #f1f5f9;
	font-weight: 600;
}

.nbr-dropdown-item.selected:hover,
.nbr-dropdown-item.selected:focus {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: #fff;
}

.nbr-dropdown-item.placeholder {
	color: #64748b;
}

/* Custom scrollbar for dropdown menu */
.nbr-dropdown-menu::-webkit-scrollbar {
	width: 6px;
}

.nbr-dropdown-menu::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 3px;
}

.nbr-dropdown-menu::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 3px;
}

.nbr-dropdown-menu::-webkit-scrollbar-thumb:hover {
	background: #94a3b8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.nbr-dropdown-toggle {
		min-width: 140px;
		padding: 0.5rem 0.875rem;
	}

	.nbr-dropdown-menu {
		max-height: 240px;
	}
}

/* Dropdown option styling (fallback for native selects) */
.nbr-filter-select option {
	background: #fff;
	color: #0f172a;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	border-bottom: 1px solid #f1f5f9;
}

.nbr-filter-select option:hover,
.nbr-filter-select option:focus,
.nbr-filter-select option:checked {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: #fff;
}

.nbr-filter-select option:first-child {
	color: #64748b;
}

/* Firefox-specific dropdown styling */
@-moz-document url-prefix() {
	.nbr-filter-select option {
		padding: 0.5rem;
	}
}

/* WooCommerce orderby dropdown styling */
.wc-block-catalog-sorting select option,
.woocommerce-ordering select option {
	background: #fff;
	color: #0f172a;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
}

.wc-block-catalog-sorting select option:hover,
.wc-block-catalog-sorting select option:checked,
.woocommerce-ordering select option:hover,
.woocommerce-ordering select option:checked {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: #fff;
}

.nbr-clear-filters {
	background: transparent;
	border: 1px solid #e2e8f0;
	border-radius: var(--radius-md);
	padding: 0.625rem 1rem;
	font-size: 0.875rem;
	color: #64748b;
	cursor: pointer;
	transition: all var(--transition-fast);
}

.nbr-clear-filters:hover {
	background: #f1f5f9;
	color: #0f172a;
	border-color: #cbd5e1;
}

.nbr-filter-loading {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.75rem;
	color: #64748b;
	font-size: 0.875rem;
}

.nbr-spinner {
	width: 18px;
	height: 18px;
	border: 2px solid #e2e8f0;
	border-top-color: #1e3a8a;
	border-radius: 50%;
	animation: nbr-spin 0.8s linear infinite;
}

@keyframes nbr-spin {
	to { transform: rotate(360deg); }
}

/* No products found message */
.nbr-no-products {
	text-align: center;
	padding: 3rem 2rem;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.nbr-no-products p {
	color: #64748b;
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}

.nbr-no-products .nbr-clear-filters {
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: #fff;
	border: none;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	border-radius: var(--radius-full);
}

.nbr-no-products .nbr-clear-filters:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px -5px rgba(30, 58, 138, 0.4);
}

/* Results count styling */
.nbr-results-count {
	text-align: center;
	color: #64748b;
	font-size: 0.9rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e2e8f0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.tax-product_cat .wp-block-query-title,
	.post-type-archive-product .wp-block-query-title {
		font-size: 1.75rem;
	}

	.wc-block-product-template {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
		gap: 1rem !important;
	}

	.wc-block-product-template .wc-block-product {
		padding: 1rem;
		max-width: none;
	}

	.tax-product_cat .wp-block-group.is-content-justification-space-between,
	.post-type-archive-product .wp-block-group.is-content-justification-space-between {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	/* Filter bar mobile */
	.nbr-product-filters {
		padding: 1rem;
	}

	.nbr-filters-inner {
		flex-direction: column;
		align-items: stretch;
	}

	.nbr-filters-label {
		margin-bottom: 0.25rem;
	}

	.nbr-filter-select {
		width: 100%;
		min-width: auto;
	}

	.nbr-clear-filters {
		width: 100%;
		text-align: center;
	}
}

/* ========================================
   FEATURED PRODUCTS ON CATEGORY PAGES
   ======================================== */

/* Fix for product collection block layout conflicts */
.wp-block-woocommerce-product-collection.is-layout-flow {
	display: block;
}

/* Product Collection Grid - Override WooCommerce defaults */
ul.wc-block-product-template.is-flex-container {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 2rem !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 auto !important;
	max-width: 1100px !important;
}

/* Product Cards */
ul.wc-block-product-template li.wc-block-product {
	background: #fff !important;
	border-radius: 1rem !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
	padding: 1.5rem !important;
	transition: all 0.3s ease !important;
	display: flex !important;
	flex-direction: column !important;
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
}

ul.wc-block-product-template li.wc-block-product:hover {
	transform: translateY(-6px) !important;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Product Images - Much larger */
ul.wc-block-product-template .wc-block-components-product-image {
	margin-bottom: 1.25rem !important;
	background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%) !important;
	border-radius: 0.75rem !important;
	padding: 2rem !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 220px !important;
}

ul.wc-block-product-template .wc-block-components-product-image a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 100% !important;
}

ul.wc-block-product-template .wc-block-components-product-image img {
	max-height: 180px !important;
	width: auto !important;
	max-width: 100% !important;
	height: auto !important;
	object-fit: contain !important;
	transition: transform 0.3s ease !important;
}

ul.wc-block-product-template li.wc-block-product:hover .wc-block-components-product-image img {
	transform: scale(1.08) !important;
}

/* Product Titles */
ul.wc-block-product-template .wp-block-post-title {
	font-size: 1.125rem !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	margin: 0 0 1rem 0 !important;
	padding: 0 !important;
	text-align: center !important;
	color: #0f172a !important;
}

ul.wc-block-product-template .wp-block-post-title a {
	color: inherit !important;
	text-decoration: none !important;
}

ul.wc-block-product-template .wp-block-post-title a:hover {
	color: #1e3a8a !important;
}

/* Hide empty price container */
ul.wc-block-product-template .wp-block-woocommerce-product-price {
	min-height: 0 !important;
	margin: 0 !important;
}

ul.wc-block-product-template .wc-block-components-product-price:empty {
	display: none !important;
}

/* Read More Button */
ul.wc-block-product-template .wp-block-woocommerce-product-button {
	margin-top: auto !important;
}

ul.wc-block-product-template .wp-block-button__link {
	display: block !important;
	width: 100% !important;
	background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0.5rem !important;
	padding: 0.875rem 1.5rem !important;
	font-weight: 600 !important;
	font-size: 0.9375rem !important;
	text-align: center !important;
	text-decoration: none !important;
	transition: all 0.2s ease !important;
}

ul.wc-block-product-template .wp-block-button__link:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 20px -5px rgba(30, 58, 138, 0.4) !important;
}

/* Responsive */
@media (max-width: 992px) {
	ul.wc-block-product-template.is-flex-container {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.5rem !important;
	}
}

@media (max-width: 600px) {
	ul.wc-block-product-template.is-flex-container {
		grid-template-columns: 1fr !important;
		gap: 1.25rem !important;
	}

	ul.wc-block-product-template li.wc-block-product {
		padding: 1.25rem !important;
	}

	ul.wc-block-product-template .wc-block-components-product-image {
		min-height: 180px !important;
		padding: 1.5rem !important;
	}
}
