@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,100..900;1,100..900&display=swap');

html {
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}

body {
	margin: 0px;
	padding: 0px;
	font-family: "Figtree", sans-serif;
	font-size: 14px;
	color: #444;
	overflow-x: hidden;
}

.container {
	max-width: 1508px;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none !important;
	color: #000;
}


.breadcrumb a,
.btn-link {
	color: #000 !important;
}

.btn-primary,
#content .btn-primary {
	background-color: var(--primary-bg) !important;
	color: var(--primary-color) !important;
	border-color: var(--primary-bg) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:active:focus,
.btn-primary:focus-visible {
	background-color: var(--primary-bg) !important;
	color: var(--primary-color) !important;
	border-color: var(--primary-bg) !important;
	opacity: 0.9;
}

.btn-secondary {
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
	border-color: var(--secondary-bg) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary:active:focus,
.btn-secondary:focus-visible {
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
	border-color: var(--secondary-bg) !important;
	opacity: 0.9;
}

.list-group-item.active {
	z-index: 2;
	color: var(--primary-color);
	background-color: var(--primary-bg);
	border-color: var(--primary-bg);
}

.list-group-item:hover {
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
	border-color: var(--secondary-bg) !important;
}

label.input-group-addon {
	padding-right: 15px;
}

.alert {
	position: relative;
}

.close {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 24px;
}

button:focus:not(:focus-visible) {
	outline: 0;
}

.accordion-button:focus {
	z-index: 3;
	outline: 0;
	box-shadow: var(--primary-bg);
}

.accordion-button:not(.collapsed) {
	color: var(--primary-color);
	background-color: var(--primary-bg);
	box-shadow: inset 0 calc(-1 * var(--primary-bg)) 0 var(--primary-bg);
}

h1 {
	font-size: 26px;
}

h2 {
	font-size: 22px;
}

h3 {
	font-size: 20px;
}

h4,
h5,
h6 {
	font-size: 18px;
}


:root {
	--inv-font: 'Figtree', sans-serif;
	--header-height: 80px;
	--top-bar-height: 40px;
}

#main-header {
	background: #fff;
	border-bottom: 1px solid #e5e5e5;
	position: relative;
	top: 0;
	z-index: 1020;
	/* Lower than backdrop/offcanvas (1040/1050) */
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s ease;
	will-change: transform;
}

#main-header.compact {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

#main-header.header-hidden {
	transform: translateY(-100%);
}

#main-header.header-sticky {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-top-bar {
	background: #000;
	color: #fff;
	height: var(--top-bar-height);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.header-top-bar a {
	color: #fff;
	text-decoration: underline;
	margin-left: 5px;
}

.header-main-container {
	height: var(--header-height);
}

.header-logo-section img {
	max-height: 40px;
	width: auto;
}

/* Nav Main Section */
.nav-main-section {
	padding: 0 40px;
}

.nav-main-section .navbar-nav {
	display: flex;
	flex-direction: row;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.nav-main-section .nav-link {
	font-family: var(--inv-font);
	font-size: 14px;
	font-weight: 400;
	color: #111;
	text-transform: uppercase;
	letter-spacing: -0.2px;
	padding: 0;
	position: relative;
}

.nav-main-section .nav-link:hover {
	color: #000;
}

/* Nav Main Section Dropdown Hover */
.nav-main-section .nav-item.dropdown:hover>.dropdown-menu {
	display: block !important;
	margin-top: 0;
	opacity: 1;
	visibility: visible;
}

/* Actions Section */
.header-actions-section {
	gap: 15px;
}

.action-btn {
	background: none;
	border: none;
	padding: 5px;
	font-size: 20px;
	color: #111;
	cursor: pointer;
	position: relative;
	transition: transform 0.2s ease;
}

.action-btn:hover {
	transform: scale(1.1);
}

.cart-badge-dot {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 8px;
	height: 8px;
	background: #ff4d4d;
	border-radius: 50%;
	display: none;
}

/* Offcanvas Refinement */
.offcanvas {
	font-family: var(--inv-font);
	border: none;
	box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

.offcanvas-header {
	padding: 25px;
	border-bottom: 1px solid #eee;
}

.offcanvas-title {
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 18px;
	text-transform: uppercase;
}

.offcanvas-body {
	padding: 25px;
}

/* Compact Header on Scroll */
#main-header.compact {
	height: auto;
}

#main-header.compact .header-main-container {
	height: 65px;
}

