/* #region theme variables */

:root {
	--jrb-primary: #1677c8;
	--jrb-primary-rgb: 22, 119, 200;
	--jrb-primary-dark: #0e4f88;
	--jrb-primary-deep: #123b59;
	--jrb-primary-soft: #eaf5fc;
	--jrb-secondary: #42a6d8;
	--jrb-secondary-rgb: 66, 166, 216;
	--jrb-accent: #79c7e8;
	--jrb-cyan-soft: #dff4fb;
	--jrb-navy: #173b52;
	--jrb-ink: #263b4a;
	--jrb-text: #334955;
	--jrb-text-soft: #657985;
	--jrb-muted: #7d8e98;
	--jrb-white: #fff;
	--jrb-surface: rgba(255, 255, 255, 0.86);
	--jrb-surface-strong: rgba(255, 255, 255, 0.96);
	--jrb-surface-soft: rgba(242, 248, 252, 0.82);
	--jrb-surface-dark: rgba(18, 59, 89, 0.94);
	--jrb-border: rgba(22, 119, 200, 0.14);
	--jrb-border-strong: rgba(22, 119, 200, 0.26);
	--jrb-glass-blur: 16px;
	--jrb-radius-sm: 0.75rem;
	--jrb-radius: 1.25rem;
	--jrb-radius-lg: 1.75rem;
	--jrb-shadow-xs: 0 3px 6px rgba(18, 59, 89, 0.06);
	--jrb-shadow-sm: 0 3px 6px rgba(18, 59, 89, 0.08);
	--jrb-shadow: 0 3px 6px rgba(18, 59, 89, 0.11);
	--jrb-shadow-hover: 0 6px 12px rgba(18, 59, 89, 0.17);
	--jrb-transition-fast: 0.16s ease;
	--jrb-transition: 0.26s ease;
	--jrb-success: #248b68;
	--jrb-info: #1789aa;
	--jrb-warning: #bd8610;
	--jrb-danger: #c34f63;
	--jrb-glass: rgba(255, 255, 255, 0.72);
	--jrb-glass-strong: rgba(255, 255, 255, 0.9);
	--jrb-glass-soft: rgba(244, 251, 253, 0.62);
	--jrb-glass-blue: rgba(226, 245, 250, 0.68);
	--jrb-glass-dark: rgba(6, 74, 118, 0.9);
	--jrb-glass-border: rgba(9, 97, 138, 0.16);
	--jrb-glass-border-strong: rgba(9, 97, 138, 0.28);
	--jrb-divider: rgba(23, 54, 74, 0.1);
	--jrb-gradient-primary: linear-gradient(
		135deg,
		#1677c8 0%,
		#42a6d8 58%,
		#79c7e8 100%
	);
	--jrb-gradient-accent-2: linear-gradient(
		135deg,
		#09618a 0%,
		#087ca7 48%,
		#16aaa8 100%
	);
	--jrb-gradient-accent-2-dark: linear-gradient(
		135deg,
		#064a76 0%,
		#09618a 58%,
		#008b91 100%
	);
	--jrb-gradient-soft: linear-gradient(
		135deg,
		rgba(234, 245, 252, 0.96) 0%,
		rgba(255, 255, 255, 0.94) 52%,
		rgba(223, 244, 251, 0.92) 100%
	);
	--jrb-gradient-soft-2: linear-gradient(
		135deg,
		rgba(232, 246, 250, 0.88),
		rgba(255, 255, 255, 0.8)
	);
	--jrb-gradient-soft-3: linear-gradient(
		135deg,
		rgba(234, 245, 252, 0.96) 0%,
		rgba(255, 255, 255, 0.94) 52%,
		rgba(223, 244, 251, 0.92) 100%
	);
	--jrb-gradient-page: radial-gradient(
			circle at 12% 5%,
			rgba(66, 166, 216, 0.13),
			transparent 32%
		),
		radial-gradient(
			circle at 92% 12%,
			rgba(121, 199, 232, 0.16),
			transparent 28%
		),
		linear-gradient(180deg, #f8fbfd 0%, #fff 38%, #f5fafc 100%);
	--bs-primary: var(--jrb-primary);
	--bs-primary-rgb: var(--jrb-primary-rgb);
	--bs-link-color: var(--jrb-primary);
	--bs-link-hover-color: var(--jrb-primary-dark);
	--bs-body-color: var(--jrb-text);
	--bs-body-bg: #f8fbfd;
	--bs-border-color: var(--jrb-border);
	--bs-border-radius: var(--jrb-radius-sm);
	--bs-border-radius-lg: var(--jrb-radius);
}

/* #endregion theme variables */

/* #region base */

html {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	color: var(--jrb-text);
	background: var(--jrb-gradient-page);
	font-family: Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -2;
	content: "";
	pointer-events: none;
	background: linear-gradient(
		115deg,
		rgba(255, 255, 255, 0.76),
		rgba(234, 245, 252, 0.2)
	);
}

::selection {
	color: var(--jrb-white);
	background-color: var(--jrb-primary);
}

img {
	max-width: 100%;
}

a {
	color: var(--jrb-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.16em;
	transition: color var(--jrb-transition-fast),
		opacity var(--jrb-transition-fast);
}

a:hover {
	color: var(--jrb-primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--jrb-ink);
	font-weight: 700;
	letter-spacing: -0.018em;
}

p {
	line-height: 1.7;
}

hr {
	border-color: var(--jrb-border);
	opacity: 1;
}

.bg-light {
	background-color: rgba(248, 251, 253, 0.78) !important;
}

.text-primary {
	color: var(--jrb-primary) !important;
}

.shadow {
	box-shadow: var(--jrb-shadow-sm) !important;
}

.transition-3 {
	transition: all var(--jrb-transition);
}

/* #endregion base */

/* #region bootstrap override */

.breadcrumb .breadcrumb-item {
	font-size: 0.9rem;
}

@media (min-width: 768px) {
	.breadcrumb .breadcrumb-item {
		font-size: 1rem;
	}
}

.btn {
	border-radius: 0;
	border-width: 2px;
}

.dropdown-menu {
	border-radius: 0;
	border: 0;
	margin-bottom: 1rem;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;

	transition: 0.5s;
	padding: 0.5rem 0.5rem;
}

@media (max-width: 767px) {
	.dropdown-menu {
		-webkit-box-shadow: inset 0px 18px 23px -11px rgba(0, 0, 0, 0.2);
		box-shadow: inset 0px 18px 23px -11px rgba(0, 0, 0, 0.2);
	}
}

.dropdown-menu li a {
	padding: 0.5rem 1rem;
	border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
	border: 0;
}

.dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0;
	transition: 0.5s;
}

.form-control {
	border-radius: 0;
}

.navbar-toggler {
	border-radius: 0;
	padding: 0 0.4rem !important;
	height: 3rem;
	margin-top: 5px;
}

/* #endregion */

/* #region bootstrap appends */

.bg-primary-dark {
	background-color: var(--bs-primary);
}

.offcanvas-dark {
	background-color: var(--bs-dark) !important;
}

.offcanvas-dark .btn-close {
	filter: invert(1) grayscale(100%) brightness(200%);
}

.offcanvas-dark .offcanvas-header {
	color: var(--bs-light) !important;
}

.offcanvas-primary {
	background-color: var(--bs-primary) !important;
}

.offcanvas-primary .btn-close {
	filter: invert(1) grayscale(100%) brightness(200%);
}

.offcanvas-primary .offcanvas-header {
	color: var(--bs-light) !important;
}

/* #endregion */

/* #region glass helpers */

.glass,
.glass-panel,
.sidebar-filter,
.accordion-item,
.info-card {
	border: 1px solid var(--jrb-border);
	background: var(--jrb-surface);
	box-shadow: var(--jrb-shadow-xs);
	-webkit-backdrop-filter: blur(var(--jrb-glass-blur));
	backdrop-filter: blur(var(--jrb-glass-blur));
}

.glass-panel {
	border-radius: var(--jrb-radius-lg);
}

/* #endregion glass helpers */

/* #region page preloader */

#pagePreloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(248, 251, 253, 0.96);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

#pagePreloader::after {
	width: 2.5rem;
	height: 2.5rem;
	content: "";
	border: 3px solid rgba(var(--jrb-primary-rgb), 0.18);
	border-top-color: var(--jrb-primary);
	border-radius: 50%;
	animation: jrb-spin 0.8s linear infinite;
}

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

