@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

:root {
	--dark-blue-1: #002a48;
	--dark-blue-2: #00335b;
	--dark-blue-3: #001c30;
	/* Darker blue for stronger contrast */

	--dark-black: #212620;

	--medium-green-gray: #707362;
	--medium-gray-1: #707170;
	--medium-gray-2: #777779;
	--medium-blue: #4e6080;

	--light-gray: #a9a8a9;
	--light-blue-gray: #d1d8d8;
	--light-green-gray: #d8ddce;
	--light-beige: #c5bfaa;

	--font-primary: 'Barlow', Arial, sans-serif;
	--font-heading: 'Rajdhani', 'Helvetica Neue', sans-serif;
}

body {
	font-family: var(--font-primary);
	color: var(--dark-blue-1);
	background-color: #f8f9fa;
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.section-title {
	text-align: center;
	margin-bottom: 2rem;
	color: var(--dark-blue-1);
	position: relative;
	padding-bottom: 1rem;
}

.section-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--medium-blue);
}

section {
	padding: 4rem 0;
}

header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .navbar-brand {
	padding: 0;
}

.nav-link {
	color: var(--dark-blue-1);
	font-weight: 600;
	padding: 0.5rem 1rem;
	transition: all 0.3s;
	font-family: var(--font-heading);
	font-weight: 600;
	letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
	color: var(--medium-blue);
}

.nav-actions {
	display: flex;
	align-items: center;
}

.nav-actions .btn-link {
	color: var(--dark-blue-1);
	font-size: 1.2rem;
	padding: 0.5rem;
}

.navbar-text {
	font-size: clamp(0.75rem, 0.65rem + 0.5vw, 0.9rem);
}

.cart-count {
	background-color: var(--dark-blue-2);
	color: white;
	border-radius: 50%;
	font-size: 0.7rem;
	padding: 0.15rem 0.4rem;
	margin-left: -0.5rem;
	position: relative;
	top: -8px;
}

.mega-menu {
	width: 100%;
	border-radius: 0;
	margin-top: 0;
	border: none;
	left: 0;
	right: 0;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.mega-menu h5 {
	color: var(--dark-blue-1);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	border-bottom: 2px solid var(--light-blue-gray);
	padding-bottom: 0.5rem;
}

.mega-menu .list-group {
	border-radius: 0;
	margin-bottom: 1rem;
}

.mega-menu .list-group-item {
	border: none;
	padding: 0.5rem 0;
	font-weight: 400;
	color: var(--medium-gray-1);
	transition: all 0.2s;
}

.mega-menu .list-group-item:hover {
	color: var(--dark-blue-2);
	background-color: transparent;
	transform: translateX(5px);
}

.dropdown-menu.mega-menu {
	position: absolute;
	width: auto;
	min-width: 500px;
	left: 0;
	right: auto;
	transform: none;
	margin-top: 0.5rem;
	padding: 2rem;
	border-radius: 0.25rem;
	border: none;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.dropdown-menu.mega-menu:before {
	content: '';
	position: absolute;
	top: -8px;
	left: 20px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid white;
}

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

.navbar .container {
	position: relative;
}

.dropdown-menu.mega-menu .container {
	max-width: none;
	margin: 0;
	padding: 0;
}

.dropdown-toggle::after {
	vertical-align: middle;
	transition: transform 0.3s ease;
}

.hero-fullbg {
	position: relative;
	height: 70vh;
	min-height: 500px;
	overflow: hidden;
}

.hero-image-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero-background {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
}

.hero-fullbg::before {
	content: "";
	position: absolute;
	z-index: 1;
}

.hero-fullbg .container {
	position: relative;
	z-index: 2;
}

.hero-content-box {
	background-color: rgba(0, 42, 72, 0.45);
	padding: 2.5rem;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	color: #fff;
}

.hero-fullbg h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.hero-fullbg .tagline {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
}

.hero-fullbg .btn-primary {
	background-color: white;
	color: var(--dark-blue-2);
	border-color: white;
	padding: 0.6rem 1.5rem;
}

.hero-fullbg .btn-primary:hover {
	background-color: var(--dark-blue-1);
	color: white;
}

.hero-fullbg .btn-outline-secondary {
	border-color: white;
	color: white;
	padding: 0.6rem 1.5rem;
}

.card-base {
	position: relative;
	transition: all 0.3s ease;
	background: white;
}


.category-card {
	border: none;
	border-radius: 0;
	overflow: hidden;
	background: white;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	position: relative;
}

.category-img {
	height: 220px;
	overflow: hidden;
	position: relative;
}

.category-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 42, 72, 0.7) 100%);
	z-index: 1;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.category-card:hover .category-img::before {
	opacity: 0.9;
}