#main-header.compact .header-top-bar {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: height 0.3s ease, opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
	.header-main-container {
		height: 71px;
	}

	.header-logo-section {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.header-logo-section img {
		max-height: 32px;
	}

	.header-mobile-menu {
		display: block !important;
	}

	.nav-main-section {
		display: none !important;
	}
}

/* Mobile Menu Styles */
#offcanvasMenu .navbar-nav {
	flex-direction: column !important;
	gap: 0 !important;
	width: 100% !important;
	display: flex !important;
}

#offcanvasMenu .nav-link {
	padding: 16px 20px !important;
	border-bottom: 1px solid #f0f0f0 !important;
	width: 100% !important;
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	color: #171717 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.02em !important;
}

#offcanvasMenu .dropdown-toggle::after {
	display: none !important;
}

/* Force expand children in mobile drawer */
#offcanvasMenu .dropdown-menu,
#offcanvasMenu .nav-item .dropdown-menu,
#offcanvasMenu .navbar-nav .dropdown-menu {
	display: none;
	position: static !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 0 15px 0 !important;
	background: #f9f9f9 !important;
	margin: 0 !important;
	width: 100% !important;
	opacity: 1 !important;
	visibility: visible !important;
}

#offcanvasMenu .dropdown-item {
	padding: 10px 40px !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	color: #444 !important;
	background: transparent !important;
	white-space: normal !important;
	text-transform: none !important;
}

.mobile-menu-wrapper .dropdown-divider {
	display: none !important;
}

.mobile-menu-wrapper .nav-item:last-child .nav-link,
.mobile-menu-wrapper .nav-link[href*="sale"] {
	background: #000 !important;
	color: #fff !important;
	border-radius: 0 !important;
	padding: 18px 25px !important;
	margin-top: 10px;
}

.search-result-box {
	margin-top: 15px;
	background: transparent;
	display: none;
}

.live-search-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.live-search-item {
	display: flex;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.live-search-item:last-child {
	border-bottom: none;
}

.live-search-item a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #000;
	width: 100%;
}

.live-search-item img {
	width: 70px;
	height: 70px;
	object-fit: contain;
	margin-right: 12px;
	background: #fdfdfd;
	border: 1px solid #f1f1f1;
}

.live-search-item .product-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.live-search-item .product-name {
	font-weight: 700;
	color: #000;
	margin-bottom: 2px;
	font-size: 13px;
	line-height: 1.2;
}

.live-search-item .product-price {
	font-size: 12px !important;
	color: #666;
}

.live-search-view-all {
	padding-top: 15px;
	margin-top: 5px;
}

.live-search-view-all a {
	display: flex;
	justify-content: center;
	color: #fff;
	background: #000;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 12px;
	padding: 15px !important;
	letter-spacing: 0.5px;
}

.live-search-item .special-price {
	color: #d9534f;
	font-weight: bold;
	margin-right: 5px;
}

.live-search-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.live-search-item {
	border-bottom: 1px solid #f0f0f0;
}

.live-search-item:last-child {
	border-bottom: none;
}

.live-search-item a:hover {
	background: #f8f9fa;
}

.item-image img {
	border-radius: 4px;
	border: 1px solid #eee;
}

.item-name {
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 2px;
}

.item-price {
	font-size: 14px;
}

.item-price-old {
	margin-left: 8px;
}

/*#########################*/
/*#### CONSTRUCTION */
/*#########################*/
#content {
	background: #fff;
}

/*#########################*/
/*#### PRODUCT CARD RE-DESIGN (INVICTUS STYLE) */
/*#########################*/
:root {
	--inv-orange: #fd6d1c;
	--inv-text: #171717;
	--inv-gray: #707070;
}