/* #endregion page preloader */

/* #region header and navbar */

header,
.header,
.header-main,
.main-header {
	/* position: relative; */
	/* z-index: 1030; */
}

header {
}
.navbar {
	/* z-index: 1030; */
	border-bottom: 1px solid var(--jrb-border);
	/* background: rgba(255, 255, 255, 0.9); */
	background: var(--jrb-gradient-soft-3) !important;
	box-shadow: 0 8px 25px rgba(18, 59, 89, 0.07);
	/* min-height: 4.25rem;
	-webkit-backdrop-filter: blur(18px) saturate(145%);
	backdrop-filter: blur(18px) saturate(145%);
	transition: background-color var(--jrb-transition),
		box-shadow var(--jrb-transition), transform var(--jrb-transition),
		opacity var(--jrb-transition); */
	box-shadow: 0 8px 25px rgba(18, 59, 89, 0.07);
	/* -webkit-backdrop-filter: blur(18px) saturate(145%);
	backdrop-filter: blur(18px) saturate(145%);
	transition: background-color var(--jrb-transition),
		box-shadow var(--jrb-transition), transform var(--jrb-transition),
		opacity var(--jrb-transition); */
}

.navbar .navbar-menu {
	background: var(--jrb-gradient-primary);
}

.navbar-brand {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.navbar-brand img,
.navbar-brand svg {
	display: block;
	max-width: 100%;
	height: auto;
}

.navbar-nav {
	align-items: stretch;
}

.navbar-nav .nav-item {
	position: relative;
}

.navbar-nav .nav-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 3rem;
	padding: 0.72rem 0.9rem;
	color: var(--jrb-white);
	font-size: 0.95rem;
	font-weight: 600;
	white-space: nowrap;
	border-radius: var(--jrb-radius-sm);
	transition: color var(--jrb-transition-fast),
		background-color var(--jrb-transition-fast),
		transform var(--jrb-transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link[aria-expanded="true"] {
	color: var(--jrb-primary-soft);
	background-color: rgba(var(--jrb-primary-rgb), 0.08);
}

.navbar-nav .nav-link.active {
	color: var(--jrb-primary-dark);
	background-color: rgba(var(--jrb-primary-rgb), 0.11);
}

.navbar-nav .dropdown-toggle::after {
	margin-left: 0.35rem;
	transition: transform var(--jrb-transition-fast);
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after,
.navbar-nav .dropdown-toggle.show::after {
	transform: rotate(180deg);
}

.navbar-toggler {
	padding: 0.55rem 0.68rem;
	color: var(--jrb-ink);
	border: 1px solid var(--jrb-border-strong);
	border-radius: var(--jrb-radius-sm);
	background-color: rgba(255, 255, 255, 0.78);
	box-shadow: none;
	transition: border-color var(--jrb-transition-fast),
		background-color var(--jrb-transition-fast),
		box-shadow var(--jrb-transition-fast);
}

.navbar-toggler:hover,
.navbar-toggler:focus {
	border-color: rgba(var(--jrb-primary-rgb), 0.42);
	background-color: var(--jrb-primary-soft);
	box-shadow: 0 0 0 0.2rem rgba(var(--jrb-primary-rgb), 0.12);
}

.navbar-toggler:focus {
	outline: 0;
}

.navbar-collapse {
	z-index: 1031;
}

.dropdown-menu {
	z-index: 1055;
	min-width: 14rem;
	padding: 0.55rem;
	border: 1px solid var(--jrb-border);
	border-radius: var(--jrb-radius);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--jrb-shadow);
	-webkit-backdrop-filter: blur(18px) saturate(145%);
	backdrop-filter: blur(18px) saturate(145%);
}

.dropdown-menu.show {
	animation: jrb-dropdown-in 0.18s ease-out both;
}

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

.dropdown-item {
	padding: 0.68rem 0.78rem;
	color: var(--jrb-text);
	font-size: 0.92rem;
	font-weight: 500;
	border-radius: 0.5rem;
	transition: color var(--jrb-transition-fast),
		background-color var(--jrb-transition-fast),
		transform var(--jrb-transition-fast);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active {
	color: var(--jrb-primary-dark);
	background-color: rgba(var(--jrb-primary-rgb), 0.09);
}

.dropdown-divider {
	border-color: var(--jrb-border);
}

@media (min-width: 992px) {
	.navbar-nav .nav-link:hover {
		transform: translateY(-1px);
	}

	.dropdown-item:hover,
	.dropdown-item:focus {
		transform: translateX(2px);
	}

	.navbar .dropdown-menu {
		margin-top: 0.35rem;
	}
}

@media (max-width: 991.98px) {
	.navbar {
		min-height: 4rem;
	}

	.navbar-collapse {
		margin-top: 0.75rem;
		padding: 0.7rem;
		border: 1px solid var(--jrb-border);
		border-radius: var(--jrb-radius);
		background: rgba(255, 255, 255, 0.97);
		box-shadow: var(--jrb-shadow-sm);
		-webkit-backdrop-filter: blur(18px);
		backdrop-filter: blur(18px);
	}

	.navbar-nav .nav-link {
		min-height: 2.85rem;
		padding: 0.7rem 0.8rem;
	}

	.navbar-nav .dropdown-menu {
		margin: 0.25rem 0 0.65rem;
		padding: 0.45rem;
		border-color: rgba(var(--jrb-primary-rgb), 0.12);
		background: rgba(239, 248, 253, 0.72);
		box-shadow: none;
	}

	.navbar-nav .dropdown-item {
		padding: 0.65rem 0.75rem;
	}
}

/* #endregion header and navbar */

/* #region search */

.input-group,
.search-form,
.form-search {
	border-radius: var(--jrb-radius);
}

.search-form .form-control,
.form-search .form-control,
.navbar .form-control {
	min-height: 2.75rem;
	border-color: var(--jrb-border-strong);
	background-color: rgba(255, 255, 255, 0.82);
}

/* #endregion search */

/* #region buttons */

.btn {
	min-height: 2.55rem;
	padding: 0.56rem 1rem;
	font-weight: 600;
	border-radius: var(--jrb-radius-sm);
	transition: color var(--jrb-transition-fast),
		background-color var(--jrb-transition-fast),
		border-color var(--jrb-transition-fast),
		box-shadow var(--jrb-transition-fast), transform var(--jrb-transition-fast);
}

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

.btn:active {
	transform: translateY(0);
}

.btn-primary {
	border-color: var(--jrb-primary);
	background: var(--jrb-gradient-primary);
	box-shadow: 0 7px 18px rgba(var(--jrb-primary-rgb), 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
	border-color: var(--jrb-primary-dark);
	background: linear-gradient(135deg, #1268af, #318fc4);
	box-shadow: 0 9px 22px rgba(var(--jrb-primary-rgb), 0.3);
}

.btn-outline-primary {
	color: var(--jrb-primary-dark);
	border-color: rgba(var(--jrb-primary-rgb), 0.5);
	background-color: rgba(255, 255, 255, 0.66);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
	color: var(--jrb-white);
	border-color: var(--jrb-primary);
	background: var(--jrb-gradient-primary);
	box-shadow: 0 7px 18px rgba(var(--jrb-primary-rgb), 0.2);
}

.btn-link {
	min-height: auto;
	padding: 0.25rem 0.4rem;
	color: var(--jrb-primary);
	text-decoration: none;
}

.btn-link:hover {
	color: var(--jrb-primary-dark);
	transform: none;
}

.btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
}

/* #endregion buttons */

/* #region forms */

.form-control,
.form-select {
	min-height: 3rem;
	color: var(--jrb-text);
	border-color: var(--jrb-border-strong);
	border-radius: var(--jrb-radius-sm);
	background-color: rgba(255, 255, 255, 0.86);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
	transition: border-color var(--jrb-transition-fast),
		box-shadow var(--jrb-transition-fast),
		background-color var(--jrb-transition-fast);
}

.form-control:focus,
.form-select:focus {
	border-color: rgba(var(--jrb-primary-rgb), 0.62);
	background-color: var(--jrb-white);
	box-shadow: 0 0 0 0.22rem rgba(var(--jrb-primary-rgb), 0.12);
}

.form-control::placeholder {
	color: #91a1aa;
}

.form-check-input {
	border-color: rgba(var(--jrb-primary-rgb), 0.38);
}

.form-check-input:checked {
	border-color: var(--jrb-primary);
	background-color: var(--jrb-primary);
}

.form-check-input:focus {
	border-color: var(--jrb-primary);
	box-shadow: 0 0 0 0.2rem rgba(var(--jrb-primary-rgb), 0.12);
}

.form-floating > label {
	color: var(--jrb-muted);
}

/* #endregion forms */

/* #region main sections */

.main {
	position: relative;
	z-index: 1;
}

.main-section {
	position: relative;
	padding: 3rem 0;
}

.main-section:nth-of-type(even) {
	/* background: linear-gradient(
		180deg,
		rgba(234, 245, 252, 0.3),
		rgba(255, 255, 255, 0.1)
	); */
	background: linear-gradient(
		180deg,
		rgba(234, 245, 252, 0.36),
		rgba(255, 255, 255, 0.1)
	);
}

.main-section_header {
	margin-bottom: 1.75rem;
}

.main-section_title {
	position: relative;
	display: inline-block;
	margin-bottom: 1.6rem;
	color: var(--jrb-ink);
	font-weight: 800;
}

.main-section_title::after {
	display: block;
	width: 5rem;
	height: 0.22rem;
	margin-top: 0.55rem;
	content: "";
	border-radius: 999px;
	background: var(--jrb-gradient-primary);
}

.main-section_content {
	position: relative;
}

.main-section-billboard {
	position: relative;
	padding: 1rem 0 1rem;
	background-color: rgba(248, 253, 254, 0.2);
}

.carousel-billboard {
	overflow: hidden;
	border: 1px solid var(--jrb-border);
	border-radius: var(--jrb-radius-lg);
	background-color: var(--jrb-white);
	box-shadow: var(--jrb-shadow);
	margin-top: 1rem;
}

.carousel-billboard img {
	display: block;
	width: 100%;
	min-height: 100%;
}

/* #endregion main sections */

/* #region product cards */

.card,
.product-card,
.card-product {
	border: 1px solid var(--jrb-border);
	border-radius: var(--jrb-radius) !important;
	background: var(--jrb-surface-strong);
	box-shadow: var(--jrb-shadow-xs);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: transform var(--jrb-transition), box-shadow var(--jrb-transition),
		border-color var(--jrb-transition);
}

.card:hover,
.product-card:hover,
.card-product:hover {
	border-color: rgba(var(--jrb-primary-rgb), 0.26);
	box-shadow: var(--jrb-shadow-hover);
	transform: translateY(-5px);
}

.product-card .card-body,
.card-product .card-body {
	padding: 1.25rem;
}

.product-card_image-wrapper,
.card-product .img-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	padding: 0.75rem;
	border-radius: calc(var(--jrb-radius) - 0.1rem);
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.95),
		rgba(234, 245, 252, 0.52)
	);
}

.product-card_image,
.card-product .img-wrapper img {
	width: 200px;
	height: 200px;
	object-fit: contain;
	transition: transform var(--jrb-transition);
}

.product-card:hover .product-card_image,
.card-product:hover .img-wrapper img {
	transform: scale(1.025);
}

.product-card_title,
.card-product .title {
	color: var(--jrb-ink);
	font-size: 1rem;
	line-height: 1.45;
}

.product-card_badge,
.card-product .card-header {
	z-index: 2;
	border: 0;
	border-radius: 0 0 0 var(--jrb-radius-sm) !important;
	box-shadow: 0 5px 14px rgba(18, 59, 89, 0.14);
}

.rating-stars {
	color: #f3b51b;
	letter-spacing: 0.08rem;
}

/* #endregion product cards */

/* #region category cards */

.category-card,
.card-product-category {
	overflow: hidden;
	border: 1px solid var(--jrb-border);
	border-radius: var(--jrb-radius) !important;
	background: var(--jrb-surface-strong);
	box-shadow: var(--jrb-shadow-xs);
	transition: transform var(--jrb-transition), box-shadow var(--jrb-transition),
		border-color var(--jrb-transition);
}

.category-card:hover,
.card-product-category:hover {
	border-color: rgba(var(--jrb-primary-rgb), 0.26);
	box-shadow: var(--jrb-shadow-hover);
	transform: translateY(-4px);
}

.category-card_image,
.card-product-category .img-wrapper img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.42s ease;
}