.category-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	filter: saturate(0.9);
}

.category-card:hover .category-img img {
	transform: scale(1.08) rotate(-1deg);
	filter: saturate(1.1);
}

.category-card h3 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	margin: 0;
	text-align: left;
	font-size: 1.3rem;
	color: white;
	z-index: 2;
	font-weight: 700;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	transition: transform 0.3s;
}

.category-card:hover h3 {
	transform: translateY(-5px);
}

.category-card h3::after {
	content: '';
	position: absolute;
	bottom: 15px;
	left: 20px;
	width: 40px;
	height: 2px;
	background-color: white;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease 0.1s;
}

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

.product-card {
	border: none;
	border-radius: 8px;
	overflow: hidden;
	background: white;
	height: 100%;
	padding: 0;
	transition: all 0.3s ease;
	text-align: left;
	position: relative;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
}

.product-card::before {
	display: none;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card:hover::after {
	border-width: 0 35px 35px 0;
	opacity: 1;
}

.product-img {
	height: 220px;
	position: relative;
	overflow: hidden;
	/* background: #f5f7f9; */
	border-bottom: 3px solid var(--light-blue-gray);
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.product-card:hover .product-img img {
	transform: scale(1.08);
}

.product-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 42, 72, 0.05));
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 1;
}

.product-card:hover .product-img::before {
	opacity: 1;
}

.product-content {
	padding: 1.25rem;
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.product-card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.7rem;
	color: var(--dark-blue-1);
	font-weight: 700;
	line-height: 1.3;
	transition: color 0.3s;
	min-height: 2.6rem;
	/* Ensure consistent height for titles */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card:hover h3 {
	color: var(--dark-blue-2);
}

.price {
	display: inline-block;
	font-weight: 700;
	color: var(--dark-blue-2);
	margin-bottom: 1.2rem;
	font-size: 1.25rem;
	padding: 0.15rem 0.1rem;
	position: relative;
}

.price::before {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: var(--medium-blue);
	transition: width 0.3s ease;
}

.product-card:hover .price::before {
	width: 100%;
}

.product-footer {
	padding: 0 1.25rem 1.25rem 1.25rem;
	margin-top: auto;
}

.product-card .btn-outline-primary {
	width: 100%;
	text-align: center;
	padding: 0.5rem 1rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	border-width: 2px;
	text-transform: uppercase;
	font-size: 0.85rem;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.product-card .btn-outline-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: var(--dark-blue-2);
	transition: width 0.3s ease;
	z-index: -1;
}

.product-card .btn-outline-primary:hover {
	color: white !important;
	border-color: var(--dark-blue-2) !important;
}

.product-card .btn-outline-primary:hover::before {
	width: 100%;
}

.product-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	/* margin-bottom: 1rem; */
}

.product-meta span {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	background-color: var(--light-blue-gray);
	color: var(--dark-blue-1);
}

.product-meta .stock-status.in-stock {
	background-color: #e3f4e1;
	color: #2c662d;
}

.product-meta .stock-status.special-order {
	background-color: #ffefd9;
	color: #985e00;
}

.product-card .price {
	margin-bottom: 0.8rem;
}

.featured-badge {
	position: absolute;
	top: 15px;
	left: 0;
	background-color: var(--dark-blue-2);
	color: white;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 5px 15px;
	z-index: 4;
	letter-spacing: 0.8px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
	padding-right: 20px;
}

.brand {
	height: 120px;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
	position: relative;
	padding: 1.5rem;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid var(--light-blue-gray);
}

.brand img {
	max-width: 100%;
	max-height: 75px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(20%);
	transition: all 0.3s ease;
}

.brand:hover img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

.brand::after {
	content: '';
	position: absolute;
	top: 10px;
	right: 10px;
	width: 2px;
	height: 10px;
	background-color: var(--dark-blue-2);
	transition: all 0.3s ease;
}

.brand:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
	border-color: var(--medium-blue);
}

.brand:hover::after {
	height: calc(100% - 20px);
}