.product-thumb {
	border: 1px solid #e5e5e5;
	margin-bottom: 30px;
	padding: 5px;
	transition: all 0.3s ease;
	background: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
	border-radius: 8px;
	overflow: hidden;
}

.product-thumb:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
	border-color: #ddd;
}

.product-thumb .image {
	position: relative;
	overflow: hidden;
	background: #fdfdfd;
	margin-bottom: 20px;
	width: 100%;
}

.product-thumb .image a {
	display: block;
}

.product-thumb .image .img-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	opacity: 0;
	transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
	z-index: 2;
}

.product-thumb .image img {
	transition: opacity 0.6s ease, transform 1s cubic-bezier(0.19, 1, 0.22, 1);
	width: 100%;
}

.product-thumb:hover .image .img-primary {
	opacity: 0;
	transform: scale(1.1);
}

.product-thumb:hover .image .img-hover {
	opacity: 1;
}

/* Secondary image simulation on hover if we have logic for it later, otherwise simple zoom */

.product-thumb .caption {
	padding: 0 10px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.product-thumb .caption h4 {
	margin: 0 0 8px 0;
	min-height: 40px;
	display: flex;
	align-items: center;
}

.product-thumb .caption h4 a {
	font-family: 'Figtree', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--inv-text);
	text-decoration: none;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-thumb .caption .price {
	font-family: 'Figtree', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--inv-text);
	margin-bottom: 4px;
	display: block;
}

.product-thumb .caption .price-new {
	font-weight: 400;
}

.product-thumb .caption .price-old {
	font-size: 14px;
	color: var(--inv-gray);
	text-decoration: line-through;
	margin-left: 8px;
	font-weight: 300;
}

.product-thumb .caption .installments {
	font-size: 13px;
	color: var(--inv-gray);
	font-weight: 300;
	margin-bottom: 15px;
}

/* Badges */
.product-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 10;
	background: var(--inv-orange);
	color: #fff;
	padding: 5px 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	pointer-events: none;
	border-radius: 2px;
}

/* Add to Cart Hover Button */
.product-thumb .button-group {
	margin: 20px auto;
	width: calc(100% - 40px);
	z-index: 11;
}

.btn-add-cart {
	background: #fff;
	color: #000;
	width: 100%;
	height: 45px;
	border: 1px solid #000;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	border-radius: 0;
}

.btn-add-cart:hover {
	background: #000;
	color: #fff;
}

/* Wishlist button hidden or moved to corner */
.btn-wishlist-corner {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	color: #ccc;
	font-size: 18px;
	z-index: 12;
	transition: color 0.2s;
	padding: 0;
}

.btn-wishlist-corner:hover {
	color: #000;
}

.module-products h3 {
	text-align: center;
	padding-top: 60px;
	padding-bottom: 40px;
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.btn-listing:hover {
	background: var(--secondary-bg);
	color: var(--secondary-color);
	border-color: var(--secondary-bg);
}

.module-products .product-thumb {
	text-align: center;
}

.module-products .product-thumb h4 {
	font-size: calc(1rem + .3vw) !important;
	text-align: center;
}

.price {
	font-size: 16px;
	font-weight: 700;
}

.price-new {
	color: #dc3545;
}

.price-old {
	color: #888;
	text-decoration: line-through;
	font-weight: 400;
}

.price-tax {
	font-weight: 400;

}

/* Consolidated with main product-thumb styles above */

.swiper-viewport {
	margin: 0 0 60px;
	background: #fff;
	z-index: 1;
	border: 4px solid #fff;
	border-radius: 4px;
	box-shadow: none;
	width: 100%;
	position: relative;
	overflow: visible;
}

.carousel.swiper-viewport {
	margin-bottom: 50px;
}

.swiper-container {
	padding-top: 15px;
	padding-left: 40px;
	padding-right: 40px;
}

.product-carousel .owl-stage {
	padding-top: 15px;
}

.product-carousel,
.carousel-module .owl-carousel.owl-theme {
	position: relative;
	padding-left: 10px;
	padding-right: 10px;
}

.owl-stage-outer {
	padding-left: 15px;
	padding-right: 15px;
}

#content .owl-carousel .owl-next,
#content .owl-carousel .owl-prev {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: var(--primary-bg);
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
	border: 1px solid var(--primary-bg);
	padding: 0px;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
}