.category-card:hover .category-card_image,
.card-product-category:hover .img-wrapper img {
	transform: scale(1.035);
}

.card-product-category .card-body {
	padding: 1.2rem;
}

/* #endregion category cards */

/* #region brand carousel */

.carousel-brands img,
.brand-logo {
	max-width: 200px;
	max-height: 110px;
	margin: 0 auto;
	padding: 0.8rem;
	object-fit: contain;
	filter: saturate(0.92);
	transition: filter var(--jrb-transition), transform var(--jrb-transition),
		opacity var(--jrb-transition);
}

.carousel-brands img:hover,
.brand-logo:hover {
	filter: saturate(1.08);
	transform: translateY(-2px);
}

/* #endregion brand carousel */

/* #region slick carousel */

.slick-multiple-items {
	/* border: solid 1px red; */
	/* padding-top: 1rem; */
	/* padding-bottom: 1.25rem; */
}

.slick-list {
	padding-top: 0.6rem;
	padding-bottom: 1.25rem;
}

.slick-slide {
	/* padding: 0 0.55rem; */
}

/* .slick-prev,
.slick-next {
	z-index: 4;
	width: 2.7rem;
	height: 2.7rem;
	border: 1px solid var(--jrb-border);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--jrb-shadow-sm);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
} */