.brand-content {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.featured-badge {
	position: absolute;
	top: 15px;
	left: 0;
	background-color: var(--dark-blue-2);
	color: white;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 5px 15px;
	z-index: 4;
	letter-spacing: 1px;
}

.brands {
	background-color: var(--light-blue-gray);
}

.brand {
	height: 80px;
	background-color: white;
	border: 1px solid var(--light-gray);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	transition: all 0.3s;
	color: var(--medium-gray-1);
	border-radius: 4px;
}

.brand:hover {
	border-color: var(--medium-blue);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

footer {
	background-color: var(--dark-blue-1);
	color: white;
	padding: 3rem 0 1rem;
}

footer h4 {
	color: white;
	margin-bottom: 1.5rem;
}

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

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: var(--light-blue-gray);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
	text-decoration: underline;
}

.legal {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	font-size: 0.9rem;
	opacity: 0.7;
}

.brand-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--light-blue-gray);
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.brand-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.brand-header {
	height: 120px;
	background-color: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border-bottom: 1px solid var(--light-blue-gray);
}

.brand-logo {
	max-height: 80px;
	max-width: 100%;
	object-fit: contain;
}

.brand-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.brand-body h3 {
	margin-bottom: 1rem;
	color: var(--dark-blue-1);
}

.brand-body p {
	margin-bottom: 1.5rem;
	flex: 1;
}

.badge {
	background-color: var(--medium-blue);
	font-weight: 500;
}

.additional-brands .brand {
	height: 100px;
}

.brand-hero-banner {
	background: linear-gradient(to right, var(--dark-blue-1), var(--dark-blue-2));
	color: white;
	padding: 3rem 0;
	position: relative;
}

.brand-hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.brand-hero-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 80px;
	height: 4px;
	background-color: white;
}

.brand-hero-tagline {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 90%;
}

.brands-hero-logos {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.brands-logo-row {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.mini-brand-logo {
	height: 40px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.8;
	transition: opacity 0.3s;
}

.mini-brand-logo:hover {
	opacity: 1;
}

.brand-hero-split {
	background-color: white;
	padding: 0;
}

.brand-hero-content {
	padding: 0;
	display: flex;
	align-items: center;
	background-color: var(--dark-blue-1);
	color: white;
}

.brand-hero-content-inner {
	padding: 4rem;
	max-width: 600px;
	margin: 0 auto;
}

.brand-hero-image {
	padding: 0;
	height: 450px;
	overflow: hidden;
}

.hero-split-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.brand-partners-preview {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-partners-preview span {
	display: block;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.7;
}

.brand-logos-strip {
	display: flex;
	gap: 20px;
	align-items: center;
}

.browse-tabs .nav-pills {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.browse-tabs .nav-link {
	background-color: transparent;
	color: var(--dark-blue-1);
	border: 2px solid var(--light-blue-gray);
	border-radius: 30px;
	padding: 12px 30px;
	font-weight: 600;
	font-family: var(--font-heading);
	letter-spacing: 0.5px;
	transition: all 0.3s;
}

.browse-tabs .nav-link:hover {
	background-color: var(--light-blue-gray);
	color: var(--dark-blue-1);
}

.browse-tabs .nav-link.active {
	background-color: var(--dark-blue-2);
	color: white;
	border-color: var(--dark-blue-2);
	box-shadow: 0 4px 15px rgba(0, 51, 91, 0.3);
}

.browse-tile {
	position: relative;
	height: 320px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	transition: all 0.5s ease;
}

.browse-tile:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

.browse-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.browse-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s ease;
}

.browse-tile:hover .browse-img img {
	transform: scale(1.1);
}

.browse-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 42, 72, 0.85) 30%, rgba(0, 42, 72, 0.4) 100%);
	z-index: 2;
}

.browse-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px;
	color: white;
	z-index: 3;
	transition: all 0.4s ease;
}

.browse-tile:hover .browse-content {
	transform: translateY(-10px);
}

.browse-content h3 {
	margin-bottom: 10px;
	font-size: 1.8rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.browse-content p {
	margin-bottom: 20px;
	font-size: 0.95rem;
	opacity: 0.9;
}

.brand-showcase {
	perspective: 1000px;
	height: 300px;
	margin-bottom: 30px;
	position: relative;
}

.brand-showcase-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.8s;
	transform-style: preserve-3d;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.brand-showcase:hover .brand-showcase-inner {
	transform: rotateY(180deg);
}

.brand-showcase-front,
.brand-showcase-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px;
}