#content .owl-carousel .owl-next:hover,
#content .owl-carousel .owl-prev:hover {
	background: var(--secondary-bg);
	color: var(--secondary-color);
	border-color: var(--secondary-bg);
}

#content .owl-carousel .owl-next {
	right: 0px;
}

#content .owl-carousel .owl-prev {
	left: 0px;
}

/*#########################*/
/*#### BREADCRUMBS */
/*#########################*/
ul.breadcrumb {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 15px 0 15px 0;
	font-size: 0.95rem;
	background-color: #f8f9fa;
	border-radius: 7px;
	padding: 0.75rem 1rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

ul.breadcrumb li {
	display: flex;
	align-items: center;
}

ul.breadcrumb li:not(:last-child)::after {
	content: "›";
	margin: 0 0.6rem;
	color: #6c757d;
	font-weight: bold;
}

ul.breadcrumb li a {
	color: #007bff;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

ul.breadcrumb li a:hover {
	color: #0056b3;
	text-decoration: underline;
}

ul.breadcrumb li:last-child a {
	color: #6c757d;
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}

/*#########################*/
/*#### CONTENTS */
/*#########################*/
.listing-inerface {
	border-top: 2px solid #dee2e6;
	border-bottom: 2px solid #dee2e6;
	padding: 15px 0 15px 0;
	margin-bottom: 15px;
	margin-top: 15px;
}

.refine-search {
	border-top: 2px solid #dee2e6;
	padding-top: 15px;
	margin-top: 15px;
}

.refine-search ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.refine-search ul li {
	display: block;
	margin: 0px;
	padding: 0px;
}

.refine-search ul li a {
	display: block;
	background-color: var(--primary-bg) !important;
	color: var(--primary-color) !important;
	transition: all 0.3s ease-in-out;
	padding: 5px 7px 5px 7px;
	margin-top: 5px;
	border-radius: 7px;
}

.refine-search ul li a:hover {
	background-color: var(--secondary-bg) !important;
	color: var(--secondary-color) !important;
}

.pagination-interface {
	margin: 15px 0;
}

.page-search-panel {
	background: #f8f9fb;
	padding: 15px;
	border-radius: 15px;
	margin-bottom: 25px;
}

.page-header {
	margin-top: 25px;
}

.nav-tabs .nav-link {
	border-radius: 0.5rem 0.5rem 0 0;
	margin-right: 0.25rem;
	padding: 0.5rem 1rem;
	background-color: #f8f9fa;
	border: 1px solid #dee2e6;
	color: #495057;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-tabs .nav-link:hover {
	background-color: #e9ecef;
	color: var(--primary-color);
}

.nav-tabs .nav-link.active {
	background-color: var(--primary-bg) !important;
	color: var(--primary-color) !important;
	border-color: #dee2e6 #dee2e6 #fff;
}

.tab-content {
	border: 1px solid #dee2e6;
	border-top: none;
	padding: 1rem;
	border-radius: 0 0 0.5rem 0.5rem;
	background-color: #fff;
}

.tempus-dominus-widget {
	border-radius: 0.5rem;
	z-index: 9999 !important;
}

.related-products {
	margin-top: 25px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
	.listing-inerface .input-group {
		flex-wrap: nowrap;
	}

	.listing-inerface .input-group>.input-group-text,
	.listing-inerface .input-group>.form-select {
		flex: 0 0 auto;
		width: auto;
	}
}

@media (max-width: 767.98px) {
	#button-cart {
		margin-top: 0.5rem;
	}

	.listing-inerface .input-group {
		margin-bottom: 0.75rem;
		/* lub ile chcesz */
	}
}

/*#########################*/
/*#### PODUCT GALLERY */
/*#########################*/
#product-gallery {
	max-width: 100%;
}