/* .slick-prev,
.slick-next {
	border-radius: 25%;
	height: 100%;
	margin-top: 2em;
	margin-bottom: 2em;
	border: solid 1px red;
} */

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	background: rgba(255, 255, 255, 0.2);
	/* background: var(--jrb-white); */
	/* box-shadow: var(--jrb-shadow); */
}

.slick-prev::before,
.slick-next::before {
	color: var(--jrb-primary-dark);
	opacity: 1;
}

.slick-dots li button::before {
	color: var(--jrb-primary);
}

.slick-dots li.slick-active button::before {
	color: var(--jrb-primary-dark);
}

.carousel-billboard .slick-slide {
	/* border: solid 1px blue !important; */
	padding: 0 !important;
}
.carousel-billboard .slick-list {
	/* border: solid 1px red !important; */
	padding: 0 !important;
}

/* #endregion slick carousel */

/* #region sidebar and accordion */

.sidebar-filter {
	padding: 1rem !important;
	border-radius: var(--jrb-radius);
}

.accordion-item {
	overflow: hidden;
	border-radius: var(--jrb-radius-sm) !important;
}

.accordion-button {
	padding: 0.9rem 1rem;
	color: var(--jrb-ink);
	font-weight: 700;
	background-color: rgba(255, 255, 255, 0.72);
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	color: var(--jrb-primary-dark);
	background: linear-gradient(
		135deg,
		rgba(var(--jrb-primary-rgb), 0.1),
		rgba(var(--jrb-secondary-rgb), 0.05)
	);
	box-shadow: none;
}