.brand-showcase-front {
	background: linear-gradient(135deg, #f8f9fa, #ffffff);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-showcase-back {
	background: var(--dark-blue-2);
	color: white;
	transform: rotateY(180deg);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}

.brand-logo-container {
	width: 160px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.brand-showcase-logo {
	max-width: 140px;
	max-height: 100px;
	object-fit: contain;
}

.brand-name {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--dark-blue-1);
}

.brand-products {
	font-size: 0.9rem;
	color: var(--medium-gray-1);
	padding: 5px 15px;
	border-radius: 30px;
	background-color: rgba(0, 0, 0, 0.05);
}

.brand-showcase-back h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.brand-showcase-back p {
	font-size: 0.95rem;
	margin-bottom: 20px;
	flex-grow: 1;
	display: flex;
	align-items: center;
}

.brand-showcase-back .btn {
	border-radius: 30px;
	padding: 8px 25px;
	font-weight: 600;
	letter-spacing: 0.5px;
	background-color: white;
	color: var(--dark-blue-2);
	border: none;
	transition: all 0.3s;
}

.brand-showcase-back .btn:hover {
	background-color: rgba(255, 255, 255, 0.9) !important;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.brand-slide-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
	height: 220px;
}

.featured-brand-logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	padding: 10px;
}

.featured-brand-logo {
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.contact-method {
	padding: 2rem;
	height: 100%;
	background-color: white;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-method:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.icon-container {
	width: 70px;
	height: 70px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--light-blue-gray);
	border-radius: 50%;
}

.icon-container i {
	font-size: 2rem;
	color: var(--dark-blue-1);
}

.contact-link {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark-blue-2);
	text-decoration: none;
	transition: color 0.3s;
	display: block;
}

.contact-link:hover {
	color: var(--medium-blue);
}

.contact-form {
	background: white;
}

.safety-rule {
	padding: 2rem;
	position: relative;
	border-left: 4px solid var(--dark-blue-1);
}

.safety-rule-number {
	position: absolute;
	top: -15px;
	left: -15px;
	width: 40px;
	height: 40px;
	background-color: var(--dark-blue-1);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	font-family: var(--font-heading);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-container {
	transition: all 0.3s ease;
}

.video-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.issue-card {
	padding: 2rem;
}

.issue-status {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8rem;
	padding: 5px 15px;
}

.involvement-icon {
	color: var(--dark-blue-2);
}

.involvement-card {
	padding: 2rem;
	transition: all 0.3s ease;
}

.involvement-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-box {
	background: linear-gradient(135deg, var(--dark-blue-1), var(--dark-blue-2));
	color: white;
	border-radius: 8px;
}

.captcha-container {
	background-color: #f8f9fa;
	border-radius: 6px;
	margin-top: 1rem;
}

.captcha-image-container {
	background-color: #fff;
	border-radius: 4px;
	display: inline-block;
}

#captchaCanvas {
	border-radius: 4px;
}

#captchaAnswer,
#captchaInput {
	max-width: 120px;
}

.organizations-section .card-base {
	padding: 2rem;
}

/* .card-base:not([class*="p-"]) {
	padding: 2rem;
} */

.btn-contrast {
	background-color: white;
	color: var(--dark-blue-1);
	border: 2px solid white;
	font-weight: 600;
}