#product-gallery .owl-nav {
	display: block !important;
}

#main-image {
	border-radius: 0.5rem;
	max-height: 600px;
	object-fit: contain;
}

.gallery-thumb {
	cursor: pointer;
	transition: border-color 0.3s;
}

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

.owl-carousel .item {
	padding: 0 4px;
}

.thumbnail-container {
	padding-left: 60px;
	padding-right: 60px;
	position: relative;
	margin-bottom: 25px;
}

#content .thumbnail-container .owl-carousel .owl-prev {
	left: -60px;
}

#content .thumbnail-container .owl-carousel .owl-next {
	right: -60px;
}

/*#########################*/
/*#### FOOTER */
/*#########################*/
footer {
	background: var(--header-bg-solid);
	color: var(--header-color);
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 25px;
}

footer ul li a {
	display: block;
}

footer ul li a,
footer a {
	padding: 4px 7px 4px 7px;
	margin-left: 3px;
	margin-bottom: 3px;
	border-radius: 7px;
}

footer a[target="_blank"] {
	opacity: 0.8;
}

footer ul li a,
footer a,
footer h5 {
	color: var(--header-color);
	transition: all 0.3s ease-in-out;
}

footer ul li a:hover,
footer a:hover {
	background: var(--secondary-bg);
	color: var(--secondary-color);
}