.accordion-button:focus {
	border-color: transparent;
	box-shadow: inset 0 0 0 1px rgba(var(--jrb-primary-rgb), 0.2);
}

.accordion-button::after {
	filter: sepia(1) saturate(4) hue-rotate(165deg);
}

.sidebar-filter .form-check-label {
	color: var(--jrb-text);
	font-size: 0.9rem;
}

.sidebar-filter ul li + li {
	margin-top: 0.35rem;
}

.sidebar-filter a {
	color: var(--jrb-text);
	text-decoration: none;
}

.sidebar-filter a:hover {
	color: var(--jrb-primary-dark);
}

/* #endregion sidebar and accordion */

/* --- */

/* #region breadcrumb */

.breadcrumb {
	margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
	color: var(--jrb-text-soft);
	font-size: 0.92rem;
	text-decoration: none;
}

.breadcrumb-item a:hover {
	color: var(--jrb-primary-dark);
}

.breadcrumb-item.active {
	color: var(--jrb-ink);
}

/* #endregion breadcrumb */

/* #region pagination */

.pagination {
	gap: 0.35rem;
}

.page-link {
	min-width: 2.45rem;
	min-height: 2.45rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--jrb-primary-dark);
	border: 1px solid var(--jrb-border);
	border-radius: 0.55rem !important;
	background-color: rgba(255, 255, 255, 0.86);
	box-shadow: var(--jrb-shadow-xs);
}