.btn-contrast:hover,
.btn-contrast:focus {
	background-color: rgba(255, 255, 255, 0.9);
	color: var(--dark-blue-1);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

.btn-outline-contrast {
	background-color: transparent;
	color: white;
	border: 2px solid white;
	font-weight: 600;
}

.btn-outline-contrast:hover,
.btn-outline-contrast:focus {
	background-color: white;
	color: var(--dark-blue-1);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

.safety-product {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
	margin-bottom: 1.5rem;
}

.safety-product img {
	width: 100%;
	height: 120px;
	object-fit: contain;
	padding: 10px;
	background-color: #f8f9fa;
	border-radius: 8px;
	margin-bottom: 10px;
}

.safety-product h4 {
	margin-top: 10px;
	color: var(--dark-blue-1);
	font-weight: 600;
}

.video-container {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
}

.video-container .ratio {
	margin-bottom: 1rem;
	flex: 0 0 auto;
}

.video-container h3 {
	margin-bottom: 0.5rem;
	min-height: 40px;
}

.video-container p {
	flex: 1;
}

.ratio iframe {
	border: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.value-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--light-blue-gray);
	border-radius: 50%;
}

.value-icon i {
	font-size: 2rem;
	color: var(--dark-blue-1);
}

.value-card {
	padding: 2rem;
	transition: all 0.3s ease;
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-img-container {
	width: 140px;
	height: 140px;
	margin: 0 auto;
	border: 4px solid var(--light-blue-gray);
	border-radius: 50%;
	overflow: hidden;
}

.team-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-member {
	padding: 2rem;
	transition: all 0.3s ease;
}

.team-position {
	color: var(--medium-blue);
	font-weight: 600;
	margin-bottom: 1rem;
}

.team-bio {
	font-size: 0.9rem;
	color: var(--medium-gray-1);
}

.team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-img-container {
	width: 100px;
	height: 100px;
	margin: 0 auto;
	border: 3px solid var(--light-blue-gray);
	border-radius: 50%;
	overflow: hidden;
}

.testimonial-quote {
	position: relative;
	padding-left: 1.5rem;
}

.testimonial-quote i {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.3;
}

.rating {
	margin-top: 1rem;
}

.team-member {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 2rem;
}

.team-img-container {
	width: 140px;
	height: 140px;
	margin: 0 auto;
	border: 4px solid var(--light-blue-gray);
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.team-position {
	color: var(--medium-blue);
	font-weight: 600;
	margin-bottom: 1rem;
}

.team-bio {
	font-size: 0.9rem;
	color: var(--medium-gray-1);
	flex-grow: 1;
	display: flex;
	align-items: center;
}

.featured-image {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.image-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px 15px;
	font-size: 0.9rem;
}

.highlight-box {
	position: absolute;
	bottom: -20px;
	right: 20px;
	background: var(--dark-blue-1);
	color: white;
	padding: 15px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.highlight-box .year {
	display: block;
	font-weight: 700;
	font-size: 1.2rem;
}

.highlight-box .location {
	font-size: 0.9rem;
}

.location-badge {
	position: absolute;
	bottom: -10px;
	right: 20px;
	background: var(--dark-blue-1);
	color: white;
	padding: 8px 15px;
	border-radius: 4px;
	font-weight: 500;
	font-size: 0.9rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
	.team-img-container {
		width: 120px;
		height: 120px;
	}

	.value-card,
	.team-member {
		padding: 1.5rem;
	}
}

@media (max-width: 767px) {
	.safety-rule-number {
		width: 35px;
		height: 35px;
		font-size: 1.2rem;
		top: -10px;
		left: -10px;
	}

	.contact-method,
	.safety-rule,
	.issue-card,
	.involvement-card {
		padding: 1.5rem;
	}
}

@media (max-width: 991px) {
	.brand-showcase {
		height: 280px;
	}
}

@media (max-width: 767px) {
	.browse-tile {
		height: 250px;
	}

	.browse-content h3 {
		font-size: 1.5rem;
	}

	.browse-content p {
		font-size: 0.85rem;
		margin-bottom: 15px;
	}
}

@media (max-width: 991px) {
	.brand-hero-content-inner {
		padding: 3rem;
	}

	.brand-hero-image {
		height: 350px;
	}

	.brands-logo-row {
		justify-content: center;
		margin-top: 2rem;
	}
}

@media (max-width: 767px) {
	.brand-hero-title {
		font-size: 2rem;
	}

	.brand-hero-content-inner {
		padding: 2.5rem 1.5rem;
	}

	.brand-hero-image {
		height: 250px;
	}
}

@media (max-width: 991px) {
	.hero-fullbg {
		height: auto;
		padding: 60px 0;
	}

	.hero-content-box {
		margin-bottom: 30px;
	}

	.mega-menu {
		position: static;
		width: auto;
		box-shadow: none;
		padding: 0;
	}

	.mega-menu .row {
		margin: 0;
	}

	.mega-menu .col-md-4,
	.mega-menu .col-md-6 {
		padding: 0;
		margin-bottom: 1rem;
	}

	.mega-menu h5 {
		margin-left: 1rem;
		margin-top: 1rem;
	}

	.mega-menu .list-group-item {
		padding-left: 2rem;
	}

	.mega-menu .list-group-item:hover {
		transform: none;
	}
}

@media (max-width: 767px) {
	.hero-fullbg h1 {
		font-size: 2rem;
	}

	.hero-fullbg .tagline {
		font-size: 1rem;
	}

	.navbar-text {
		display: none;
	}

	.section-title {
		margin-bottom: 1.5rem;
	}

	section {
		padding: 2.5rem 0;
	}
}

@media (min-width: 992px) {

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

	.dropdown-menu.mega-menu {
		animation-duration: 0.2s;
		animation-fill-mode: both;
		animation-name: fadeInDown;
		transform-origin: top center;
	}

	@keyframes fadeInDown {
		from {
			opacity: 0;
			transform: translateY(10px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.dropdown-menu.mega-menu::before {
		content: '';
		position: absolute;
		top: -20px;
		left: 0;
		width: 100%;
		height: 20px;
		background: transparent;
	}

	.dropdown-menu.mega-menu {
		min-width: 700px;
	}

	.mega-menu-image {
		height: 100%;
		overflow: hidden;
		border-radius: 4px;
		position: relative;
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	}

	.mega-menu-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease;
	}

	.mega-menu-image:hover img {
		transform: scale(1.05);
	}

	.mega-menu-image-overlay {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 15px;
		background: linear-gradient(to top, rgba(0, 42, 72, 0.9), rgba(0, 42, 72, 0.2), transparent);
		color: white;
	}

	.mega-menu-image-overlay h5 {
		color: white;
		border-bottom: none;
		margin-bottom: 5px;
		font-size: 1.1rem;
	}

	.mega-menu-image-overlay p {
		margin-bottom: 10px;
		font-size: 0.9rem;
	}

	.navbar .nav-item.dropdown:hover .dropdown-toggle::after {
		transform: rotate(180deg);
	}
}

/* Product page specific styles */
.filter-sidebar {
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.filter-group {
	padding-bottom: 1rem;
	margin-bottom: 1.2rem;
	border-bottom: 1px solid var(--light-blue-gray);
}

.filter-group:last-child {
	border-bottom: none;
}

.filter-group h4 {
	font-size: 1rem;
	margin-bottom: 0.8rem;
	color: var(--dark-blue-1);
}

.form-check {
	margin-bottom: 0.4rem;
}

.form-check-label {
	color: var(--medium-gray-1);
	font-size: 0.95rem;
}

.price-range {
	padding: 0.5rem 0;
}

/* Override Bootstrap button styles to use our color scheme */
.btn-primary {
	background-color: var(--dark-blue-2);
	border-color: var(--dark-blue-2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	background-color: var(--dark-blue-3) !important;
	border-color: var(--dark-blue-3) !important;
}

.btn-outline-primary {
	color: var(--dark-blue-2);
	border-color: var(--dark-blue-2);
}

.btn-outline-primary:hover {
	background-color: var(--dark-blue-2);
	border-color: var(--dark-blue-2);
	color: white;
}

.product-meta span {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	background-color: var(--light-blue-gray);
	color: var(--dark-blue-1);
}

.product-meta .stock-status.in-stock {
	background-color: #e3f4e1;
	color: #2c662d;
}

.product-meta .stock-status.special-order {
	background-color: #ffefd9;
	color: #985e00;
}

/* Pagination styling */
.pagination .page-link {
	color: var(--dark-blue-2);
	border-color: var(--light-blue-gray);
}

.pagination .page-item.active .page-link {
	background-color: var(--dark-blue-2);
	border-color: var(--dark-blue-2);
	color: white;
}

.pagination .page-link:focus {
	box-shadow: 0 0 0 0.25rem rgba(0, 51, 91, 0.25);
}

.results-count {
	color: var(--medium-gray-1);
}

/* Improved product grid spacing */
.product-card .product-content {
	padding: 1.25rem;
	min-height: 12rem;
	/* Ensure consistent height */
}

.product-card .btn-outline-primary {
	/* bottom: 1.25rem; */
	font-size: 0.8rem;
	padding: 0.4rem 1.2rem;
}

/* Better filter sidebar spacing on mobile */
@media (max-width: 991px) {
	.filter-sidebar {
		margin-bottom: 2rem;
	}

	.filter-group {
		margin-bottom: 1rem;
	}

	/* Make filters horizontally scrollable on mobile */
	.filter-scroll-container {
		display: flex;
		overflow-x: auto;
		padding-bottom: 1rem;
		gap: 1rem;
		margin-bottom: 1.5rem;
	}

	.filter-scroll-item {
		flex: 0 0 auto;
		padding: 0.5rem 1rem;
		background-color: white;
		border: 1px solid var(--light-blue-gray);
		border-radius: 30px;
		white-space: nowrap;
	}
}