/*#########################*/
/*#### LOGIN PAGE */
/*#########################*/
.login-wrapper {
	min-height: calc(100vh - 300px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 15px;
	background: #fdfdfd;
}

.login-card {
	background: #fff;
	width: 100%;
	max-width: 450px;
	padding: 50px 40px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.login-card .logo-login {
	margin-bottom: 40px;
}

.login-card .logo-login img {
	max-height: 40px;
	width: auto;
}

.login-card h2 {
	font-weight: 700;
	font-size: 26px;
	margin-bottom: 10px;
	color: #000;
	text-transform: none;
}

.login-card .subtitle {
	color: #777;
	font-size: 14px;
	margin-bottom: 30px;
}

.login-card label {
	display: block;
	text-align: left;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.login-card .form-control {
	height: 52px;
	border: 1px solid #000;
	border-radius: 4px;
	font-size: 15px;
	padding: 0 15px;
	margin-bottom: 20px;
	background: transparent;
	transition: all 0.2s;
}

.login-card .form-control:focus {
	box-shadow: 0 0 0 1px #000;
	border-color: #000;
}

.btn-login-inv {
	background: #000;
	color: #fff;
	width: 100%;
	height: 52px;
	border: none;
	border-radius: 4px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 14px;
	margin-top: 10px;
	transition: opacity 0.3s;
}

.btn-login-inv:hover {
	opacity: 0.8;
	color: #fff;
}

.login-card .forgotten {
	display: block;
	margin-top: 15px;
	font-size: 13px;
	color: #666;
	text-decoration: underline !important;
}

.login-footer-promo {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #eee;
}

.login-footer-promo p {
	font-size: 14px;
	color: #444;
	margin-bottom: 15px;
}

.btn-outline-login {
	display: inline-block;
	border: 1px solid #000;
	color: #000;
	padding: 12px 30px;
	border-radius: 4px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	text-decoration: none !important;
	transition: all 0.3s;
}

.btn-outline-login:hover {
	background: #000;
	color: #fff;
}

/*#########################*/
/*#### FULLSCREEN LAYOUT  */
/*#########################*/

/* Home */
#common-home {
	padding: 0;
	margin: 0;
}

/* Slideshow Fullwidth */
.slideshow-fullwidth {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.slideshow-fullwidth .slideshow-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.slideshow-fullwidth .slick-list {
	line-height: 0;
}

.slideshow-fullwidth .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.slideshow-fullwidth .slick-prev {
	left: 20px;
}

.slideshow-fullwidth .slick-next {
	right: 20px;
}

.slideshow-nav {
	pointer-events: auto;
	background: rgba(0,0,0,0.35);
	color: #fff;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	transition: background 0.3s;
	border: none;
	padding: 0;
}

.slideshow-nav::before {
	content: none !important;
}

.slideshow-nav:hover, .slideshow-nav:focus {
	background: rgba(0,0,0,0.7);
	color: #fff;
}

.slideshow-fullwidth .slick-dots {
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

.slideshow-fullwidth .slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.slideshow-fullwidth .slick-dots li button {
	width: 12px;
	height: 12px;
	background: rgba(255,255,255,0.5);
	border: none;
	padding: 0;
	border-radius: 50%;
	transition: background 0.3s;
	font-size: 0;
	color: transparent;
}

.slideshow-fullwidth .slick-dots li button::before {
	content: none !important;
}

.slideshow-fullwidth .slick-dots li.slick-active button {
	background: #fff;
}

/* Banner Fullwidth */
.banner-fullwidth {
	width: 100%;
	overflow: hidden;
}

.banner-fullwidth .banner-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.banner-fullwidth .slick-list {
	line-height: 0;
}

/* Sections Fullwidth */


@media (max-width: 768px) {
	.section-fullwidth {
		padding: 40px 15px;
	}
}

.section-fullwidth > h3 {
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
	margin-bottom: 40px;
	color: #000;
}

/* Footer Invictus Style */
footer {
	background: #000;
	color: #aaa;
	padding: 60px 0 40px;
}

footer h5 {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 20px;
}

footer ul li {
	margin-bottom: 8px;
}

footer ul li a {
	color: #aaa;
	font-size: 13px;
	transition: color 0.3s;
}

footer ul li a:hover {
	color: #fff;
}

/*#########################*/
/*#### CHECKOUT PAGE */
/*#########################*/
.checkout-wrapper {
	background: #fff;
	min-height: 100vh;
}

.checkout-main {
	padding: 40px 0;
}

.checkout-header-minimal {
	border-bottom: 1px solid #eee;
	padding: 20px 0;
	margin-bottom: 40px;
}

.checkout-header-minimal .logo-checkout img {
	max-height: 35px;
}

.checkout-section-title {
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 25px;
	color: #000;
}

/* Steps Styling */
.checkout-steps {
	max-width: 600px;
	margin: 0 auto 0 0;
}

.checkout-step {
	margin-bottom: 50px;
}

.checkout-step-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.checkout-step-header h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0;
}

.checkout-step-body {
	padding-left: 0;
}

/* Sidebar Summary */
.checkout-sidebar {
	height: 100%;
	min-height: 100vh;
	padding: 60px 40px;
	border-left: 1px solid #eee;
}

.checkout-summary-card {
	position: sticky;
	top: 100px;
}

.summary-product-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	gap: 15px;
}

.summary-product-image {
	width: 65px;
	height: 65px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	position: relative;
	flex-shrink: 0;
}

.summary-product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.summary-product-qty {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #666;
	color: #fff;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.summary-product-info {
	flex-grow: 1;
}

.summary-product-name {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 2px;
	display: block;
}

.summary-product-variant {
	font-size: 12px;
	color: #777;
}

.summary-product-price {
	font-size: 13px;
	font-weight: 600;
}

.summary-totals {
	margin-top: 30px;
	padding-top: 25px;
	border-top: 1px solid #e5e5e5;
}

.summary-total-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	font-size: 14px;
}

.summary-total-row.main-total {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e5e5e5;
	font-size: 20px;
	font-weight: 700;
}

.summary-total-row .label {
	color: #666;
}

.summary-total-row .value {
	color: #000;
	font-weight: 600;
}

.main-total .label {
	color: #000;
}

/* Coupon section */
.summary-coupon {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
}

.summary-coupon .form-control {
	height: 45px;
}

.btn-apply {
	background: #eee;
	color: #333;
	border: none;
	padding: 0 20px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 13px;
}

/* Forms */
.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.form-grid-full {
	grid-column: span 2;
}

.checkout-step .form-control {
	height: 50px;
	border: 1px solid #d1d1d1;
	font-size: 14px;
}

.checkout-step .form-control:focus {
	border-color: #000;
	box-shadow: none;
}

/* Slick Carousel Spacing (Grid System for Modules) */
.slick-slide {
	margin: 0 10px;
}
.slick-list {
	margin: 0 -10px;
}

/* Remove spacing for fullwidth banners/slideshows */
.slideshow-fullwidth .slick-slide, .slideshow-fullwidth .slick-list,
.banner-fullwidth .slick-slide, .banner-fullwidth .slick-list {
	margin: 0;
}

/* Slick arrow customization for products and carousel module */
.slick-carousel .slick-prev, .slick-carousel .slick-next {
	width: 40px;
	height: 40px;
	background: #fff;
	border: 1px solid #eee;
	color: #000;
	border-radius: 50%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: all 0.3s;
	font-size: 16px;
}

.slick-carousel .slick-prev:hover, .slick-carousel .slick-next:hover {
	background: #000;
	border-color: #000;
}

.slick-carousel .slick-prev i, .slick-carousel .slick-next i {
	color: inherit;
}

.slick-carousel .slick-prev:hover i, .slick-carousel .slick-next:hover i {
	color: #fff;
}

.slick-carousel .slick-prev::before, .slick-carousel .slick-next::before {
	content: none !important;
}

.slick-carousel .slick-prev {
	left: 0;
}

.slick-carousel .slick-next {
	right: 0;
}

/* Responsive arrows for products module */
@media (max-width: 991px) {
	.slick-carousel .slick-prev { left: 0; }
	.slick-carousel .slick-next { right: 0; }
}

/* Checkout specific overrides - header/footer hidden via JS */

.checkout-wrapper {
    background-color: #fff;
    min-height: 100vh;
}
.checkout-main {
    padding: 60px 0 100px 0;
}
.checkout-sidebar {
    height: 100%;
    min-height: 100vh;
    padding: 60px 40px;
    border-left: 1px solid #eee;
}

.checkout-steps .accordion-item {
    border: none;
    margin-bottom: 3.5rem;
    background: transparent;
}
.checkout-steps .accordion-header {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}
.checkout-steps .accordion-button {
    background: transparent !important;
    color: #000 !important;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0 0 0.75rem 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    box-shadow: none !important;
    pointer-events: none;
    text-transform: capitalize;
}
.checkout-steps .accordion-button::after {
    display: none;
}
.checkout-steps .accordion-body {
    padding: 1rem 0;
}

/* Invictus Style Inputs */
.form-floating > .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 58px;
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > label {
    padding: 1rem 0.75rem;
    color: #888;
}
.form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 1px #000;
}