.page-link:hover,
.page-link:focus {
	color: var(--jrb-primary-dark);
	border-color: rgba(var(--jrb-primary-rgb), 0.32);
	background-color: var(--jrb-primary-soft);
	box-shadow: 0 0 0 0.2rem rgba(var(--jrb-primary-rgb), 0.08);
}

.page-item.active .page-link {
	color: var(--jrb-white);
	border-color: var(--jrb-primary);
	background: var(--jrb-gradient-primary);
	box-shadow: 0 7px 16px rgba(var(--jrb-primary-rgb), 0.22);
}

.page-item.disabled .page-link {
	color: #9bacb5;
	background-color: rgba(247, 250, 252, 0.72);
}

/* #endregion pagination */

/* #region alerts */

.alert {
	border: 1px solid var(--jrb-border);
	border-radius: var(--jrb-radius);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--jrb-shadow-xs);
}

/* #endregion alerts */

/* #region catalogue and support */

.catalogue-image {
	max-height: 200px;
	/* border-radius: var(--jrb-radius-sm); */
}

.support-message {
	min-height: 120px;
	resize: vertical;
}

.info-card,
.main-section .shadow.p-4 {
	border-radius: var(--jrb-radius);
}

#talk-to-our-team {
	border-radius: var(--jrb-radius);
}

/* #endregion catalogue and support */

/* #region discover */

.discover-card,
.discover-content,
.info-card {
	color: var(--jrb-text);
	border: 1px solid var(--jrb-glass-border);
	border-radius: var(--jrb-radius);
	background: var(--jrb-gradient-soft-2);
	/* box-shadow: var(--jrb-shadow-sm); */
	/* -webkit-backdrop-filter: blur(var(--jrb-backdrop-blur)) saturate(var(--jrb-backdrop-saturate)); */
	/* backdrop-filter: blur(var(--jrb-backdrop-blur)) saturate(var(--jrb-backdrop-saturate)); */
}

.discover-card h1,
.discover-card h2,
.discover-card h3,
.discover-content h1,
.discover-content h2,
.discover-content h3,
.info-card h1,
.info-card h2,
.info-card h3 {
	color: var(--jrb-ink);
}

/* #endregion discover */

/* #region footer */

footer,
.footer {
	position: relative;
	color: rgba(255, 255, 255, 0.86);
	/* background: linear-gradient(145deg, #123b59 0%, #0d4f7c 58%, #126d9f 100%); */
	background: var(--jrb-gradient-primary);
	box-shadow: 0 -12px 34px rgba(18, 59, 89, 0.13);
}

footer::before,
.footer::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background: radial-gradient(
		circle at 85% 20%,
		rgba(121, 199, 232, 0.18),
		transparent 28%
	);
}

footer > *,
.footer > * {
	position: relative;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
	color: var(--jrb-white);
}

footer a,
.footer a {
	color: rgba(255, 255, 255, 0.9);
}

footer a:hover,
.footer a:hover {
	color: var(--jrb-white);
}

footer .form-control,
.footer .form-control {
	border-color: rgba(255, 255, 255, 0.22);
	background-color: rgba(255, 255, 255, 0.12);
	color: var(--jrb-white);
}

footer .form-control::placeholder,
.footer .form-control::placeholder {
	color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
	background: var(--jrb-gradient-accent-2-dark);
}

/* #endregion footer */

/* #region accessibility */

:focus-visible {
	outline: 3px solid rgba(var(--jrb-primary-rgb), 0.34);
	outline-offset: 2px;
}

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

/* #endregion accessibility */

/* #region responsive */

@media (max-width: 1199.98px) {
	.slick-md-outside-arrows .slick-prev {
		left: 0.3rem;
	}

	.slick-md-outside-arrows .slick-next {
		right: 0.3rem;
	}
}

@media (max-width: 767.98px) {
	.main-section {
		padding: 2.65rem 0;
	}

	.main-section-billboard {
		padding-top: 0.5rem;
	}

	.main-section_title {
		font-size: 1.55rem;
	}

	.product-card_image-wrapper,
	.card-product .img-wrapper {
		min-height: 190px;
	}

	.product-card_image,
	.card-product .img-wrapper img {
		width: 180px;
		height: 180px;
	}
}