/* Summary Details */
.summary-product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.summary-product-image {
    position: relative;
    width: 64px;
    height: 80px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex-shrink: 0;
}
.summary-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.summary-product-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #666;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.summary-product-info {
    flex-grow: 1;
}
.summary-product-name {
    font-weight: 600;
    display: block;
    font-size: 14px;
}
.summary-product-price {
    font-weight: 600;
    font-size: 14px;
}
.summary-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}
.summary-total-row.main-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
.summary-total-row.main-total .label::before {
    content: 'Total';
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #888;
    text-transform: uppercase;
}

/* Address Card */
.address-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #fafafa;
    position: relative;
}
.address-card strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Checkout Stepper UI - Invictus Style */

.checkout-minimal-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.checkout-minimal-header .logo-checkout img {
    max-height: 40px;
}

.checkout-minimal-header .security-badge {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-minimal-header .security-badge i {
    color: #28a745;
    font-size: 18px;
}

.checkout-steps-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    padding: 0 2%;
}

.checkout-steps-nav::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.checkout-step-item {
    position: relative;
    z-index: 2;
    background: #fff;
    text-align: center;
    width: 28px;
    padding: 0 5px;
}

.checkout-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #888;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    font-size: 12px;
}

.checkout-step-item.active .checkout-step-dot {
    background: #000;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.checkout-step-item.completed .checkout-step-dot {
    background: #28a745;
    color: #fff;
}