.carousel-billboard {
	/* border-radius: 0.65rem; */
}
.carousel-billboard .slick-slide {
	/* border: solid 1px blue !important; */
	/* padding: 0 !important; */
}
.carousel-billboard .slick-list {
	/* border: solid 1px red !important; */
	/* padding-top: 0 !important; */
}
/* .carousel-billboard div {
	border: solid 1px red !important;
}
.carousel-billboard picture {
	border: solid 1px red !important;
} */
/* #endregion responsive */

/* ========================================================================== */

/* #region product details page                                               */

.page-product-details .product-detail-section {
	background: transparent;
}

.page-product-details .product-detail_breadcrumb {
	border: 1px solid var(--jrb-border);
	border-radius: var(--jrb-radius);
	background: var(--jrb-surface);
	box-shadow: var(--jrb-shadow-xs);
	-webkit-backdrop-filter: blur(var(--jrb-glass-blur));
	backdrop-filter: blur(var(--jrb-glass-blur));
}

.page-product-details .product-detail_breadcrumb .breadcrumb {
	padding-left: 1rem;
}

.page-product-details .product-images {
	min-height: 400px;
}

.page-product-details .carousel.showcase .container {
	position: relative;
	padding: 0;
}

.page-product-details .carousel.showcase .carousel-inner {
	overflow: hidden;
	border: 1px solid var(--jrb-border);
	border-radius: var(--jrb-radius-lg);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--jrb-shadow-sm);
}

.page-product-details .carousel.showcase .carousel-item {
	text-align: center;
}

.page-product-details .carousel.showcase .carousel-item img {
	width: 100%;
	max-height: 620px;
	object-fit: contain;
}

.page-product-details .carousel.showcase .carousel-control-prev,
.page-product-details .carousel.showcase .carousel-control-next {
	width: 12%;
}

.page-product-details .carousel.showcase .carousel-indicators {
	position: relative;
	inset: auto;
	display: flex;
	justify-content: center;
	gap: 0.65rem;
	margin: 1rem 0 0;
}

.page-product-details .carousel.showcase .carousel-indicators button {
	position: relative;
	flex: 0 1 20%;
	height: auto;
	margin: 0;
	padding: 0.35rem;
	text-indent: 0;
	opacity: 1;
	border: 1px solid var(--jrb-border);
	border-radius: var(--jrb-radius-sm);
	background: rgba(255, 255, 255, 0.9);
	transition: border-color var(--jrb-transition-fast),
		box-shadow var(--jrb-transition-fast), transform var(--jrb-transition-fast);
}

.page-product-details .carousel.showcase .carousel-indicators button:hover,
.page-product-details
	.carousel.showcase
	.carousel-indicators
	button:focus-visible,
.page-product-details .carousel.showcase .carousel-indicators button.active {
	border-color: var(--jrb-primary);
	box-shadow: 0 0 0 0.2rem rgba(var(--jrb-primary-rgb), 0.12);
	transform: translateY(-2px);
}

.page-product-details .carousel.showcase .carousel-indicators img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
}

.page-product-details .product-detail_badge {
	top: 0;
	right: 0;
	z-index: 2;
	font-size: 0.7rem;
}

.page-product-details .product-info {
	padding: clamp(1rem, 2.5vw, 2rem);
	border: 1px solid var(--jrb-border);
	border-radius: var(--jrb-radius-lg);
	background: var(--jrb-surface);
	box-shadow: var(--jrb-shadow-sm);
	-webkit-backdrop-filter: blur(var(--jrb-glass-blur));
	backdrop-filter: blur(var(--jrb-glass-blur));
}

.page-product-details .product-title {
	font-size: clamp(1.45rem, 2.8vw, 2.25rem);
	line-height: 1.2;
}

.page-product-details .product-description {
	color: var(--jrb-text);
	line-height: 1.75;
}

.page-product-details .list-key-value {
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
}

.page-product-details .list-key-value .item {
	display: grid;
	grid-template-columns: minmax(7rem, 35%) 1fr;
	gap: 1rem;
	padding: 0.7rem 0;
	line-height: 1.45;
	border-bottom: 1px solid var(--jrb-border);
}

.page-product-details .list-key-value .item:last-child {
	border-bottom: 0;
}

.page-product-details .list-key-value .key {
	font-weight: 700;
	color: var(--jrb-ink);
}

.page-product-details .product-basic-info {
	border-color: var(--jrb-border) !important;
	border-radius: var(--jrb-radius);
	background: var(--jrb-gradient-soft) !important;
}

.page-product-details .product-detail_accordion .accordion-item {
	overflow: hidden;
	border-radius: var(--jrb-radius) !important;
}

.page-product-details .product-detail_accordion .accordion-button {
	font-size: 1rem;
	font-weight: 700;
}