.checkout-step-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.checkout-step-item.active .checkout-step-label {
    color: #000;
}

.checkout-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.checkout-card.active {
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.checkout-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkout-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-card-header h3 i {
    font-size: 16px;
    color: #aaa;
}

.checkout-card-edit {
    font-size: 12px;
    font-weight: 700;
    color: #dc6d1c;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.logged-info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #fafafa;
    border-radius: 4px;
    font-size: 14px;
}

.logged-user-email {
    font-weight: 600;
    color: #333;
}

.summary-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    position: sticky;
    top: 20px;
}

.summary-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.summary-product-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.summary-product-image {
    width: 60px;
    height: 75px;
    position: relative;
    background: #fdfdfd;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.summary-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.summary-product-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-product-info {
    flex-grow: 1;
}

.summary-product-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.summary-product-price {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.summary-totals {
    margin-top: 20px;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.summary-total-row.main-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #eee;
    font-size: 22px;
    font-weight: 900;
    color: #000;
}

.checkout-footer-info {
    margin-top: 40px;
    text-align: center;
    color: #999;
    font-size: 12px;
}

.checkout-btn-next {
    background: #000;
    color: #fff;
    border: none;
    padding: 18px;
    width: 100%;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-top: 10px;
    transition: all 0.2s;
}

.checkout-btn-next:hover {
    background: #333;
}

/* Fix for floating labels in checkout */
.form-floating > label {
    font-size: 13px;
    color: #999;
}

.checkout-wrapper {
    background: #fdfdfd;
    min-height: 100vh;
    padding-bottom: 60px;
}

@media (max-width: 991px) {
    .checkout-sidebar {
        margin-top: 30px;
    }
}

/* --- INVICTUS UNIFIED PRODUCT GRID & CARDS --- */
.product-grid-inv {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    max-width: 1610px;
    margin: 0 auto;
}

.product-item-inv {
    position: relative;
    background: #fff;
    font-family: 'Figtree', sans-serif;
}

.product-item-inv .image-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #fdfdfd;
    margin-bottom: 20px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
}

.product-item-inv .image-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-item-inv .image-box img.img-primary {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.6s ease;
}

.product-item-inv .image-box img.img-hover {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.8s ease;
    z-index: 2;
}

.product-item-inv:hover .image-box img.img-primary { opacity: 0; }
.product-item-inv:hover .image-box img.img-hover { opacity: 1; transform: scale(1.05); }

.product-item-inv .badge-inv {
    position: absolute;
    top: 15px; left: 15px;
    background: #000; color: #fff;
    font-size: 11px; font-weight: 800;
    padding: 5px 10px; text-transform: uppercase;
    z-index: 5;
    letter-spacing: 1px;
}

.product-item-inv .btn-wishlist {
    position: absolute;
    top: 15px; right: 15px;
    background: transparent; border: none;
    font-size: 20px; color: #ccc;
    z-index: 5;
    transition: color 0.3s;
}

.product-item-inv .btn-wishlist:hover { color: #000; }


.product-item-inv .info-box { text-align: center; }
.product-item-inv .name {
    font-size: 14px; font-weight: 700; color: #000;
    margin-bottom: 12px; display: block;
    line-height: 1.4; height: 40px; overflow: hidden;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-item-inv .price-box { display: flex; flex-direction: column; align-items: center; }
.product-item-inv .price { font-size: 19px; font-weight: 900; color: #000; }
.product-item-inv .price-old { text-decoration: line-through; color: #aaa; font-size: 14px; font-weight: 500; margin-left: 8px; vertical-align: middle; }
.product-item-inv .installments { font-size: 13px; color: #888; margin-top: 6px; font-weight: 600; }

@media (max-width: 1200px) {
    .product-grid-inv { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .product-grid-inv { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .product-item-inv .name { font-size: 12px; height: 34px; }
    .product-item-inv .price { font-size: 16px; }
    .product-item-inv .btn-add-inv { padding: 12px; font-size: 11px; }
}