.page-product-details .product-detail_accordion .accordion-body {
	line-height: 1.7;
}

.page-product-details .product-manual-section .main-section_header {
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--jrb-border);
	border-radius: var(--jrb-radius-lg);
	background: var(--jrb-surface);
	box-shadow: var(--jrb-shadow-xs);
}

@media (min-width: 768px) {
	.page-product-details .product-images {
		min-height: 500px;
	}
}

@media (min-width: 1200px) {
	.page-product-details .product-images {
		min-height: 580px;
	}
}

@media (min-width: 1400px) {
	.page-product-details .product-images {
		min-height: 650px;
	}
}

@media (max-width: 767.98px) {
	.page-product-details .product-detail_breadcrumb {
		overflow-x: auto;
	}

	.page-product-details .product-detail_breadcrumb .breadcrumb {
		flex-wrap: nowrap;
		min-width: max-content;
	}

	.page-product-details .carousel.showcase .carousel-indicators {
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 0.35rem;
	}

	.page-product-details .carousel.showcase .carousel-indicators button {
		flex: 0 0 5rem;
	}

	.page-product-details .product-info {
		padding: 1.1rem;
	}

	.page-product-details .list-key-value .item {
		grid-template-columns: 1fr;
		gap: 0.2rem;
	}
}

/* #endregion product details page                                               */

/* #region páginas de lista e busca */

/* Cabeçalho das páginas de catálogo. */
.main > .main-section.bg-light {
	background: linear-gradient(
		180deg,
		rgba(240, 248, 253, 0.88),
		rgba(255, 255, 255, 0.72)
	) !important;
}

.main > .main-section.bg-light > .container {
	position: relative;
}

.main .main-section_header + .d-md-flex,
.main .main-section_header + .mb-4,
.main .main-section_header + .d-flex {
	padding: 0.8rem 1rem;
	border: 1px solid var(--jrb-border);
	border-radius: var(--jrb-radius);
	background: rgba(255, 255, 255, 0.7);
	box-shadow: var(--jrb-shadow-xs);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

/* Sidebar glass com comportamento previsível em desktop. */
.sidebar-filter {
	position: relative;
	background: rgba(255, 255, 255, 0.78) !important;
}

@media (min-width: 992px) {
	.sidebar-filter {
		position: sticky;
		top: 1rem;
		max-height: calc(100vh - 2rem);
		overflow-y: auto;
		scrollbar-width: thin;
		scrollbar-color: rgba(var(--jrb-primary-rgb), 0.34) transparent;
	}
}

.sidebar-filter > form > .d-flex:first-child {
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--jrb-border);
}

.sidebar-filter .accordion {
	filter: none;
}

.sidebar-filter .accordion-collapse {
	background: rgba(255, 255, 255, 0.46);
}

.sidebar-filter .form-check {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	min-height: 1.8rem;
}

.sidebar-filter .form-check-input {
	margin-top: 0.22rem;
	flex-shrink: 0;
}

.sidebar-filter .form-check-label {
	line-height: 1.45;
	cursor: pointer;
}

/* Grid e cards usados em produto_lista.php e produto_busca.php. */
.main ul.row > li.item {
	display: flex;
}

.main ul.row > li.item > article.card,
.main ul.row > li.item > .product-card {
	width: 100%;
	min-width: 0;
	overflow: hidden;
}

.main ul.row > li.item article.card .card-body {
	padding: 1.15rem;
}

.main ul.row > li.item article.card .card-body > .mb-3:first-child {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	padding: 0.75rem;
	border-radius: calc(var(--jrb-radius) - 0.1rem);
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.97),
		rgba(232, 245, 252, 0.58)
	);
}

.main ul.row > li.item article.card img {
	width: 200px;
	height: 200px;
	object-fit: contain;
	transition: transform var(--jrb-transition);
}

.main ul.row > li.item article.card:hover img {
	transform: scale(1.03);
}

.main ul.row > li.item article.card h3 {
	color: var(--jrb-ink);
	font-size: 1rem !important;
	line-height: 1.45;
}

.main ul.row > li.item article.card .btn {
	width: 100%;
}

/* Estado sem resultados. */
.main .alert.alert-light.text-center {
	padding: 2rem 1.25rem;
	color: var(--jrb-text-soft);
	background: rgba(255, 255, 255, 0.76) !important;
}

/* Paginação mais segura em telas estreitas. */
.pagination {
	flex-wrap: wrap;
	row-gap: 0.55rem;
}

@media (max-width: 767.98px) {
	.main .main-section_header + .d-md-flex,
	.main .main-section_header + .mb-4,
	.main .main-section_header + .d-flex {
		gap: 0.45rem;
		padding: 0.75rem;
		text-align: left !important;
	}

	.main ul.row > li.item article.card .card-body > .mb-3:first-child {
		min-height: 190px;
	}

	.main ul.row > li.item article.card img {
		width: 180px;
		height: 180px;
	}
}

/* #endregion páginas de lista e busca */
