/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Cignet - Jewellery Store eCommerce HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Key Benefits Box css
06. Best Sellers css
07. Our Products css
08. Intro Video css
09. Our Collection css
10. Our Promise css
11. Our Testimonials css
12. Our FAQ's css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Blog Archive css
17. Blog Single css
18. Products Page css
19. Product Single css
20. Cart Page css
21. Order Received Page css
22. Checkout Page css
23. Account Dashboard Page css
24. Account Order Page css
25. Account Order View Page css
26. Account Download Page css
27. Account Address Page css
28. Account Addresses Page css
29.	Account Details Page css
30. Account Wishlist Page css
31. Login Page css
32. Forgot Password css
33. Privacy Policy Page css
34. Term Condition Page css
35. Refund Return Policy css
36. Cancellation Policy css
37. Delivery Policy Page css
38. Testimonials Page css
39. Faqs Page css
40. Contact Us Page css
41. 404 Error Page css
42. Responsive css
-------------------------------------------------------------------------------------- */

/****************************************/
/*** 	   01. Global Variables 	  ***/
/****************************************/

:root {
	--primary-color: #2F3D38;
	--secondary-color: #F5F5F5;
	--bg-color: #FFFFFF;
	--text-color: #5e4149;
	--accent-color: #9c1137;
	--white-color: #FFFFFF;
	--black-color: #000000;
	--divider-color: #2F3D381A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Roboto", sans-serif;
	--accent-font: "Playfair Display", serif;
}

/****************************************/
/*** 	     02. General css		  ***/
/****************************************/

.bg-color {
	background-color: #9c1137;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

body {
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background-color: var(--bg-color);
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--white-color);
}

::selection {
	color: var(--white-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.33em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--accent-font);
	font-weight: 400;
	line-height: 1.2em;
	color: var(--primary-color);
	margin: 0;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 12px;
	font-weight: 500;
	line-height: 1em;
	text-transform: uppercase;
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--accent-color);
	border-radius: 4px;
	padding: 14px 30px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	color: var(--white-color);
}

.btn-default::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: 50%;
	opacity: 0;
	background-color: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after {
	left: 0;
	right: 0;
	opacity: 1;
}

.btn-default.btn-highlighted {
	color: var(--white-color);
	border-color: var(--white-color);
}

.btn-default.btn-highlighted:after {
	background-color: var(--white-color);
}

.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.readmore-btn {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	line-height: normal;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-color);
	padding-right: 22px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0px;
	width: 12px;
	height: 12px;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	position: relative;
	height: 100px;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 50px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.light-section {
	background-color: var(--secondary-color);
}

.dark-section {
	background-color: var(--primary-color);
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title.section-title-center {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title .section-sub-title {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1.286em;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 7px 16px 7px 32px;
	margin-bottom: 15px;
}

.section-title .section-sub-title::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.section-title.section-sub-heading,
.section-title.section-sub-heading .section-sub-title {
	margin-bottom: 0;
}

.section-title h1 {
	font-size: 60px;
	line-height: 1.2em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2em;
	margin-bottom: 0;
	cursor: none;
}

.section-title p {
	margin-top: 15px;
	margin-bottom: 0;
}

.dark-section .section-title .section-sub-title {
	border-color: var(--dark-divider-color);
	color: var(--white-color);
}

.dark-section .section-title .section-sub-title:before {
	background: var(--white-color);
}

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

.h3.hidden {
	margin: 0;
}

/****************************************/
/**** 	      03. Header css		 ****/
/****************************************/

.topbar {
	background: var(--accent-color);
	padding: 10px 0;
}

.topbar-social-list ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.topbar-social-list ul li a i {
	font-size: 16px;
	color: var(--white-color);
}

.topbar-info-content {
	text-align: center;
}

.topbar-info-content p {
	position: relative;
	display: inline-block;
	font-weight: 500;
	line-height: 1.25em;
	color: var(--white-color);
	padding: 0 25px;
	margin: 0;
}

.topbar-info-content p::before,
.topbar-info-content p::after {
	content: '';
	position: absolute;
	top: 2px;
	background: url('../images/icon-topbar-sparkle.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 15px;
	height: 14px;
}

.topbar-info-content p::before {
	left: 0;
}

.topbar-info-content p::after {
	right: 0;
}

.topbar-currency-list select.form-select {
	width: auto;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--white-color);
	background-color: transparent;
	background-position: right center;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 0 18px 0 0;
	background-image: url('../images/dropdown-arrow-white.svg');
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 12px auto;
	margin-left: auto;
}

.topbar-currency-list select.form-select option {
	color: var(--primary-color);
}

header.main-header {
	position: relative;
	background: var(--bg-color);
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	border-bottom: 1px solid var(--divider-color);
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(0);
	background: var(--bg-color);
}

.navbar {
	padding: 0;
	align-items: center;
	flex-wrap: wrap;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.navbar-brand img {
	max-width: 250px;
}

.main-menu {
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul .nav-item {
	position: relative;
	margin: 0 20px;
	padding: 17px 0;
}

.main-menu ul .nav-item .nav-link {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
	padding: 8px 0px !important;
	color: var(--primary-color);
	background: transparent;
	border-radius: 0px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul .nav-item.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 16px;
	vertical-align: middle;
	margin-left: 8px;
}

.main-menu ul .nav-item .nav-link:hover,
.main-menu ul .nav-item .nav-link:focus {
	color: var(--accent-color);
}

.main-menu ul .nav-item:first-child {
	margin-left: 0;
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 0 0 4px 4px;
	position: absolute;
	left: 0;
	top: calc(100% + 1px);
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li>ul {
	padding: 5px 0;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
}

.main-menu ul .nav-item.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul .nav-item {
	margin: 0;
	padding: 0;
}

.main-menu ul ul .nav-item .nav-link {
	font-size: 16px;
	color: var(--white-color);
	padding: 9px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul .nav-item .nav-link:hover,
.main-menu ul ul .nav-item .nav-link:focus {
	color: var(--white-color);
	background-color: transparent;
	padding: 9px 20px 9px 23px !important;
}

.main-menu ul .nav-item.highlighted-menu {
	display: none;
}

.header-action-details ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.header-action-details ul li button {
	background: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	padding: 0;
}

.header-action-details ul li button:hover {
	background: transparent;
}

.header-action-details .modal {
	height: 100vh;
	background: var(--divider-color);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding-right: 0 !important;
	overflow: hidden;
}

.modal-backdrop.show {
	background: transparent;
}

.header-action-details .modal-dialog {
	max-width: 500px;
}

.header-action-details .modal-content {
	position: relative;
	background: var(--secondary-color);
	border-radius: 4px;
	border: none;
	padding: 20px;
	z-index: 2;
}

.modal-open {
	padding: 0 !important;
}

.modal-backdrop {
	z-index: 0;
}

.modal-search-form {
	display: flex;
	align-items: center;
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	padding-right: 10px;
}

.modal-search-form .form-control {
	width: auto;
	flex: 1;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--primary-color);
	background: transparent;
	padding: 12px 20px;
	border: none;
	box-shadow: none;
	outline: none;
}

.modal-search-form .modal-search-btn i {
	font-size: 20px;
	color: var(--primary-color);
}

.header-action-details ul li button img,
.header-action-details ul li a img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.header-action-details ul li button:hover img,
.header-action-details ul li a:hover img {
	transform: scale(1.06);
}

.header-action-details .modal .close {
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	margin: -15px -15px 10px auto;
}

.header-action-details .modal .close i {
	font-size: 12px;
	color: var(--primary-color);
}

.main-menu .dropdown-menu {
	width: 100%;
	left: 0;
	right: 0;
	display: block;
	top: calc(100% + 1px);
	transform: scale(1, 0);
	border-radius: 0;
	background: var(--white-color);
	padding: 50px;
	opacity: 0;
	border: none;
	box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.05);
	visibility: hidden;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.main-menu .mega-menu:hover>.dropdown-menu {
	transform: scale(1, 1);
}

.dropdown-menu[data-bs-popper] {
	margin-top: 0;
}

.main-menu .mega-menu-box {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
	padding: 0 15px;
}

.mega-menu-links-box {
	width: calc(40% - 25px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px 50px;
}

.mega-menu-link {
	width: calc(50% - 25px);
}

.mega-menu-link h2 {
	font-size: 20px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--divider-color);
}

.main-menu .mega-menu-link ul {
	position: initial;
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	transform-origin: initial;
	width: 100%;
	border-radius: 0;
	background: transparent;
}

.main-menu .mega-menu-link ul li {
	margin-bottom: 10px;
}

.main-menu .mega-menu-link ul li:last-child {
	margin-bottom: 0px;
}

.main-menu .mega-menu-link ul li a {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--text-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu .mega-menu-link ul li a:hover {
	color: var(--primary-color);
}

.mega-menu-items-list {
	width: calc(60% - 25px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.mega-menu-item {
	width: calc(33.33% - 20px);
}

.mega-menu-item-image {
	margin-bottom: 15px;
}

.main-menu .mega-menu-item-image a {
	display: block;
	border-radius: 4px;
	overflow: hidden;
}

.mega-menu-item-image figure {
	display: block;
	border-radius: 4px;
}

.mega-menu-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.781;
	object-fit: cover;
	border-radius: 4px;
}

.mega-menu-item-content h2 {
	font-size: 20px;
}

.main-menu .mega-menu-item-content h2 a {
	color: inherit;
}

.mega-menu-item-content p {
	margin: 5px 0 0 0;
}

.mega-menu-item.big-offer-box {
	position: relative;
	align-content: end;
	border-radius: 4px;
	padding: 30px;
	overflow: hidden;
}

.mega-menu-item.big-offer-box .mega-menu-item-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.mega-menu-item.big-offer-box .mega-menu-item-image::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, transparent 30.3%, var(--accent-color) 86.06%);
	border-radius: 4px;
	width: 100%;
	height: 100%;
}

.mega-menu-item.big-offer-box .mega-menu-item-image figure,
.mega-menu-item.big-offer-box .mega-menu-item-image figure img {
	height: 100%;
}

.mega-menu-item.big-offer-box .mega-menu-item-content {
	position: relative;
	z-index: 2;
}

.mega-menu-item.big-offer-box .mega-menu-item-content span {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--white-color);
	margin-bottom: 5px;
}

.mega-menu-item.big-offer-box .mega-menu-item-content h2 {
	font-size: 30px;
	text-transform: uppercase;
	color: var(--white-color);
}

.mega-menu-item.big-offer-box .mega-menu-item-content h3 {
	font-family: var(--default-font);
	font-size: 16px;
	color: var(--white-color);
	margin-top: 5px;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	position: relative;
	top: 0;
}

.slicknav_btn {
	background: var(--primary-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 4px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 4px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--primary-color);
}

.slicknav_menu ul.slicknav_nav {
	padding: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--white-color);
}

.slicknav_menu ul ul li a {
	padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
	color: var(--white-color);
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--white-color);
}

/****************************************/
/***   		    04. Hero css	      ***/
/****************************************/

.hero {
	position: relative;
	overflow: hidden;
}

.hero-slider {
	background-image: none !important;
}

.hero-slide {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	min-height: 90vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-swiper {
	width: 100%;
}

.hero-swiper .swiper-pagination {
	bottom: 30px;
}

.hero-swiper .swiper-pagination-bullet {
	background: var(--white-color);
	opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
	opacity: 1;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
	color: var(--white-color);
	opacity: 0.8;
	transition: all 0.3s ease;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
	opacity: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	margin-right: 50px;
	position: relative;
}

.hero-content-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.hero-content-list ul li {
	width: calc(50% - 10px);
	position: relative;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 35px;
}

.hero-content-list ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-image: url('../images/icon-sparkel.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero-content-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
	/* margin-top: 80px; */
}

/* Hero Stats */

.hero-stats {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.hero-stat-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hero-stat-number {
	font-family: var(--accent-font);
	font-size: 32px;
	font-weight: 600;
	color: var(--white-color);
	line-height: 1;
}

.hero-stat-label {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.75);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hero-stat-divider {
	width: 1px;
	height: 40px;
	background: rgba(255, 255, 255, 0.25);
}

.google-rating-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.google-rating-box .google-rating-logo img {
	width: 100%;
	max-width: 50px;
}

.google-rating-content {
	width: calc(100% - 65px);
}

.google-rating-star {
	display: block;
	margin-bottom: 10px;
}

.google-rating-star i {
	font-size: 16px;
	color: var(--white-color);
}

.google-rating-content h2 {
	font-family: var(--default-font);
	font-size: 22px;
	font-weight: 600;
	color: var(--white-color);
}

/****************************************/
/***   	 05. Key Benefits Box css     ***/
/****************************************/

.key-benefit-box {
	background: var(--secondary-color);
	padding: 40px 0;
}

.key-benefit-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.key-benefit-item {
	width: calc(25% - 22.5px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.key-benefit-item .icon-box img {
	width: 100%;
	max-width: 60px;
}

.key-benefit-item-content {
	width: calc(100% - 75px);
}

.key-benefit-item-content h3 {
	font-size: 20px;
}

.key-benefit-item-content p {
	line-height: normal;
	margin: 10px 0 0;
}

/****************************************/
/***       06. Best Sellers css       ***/
/****************************************/

.our-best-sellers {
	padding: 120px 0 60px;
}

.top-selling-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.top-selling-item {
	width: calc(16.66% - 25px);
	text-align: center;
}

.top-selling-item-image {
	max-width: 200px;
	border-radius: 50%;
	margin: 0 auto 30px;
	overflow: hidden;
}

.top-selling-item-image a {
	border-radius: 50%;
	cursor: none;
}

.top-selling-item-image figure {
	display: block;
	border-radius: 50%;
}

.top-selling-item-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	transition: all 0.6s ease-in-out;
}

.top-selling-item:hover .top-selling-item-image img {
	transform: scale(1.06);
}

.top-selling-item-content h3 {
	font-size: 20px;
}

.top-selling-item-content h3 a {
	color: inherit;
}

.top-offer-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 80px;
}

.top-offer-item {
	width: calc(33.33% - 20px);
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	background-color: var(--secondary-color);
	border-radius: 4px;
	padding: 30px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.top-offer-item:hover {
	transform: translateY(-5px);
}

.top-offer-item-content {
	width: calc(100% - 170px);
	align-content: center;
}

.top-offer-item-content .top-offer-item-title {
	display: block;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	line-height: normal;
	color: var(--accent-color);
	margin-bottom: 15px;
}

.top-offer-item-content h3 {
	font-size: 24px;
	line-height: 1.3em;
}

.top-offer-item-btn {
	margin-top: 40px;
}

.top-offer-item-image {
	margin: -30px -30px -30px 0;
	align-content: end;
}

.top-offer-item-image figure {
	display: block;
}

.top-offer-item-image img {
	width: 100%;
	max-width: 190px;
	border-radius: 4px 4px 0 0;
}

/****************************************/
/***       07. Our Products css       ***/
/****************************************/

.our-products {
	padding: 60px 0 120px;
}

.product-item-header {
	position: relative;
	border-radius: 4px;
	margin-bottom: 20px;
	overflow: hidden;
}

.product-item-image figure {
	display: block;
	overflow: hidden;
}

.product-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: all 0.8s ease-in-out;
}

.product-item:hover .product-item-image figure img {
	transform: scale(1.03);
}

.product-item-action {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}

.product-item:hover .product-item-action {
	transform: translateY(-20px);
	opacity: 1;
	visibility: visible;
}

.product-item-action ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-item-action ul li a {
	height: 36px;
	width: 36px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.product-item-action ul li a:hover {
	background-color: var(--primary-color);
}

.product-item-action ul li a img {
	width: 100%;
	max-width: 18px;
	transition: all 0.4s ease-in-out;
}

.product-item-action ul li a:hover img {
	filter: brightness(0) invert(1);
}

.product-item-content .product-item-title {
	font-size: 20px;
	line-height: 1.4em;
}

.product-item-content .product-item-title a {
	color: inherit;
}

.product-item-price {
	margin-top: 10px;
}

.product-item-price h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	font-family: var(--default-font);
}

.product-item-price h3 span {
	font-size: 12px;
	text-decoration: line-through;
	line-height: normal;
	color: var(--text-color);
	opacity: 50%;
	margin-left: 5px;
}

.product-slider-btn .product-slider-button-prev,
.product-slider-btn .product-slider-button-next {
	position: absolute;
	top: 130px;
	width: 50px;
	height: 50px;
	background-color: var(--white-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.product-slider-button-prev {
	left: 10px;
}

.product-slider-button-next {
	right: 10px;
}

.product-slider-button-prev:hover,
.product-slider-button-next:hover {
	background-color: var(--primary-color);
}

.product-slider-button-prev::before,
.product-slider-button-next::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	height: 16px;
	width: 16px;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.product-slider-btn .product-slider-button-prev::before {
	transform: translate(-50%, -50%) rotate(225deg);
}

.product-slider-button-prev:hover:before,
.product-slider-button-next:hover:before {
	filter: brightness(0) invert(1);
}

/****************************************/
/***       08. Intro Video css        ***/
/****************************************/

.intro-video {
	position: relative;
	min-height: 780px;
	align-content: end;
	padding: 60px 0;
	overflow: hidden;
}

.intro-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	will-change: transform;
}

.intro-bg-video:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.80) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
	z-index: 1;
}

.intro-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.intro-video-content-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.video-play-button {
	display: inline-flex;
	align-items: center;
	z-index: 1;
}

.video-play-button a {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: none;
	gap: 10px;
}

.video-play-button a span {
	position: relative;
	width: 85px;
	height: 85px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.video-play-button a span:hover {
	background: var(--white-color);
}

.video-play-button a span.bg-effect:before,
.video-play-button a span.bg-effect:after {
	content: '';
	position: absolute;
	width: 160%;
	height: 160%;
	border: 40px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a span.bg-effect:after {
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a span i {
	font-size: 30px;
	color: var(--white-color);
	margin-left: 2px;
	transition: all 0.4s ease-in-out;
}

.video-play-button a span:hover i {
	color: var(--accent-color);
}

.intro-video-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 100px;
	max-width: 1120px;
	margin: 270px auto auto;
}

.intro-video-item {
	position: relative;
	width: calc(25% - 75px);
}

.intro-video-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: -50px;
	bottom: 0;
	height: 100%;
	width: 1px;
	background: var(--dark-divider-color);
}

.intro-video-item:nth-child(4n + 4):before,
.intro-video-item:last-child:before {
	display: none;
}

.intro-video-item .icon-box {
	margin-bottom: 30px;
}

.intro-video-item .icon-box img {
	width: 100%;
	max-width: 60px;
}

.intro-video-item-content h3 {
	font-size: 20px;
	color: var(--secondary-color);
}

/****************************************/
/*** 	  09. Our Collection css	  ***/
/****************************************/

.our-collection {
	padding: 120px 0 30px;
}

.collection-item {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 50px;
}

.collection-item-content,
.collection-item-image-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.collection-item-content {
	width: calc(43% - 40px);
}

.collection-item-title h3 {
	font-size: 26px;
	line-height: 1.4em;
}

.collection-item-image-box {
	width: calc(57% - 40px);
}

.collection-item-image-content p {
	margin-bottom: 15px;
}

.collection-item-image-content p:last-child {
	margin-bottom: 0;
}

.collection-item-image a,
.collection-item-image figure {
	display: block;
	border-radius: 4px;
	overflow: hidden;
	cursor: none;
}

.collection-item-image img {
	width: 100%;
	aspect-ratio: 1 / 0.866;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.collection-item:hover .collection-item-image img {
	transform: scale(1.04);
}

/****************************************/
/*** 	   10. Our Promise css 		  ***/
/****************************************/

.our-promise {
	padding: 60px 0;
}

.promise-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 100px;
}

.promise-item {
	position: relative;
	width: calc(20% - 80px);
	text-align: center;
}

.promise-item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -50px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.promise-item:last-child::before,
.promise-item:nth-child(5n + 5)::before {
	display: none;
}

.promise-item .icon-box {
	position: relative;
	min-height: 140px;
	background: var(--secondary-color);
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.promise-item .icon-box::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: 50%;
	opacity: 0;
	background-color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.promise-item:hover .icon-box::before {
	left: 0;
	right: 0;
	opacity: 1;
}

.promise-item .icon-box img {
	width: 100%;
	max-width: 70px;
	transition: all 0.4s ease-in-out;
}

.promise-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.promise-item-content {
	margin: 20px 0 0;
}

.promise-item-content h3 {
	font-size: 20px;
	line-height: 1.3em;
}

/****************************************/
/*** 	 11. Our Testimonials css	  ***/
/****************************************/

.our-testimonials {
	position: relative;
	background-image: url('../images/testimonial-bg-image.jpg');
	background-position: center center;
	background-size: cover;
	padding: 120px 0;
}

.our-testimonials::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.63) 44.12%, rgba(0, 0, 0, 0.00) 58.83%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.testimonials-content-box {
	max-width: 630px;
}

.testimonials-content-box .section-title {
	margin-bottom: 60px;
}

.our-testimonials .container {
	position: relative;
	z-index: 2;
}

.testimonial-slider .swiper .swiper-wrapper {
	cursor: none;
}

.testimonial-item-rating i {
	color: var(--white-color);
}

.testimonial-item-content {
	margin-top: 20px;
}

.testimonial-item-content p {
	font-size: 18px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 15px;
}

.testimonial-item-content p:last-child {
	margin-bottom: 0;
}

.testimonial-item-content {
	margin-bottom: 0;
}

.testimonial-item-author {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 40px 140px 0 0;
}

.testimonial-author-image figure {
	display: block;
	border-radius: 50%;
}

.testimonial-author-image img {
	width: 100%;
	max-width: 50px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}

.testimonial-author-content {
	width: calc(100% - 65px);
}

.testimonial-author-content h2 {
	font-size: 20px;
	color: var(--white-color);
}

.testimonial-author-content p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.testimonial-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 1;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
	background: var(--accent-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	left: 50%;
	right: 0;
	background: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px auto;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
	transform: translate(-50%, -50%) rotate(225deg);
}

/****************************************/
/*** 	    12. Our FAQ's css 		  ***/
/****************************************/

.our-faqs {
	position: relative;
	background: linear-gradient(180deg, #fff 0%, #fdf5f7 50%, #fff 100%);
	padding: 100px 0 90px;
	overflow: hidden;
}

.our-faqs::before {
	content: '';
	position: absolute;
	top: -15%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(156, 17, 55, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.our-faqs::after {
	content: '';
	position: absolute;
	bottom: -20%;
	right: -8%;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(156, 17, 55, 0.03) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.faqs-content-box {
	position: sticky;
	top: 30px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35em;
	color: var(--primary-color);
	padding: 0 34px 0 0;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f146';
	font-family: 'Font Awesome 7 Free';
	position: absolute;
	right: 0px;
	top: 50%;
	font-size: 24px;
	color: var(--primary-color);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '\f0fe';
}

.faq-accordion .accordion-item .accordion-body {
	padding: 15px 34px 0 0;
}

.faq-accordion .accordion-item .accordion-body p {
	margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
	margin-bottom: 0;
}

.limited-offer-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.limited-offer-item {
	position: relative;
	width: calc(33.333% - 20px);
	min-height: 520px;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(156, 17, 55, 0.06);
}

.limited-offer-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(156, 17, 55, 0.15);
}

.limited-offer-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.limited-offer-image figure {
	position: relative;
	display: block;
	height: 100%;
}

.limited-offer-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 8.52%, rgba(0, 0, 0, 0.75) 86.12%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.limited-offer-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.limited-offer-item:hover .limited-offer-image img {
	transform: scale(1.05);
}

.limited-offer-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 8px 16px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	color: var(--accent-color);
	letter-spacing: 0.05em;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	z-index: 3;
	transition: all 0.3s ease;
}

.limited-offer-badge i {
	font-size: 14px;
}

.limited-offer-item:hover .limited-offer-badge {
	background: var(--accent-color);
	color: #fff;
}

.limited-offer-item-body {
	position: relative;
	height: 100%;
	align-content: end;
	text-align: center;
	padding: 60px;
	z-index: 2;
}

.limited-offer-item-content span {
	display: inline-block;
	font-size: 14px;
	line-height: normal;
	color: var(--white-color);
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

.limited-offer-item-content h2 {
	font-size: 40px;
	color: var(--white-color);
	font-family: var(--accent-font);
	font-weight: 500;
	letter-spacing: 0.02em;
}

.limited-offer-btn {
	margin-top: 40px;
}

/****************************************/
/*** 	     13. Our Blog css 		  ***/
/****************************************/

.our-blog {
	padding: 60px 0 90px;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	position: relative;
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
	display: block;
	border-radius: 4px;
	overflow: hidden;
}

.post-featured-image figure {
	display: block;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.06);
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a {
	color: inherit;
}

.post-item .post-item-btn {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

/****************************************/
/*** 	     14. Footer css 		  ***/
/****************************************/

.main-footer {
	padding: 60px 0 0;
}

.about-footer {
	max-width: 300px;
}

.footer-logo img {
	width: 100%;
	max-width: 280px;
}

.about-footer-content {
	margin-top: 30px;
}

.about-footer-content p {
	color: var(--white-color);
}

.about-footer-content p:last-child {
	margin-bottom: 0;
}

.footer-newsletter-form {
	margin-top: 40px;
}

.footer-newsletter-form .form-group {
	display: flex;
	border: 1px solid var(--dark-divider-color);
	background-color: transparent;
	border-radius: 4px;
	padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
	width: calc(100% - 40px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 6px 15px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form .form-group .newsletter-btn {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white-color);
	border: none;
	border-radius: 4px;
}

.footer-newsletter-form .form-group .newsletter-btn img {
	width: 100%;
	max-width: 14px;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
	transform: rotate(45deg);
}

.footer-links-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/* gap: 30px; */
	/* margin-left: 30px; */
}

.footer-links {
	max-width: 22%;
}

.footer-links.footer-contact-box {
	width: 100%;
	max-width: 32%;
}

.footer-links h2 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links ul {
	list-style: disc;
	margin: 0;
	padding: 0 0 0 20px;
}

.footer-links ul li {
	line-height: 1.4em;
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li::marker {
	color: var(--white-color);
}

.footer-links ul li a {
	color: inherit;
}

.footer-contact-item {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.footer-contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.footer-contact-item .icon-box img {
	width: 100%;
	max-width: 30px;
}

.footer-contact-item-content {
	width: calc(100% - 40px);
}

.footer-contact-item-content h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--white-color);
}

.footer-contact-item-content p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.footer-contact-item-content p a {
	color: inherit;
}

.footer-copyright {
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	/* margin-top: 80px; */
	padding: 10px 0;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

/****************************************/
/*** 	   15. About Us Page css	  ***/
/****************************************/

.page-header {
	position: relative;
	background-image: url('../assets/breadcrumb.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 175px 0;
	overflow: hidden;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 60px;
	line-height: 1.1em;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item {
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.about-us {
	padding: 120px 0 60px;
}

.mission-vision-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.mission-vision-item {
	position: relative;
	width: calc(50% - 15px);
	border-radius: 4px;
	padding: 50px;
	align-content: end;
	min-height: 520px;
	overflow: hidden;
}

.mission-vision-item-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.mission-vision-item-image figure {
	position: relative;
	display: block;
	height: 100%;
}

.mission-vision-item-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 4px;
	background: linear-gradient(180deg, transparent 31.25%, rgba(0, 0, 0, 0.50) 84.22%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.mission-vision-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.mission-vision-item:hover .mission-vision-item-image img {
	transform: scale(1.03);
}

.mission-vision-item-content {
	position: relative;
	text-align: center;
	z-index: 1;
}

.mission-vision-item-content h3 {
	font-size: 26px;
	color: var(--white-color);
}

.mission-vision-item-content p {
	color: var(--white-color);
	margin: 20px 0 0;
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	color: var(--primary-color);
	margin: 0 0 15px;
}

.section-footer-text p span {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	background: var(--accent-color);
	color: var(--bg-color);
	line-height: 1em;
	padding: 4px 10px;
	border-radius: 14px;
	margin-right: 10px;
}

.section-footer-text p a {
	display: inline-block;
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--accent-color);
}

.section-footer-text p:last-child {
	margin: 0;
}

.about-us .section-footer-text {
	margin-top: 60px;
}

.what-we-do {
	padding: 60px 0 90px;
}

.what-we-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.what-we-item .icon-box {
	margin-bottom: 60px;
	text-align: center;
}

.what-we-item .icon-box img {
	width: 100%;
	max-width: 80px;
}

.what-we-item-content {
	text-align: center;
}

.what-we-item-content h3 {
	font-size: 20px;
}

.what-we-item-content p {
	margin: 20px 0 0;
}

.why-customer-choose {
	padding: 10px;
}

.why-customer-choose .container-fluid {
	padding: 0;
}

.why-customer-choose-video {
	position: relative;
	height: 750px;
	min-height: 100%;
	border-radius: 4px;
	overflow: hidden;
}

.why-customer-choose-bg-video {
	width: 100%;
	height: 100%;
}

.why-customer-choose-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.why-customer-choose-content {
	height: 100%;
	align-content: center;
	padding: 110px 5.729vw 110px 6.25vw;
}

.customer-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.customer-accordion .accordion-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.customer-accordion .accordion-header .accordion-button {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35em;
	color: var(--primary-color);
	padding: 0 34px 0 0;
}

.customer-accordion .accordion-item .accordion-button::after,
.customer-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f146';
	font-family: 'Font Awesome 7 Free';
	position: absolute;
	right: 0px;
	top: 50%;
	font-size: 24px;
	color: var(--primary-color);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.customer-accordion .accordion-button:not(.collapsed)::after {
	content: '\f0fe';
}

.customer-accordion .accordion-item .accordion-body {
	padding: 15px 34px 0 0;
}

.customer-accordion .accordion-item .accordion-body p {
	margin-bottom: 15px;
}

.customer-accordion .accordion-item .accordion-body p:last-child {
	margin-bottom: 0;
}

.our-team {
	padding: 60px 0 90px;
}

.team-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	text-align: center;
}

.team-item-image-box {
	position: relative;
}

.team-item-image {
	max-width: 300px;
	border-radius: 50%;
	text-align: center;
	margin: 0 auto;
	overflow: hidden;
}

.team-item-image a,
.team-item-image figure {
	position: relative;
	display: block;
	border-radius: 50%;
	cursor: none;
}

.team-item-image figure:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--black-color);
	border-radius: 50%;
	opacity: 30%;
	transform: scale(0);
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.team-item:hover .team-item-image figure:before {
	transform: scale(1);
}

.team-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	transition: all 0.6s ease-in-out;
}

.team-item:hover .team-item-image figure img {
	transform: scale(1.06);
}

.team-item-social-list {
	position: absolute;
	top: 50%;
	transform: scale(0) translateY(-50%);
	right: 50px;
	left: 50px;
	margin: 0 auto;
	transition: all 0.5s ease-in-out;
	z-index: 2;
}

.team-item:hover .team-item-social-list {
	transform: scale(1) translateY(-50%);
	visibility: visible;
	opacity: 1;
}

.team-item-social-list ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 10px;
}

.team-item-social-list ul li a {
	width: 40px;
	height: 40px;
	color: var(--primary-color);
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-item-social-list ul li a i {
	font-size: 18px;
	color: inherit;
}

.team-item-content {
	margin-top: 20px;
}

.team-item-content h2 {
	font-size: 20px;
}

.team-item-content h2 a {
	color: inherit;
}

.team-item-content p {
	margin: 5px 0 0;
}

.page-about-faq {
	padding: 120px 0;
}

/****************************************/
/***      	16. Blog Archive css      ***/
/****************************************/

.page-blog {
	padding: 120px 0px;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 4px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

/****************************************/
/***      	17. Blog Single css       ***/
/****************************************/

.page-single-post {
	padding: 120px 0;
}

.post-single-meta {
	margin-top: 5px;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 4px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 4px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--primary-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 400;
	line-height: 1.2em;
	margin: 0 0 0.5em;
}

.post-entry h1 {
	font-size: 60px;
}

.post-entry h2 {
	font-size: 40px;
}

.post-entry h3 {
	font-size: 34px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	background-color: var(--secondary-color);
	border-radius: 4px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--text-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	text-transform: uppercase;
	background: transparent;
	color: var(--primary-color);
	border: 1px solid var(--accent-color);
	border-radius: 4px;
	padding: 12px 20px;
	transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 4px;
	width: 40px;
	height: 40px;
	transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
	color: var(--white-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/****************************************/
/***      	18. Products Page css     ***/
/****************************************/

.page-products {
	padding: 120px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 20px;
	z-index: 100;
	background: #fff;
}

.page-privacy-policy .row {
	align-items: stretch;
}

.page-privacy-policy .col-lg-4 {
	display: flex;
	flex-direction: column;
}

.product-category-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.product-category-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.product-category-filter-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 15px;
}

.page-single-sidebar .product-category-filter-header {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 20px;
}

.product-category-filter-title {
	max-width: 50%;
	display: flex;
	align-items: center;
	gap: 10px;
}

.product-category-filter-title img {
	width: 100%;
	max-width: 24px;
}

.product-category-filter-title h2 {
	font-size: 20px;
}

.product-category-filter-clear-btn a {
	font-size: 16px;
	color: var(--text-color);
	transition: all 0.4s ease-in-out;
}

.product-category-filter-clear-btn a:hover {
	color: var(--accent-color);
}

.product-category-item-title {
	position: relative;
	font-size: 22px;
	margin-bottom: 20px;
}

.product-category-item-title::before {
	content: '\f077';
	font-family: 'Font Awesome 7 Free';
	position: absolute;
	top: 0;
	right: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.product-category-item ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-category-item ul li {
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 5px 10px;
	margin-bottom: 20px;
}

.product-category-item ul li:last-child {
	margin-bottom: 0;
}

.product-category-item ul li input[type=checkbox] {
	width: 20px;
	height: 20px;
	accent-color: var(--primary-color);
}

.product-category-item ul li label {
	flex: 1;
	cursor: pointer;
}

.product-item-list-box .product-category-filter-header {
	margin-bottom: 20px;
}

.product-category-result-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.product-category-result-pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.product-category-result-pagination ul li {
	position: relative;
	line-height: 1.4em;
}

.product-category-result-pagination ul li::before {
	content: '/';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -12px;
}

.product-category-result-pagination ul li:last-child::before {
	display: none;
}

.product-category-result-pagination ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.product-category-sorting-list .form-select {
	min-width: 190px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25em;
	color: var(--primary-color);
	background-color: var(--secondary-color);
	border: none;
	border-radius: 4px;
	padding: 9px 35px 9px 15px;
	outline: none;
	box-shadow: none;
}

.product-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 15px;
}

.product-item-list .product-item {
	width: calc(33.33% - 10px);
}

.product-learn-more-btn {
	text-align: center;
	margin-top: 60px;
}

/****************************************/
/***      	19. Product Single css    ***/
/****************************************/

.page-product-single {
	padding: 60px 0;
}

.product-single-breadcrumb-list {
	margin-bottom: 40px;
}

.product-single-breadcrumb-list ol {
	margin: 0;
	gap: 15px 55px;
}

.product-single-breadcrumb-list ol li {
	position: relative;
	color: var(--text-color);
	padding: 0;
}

.product-single-breadcrumb-list .breadcrumb li::before {
	content: '';
	position: absolute;
	right: -34px;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/arrow-right-long.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 14px;
	height: 14px;
	padding: 0;
}

.product-single-breadcrumb-list .breadcrumb li:last-child:before {
	display: none;
}

.product-single-breadcrumb-list .breadcrumb-item+.breadcrumb-item {
	padding: 0;
}

.product-single-breadcrumb-list .breadcrumb li a {
	color: inherit;
}

.product-single-info-box {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px 50px;
}

.product-single-image-box {
	width: calc(50% - 25px);
	position: sticky;
	top: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 10px;
}

.product-single-image-slider {
	width: 145px;
}

.product-single-image-slider .swiper-wrapper {
	height: auto;
	flex-direction: column;
	gap: 10px 0;
}

.product-single-image-slider .swiper-slide {
	width: 100% !important;
	border-radius: 4px;
	cursor: pointer;
	padding: 0px;
	overflow: hidden;
}

.product-single-image-slider .swiper-slide figure img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.product-single-image-item {
	width: calc(100% - 155px);
	border-radius: 4px;
	padding: 0;
	overflow: hidden;
}

.product-single-image-item .swiper-slide {
	height: 100%;
	border-radius: 4px;
}

.product-single-image-item .swiper-slide figure {
	display: block;
	height: 100%;
	text-align: center;
}

.product-single-image-item .swiper-slide figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.product-single-info-content {
	width: calc(50% - 25px);
}

.product-single-price h2,
.product-single-title h1 {
	font-size: 30px;
}

.product-single-price span,
.product-single-title span {
	display: inline-block;
	font-size: 16px;
	line-height: normal;
	margin-top: 10px;
}

.product-single-price {
	margin-top: 30px;
}

.product-single-price h2 sub {
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 400;
	color: var(--text-color);
	text-decoration: line-through;
	bottom: 0;
}

.product-single-description {
	border-top: 1px solid var(--divider-color);
	margin-top: 20px;
	padding-top: 20px;
}

.product-single-description p {
	margin-bottom: 20px;
}

.product-single-description p:last-child {
	margin-bottom: 0;
}

.product-single-details-list {
	margin-top: 30px;
}

.product-single-details-list h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.product-single-details-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.product-single-details-list ul li input[type="radio"]:checked+label {
	background: var(--primary-color);
	color: var(--white-color);
}

.product-single-details-list ul li input[type="radio"] {
	width: 0;
	height: 0;
	opacity: 0;
	visibility: hidden;
}

.product-single-details-list ul li label {
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	padding: 9px 16px;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.product-single-content-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.qty-box {
	display: inline-flex;
	align-items: center;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	padding: 13px 12px;
	border-radius: 4px;
	gap: 10px;
}

.qty-btn {
	background: none;
	border: none;
	padding: 0;
	color: var(--primary-color);
	font-size: 26px;
	line-height: 0;
	outline: none;
}

.qty-input {
	width: 35px;
	text-align: center;
	border: none;
	font-size: 16px;
	font-weight: 500;
	background: transparent;
	outline: none;
}

.product-single-content-btn {
	line-height: 0;
}

.product-single-content-btn .btn-default {
	background: var(--primary-color);
	color: var(--white-color);
}

.product-single-content-btn .btn-default:hover {
	color: var(--primary-color);
}

.product-single-content-btn .btn-default::after {
	background: var(--white-color);
}

.product-single-action ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.product-single-action ul li a {
	display: inline-block;
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	padding: 12px 20px;
	transition: all 0.4s ease-in-out;
}

.product-single-action ul li a:hover {
	background: var(--primary-color);
}

.product-single-action ul li a img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.product-single-action ul li a:hover img {
	filter: brightness(0) invert(1);
}

.product-single-content-footer {
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.product-shipping-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.product-shipping-box ul li {
	line-height: 1.5em;
	margin-bottom: 15px;
}

.product-shipping-box ul li:last-child {
	margin-bottom: 0;
}

.product-shipping-box ul li img {
	width: 100%;
	max-width: 24px;
	margin-right: 10px;
}

.product-single-review-box {
	margin-top: 100px;
}

.product-step-nav {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.product-step-nav .nav-tabs {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border: none;
}

.product-step-nav ul li {
	width: auto;
}

.product-step-nav ul li .nav-link {
	position: relative;
	width: 100%;
	background: transparent;
	border: none;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1em;
	padding: 0;
	border-radius: 0;
	margin: 0;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.product-step-nav ul li .nav-link.active,
.product-step-nav ul li .nav-link:hover {
	background: transparent;
	color: var(--primary-color);
}

.product-step-nav ul li .nav-link::before {
	content: '';
	display: block;
	position: absolute;
	top: auto;
	left: auto;
	bottom: -32px;
	right: 0;
	background-color: var(--primary-color);
	width: 0;
	height: 2px;
	transition: all 0.4s ease-in-out;
}

.product-step-nav ul li .nav-link.active::before,
.product-step-nav ul li .nav-link:hover:before {
	width: 100%;
	right: auto;
	left: 0;
}

.product-tab-item-box h2 {
	font-size: 30px;
	margin-bottom: 20px;
}

.product-tab-item-box h3 {
	font-size: 22px;
	margin-top: 20px;
}

.product-tab-item-box p {
	margin-bottom: 20px;
}

.product-tab-item-box ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 20px 0 0 0;
}

.product-tab-item-box ul li {
	line-height: 1.4em;
	margin-bottom: 12px;
}

.product-tab-item-box ul:first-child,
.product-tab-item-box p:last-child,
.product-tab-item-box ul li:last-child {
	margin: 0;
}

.product-review-from-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.review-form,
.customer-review-list {
	width: calc(50% - 30px);
}

.customer-review-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 40px;
}

.customer-review-item:last-child {
	margin-bottom: 0;
}

.customer-review-item .icon-box img {
	width: 100%;
	max-width: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.customer-review-item-body {
	width: calc(100% - 65px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.customer-review-item-content p {
	margin: 0 0 5px 0;
}

.customer-review-item-content p:last-child {
	margin-bottom: 0;
}

.customer-review-item-content p span {
	color: var(--primary-color);
	font-weight: 600;
}

.customer-review-item-rating i {
	color: var(--primary-color);
	font-size: 16px;
}

.review-form-content {
	margin-bottom: 30px;
}

.review-form-content h3 {
	font-size: 22px;
	margin: 0 0 5px 0;
}

.review-form-content p {
	margin: 15px 0 0;
}

.review-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	background-color: transparent;
	border-radius: 4px;
	padding: 12px 20px;
	box-shadow: none;
	outline: none;
}

.review-form .form-control::placeholder {
	color: var(--text-color);
	opacity: 50%;
}

.review-form-note {
	display: flex;
	align-items: start;
	gap: 5px;
}

.review-form-note input {
	margin-top: 1px;
}

.review-form-note .form-label {
	margin: 0;
}

.review-form .btn-default {
	width: 100%;
	margin: 20px 0 0 0;
}

.product-additional-content-title {
	margin-bottom: 30px;
}

.product-additional-info-table {
	overflow-x: auto;
	overflow-y: hidden;
	cursor: grab;
}

.product-additional-info-table table {
	width: 100%;
	white-space: nowrap;
	border: 1px solid var(--divider-color);
}

.product-additional-info-table::-webkit-scrollbar {
	height: 7px;
}

.product-additional-info-table::-webkit-scrollbar-track {
	background-color: var(--accent-color);
}

.product-additional-info-table::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

.product-additional-info-table table tr b {
	font-weight: 600;
	color: var(--primary-color);
}

.product-additional-info-table table tr td {
	min-width: 200px;
	border-top: 1px solid var(--divider-color);
	border-right: 1px solid var(--divider-color);
	color: var(--primary-color);
	padding: 20px 30px;
}

.product-additional-info-table table tr td:last-child {
	border-right: none;
}

.related-products {
	padding: 60px 0 120px;
}

.related-product-items-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.related-product-items-list .product-item {
	width: calc(25% - 15px);
}

/****************************************/
/***      	 20. Cart Page css        ***/
/****************************************/

.page-cart {
	padding: 120px 0;
}

.cart-item-header,
.cart-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.cart-item-header span {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--primary-color);
}

.product-header-tag {
	width: calc(46% - 7.5px);
}

.price-header-tag {
	width: calc(18% - 7.5px);
}

.quantity-header-tag {
	width: calc(21% - 7.5px);
}

.subtotal-header-tag {
	width: calc(15% - 7.5px);
}

.cart-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.cart-item-image-content {
	width: calc(63% - 5px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
}

.cart-item-image {
	position: relative;
	width: 85px;
	height: 85px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px 5px 0 0;
}

.cart-item-image::before {
	content: '\f00d';
	position: absolute;
	top: -5px;
	right: -5px;
	font-family: 'FontAwesome';
	width: 18px;
	height: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--bg-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	font-size: 12px;
	color: var(--text-color);
	cursor: pointer;
}

.cart-item-image figure {
	display: block;
	border-radius: 4px;
}

.cart-item-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 4px;
}

.cart-item-info-content {
	width: calc(100% - 120px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-grow: 1;
}

.cart-item-title {
	max-width: 155px;
}

.cart-item-title p {
	color: var(--primary-color);
}

.cart-item-title p:last-child {
	margin-bottom: 0;
}

.cart-item-price {
	width: 35%;
}

.cart-item-price p:last-child {
	margin-bottom: 0;
}

.cart-item-quantity-total {
	width: calc(37% - 5px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.cart-item-quantity .qty-box {
	padding: 6px 10px;
	gap: 10px;
}

.cart-item-quantity .qty-btn {
	font-size: 22px;
}

.cart-item-subtotal {
	width: 40%;
}

.cart-item-subtotal p:last-child {
	margin-bottom: 0;
}

.cart-item-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	margin-top: 40px;
}

.cart-item-buttons .btn-default {
	padding: 17px 30px 17px 60px;
}

.cart-item-buttons .btn-default.btn-update::before,
.cart-item-buttons .btn-default.btn-clear::before {
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	color: var(--primary-color);
	background: transparent;
	left: 30px;
	transform: translateY(-50%);
	top: 50%;
	width: auto;
	height: auto;
	right: auto;
	transition: all 0.4s ease-in-out;
}

.cart-item-buttons .btn-default.btn-update:hover::before,
.cart-item-buttons .btn-default.btn-clear:hover::before {
	color: var(--white-color);
}

.cart-item-buttons .btn-default.btn-update::before {
	content: '\f01e';
	font-weight: 700;
}

.cart-item-buttons .btn-default.btn-clear::before {
	content: '\f2ed';
	font-weight: 400;
}

.interested-products-box {
	margin-top: 120px;
}

.interested-products-box-title {
	margin-bottom: 30px;
}

.interested-products-box-title h2 {
	font-size: 30px;
	line-height: 1.1em;
}

.page-single-sidebar.right-side-sidebar {
	margin: 0 0 0 20px;
}

.order-summary-box {
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	padding: 15px;
}

.order-summary-content-box {
	padding: 15px;
	margin-bottom: 15px;
}

.order-summary-box-title,
.order-summary-promocode-box,
.order-summary-shipment-info {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.order-summary-box-title h2 {
	font-size: 20px;
}

.order-summary-promocode-form {
	margin-bottom: 30px;
}

.order-summary-promocode-form .form-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	padding: 5px;
}

.order-summary-promocode-form .form-group .form-control {
	width: 170px;
	font-size: 16px;
	line-height: normal;
	color: var(--text-color);
	background-image: url('../images/icon-tag.svg');
	background-repeat: no-repeat;
	background-position: left 12px center;
	background-size: 14px auto;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	flex-grow: 1;
	padding: 8px 10px 8px 36px;
}

.order-summary-promocode-form .form-group .form-control::placeholder {
	color: var(--text-color);
}

.order-summary-promocode-form .form-group button.promocode-btn {
	color: var(--white-color);
	background: var(--accent-color);
	line-height: 1em;
	border: none;
	border-radius: 4px;
	outline: none;
	padding: 12px 30px;
	transition: all 0.4s ease-in-out;
}

.order-summary-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.order-summary-total h3 {
	font-size: 20px;
	line-height: normal;
}

.order-summary-shipment-info h3 {
	font-size: 20px;
	line-height: normal;
	margin-bottom: 20px;
}

.order-summary-shipment-info ul {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.order-summary-shipment-info ul li {
	margin-bottom: 15px;
}

.order-summary-shipment-info ul li:last-child {
	margin-bottom: 0;
}

.order-summary-shipment-info ul li,
.order-summary-shipment-info ul li span {
	font-size: 16px;
	line-height: normal;
	color: var(--primary-color);
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5px 10px;
}

.order-summary-shipment-info ul li span {
	flex-grow: 1;
	font-weight: 400;
	color: var(--text-color);
}

.order-summary-shipment-info ul li span label {
	width: calc(100% - 28px);
}

.order-summary-shipment-info ul li input[type=radio] {
	width: 18px;
	height: 18px;
	accent-color: var(--primary-color);
}

.order-summary-shipment-info p {
	font-size: 16px;
	margin-bottom: 5px;
}

.order-summary-shipment-info p span {
	font-weight: 600;
	color: var(--primary-color);
}

.order-summary-shipment-info a {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: underline;
}

.order-checkout-button .btn-default {
	width: 100%;
	text-align: center;
	background: var(--primary-color);
	color: var(--white-color);
}

.order-checkout-button .btn-default:hover {
	color: var(--primary-color);
}

.order-checkout-button .btn-default::after {
	background: var(--bg-color);
}

/****************************************/
/***   21. Order Received Page css    ***/
/****************************************/

.page-order-details {
	padding: 120px 0;
}

.order-detail-sidebar {
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	padding: 30px;
}

.order-detail-sidebar-item {
	margin-bottom: 50px;
}

.order-detail-sidebar-item:last-child {
	margin-bottom: 0;
}

h2.order-sidebar-item-title {
	font-size: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.order-detail-sidebar-item ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.order-detail-sidebar-item ul li {
	line-height: 1.5em;
	margin-bottom: 20px;
}

.order-detail-sidebar-item ul li:last-child {
	margin-bottom: 0;
}

.order-detail-sidebar-item ul li a {
	display: block;
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.order-detail-sidebar-item ul li a:hover {
	color: var(--accent-color);
}

.order-detail-box ul li {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.order-detail-box ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.order-detail-box ul li span b {
	font-weight: 400;
	color: var(--primary-color);
}

.order-detail-title-box {
	margin-bottom: 40px;
}

.order-detail-title-box h2 {
	font-size: 40px;
}

.order-detail-title-box p {
	font-size: 20px;
	margin: 5px 0 0;
}

.order-detail-content-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.order-detail-content-list ul li {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	line-height: 1.5em;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.order-detail-content-list ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.order-detail-content-list ul li span {
	width: 67%;
}

li.order-detail-content-list-title {
	font-family: var(--accent-font);
	font-weight: 500;
	color: var(--primary-color);
}

/****************************************/
/***       22. Checkout Page css      ***/
/****************************************/

.page-checkout {
	padding: 120px 0;
}

.checkout-login-box {
	margin-bottom: 40px;
}

.checkout-login-accordion {
	margin-bottom: 30px;
}

.checkout-login-accordion:last-child {
	margin-bottom: 0;
}

.checkout-accordion-header .checkout-accordion-button {
	position: relative;
	width: 100%;
	font-family: var(--default-font);
	font-size: 16px;
	line-height: 1.25em;
	color: var(--text-color);
	background: transparent;
	border: 1px dashed var(--divider-color);
	border-radius: 4px;
	text-align: left;
	padding: 14px 40px 14px 20px;
}

.checkout-accordion-header .checkout-accordion-button::after,
.checkout-accordion-header .checkout-accordion-button.collapsed::after {
	content: '\f107';
	font-family: 'FontAwesome';
	position: absolute;
	right: 20px;
	top: 50%;
	font-size: 18px;
	color: var(--text-color);
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.checkout-accordion-header .checkout-accordion-button:not(.collapsed)::after {
	transform: translateY(-50%) rotate(180deg);
}

.checkout-accordion-header .checkout-accordion-button b {
	color: var(--primary-color);
	font-weight: 400;
	text-decoration: underline;
}

.checkout-accordion-body {
	margin-top: 30px;
}

.checkout-accordion-body-content {
	margin-bottom: 30px;
}

.checkout-accordion-body-content p {
	font-size: 16px;
	margin-bottom: 15px;
}

.checkout-accordion-body-content p:last-child {
	margin-bottom: 0;
}

.checkout-bill-address-form .form-group,
.checkout-login-form .form-group {
	margin-bottom: 30px;
}

.checkout-bill-address-form .form-group:last-child,
.checkout-login-form .form-group:last-child {
	margin-bottom: 0;
}

.checkout-bill-address-form .form-group label,
.checkout-login-form .form-group label {
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.checkout-bill-address-form .form-control,
.checkout-login-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	border: 1px solid var(--divider-color);
	background-color: transparent;
	border-radius: 4px;
	padding: 12px 20px;
	box-shadow: none;
	outline: none;
}

.checkout-bill-address-form .form-control::placeholder,
.checkout-login-form .form-control::placeholder {
	color: var(--text-color);
}

.checkout-bill-address-form select.form-control {
	padding: 12px 35px 12px 20px;
}

.checkout-login-form-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.checkout-login-btn .btn-default {
	background: var(--primary-color);
	color: var(--white-color);
}

.checkout-login-btn .btn-default:hover {
	color: var(--primary-color);
}

.checkout-login-btn .btn-default::after {
	background: var(--bg-color);
}

.checkout-form-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
}

.checkout-form-checkbox input[type=checkbox] {
	width: 18px;
	height: 18px;
	accent-color: var(--primary-color);
}

.checkout-form-checkbox label {
	font-size: 16px;
	color: var(--text-color);
	cursor: pointer;
	margin: 0;
}

.checkout-bill-address-title {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.checkout-bill-address-title h2 {
	font-size: 20px;
}

.checkout-form-checkbox.different-address-note {
	margin-top: 20px;
}

.checkout-form-checkbox.different-address-note label {
	font-weight: 400;
	color: var(--text-color);
	margin: 0;
}

.checkout-sidebar-box {
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	padding: 15px;
}

.product-total-order-box {
	padding: 15px;
}

.checkout-coupeon-accordion {
	margin-bottom: 30px;
}

.checkout-coupeon-accordion:last-child {
	margin-bottom: 0;
}

.coupeon-accordion-header .coupeon-accordion-button {
	position: relative;
	width: 100%;
	font-family: var(--default-font);
	font-size: 16px;
	line-height: 1.25em;
	color: var(--text-color);
	background: transparent;
	border: 1px dashed var(--divider-color);
	border-radius: 4px;
	text-align: left;
	padding: 14px 40px 14px 20px;
}

.coupeon-accordion-header .coupeon-accordion-button::after,
.coupeon-accordion-header .coupeon-accordion-button.collapsed::after {
	content: '\f107';
	font-family: 'FontAwesome';
	position: absolute;
	right: 20px;
	top: 50%;
	font-size: 18px;
	color: var(--text-color);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.coupeon-accordion-header .coupeon-accordion-button:not(.collapsed)::after {
	transform: translateY(-50%) rotate(180deg);
}

.coupeon-accordion-header .coupeon-accordion-button b {
	color: var(--primary-color);
	font-weight: 400;
	text-decoration: underline;
}

.coupeon-accordion-body {
	margin-top: 30px;
}

.coupeon-accordion-body-content {
	margin-bottom: 20px;
}

.coupeon-accordion-body-content p {
	margin-bottom: 15px;
}

.coupeon-accordion-body-content p:last-child {
	margin-bottom: 0;
}

.coupeon-apply-form {
	display: flex;
	align-items: center;
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	padding: 5px;
}

.coupeon-apply-form .form-group {
	min-width: 200px;
	flex: 1;
}

.coupeon-apply-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--primary-color);
	background-color: transparent;
	background-image: url('../images/icon-tag.svg');
	background-repeat: no-repeat;
	background-position: left 13px top 56%;
	background-size: 14px auto;
	border-radius: 0;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 8px 18px 8px 35px;
}

.coupeon-apply-form .form-control::placeholder {
	color: var(--text-color);
	opacity: 50%;
}

.coupeon-apply-btn .btn-default {
	line-height: normal;
	background: var(--primary-color);
	color: var(--white-color);
	padding: 10px 20px;
}

.coupeon-apply-btn .btn-default::after {
	background: var(--bg-color);
}

.coupeon-apply-btn .btn-default:hover {
	color: var(--primary-color);
}

.product-total-order-title {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.product-total-order-title h3 {
	font-size: 20px;
}

.product-total-item-tag-list {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.product-total-item-tag {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
}

.product-total-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	margin-top: 20px;
	padding-top: 20px;
}

.product-total-item-header {
	max-width: 70%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.product-total-item-image {
	width: 50px;
	height: 50px;
	background: var(--secondary-color);
	border-radius: 4px;
	overflow: hidden;
}

.product-total-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.product-total-item-title {
	width: calc(100% - 65px);
}

.product-total-item-title p,
.product-total-item-subtotal p {
	margin: 0;
}

.all-product-total {
	border-top: 1px solid var(--divider-color);
	margin-top: 20px;
	padding-top: 20px;
}

.all-product-total p {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	line-height: normal;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.all-product-total p:last-child {
	margin-bottom: 0;
}

.product-total-order-list .order-summary-shipment-info {
	border-top: 1px solid var(--divider-color);
	border-bottom: none;
	margin: 20px 0 0 0;
	padding: 20px 0 0 0;
}

.order-payment-info {
	border-top: 1px solid var(--divider-color);
	margin-top: 20px;
	padding-top: 20px;
}

.order-payment-info-item {
	margin-bottom: 20px;
}

.order-payment-info-item:last-child {
	margin-bottom: 0;
}

.order-payment-info-item span {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 400;
	color: var(--text-color);
}

.order-payment-info-item input[type=radio] {
	width: 18px;
	height: 18px;
	accent-color: var(--primary-color);
}

.order-payment-info-item span label {
	width: calc(100% - 28px);
	font-weight: 500;
	color: var(--primary-color);
}

.order-payment-info-item p {
	margin: 10px 0 0 0;
}

.place-order-button {
	margin-top: 15px;
}

.place-order-button .btn-default {
	width: 100%;
	text-align: center;
	background: var(--primary-color);
	color: var(--white-color);
}

.place-order-button .btn-default:hover {
	color: var(--primary-color);
}

.place-order-button .btn-default::after {
	background: var(--bg-color);
}

/****************************************/
/***  23. Account Dashboard Page css  ***/
/****************************************/

.page-my-account {
	padding: 120px 0;
}

.my-account-sidebar-item {
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	padding: 40px;
}

.my-account-sidebar-item ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.my-account-sidebar-item ul li {
	font-weight: 500;
	color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.my-account-sidebar-item ul li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.my-account-sidebar-item ul li a {
	display: flex;
	align-items: center;
	gap: 15px;
	color: initial;
	transition: all 0.4s ease-in-out;
}

.my-account-sidebar-item ul li a:hover {
	color: var(--accent-color);
}

.my-account-sidebar-item ul li img {
	width: 100%;
	max-width: 24px;
}

.account-dashboard-detail-box p {
	margin-bottom: 30px;
}

.account-dashboard-detail-box p:last-child {
	margin-bottom: 0;
}

.account-dashboard-detail-box p b {
	font-weight: 600;
	color: var(--primary-color);
}

.account-dashboard-detail-box p a {
	text-decoration: underline;
	color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.account-dashboard-detail-box p {
	font-size: 18px;
}

p.account-dashboard-detail-title {
	font-size: 20px;
}

/****************************************/
/***    24. Account Order Page css    ***/
/****************************************/

.page-account-order {
	padding: 120px 0;
}

.account-order-table-box {
	overflow-x: auto;
	cursor: grab;
}

.account-order-table-box table {
	width: 100%;
	white-space: nowrap;
}

.account-order-table-box::-webkit-scrollbar {
	height: 7px;
}

.account-order-table-box::-webkit-scrollbar-track {
	background-color: var(--primary-color);
}

.account-order-table-box::-webkit-scrollbar-thumb {
	background: var(--secobdary-color);
}

.account-order-table-box table tr th {
	min-width: 100px;
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	color: var(--primary-color);
	padding: 0 10px 20px 0;
}

.account-order-table-box table tr td {
	border-top: 1px solid var(--divider-color);
	padding: 20px 10px 20px 0;
}

.account-order-table-box table tr:last-child td {
	padding-bottom: 0;
}

.account-order-table-box table tr td:last-child {
	padding-right: 0;
}

.account-order-table-box table tr td.account-order-table-no {
	color: var(--primary-color);
}

.account-order-table-box table tr td .btn-default {
	font-weight: 600;
	padding: 8px 30px;
}

.account-order-table-box table tr td .btn-default::before {
	display: none;
}

.account-order-button {
	margin-top: 40px;
}

/****************************************/
/***  25. Account Order View Page css ***/
/****************************************/

.page-account-view-order {
	padding: 120px 0;
}

.view-order-product-info-box .product-header-tag {
	width: calc(53% - 6.67px);
}

.view-order-product-info-box .quantity-header-tag {
	width: calc(27% - 6.67px);
}

.view-order-product-info-box .subtotal-header-tag {
	width: calc(20% - 6.67px);
}

.view-order-product-info-box .cart-item-image-content {
	width: calc(53% - 5px);
}

.view-order-product-info-box .cart-item-quantity-total {
	width: calc(47% - 5px);
}

.view-order-product-info-box .cart-item-subtotal {
	width: 44%;
}

.view-order-product-info-box .cart-item-quantity p:last-child {
	margin: 0;
}

ul.view-order-product-info-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.view-order-product-info-list li {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

ul.view-order-product-info-list li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

ul.view-order-product-info-list li span {
	width: 21%;
	font-weight: 400;
	color: var(--text-color);
}

.view-order-address-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 90px;
	margin-top: 80px;
}

.view-order-address-item {
	width: calc(50% - 45px);
}

.view-order-address-item h2 {
	font-size: 20px;
}

.view-order-address-item ul {
	list-style: none;
	margin: 20px 0 0;
	padding: 20px 0 0;
	border-top: 1px solid var(--divider-color);
}

.view-order-address-item ul li {
	line-height: 1.5em;
	margin-bottom: 20px;
}

.view-order-address-item ul li:last-child {
	margin-bottom: 0;
}

.view-order-address-item ul li a {
	display: block;
	color: inherit;
}

/****************************************/
/***  26. Account Download Page css   ***/
/****************************************/

.page-product-download {
	padding: 120px 0;
}

/****************************************/
/***   27. Account Address Page css   ***/
/****************************************/

.page-my-account-address {
	padding: 120px 0;
}

.account-address-content-header {
	margin-bottom: 40px;
}

.account-address-content-header p:last-child {
	margin-bottom: 0;
}

.account-address-item {
	margin-bottom: 50px;
}

.account-address-item:last-child {
	margin-bottom: 0;
}

.account-address-item-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.account-address-item-title h2 {
	font-size: 20px;
}

.account-address-item-title p {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 0;
}

.account-address-item-title p a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.account-address-item-title p a:hover {
	color: var(--primary-color);
}

.account-address-item-title p a img {
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
}

.account-address-item-title p a:hover img {
	filter: brightness(0) invert(0);
}

.account-address-item-info-list {
	max-width: 415px;
}

.account-address-item-info-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.account-address-item-info-list ul li {
	line-height: 1.5em;
	margin-bottom: 20px;
}

.account-address-item-info-list ul li:last-child {
	margin-bottom: 0;
}

/****************************************/
/***  28. Account Addresses Page css  ***/
/****************************************/

.page-account-addresses {
	padding: 120px 0;
}

.account-address-form-btn {
	margin-top: 10px;
}

/****************************************/
/***   29. Account Details Page css   ***/
/****************************************/

.page-account-details {
	padding: 120px 0;
}

.account-details-content-item {
	margin-bottom: 50px;
}

.account-details-content-item:last-child {
	margin-bottom: 0;
}

/****************************************/
/***   30. Account Wishlist Page css  ***/
/****************************************/

.page-account-wishlist {
	padding: 120px 0;
}

.wishlist-item-header,
.wishlist-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.wishlist-item-header span {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--primary-color);
}

.wishlist-product-tag {
	width: calc(42% - 7.5px);
}

.wishlist-price-tag {
	width: calc(23% - 7.5px);
}

.wishlist-status-tag {
	width: calc(26% - 7.5px);
}

.wishlist-action-tag {
	width: calc(9% - 7.5px);
}

.wishlist-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.wishlist-item-image-content {
	width: calc(65% - 5px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.wishlist-item-image {
	position: relative;
	background: var(--secondary-color);
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	overflow: hidden;
}

.wishlist-item-image figure {
	display: block;
	max-width: 60px;
}

.wishlist-item-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.wishlist-item-info-content {
	width: calc(100% - 75px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-grow: 1;
}

.wishlist-item-title p {
	color: var(--primary-color);
	max-width: 160px;
	line-height: normal;
}

.wishlist-item-title p:last-child {
	margin-bottom: 0;
}

.wishlist-item-price {
	width: 43%;
}

.wishlist-item-price p {
	line-height: normal;
	margin-bottom: 5px;
}

.wishlist-item-price p:last-child {
	margin-bottom: 0;
}

.wishlist-item-price p span {
	text-decoration: line-through;
}

.wishlist-item-status-action {
	width: calc(35% - 5px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.wishlist-item-status p:last-child {
	margin-bottom: 0;
}

.wishlist-item-action {
	width: 22%;
}

.wishlist-item-action a {
	display: inline-block;
	color: var(--error-color);
	transition: all 0.4s ease-in-out;
}

.wishlist-item-action a i {
	font-size: 24px;
	color: inherit;
}

.wishlist-item-action a:hover {
	color: var(--primary-color);
}

.wishlist-content-button {
	margin-top: 40px;
}

/****************************************/
/***      	31. Login Page css	      ***/
/****************************************/

.page-login {
	padding: 120px 0;
}

.login-content-box {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 80px;
}

.login-content-form-item {
	width: calc(50% - 40px);
}

.login-content-title-box {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--divider-color);
}

.login-content-title-box h2 {
	font-size: 36px;
}

.login-content-title-box p {
	margin: 15px 0 0;
}

.login-content-form-btn {
	margin-top: 30px;
}

.login-content-form-btn a {
	font-size: 20px;
	color: var(--primary-color);
	text-decoration: underline;
}

.login-form-info p {
	margin-bottom: 15px;
}

.login-form-info p:last-child {
	margin: 0;
}

.login-form-info p a {
	color: var(--primary-color);
	text-decoration: underline;
}

.signup-form-btn {
	margin-top: 30px;
}

.signup-form-btn .btn-default {
	width: 100%;
}

/****************************************/
/***      32. Forgot Password css     ***/
/****************************************/

.page-forgot-password {
	padding: 120px 0;
}

.forgot-password-content-box .login-content-form-item {
	width: auto;
	max-width: 860px;
	margin: 0 auto;
}

/****************************************/
/***    33. Privacy Policy Page css   ***/
/****************************************/

.page-privacy-policy {
	padding: 60px 0;
}

.privacy-policy-sidebar-list ul li {
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.page-category-list.privacy-policy-sidebar-list ul li a {
	padding-right: 0;
}

.privacy-policy-sidebar-list ul li a::before {
	display: none;
}

.privacy-policy-entry-header {
	margin-bottom: 60px;
}

.privacy-policy-entry-header h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.privacy-policy-entry-header p {
	margin-bottom: 20px;
}

.privacy-policy-entry-header h3:last-child,
.privacy-policy-entry-header p:last-child {
	margin-bottom: 0;
}

.privacy-policy-entry-header p a {
	color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.privacy-policy-entry-header p a:hover {
	color: var(--accent-color);
}

.privacy-policy-entry-item {
	margin-bottom: 60px;
}

.privacy-policy-entry-item:last-child {
	margin-bottom: 0;
}

.privacy-policy-entry-item .section-title:last-child {
	margin-bottom: 0;
}

.privacy-policy-entry-item .section-title h2 {
	font-size: 26px;
}

.privacy-policy-entry-item .section-title ul {
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}

.privacy-policy-entry-item .section-title ul li {
	line-height: 1.4em;
	margin-bottom: 10px;
}

.privacy-policy-entry-item .section-title ul li:last-child {
	margin-bottom: 0;
}

.privacy-policy-entry-item .section-title ul li span {
	color: var(--primary-color);
}

.privacy-policy-entry-item .section-title ul li a {
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.privacy-policy-entry-item .section-title ul li a:hover {
	color: var(--accent-color);
}

.privacy-policy-entry-item-content-box {
	margin-bottom: 50px;
}

.privacy-policy-entry-item-content-box:last-child {
	margin-bottom: 0;
}

.privacy-policy-entry-item-content-box h3 {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 20px;
}

.privacy-policy-entry-item-content-box p {
	margin-bottom: 15px;
}

.privacy-policy-entry-item-content-box p:last-child {
	margin-bottom: 0;
}

.privacy-policy-entry-item-content-box p span {
	color: var(--primary-color);
}

.privacy-policy-entry-item-content-box ul {
	list-style: disc;
	margin: 0 0 20px;
	padding: 0 0 0 20px;
}

.privacy-policy-entry-item-content-box.number-list ul {
	list-style: decimal;
	padding-left: 25px;
}

.privacy-policy-entry-item-content-box h3:last-child,
.privacy-policy-entry-item-content-box ul:last-child {
	margin-bottom: 0;
}

.privacy-policy-entry-item-content-box ul li {
	line-height: 1.4em;
	margin-bottom: 10px;
}

.privacy-policy-entry-item-content-box ul li:last-child {
	margin-bottom: 0;
}

.privacy-policy-entry-item-content-box ul li span,
.privacy-policy-entry-item-content-box ul li::marker {
	color: var(--primary-color);
}

.privacy-policy-entry-item-content-box ul li a {
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.privacy-policy-entry-item-content-box ul li a:hover {
	color: var(--accent-color);
}

.privacy-policy-entry-item-content-box ul.contact-list-box {
	padding: 0;
}

.privacy-policy-entry-item-content-box ul.contact-list-box {
	list-style: none;
}

.privacy-policy-entry-item-content-box ul.contact-list-box li b {
	font-weight: 600;
	color: var(--primary-color);
}

/****************************************/
/***   34. Term Condition Page css    ***/
/****************************************/

.page-terms-conditions {
	padding: 120px 0;
}

/****************************************/
/***   35. Refund Return Policy css   ***/
/****************************************/

.page-refund-return-policy {
	padding: 120px 0;
}

/****************************************/
/***	36. Cancellation Policy css   ***/
/****************************************/

.page-cancellation-policy {
	padding: 120px 0;
}

/****************************************/
/***   37. Delivery Policy Page css   ***/
/****************************************/

.page-delivery-policy {
	padding: 120px 0;
}

/****************************************/
/***     38. Testimonials Page css    ***/
/****************************************/

.page-testimonials {
	padding: 120px 0 90px;
}

.page-testimonials .testimonial-item {
	min-height: 440px;
	background-color: var(--secondary-color);
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.page-testimonials .testimonial-item .testimonial-item-author {
	border-color: var(--divider-color);
	padding-right: 0;
	margin-top: 0;
}

.page-testimonials .testimonial-item .testimonial-item-content p,
.page-testimonials .testimonial-item .testimonial-author-content p {
	color: var(--text-color);
}

.page-testimonials .testimonial-item .testimonial-item-rating i,
.page-testimonials .testimonial-item .testimonial-author-content h2 {
	color: var(--accent-color);
}

/****************************************/
/***		 39. Faqs Page css  	  ***/
/****************************************/

.page-faqs {
	padding: 120px 0;
}

.page-category-list {
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	margin-bottom: 30px;
}

.page-category-list ul {
	list-style: none;
	margin: 0;
	padding: 30px;
}

.page-category-list ul li {
	line-height: 1.5em;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.page-category-list ul li:last-child {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	text-transform: capitalize;
	color: inherit;
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.page-category-list ul li a:hover {
	color: var(--primary-color);
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 12px;
	height: 12px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.page-category-list ul li.active a {
	color: #ffffff;
	font-weight: 600;
	background-color: #9c1137;
	border-radius: 4px;
	padding: 15px 15px;
}

.page-category-list ul li.active a::before {
	transform: translateY(-50%) rotate(45deg);
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	filter: brightness(0) invert(1);
}

.sidebar-cta-box {
	border: 1px solid var(--divider-color);
	border-radius: 4px;
	padding: 30px;
}

.gallery-item {
	border: 1px solid transparent;
	border-radius: 3px;
	padding: 10px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(to bottom, #ff8aab, #ffe6ed) border-box;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
	border-radius: 4px;
	display: block;
	margin: 0 auto;
}

.gallery-caption {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	margin-top: 12px !important;
	margin-bottom: 0;
}

.sidebar-cta-title {
	max-width: 242px;
}

.sidebar-cta-box h2 {
	font-size: 22px;
	line-height: 1.4em;
}

.sidebar-cta-box ul {
	border-top: 1px solid var(--divider-color);
	margin: 40px 0 0 0;
	padding: 30px 0 0 0;
	list-style: none;
}

.sidebar-cta-box ul li {
	color: var(--text-color);
	line-height: 1.5em;
	margin-bottom: 15px;
}

.sidebar-cta-box ul li:last-child {
	margin-bottom: 0;
}

.sidebar-cta-box ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-box ul li a:hover {
	color: var(--primary-color);
}

.sidebar-cta-box ul li a img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.page-faq-accordion {
	margin-bottom: 60px;
}

.page-faq-accordion:last-child {
	margin-bottom: 0px;
}

/****************************************/
/***     40. Contact Us Page css  	  ***/
/****************************************/

.page-contact-us {
	padding: 60px 0 60px;
}

.google-map-iframe {
	margin-right: 20px;
}

.google-map-iframe,
.google-map-iframe iframe {
	height: 100%;
	border-radius: 4px;
	overflow: hidden;
}

.google-map-iframe iframe {
	width: 100%;
	filter: grayscale(0.8);
	transition: all 0.6s ease-in-out;
}

.google-map-iframe:hover iframe {
	filter: grayscale(0);
}

.contact-form label {
	font-family: var(--accent-font);
	font-size: 16px;
	color: var(--text-color);
	line-height: 1.2em;
	margin-bottom: 10px;
}

.contact-form .form-control {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--primary-color);
	background: var(--secondary-color);
	border-radius: 4px;
	padding: 12px 20px;
	border: none;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.contact-form-btn {
	margin-top: 15px;
}

.contact-form .btn-default {
	width: 100%;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
}

.contact-form .btn-default:hover {
	color: var(--primary-color);
}

.contact-form .btn-default::after {
	background: var(--secondary-color);
}

.contact-info-box {
	padding: 60px 0 90px;
}

.contact-info-item {
	background: var(--secondary-color);
	border-radius: 4px;
	align-content: center;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.contact-info-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 30px;
	transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box {
	background: transparent;
}

.contact-info-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white-color);
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box::before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.contact-info-content p {
	line-height: normal;
	margin: 0 0 5px;
}

.contact-info-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-info-content ul li {
	font-family: var(--accent-font);
	font-size: 18px;
	line-height: 1.2em;
	margin-bottom: 5px;
}

.contact-info-content ul li:last-child {
	margin-bottom: 0;
}

.contact-info-content ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-info-content ul li a:hover {
	color: var(--primary-color);
}

/****************************************/
/***     41. 404 Error Page css  	  ***/
/****************************************/

.error-page {
	padding: 120px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 40px;
}

.error-page-image img {
	width: 100%;
	max-width: 630px;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

/****************************************/
/***       42. Responsive css         ***/
/****************************************/

@media only screen and (min-width: 769px) {

	.dropdown:hover>.dropdown-menu {
		display: block;
	}
}

@media only screen and (max-width: 1366px) {

	.dropdown-menu {
		padding: 40px 15px;
	}

	.mega-menu-box {
		padding: 0;
	}

	.main-menu ul .nav-item {
		margin: 0 10px;
	}
}

@media only screen and (max-width: 1024px) {

	/* .navbar{
		padding: 15px 0px;
	} */

	.main-menu {
		flex-direction: row-reverse;
		gap: 30px;
	}

	.main-menu .navbar-collapse {
		display: none !important;
	}

	.slicknav_menu ul.dropdown-menu {
		position: initial !important;
		transform: none !important;
		display: none;
		border-radius: 0;
		opacity: 1;
		visibility: visible;
		padding: 30px 15px;
		margin: 0;
		border: none;
		transition: inherit;
	}

	.slicknav_nav .mega-menu-box {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
	}

	.mega-menu-links-box {
		width: 100%;
		gap: 30px;
	}

	.mega-menu-link {
		width: calc(50% - 15px);
	}

	.mega-menu-link h2 {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.slicknav_menu .mega-menu-link ul {
		padding: 0;
	}

	.slicknav_menu .mega-menu-link ul li {
		margin-bottom: 10px;
	}

	.slicknav_menu .mega-menu-link ul li:last-child {
		margin-bottom: 0;
	}

	.slicknav_menu .mega-menu-link ul li a {
		color: var(--primary-color);
		padding: 0;
	}

	.mega-menu-items-list {
		width: 100%;
	}

	.mega-menu-item.big-offer-box {
		padding: 20px;
	}

	.slicknav_menu .mega-menu-item-image a {
		padding: 0;
	}

	.slicknav_menu .mega-menu-item-content h2 a,
	.mega-menu-item-content h2 {
		font-size: 20px;
		color: var(--primary-color);
		padding: 0;
	}

	.mega-menu-item.big-offer-box .mega-menu-item-content h2 {
		font-size: 26px;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

	.section-title-content {
		margin-top: 10px;
	}

	.section-title-content p {
		margin-bottom: 10px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title.section-sub-heading,
	.section-title .section-sub-title {
		margin-bottom: 10px;
	}

	.hero-slide {
		min-height: 90vh;
	}

	.hero-content {
		margin: 0;
	}

	.key-benefit-item {
		width: calc(50% - 15px);
	}

	.top-offer-item {
		width: calc(50% - 15px);
	}

	.intro-video {
		min-height: 680px;
	}

	.intro-video-item-list {
		margin-top: 200px;
	}

	.collection-item {
		gap: 20px 30px;
		padding: 30px;
	}

	.collection-item-content {
		width: calc(46% - 15px);
	}

	.collection-item-image-box {
		width: calc(54% - 15px);
	}

	.promise-item-list {
		gap: 30px 40px;
	}

	.promise-item {
		width: calc(20% - 32px);
	}

	.promise-item::before {
		right: -20px;
	}

	.faqs-content-box {
		position: initial;
		margin-bottom: 30px;
	}

	.limited-offer-item {
		min-height: 440px;
	}

	.limited-offer-item-body {
		padding: 30px;
	}

	.post-featured-image img {
		aspect-ratio: 1 / 0.75;
	}

	.about-footer {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.about-footer-content {
		margin-top: 15px;
	}

	.footer-newsletter-form {
		margin-top: 30px;
	}

	.footer-links-box {
		margin: 0;
	}

	.footer-links h2 {
		margin-bottom: 20px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-contact-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.footer-copyright {
		/* margin-top: 30px; */
		padding: 30px 0;
	}

	.mission-vision-item {
		min-height: 440px;
		padding: 30px;
	}

	.why-customer-choose-video {
		height: 550px;
	}

	.what-we-item .icon-box {
		margin-bottom: 30px;
	}

	.what-we-item-content p {
		margin: 15px 0 0 0;
	}

	.why-customer-choose {
		padding: 120px 15px;
	}

	.why-customer-choose-content {
		padding: 30px 0 0;
	}

	.page-single-sidebar {
		margin: 0;
	}

	.product-category-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.product-category-item-title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.product-category-item ul li {
		margin-bottom: 10px;
	}

	.product-item-list .product-item {
		width: calc(50% - 7.5px);
	}

	.page-single-sidebar .product-category-filter-header {
		margin-bottom: 20px;
	}

	.product-single-info-content,
	.product-single-image-box {
		width: 100%;
	}

	.product-single-image-box {
		position: initial;
		max-width: 740px;
		margin: 0 auto;
	}

	.related-product-items-list .product-item {
		width: calc(50% - 10px);
	}

	.page-single-sidebar.right-side-sidebar {
		position: initial;
		margin: 30px 0 0;
	}

	.order-summary-box-title,
	.order-summary-promocode-box,
	.order-summary-shipment-info {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.my-account-sidebar-item {
		padding: 30px;
	}

	.login-content-box {
		gap: 40px;
	}

	.login-content-form-item {
		width: calc(50% - 20px);
	}

	.page-category-list ul {
		padding: 20px;
	}

	.page-category-list ul li {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.sidebar-cta-box ul {
		margin: 30px 0 0 0;
	}

	.view-order-address-item-list {
		gap: 30px;
	}

	.view-order-address-item {
		width: calc(50% - 15px);
	}

	.google-map-iframe {
		margin: 0 0 30px;
	}

	.google-map-iframe {
		height: 480px;
	}

	.contact-form-btn {
		margin-top: 5px;
	}

	.contact-info-item {
		padding: 20px;
	}

	.contact-info-item .icon-box {
		margin-bottom: 20px;
	}

	.contact-info-content ul li {
		font-size: 20px;
	}
}

@media only screen and (max-width: 991px) {

	.topbar {
		padding: 10px 0;
	}

	.topbar-social-list ul {
		gap: 10px;
	}

	.topbar-info-content p {
		font-size: 14px;
		padding: 0px;
	}

	.topbar-info-content p::before,
	.topbar-info-content p::after {
		display: none;
	}

	.btn-default {
		padding: 15px 20px;
	}

	header.main-header {
		top: 0px;
		right: 0px;
		left: 0px;
	}

	header.main-header .header-sticky {
		width: 100%;
	}

	header.main-header .header-sticky.active {
		width: 100%;
		border-radius: 0;
		top: 0;
		left: 0;
		right: 0;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title .section-sub-title {
		padding: 7px 12px 7px 26px;
	}

	.section-title .section-sub-title::before {
		left: 12px;
	}

	.section-title h1 {
		font-size: 44px;
	}

	.section-title h2 {
		font-size: 34px;
	}

	.hero-content-list ul li {
		padding-left: 28px;
	}

	.hero-content-list ul li::before {
		height: 20px;
		width: 20px;
	}

	.hero-content-body {
		margin-top: 30px;
		padding-top: 30px;
		gap: 20px 30px;
	}

	.google-rating-box {
		gap: 10px;
	}

	.google-rating-box .google-rating-logo img {
		max-width: 46px;
	}

	.google-rating-content {
		width: calc(100% - 56px);
	}

	.google-rating-content h2 {
		font-size: 20px;
	}

	.key-benefit-box {
		padding: 20px 0;
	}

	.key-benefit-item .icon-box img {
		max-width: 50px;
	}

	.key-benefit-item-content {
		width: calc(100% - 65px);
	}

	.our-best-sellers {
		padding: 60px 0 30px;
	}

	.top-selling-item-list {
		gap: 30px 20px;
	}

	.top-selling-item {
		width: calc(33.33% - 13.33px);
	}

	.top-selling-item-image {
		max-width: 160px;
		margin-bottom: 20px;
	}

	.top-offer-item-list {
		margin-top: 50px;
	}

	.top-offer-item {
		padding: 20px;
	}

	.top-offer-item-content {
		width: calc(100% - 160px);
	}

	.top-offer-item-content .top-offer-item-title {
		margin-bottom: 10px;
	}

	.top-offer-item-content h3 {
		font-size: 20px;
	}

	.top-offer-item-btn {
		margin-top: 30px;
	}

	.top-offer-item-image {
		margin: -20px -20px -20px 0;
	}

	.top-offer-item-image img {
		max-width: 170px;
	}

	.our-products {
		padding: 30px 0 60px;
	}

	.intro-video {
		min-height: 530px;
	}

	.video-play-button a span {
		width: 60px;
		height: 60px;
	}

	.video-play-button a span i {
		font-size: 24px;
	}

	.intro-video-item-list {
		gap: 30px;
		margin-top: 130px;
	}

	.intro-video-item {
		width: calc(25% - 22.5px);
	}

	.intro-video-item:before {
		right: -15px;
	}

	.intro-video-item .icon-box {
		margin-bottom: 20px;
	}

	.intro-video-item .icon-box img {
		max-width: 50px;
	}

	.our-collection {
		padding: 60px 0 0;
	}

	.collection-item-content,
	.collection-item-image-box {
		gap: 20px;
	}

	.collection-item-title h3 {
		font-size: 22px;
	}

	.collection-item-image img {
		aspect-ratio: 1 / 0.65;
	}

	.our-promise {
		padding: 30px 0;
	}

	.promise-item {
		width: calc(33.33% - 26.67px);
	}

	.promise-item:nth-child(5n + 5)::before {
		display: block;
	}

	.promise-item:last-child::before,
	.promise-item:nth-child(3n + 3)::before {
		display: none;
	}

	.promise-item .icon-box {
		min-height: 120px;
	}

	.promise-item .icon-box img {
		max-width: 55px;
	}

	.our-testimonials {
		padding: 60px 0;
	}

	.testimonials-content-box {
		max-width: 100%;
	}

	.testimonials-content-box .section-title {
		margin-bottom: 30px;
	}

	.testimonial-item-author {
		margin-top: 30px;
		padding-top: 30px;
	}

	.testimonial-item-content p {
		font-size: 16px;
	}

	.our-faqs {
		padding: 60px 0 30px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding-right: 28px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 20px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 10px 28px 0 0;
	}

	.limited-offer-item-list {
		gap: 20px;
		margin-top: 60px;
	}

	.limited-offer-item {
		width: calc(50% - 10px);
	}

	.limited-offer-item-body {
		padding: 30px 25px;
	}

	.limited-offer-item-content span {
		margin-bottom: 10px;
	}

	.limited-offer-item-content h2 {
		font-size: 34px;
	}

	.limited-offer-btn {
		margin-top: 30px;
	}

	.our-blog {
		padding: 30px 0;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.post-item .post-item-btn {
		margin-top: 15px;
		padding-top: 15px;
	}

	.main-footer {
		padding: 50px 0 0;
	}

	.page-header {
		padding: 90px 0;
	}

	.page-header-box h1 {
		font-size: 44px;
	}

	.about-us {
		padding: 60px 0 30px;
	}

	.mission-vision-item {
		min-height: 400px;
	}

	.mission-vision-item-content h3 {
		font-size: 24px;
	}

	.mission-vision-item-content p {
		margin-top: 15px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.section-footer-text p {
		margin-bottom: 10px;
	}

	.about-us .section-footer-text {
		margin-top: 40px;
	}

	.what-we-do {
		padding: 30px 0;
	}

	.what-we-item .icon-box img {
		max-width: 50px;
	}

	.why-customer-choose {
		padding: 60px 15px;
	}

	.customer-accordion .accordion-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.customer-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding-right: 28px;
	}

	.customer-accordion .accordion-item .accordion-button::after,
	.customer-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 20px;
	}

	.customer-accordion .accordion-item .accordion-body {
		padding: 10px 28px 0 0;
	}

	.our-team {
		padding: 60px 0 30px;
	}

	.team-item-image {
		max-width: 260px;
	}

	.team-item-content {
		margin-top: 15px;
	}

	.page-about-faq {
		padding: 60px 0;
	}

	.page-blog {
		padding: 60px 0px;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 60px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry h2 {
		font-size: 34px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-products {
		padding: 60px 0;
	}

	.page-single-sidebar {
		position: initial;
		margin: 0 0 30px;
	}

	.product-category-sorting-list .form-select {
		padding: 8px 35px 8px 12px;
	}

	.product-learn-more-btn {
		margin-top: 30px;
	}

	.page-product-single {
		padding: 30px 0;
	}

	.product-single-breadcrumb-list {
		margin-bottom: 25px;
	}

	.product-single-price h2,
	.product-single-title h1 {
		font-size: 26px;
	}

	.product-single-price h2 sub {
		font-size: 18px;
	}

	.qty-box {
		gap: 10px;
		padding: 10px 12px;
	}

	.product-single-action ul li a {
		padding: 10px 15px;
	}

	.product-shipping-box ul li {
		margin-bottom: 10px;
	}

	.product-single-review-box {
		margin-top: 60px;
	}

	.product-step-nav {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.product-step-nav ul li .nav-link {
		font-size: 18px;
	}

	.product-step-nav ul li .nav-link::before {
		bottom: -21px;
	}

	.product-tab-item-box h2 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.product-tab-item-box p {
		margin: 10px 0 0 0;
	}

	.review-form,
	.customer-review-list {
		width: 100%;
	}

	.customer-review-item {
		margin-bottom: 30px;
	}

	.customer-review-item-content p {
		margin: 0 0 5px 0;
	}

	.review-form .form-control {
		padding: 10px 15px;
	}

	.related-products {
		padding: 30px 0 60px;
	}

	.page-cart {
		padding: 60px 0;
	}

	.cart-item-image-content {
		gap: 15px;
	}

	.cart-item-info-content {
		width: calc(100% - 105px);
	}

	.cart-item-buttons {
		gap: 15px 30px;
		margin-top: 30px;
	}

	.cart-item-buttons .btn-default {
		padding: 15px 16px 15px 40px;
	}

	.cart-item-buttons .btn-default.btn-update::before,
	.cart-item-buttons .btn-default.btn-clear::before {
		left: 14px;
		font-size: 16px;
	}

	.interested-products-box {
		margin-top: 60px;
	}

	.interested-products-box-title {
		margin-bottom: 20px;
	}

	.interested-products-box-title h2 {
		font-size: 26px;
	}

	.order-summary-promocode-form {
		margin-bottom: 20px;
	}

	.order-summary-promocode-form .form-group button.promocode-btn {
		padding: 8px 15px;
		min-width: 80px;
	}

	.page-order-details {
		padding: 60px 0;
	}

	.order-detail-title-box h2 {
		font-size: 34px;
	}

	.page-checkout {
		padding: 60px 0;
	}

	.checkout-login-box {
		margin-bottom: 30px;
	}

	.checkout-accordion-header .checkout-accordion-button {
		padding: 12px 35px 12px 15px;
	}

	.checkout-accordion-header .checkout-accordion-button::after,
	.checkout-accordion-header .checkout-accordion-button.collapsed::after {
		right: 15px;
	}

	.checkout-accordion-body {
		margin-top: 20px;
	}

	.checkout-accordion-body-content {
		margin-bottom: 20px;
	}

	.checkout-bill-address-title {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.checkout-bill-address-form .form-group,
	.checkout-login-form .form-group {
		margin-bottom: 20px;
	}

	.checkout-bill-address-form .form-control,
	.checkout-login-form .form-control {
		padding: 10px 15px;
	}

	.checkout-bill-address-form select.form-control {
		padding: 10px 35px 10px 15px;
	}

	.checkout-form-checkbox.different-address-note {
		margin-top: 15px;
	}

	.checkout-form-checkbox.different-address-note label {
		margin-bottom: 0;
	}

	.checkout-coupeon-accordion {
		margin-bottom: 20px;
	}

	.coupeon-accordion-header .coupeon-accordion-button {
		padding: 12px 35px 12px 15px;
	}

	.coupeon-accordion-header .coupeon-accordion-button::after,
	.coupeon-accordion-header .coupeon-accordion-button.collapsed::after {
		right: 15px;
	}

	.coupeon-accordion-body {
		margin-top: 20px;
	}

	.coupeon-accordion-body-content {
		margin-bottom: 15px;
	}

	.coupeon-apply-form .form-control {
		padding: 7px 18px 7px 35px;
	}

	.product-total-order-title {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.all-product-total,
	.product-total-item {
		margin-top: 15px;
		padding-top: 15px;
	}

	.order-summary-shipment-info ul li {
		margin-bottom: 10px;
	}

	.page-my-account {
		padding: 60px 0;
	}

	.my-account-sidebar-item ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.account-dashboard-detail-box p {
		margin-bottom: 15px;
	}

	.page-account-order {
		padding: 60px 0;
	}

	.account-order-button {
		margin-top: 30px;
	}

	.page-account-view-order {
		padding: 60px 0;
	}

	ul.view-order-product-info-list li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.view-order-address-item-list {
		margin-top: 40px;
	}

	.view-order-address-item ul li {
		margin-bottom: 15px;
	}

	.page-product-download {
		padding: 60px 0;
	}

	.page-my-account-address {
		padding: 60px 0;
	}

	.account-address-content-header {
		margin-bottom: 30px;
	}

	.account-address-item {
		margin-bottom: 30px;
	}

	.account-address-item-title {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.account-address-item-info-list ul li {
		margin-bottom: 15px;
	}

	.page-account-addresses {
		padding: 60px 0;
	}

	.page-account-details {
		padding: 60px 0;
	}

	.account-details-content-item {
		margin-bottom: 30px;
	}

	.page-account-wishlist {
		padding: 60px 0;
	}

	.wishlist-content-button {
		margin-top: 30px;
	}

	.page-login {
		padding: 60px 0;
	}

	.login-content-form-item {
		width: 100%;
	}

	.login-content-title-box {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.login-content-title-box h2 {
		font-size: 30px;
	}

	.login-content-title-box p {
		margin: 10px 0 0;
	}

	.login-content-form-btn {
		margin-top: 20px;
	}

	.login-content-form-btn a {
		font-size: 18px;
	}

	.signup-form-btn {
		margin-top: 20px;
	}

	.page-forgot-password {
		padding: 60px 0;
	}

	.page-privacy-policy {
		padding: 60px 0;
	}

	.privacy-policy-entry-header {
		margin-bottom: 40px;
	}

	.privacy-policy-entry-header h3 {
		margin-bottom: 15px;
	}

	.privacy-policy-entry-item {
		margin-bottom: 40px;
	}

	.privacy-policy-entry-item .section-title h2 {
		font-size: 30px;
	}

	.privacy-policy-entry-item-content-box {
		margin-bottom: 30px;
	}

	.privacy-policy-entry-item-content-box h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.privacy-policy-entry-item-content-box p {
		margin-bottom: 10px;
	}

	.privacy-policy-entry-item-content-box ul {
		margin-bottom: 15px;
	}

	.page-terms-conditions {
		padding: 60px 0;
	}

	.page-refund-return-policy {
		padding: 60px 0;
	}

	.page-cancellation-policy {
		padding: 60px 0;
	}

	.page-delivery-policy {
		padding: 60px 0;
	}

	.page-testimonials {
		padding: 60px 0 30px;
	}

	.page-testimonials .testimonial-item {
		padding: 30px;
		min-height: 350px;
	}

	.page-faqs {
		padding: 60px 0;
	}

	.sidebar-cta-box h2 {
		font-size: 20px;
		max-width: 100%;
	}

	.sidebar-cta-box ul {
		margin: 20px 0 0 0;
		padding: 20px 0 0 0;
	}

	.page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 0px 0 30px;
	}

	.contact-form label {
		font-size: 16px;
	}

	.contact-info-box {
		padding: 30px 0;
	}

	.error-page {
		padding: 60px 0px;
	}

	.error-page-image {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px) {

	.topbar .row .col-0 {
		display: none;
	}

	.main-menu {
		gap: 15px;
	}

	.header-action-details ul {
		gap: 10px;
	}

	.header-action-details ul li button img,
	.header-action-details ul li a img {
		max-width: 20px;
	}

	.slicknav_menu ul.dropdown-menu {
		padding: 20px 15px;
	}

	.mega-menu-links-box {
		gap: 20px;
	}

	.mega-menu-link {
		width: calc(50% - 10px);
	}

	.mega-menu-items-list {
		gap: 20px;
	}

	.mega-menu-item {
		width: calc(50% - 10px);
	}

	.mega-menu-item.big-offer-box {
		width: 100%;
		min-height: 180px;
	}

	.slicknav_menu .mega-menu-item-content h2 a,
	.mega-menu-item-content h2 {
		font-size: 18px;
	}

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-slide {
		min-height: 90vh;
	}

	.hero-content-list ul {
		gap: 10px;
	}

	.hero-content-list ul li {
		width: 100%;
	}

	.hero-content-body {
		gap: 20px;
	}

	.google-rating-box .google-rating-logo img {
		max-width: 40px;
	}

	.google-rating-content {
		width: calc(100% - 50px);
	}

	.google-rating-star i {
		font-size: 14px;
	}

	.google-rating-content h2 {
		font-size: 18px;
	}

	.key-benefit-item-list {
		gap: 20px;
	}

	.key-benefit-item {
		width: 100%;
	}

	.key-benefit-item-content h3 {
		font-size: 18px;
	}

	.key-benefit-item-content p {
		margin: 5px 0 0;
	}

	.top-selling-item-image {
		margin-bottom: 10px;
	}

	.top-selling-item-content h3 {
		font-size: 18px;
	}

	.top-offer-item-list {
		gap: 20px;
		margin-top: 30px;
	}

	.top-offer-item {
		width: 100%;
	}

	.top-offer-item-content {
		width: calc(100% - 140px);
	}

	.top-offer-item-content h3 {
		font-size: 18px;
	}

	.top-offer-item-btn {
		margin-top: 20px;
	}

	.top-offer-item-image img {
		max-width: 150px;
	}

	.product-item-header {
		margin-bottom: 15px;
	}

	.product-item-content .product-item-title {
		font-size: 18px;
	}

	.product-item-price {
		margin-top: 5px;
	}

	.product-item-price h3 {
		font-size: 16px;
	}

	.product-slider-btn .product-slider-button-prev,
	.product-slider-btn .product-slider-button-next {
		top: 150px;
		height: 40px;
		width: 40px;
	}

	.product-slider-button-prev::before,
	.product-slider-button-next::before {
		height: 12px;
		width: 12px;
	}

	.intro-video-item-list {
		margin-top: 60px;
	}

	.intro-video-item {
		width: calc(50% - 15px);
	}

	.intro-video-item .icon-box {
		margin-bottom: 10px;
	}

	.intro-video-item .icon-box img {
		max-width: 40px;
	}

	.intro-video-item-content h3 {
		font-size: 18px;
	}

	.intro-video-item:nth-child(4n + 4):before {
		display: block;
	}

	.intro-video-item:nth-child(2n + 2):before,
	.intro-video-item:last-child:before {
		display: none;
	}

	.collection-item {
		padding: 20px;
	}

	.collection-item-content,
	.collection-item-image-box {
		width: 100%;
		gap: 15px;
	}

	.promise-item {
		width: calc(50% - 20px);
	}

	.promise-item:nth-child(3n + 3)::before {
		display: block;
	}

	.promise-item:last-child::before,
	.promise-item:nth-child(2n + 2)::before {
		display: none;
	}

	.promise-item .icon-box {
		min-height: 100px;
	}

	.promise-item .icon-box img {
		max-width: 50px;
	}

	.promise-item-content h3 {
		font-size: 18px;
	}

	.testimonial-item-author {
		margin-top: 20px;
		padding: 20px 0 0 0;
	}

	.testimonial-author-content h2 {
		font-size: 18px;
	}

	.testimonial-btn {
		position: initial;
		justify-content: center;
		margin: 20px 0 0;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev {
		width: 40px;
		height: 40px;
	}

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before {
		background-size: 12px auto;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding-right: 0;
	}

	.faq-accordion .accordion-item .accordion-body p {
		font-size: 14px;
	}

	.limited-offer-item {
		width: 100%;
		min-height: 360px;
	}

	.limited-offer-item-body {
		padding: 20px;
	}

	.limited-offer-item-content h2 {
		font-size: 26px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-newsletter-form {
		margin-top: 20px;
	}

	.footer-links.footer-contact-box,
	.footer-links {
		max-width: 100%;
	}

	.footer-links h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-contact-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.footer-contact-item-content h3 {
		font-size: 18px;
	}

	.footer-copyright {
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.mission-vision-item {
		min-height: 360px;
		padding: 20px;
		width: 100%;
	}

	.mission-vision-item-content h3 {
		font-size: 22px;
	}

	.mission-vision-item-content p {
		margin-top: 10px;
	}

	.what-we-item .icon-box {
		margin-bottom: 20px;
	}

	.what-we-item-content h3 {
		font-size: 18px;
	}

	.what-we-item-content p {
		margin-top: 10px;
	}

	.why-customer-choose-video {
		height: 300px;
	}

	.customer-accordion .accordion-header .accordion-button {
		font-size: 16px;
	}

	.customer-accordion .accordion-item .accordion-body {
		padding-right: 0;
	}

	.team-item-content h2 {
		font-size: 18px;
	}

	.post-single-meta ol li,
	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.post-entry blockquote {
		background-size: 35px;
		padding: 60px 20px 20px 20px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.tag-links {
		font-size: 18px;
	}

	.product-category-filter-title h2 {
		font-size: 18px;
	}

	.page-single-sidebar .product-category-filter-header {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.product-category-item-title {
		font-size: 18px;
	}

	.product-category-result-info {
		width: 100%;
		justify-content: space-between;
	}

	.product-category-sorting-list .form-select {
		min-width: auto;
	}

	.product-item-list {
		gap: 20px 10px;
	}

	.product-item-list .product-item {
		width: calc(50% - 5px);
	}

	.product-item-list .product-item-action ul {
		gap: 5px;
	}

	.product-item-list .product-item-action ul li a {
		height: 26px;
		width: 26px;
	}

	.product-item-list .product-item-action ul li a img {
		max-width: 14px;
	}

	.product-single-breadcrumb-list ol {
		gap: 10px 40px;
	}

	.product-single-breadcrumb-list ol li {
		font-size: 14px;
	}

	.product-single-breadcrumb-list .breadcrumb li::before {
		right: -24px;
		width: 10px;
		height: 10px;
	}

	.product-single-image-box {
		flex-direction: column-reverse;
	}

	.product-single-image-slider .swiper-wrapper {
		flex-direction: initial;
	}

	.product-single-image-slider {
		width: 100%;
	}

	.product-single-image-slider .swiper-slide {
		width: calc(33.33% - 6.66px) !important;
	}

	.product-single-image-item {
		width: 100%;
	}

	.product-single-price h2,
	.product-single-title h1 {
		font-size: 22px;
	}

	.product-single-price h2 sub {
		font-size: 14px;
	}

	.product-single-details-list h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.product-single-details-list ul {
		gap: 10px;
	}

	.product-single-details-list ul li label {
		padding: 6px 11px;
	}

	.product-single-content-body {
		gap: 10px;
	}

	.qty-box {
		gap: 5px;
		padding: 9px 10px;
	}

	.qty-input {
		font-size: 16px;
	}

	.qty-btn {
		font-size: 22px;
	}

	.product-single-action ul {
		gap: 15px;
	}

	.product-single-action ul li a {
		padding: 10px;
	}

	.product-shipping-box ul li img {
		max-width: 20px;
		margin-right: 5px;
	}

	.product-step-nav .nav-tabs {
		gap: 15px;
	}

	.product-step-nav ul li {
		width: calc(33.33% - 10px);
	}

	.product-step-nav ul li .nav-link {
		font-size: 16px;
	}

	.product-step-nav ul li .nav-link::before {
		display: none;
	}

	.product-tab-item-box h2 {
		font-size: 22px;
	}

	.customer-review-item .icon-box {
		margin-right: 10px;
	}

	.customer-review-item .icon-box img {
		max-width: 50px;
	}

	.customer-review-item-body {
		width: calc(100% - 60px);
	}

	.product-additional-content-title {
		margin-bottom: 20px;
	}

	.product-additional-info-table table tr {
		width: 50%;
	}

	.product-additional-info-table table tr td {
		min-width: 100%;
		padding: 15px 10px;
	}

	.related-product-items-list .product-item {
		width: 100%;
	}

	.cart-item-header {
		display: none;
	}

	.cart-item-image-content,
	.cart-item-quantity-total {
		width: 100%;
	}

	.cart-item-quantity-total {
		justify-content: left;
	}

	.cart-item-image {
		width: 75px;
		height: 75px;
	}

	.cart-item-info-content {
		width: calc(100% - 95px);
	}

	.cart-item-title {
		max-width: 100%;
	}

	.cart-item-title p {
		max-width: 100%;
	}

	.cart-item-subtotal {
		width: auto;
	}

	.interested-products-box-title h2 {
		font-size: 22px;
	}

	.order-summary-content-box {
		padding: 5px;
	}

	.order-summary-box-title {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.order-summary-box-title h2,
	.order-summary-total h3,
	.order-summary-shipment-info h3 {
		font-size: 18px;
	}

	.order-summary-promocode-form .form-group .form-control {
		background-size: 14px auto;
		background-position: left 6px center;
		padding: 8px 10px 8px 28px;
	}

	.order-summary-content-box {
		padding: 5px;
	}

	.order-summary-box-title {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.order-summary-total h3,
	.order-summary-shipment-info h3 {
		font-size: 18px;
	}

	.order-summary-promocode-form .form-group .form-control {
		background-size: 14px auto;
		background-position: left 6px center;
		padding: 8px 10px 8px 28px;
	}

	.order-summary-shipment-info ul li {
		margin-bottom: 10px;
	}

	.order-detail-sidebar {
		padding: 20px;
	}

	h2.order-sidebar-item-title {
		font-size: 18px;
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.order-detail-sidebar-item ul li {
		margin-bottom: 10px;
	}

	.order-detail-box ul li {
		padding-bottom: 10px;
	}

	.order-detail-title-box h2 {
		font-size: 28px;
	}

	.order-detail-content-list ul li {
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.order-detail-content-list ul li span {
		width: auto;
	}

	.checkout-accordion-header .checkout-accordion-button {
		font-size: 14px;
	}

	.checkout-bill-address-title h2 {
		font-size: 18px;
	}

	.checkout-form-checkbox.different-address-note {
		margin-top: 10px;
	}

	.product-total-order-box {
		padding: 5px;
	}

	.coupeon-accordion-header .coupeon-accordion-button {
		font-size: 14px;
	}

	.coupeon-apply-form .form-group {
		min-width: 160px;
	}

	.coupeon-apply-form .form-control {
		padding: 5px 15px;
		background-image: none;
	}

	.coupeon-apply-btn .btn-default {
		padding: 8px 12px;
	}

	.product-total-order-title h3 {
		font-size: 18px;
	}

	.order-payment-info-item p {
		font-size: 14px;
	}

	.my-account-sidebar-item {
		padding: 20px;
	}

	.my-account-sidebar-item ul li img {
		max-width: 22px;
	}

	.account-dashboard-detail-box p {
		font-size: 16px;
	}

	p.account-dashboard-detail-title {
		font-size: 18px;
	}

	.account-order-table-box table {
		min-width: 630px;
		margin-bottom: 15px;
	}

	.account-order-table-box table tr th {
		min-width: auto;
		font-size: 18px;
		padding: 0 10px 15px 0;
	}

	.account-order-table-box table tr td {
		padding: 15px 10px 15px 0;
	}

	.account-order-table-box table tr td .btn-default {
		padding: 6px 20px;
	}

	.view-order-product-info-box .cart-item-header {
		display: flex;
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.view-order-product-info-box .product-header-tag {
		width: calc(56% - 6.67px);
	}

	.view-order-product-info-box .quantity-header-tag,
	.view-order-product-info-box .subtotal-header-tag {
		width: calc(22% - 6.67px);
		text-align: center;
	}

	.view-order-product-info-box .cart-item-header span {
		font-size: 16px;
	}

	.view-order-product-info-box .cart-item-image-content {
		width: calc(62% - 5px);
	}

	.view-order-product-info-box .cart-item-quantity-total {
		width: calc(38% - 5px);
		justify-content: space-evenly;
	}

	.view-order-product-info-box .cart-item-subtotal {
		width: auto;
	}

	.view-order-address-item ul li {
		margin-bottom: 10px;
	}

	ul.view-order-product-info-list li span {
		width: 40%;
	}

	.view-order-address-item {
		width: 100%;
	}

	.view-order-address-item h2 {
		font-size: 18px;
	}

	.view-order-address-item ul {
		margin-top: 15px;
		padding-top: 15px;
	}

	.account-address-item-title h2 {
		font-size: 18px;
	}

	.account-address-item-info-list ul li {
		margin-bottom: 10px;
	}

	.wishlist-item-header {
		display: none;
	}

	.wishlist-item {
		align-items: start;
	}

	.wishlist-item-image-content {
		width: calc(75% - 5px);
	}

	.wishlist-item-title p {
		max-width: 100%;
	}

	.wishlist-item-price {
		width: 100%;
	}

	.wishlist-item-status-action {
		flex-direction: column;
		width: calc(25% - 5px);
		align-items: end;
		text-align: end;
	}

	.wishlist-item-action {
		width: 100%;
	}

	.wishlist-item-action a i {
		font-size: 20px;
	}

	.login-content-title-box h2 {
		font-size: 24px;
	}

	.privacy-policy-entry-header h3 {
		font-size: 18px;
	}

	.privacy-policy-entry-item {
		margin-bottom: 30px;
	}

	.privacy-policy-entry-item .section-title {
		margin-bottom: 20px;
	}

	.privacy-policy-entry-item .section-title h2 {
		font-size: 24px;
	}

	.page-testimonials .testimonial-item {
		padding: 20px;
		min-height: auto;
		gap: 20px;
	}

	.google-map-iframe {
		height: 350px;
	}

	.contact-form label {
		font-size: 16px;
	}
}

/* Remove unwanted footer spacing */
.footer-links-box {
	margin: 0 !important;
}

.footer-links {
	margin: 0 !important;
}

.footer-links .accordion,
.footer-links .accordion-item {
	margin: 0 !important;
	padding: 0 !important;
}

.footer-links h2 {
	margin-top: 0 !important;
}

.footer-links ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.footer-links li {
	list-style: none !important;
	margin: 0 0 8px !important;
	padding: 0 !important;
}

.footer-links li::before,
.footer-links li::after {
	content: none !important;
	display: none !important;
}

/* Bootstrap accordion reset */
.footer-links .accordion-button {
	padding: 12px 0 !important;
	margin: 0 !important;
	background: transparent !important;
	color: #fff !important;
	box-shadow: none !important;
}

.footer-links .accordion-button::after {
	filter: brightness(0) invert(1);
}

.footer-links .accordion-collapse {
	margin: 0 !important;
}

.footer-links .footer-contact-item {
	margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 991.98px) {

	.footer-links-box {
		row-gap: 0 !important;
	}

	.footer-links {
		width: 100%;
	}

	.footer-links .accordion-header {
		margin: 0 !important;
	}

	.footer-links .accordion-item {
		border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
	}

	.footer-links .accordion-collapse {
		padding: 0 0 12px !important;
	}

	.footer-links li {
		margin-bottom: 6px !important;
	}
}


.footer-contact {
	padding-top: 0;
}

.contact-icon {
	width: 48px;
	height: 48px;
	/* background: #fff; */
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin: 0 auto 18px;
}

.contact-details {
	color: #777;
	font-size: 15px;
	line-height: 1.9;
}

.footer-brand {
	text-align: center;
}

.footer-description {
	max-width: 560px;
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.6;
}


.social-icons {
	display: flex;
	justify-content: center;
	gap: 17px;
	margin-top: 17px;
}

.social-icons a {
	color: #777;
	text-decoration: none;
	font-size: 15px;
	transition: .3s;
}

.social-icons a:hover {
	color: #b5003b;
}

.ptb-90 {
	padding-top: 90px;
	padding-bottom: 90px;
}

.ptb-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.custom-btn {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1em;
	text-transform: uppercase;
	background: var(--accent-color);
	color: var(--white-color);
	border: 1px solid var(--accent-color);
	border-radius: 4px;
	padding: 17px 30px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.custom-btn:hover {
	color: var(--primary-color);
}

.custom-btn::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	color:#000000;
	left: 50%;
	right: 50%;
	opacity: 0;
	/* background-color: var(--white-color); */
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.custom-btn:hover::after {
	left: 0;
	right: 0;
	opacity: 1;
}

.custom-btn.custom-btn-active {
	background: var(--accent-color);
	color: var(--white-color);
	border-color: var(--accent-color);
}

.custom-btn.custom-btn-active::after {
	background-color: var(--white-color);
}

.custom-btn.custom-btn-active:hover {
	color: var(--primary-color);
}


/* custom jewellery */

.custom-jewellery-section {
	background: #fbf7f6;
	overflow: hidden;
}

.custom-jewellery-content {
	padding: 55px 35px 55px 0;
}

.custom-label {
	display: block;
	margin-bottom: 14px;
	color: #a90f3d;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.custom-jewellery-content h2 {
	margin: 0;
	color: #191919;
	font-size: 42px;
	font-weight: 400;
	line-height: 1.15;
}

.title-line {
	position: relative;
	width: 58px;
	height: 1px;
	margin: 20px 0 25px;
	background: #a90f3d;
}

.title-line::after {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	right: -3px;
	top: -2px;
	border-radius: 50%;
	background: #a90f3d;
}

.custom-jewellery-content p {
	max-width: 480px;
	margin-bottom: 10px;
	color: #555;
	font-size: 14px;
	line-height: 1.7;
}

.custom-jewellery-content .question {
	margin-bottom: 5px;
	color: #333;
}

.custom-btn {
	display: inline-flex;
	align-items: center;
	gap: 22px;
	padding: 13px 20px;
	background: #a90f3d;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.2px;
	transition: all 0.3s ease;
}

.custom-btn span {
	font-size: 18px;
	line-height: 10px;
}

.custom-btn:hover {
	background: #870b30;
	color: #fff;
}

.custom-jewellery-image {
	height: 100%;
	min-height: 430px;
}

.custom-jewellery-image img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
	display: block;
}


/* Tablet */
@media (max-width: 991px) {

	.custom-jewellery-content {
		padding: 45px 25px 45px 0;
	}

	.custom-jewellery-content h2 {
		font-size: 34px;
	}

	.custom-jewellery-image,
	.custom-jewellery-image img {
		min-height: 380px;
	}
}


/* Mobile */
@media (max-width: 767px) {

	.custom-jewellery-content {
		padding: 40px 20px 30px;
	}

	.custom-jewellery-content h2 {
		font-size: 32px;
	}

	.custom-jewellery-content p {
		font-size: 13px;
	}

	.custom-jewellery-image {
		min-height: auto;
	}

	.custom-jewellery-image img {
		min-height: 300px;
		height: auto;
		object-fit: cover;
	}


}


/* Small Mobile */
@media (max-width: 480px) {

	.custom-jewellery-content h2 {
		font-size: 28px;
	}

	.custom-label {
		font-size: 10px;
	}

	.custom-jewellery-image img {
		min-height: 250px;
	}
}

/* ================================
   CUSTOM CREATION PROCESS
================================ */

.custom-process-section {
	background: var(--bg-color);
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}

.custom-process-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.section-heading {
	margin-bottom: 40px;
}

.section-heading h2 {
	margin: 0;
	font-size: 36px;
	font-weight: 500;
	color: var(--primary-color);
	letter-spacing: 0.02em;
}

.section-heading h2 span {
	color: var(--accent-color);
	font-weight: 600;
}

.heading-line {
	position: relative;
	width: 80px;
	height: 3px;
	background: var(--accent-color);
	margin: 18px auto 0;
	border-radius: 2px;
}

.heading-line::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-color);
	top: -3px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 0 0 4px rgba(156, 17, 55, 0.15);
}

.process-item {
	position: relative;
	text-align: center;
	padding: 20px 10px;
	transition: all 0.4s ease;
}

.process-item:hover {
	transform: translateY(-8px);
}

.process-icon {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 0 auto 20px;
	border: 2px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-color);
	transition: all 0.4s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.process-item:hover .process-icon {
	border-color: var(--accent-color);
	background: var(--accent-color);
	box-shadow: 0 8px 30px rgba(156, 17, 55, 0.2);
}

.process-icon i {
	color: var(--accent-color);
	font-size: 36px;
	font-weight: 400;
	transition: all 0.4s ease;
}

.process-item:hover .process-icon i {
	color: var(--white-color);
}

.step-number {
	position: absolute;
	top: -8px;
	left: -8px;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 12px;
	font-weight: 700;
	font-family: var(--default-font);
	border: 3px solid var(--bg-color);
	z-index: 2;
	transition: all 0.4s ease;
}

.process-item:hover .step-number {
	background: var(--white-color);
	color: var(--accent-color);
}

.process-item h3 {
	margin: 0;
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.04em;
	transition: color 0.3s ease;
}

.process-item:hover .process-item h3 {
	color: var(--accent-color);
}



/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {

	.process-icon {
		width: 85px;
		height: 85px;
	}

	.process-icon i {
		font-size: 32px;
	}

	.process-item h3 {
		font-size: 11px;
	}
}

/* Mobile */
@media (max-width: 767px) {

	.custom-process-section {
		padding: 60px 0;
	}

	.section-heading {
		margin-bottom: 40px;
	}

	.section-heading h2 {
		font-size: 24px;
	}

	.process-icon {
		width: 80px;
		height: 80px;
		margin: 0 auto 16px;
	}

	.process-icon i {
		font-size: 30px;
	}

	.step-number {
		width: 24px;
		height: 24px;
		font-size: 11px;
		top: -7px;
		left: -7px;
	}

	.process-item h3 {
		font-size: 11px;
	}

	.process-item::after {
		display: none;
	}
}

/* ================================
   SEMI PRECIOUS GEMSTONE SECTION
=============================== */

.gemstone-section {
	background: #fdf2f3;
	overflow: hidden;
	padding: 100px 0;
}

.gemstone-content {
	padding: 0 40px 0 0;
	max-width: 600px;
}

.gemstone-line {
	position: relative;
	width: 80px;
	height: 2px;
	margin-bottom: 22px;
	background: #a90f3d;
}

.gemstone-line::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #a90f3d;
	right: -4px;
	top: -3px;
}

.gemstone-content h2 {
	margin: 0 0 18px;
	color: #191919;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.2;
}

.gemstone-desc {
	max-width: 100%;
	margin-bottom: 10px;
	color: #5e4149;
	font-size: 15px;
	line-height: 1.7;
}

.gemstone-note {
	max-width: 100%;
	margin-bottom: 22px;
	color: #5e4149;
	font-size: 15px;
	line-height: 1.7;
}

.gemstone-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 20px;
	max-width: 100%;
	margin-bottom: 28px;
}

.gemstone-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #191919;
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 6px;
	transition: all 0.3s ease;
}

.gemstone-item:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.stone-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
	flex-shrink: 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.amethyst {
	background: #7131a5;
}

.citrine {
	background: #e2a91d;
}

.garnet {
	background: #7d1720;
}

.topaz {
	background: #24a8d2;
}

.tourmaline {
	background: #b52c70;
}

.aquamarine {
	background: #67c9dc;
}

.peridot {
	background: #6da832;
}

.other {
	background: #b44c8d;
}

.gemstone-btn {
	margin-top: 8px;
}

.gemstone-image {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	height: 100%;
}

.gemstone-image img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.gemstone-image:hover img {
	transform: scale(1.03);
}


/* Tablet */
@media (max-width: 991px) {
	.gemstone-section {
		padding: 80px 0;
	}

	.gemstone-content {
		padding: 0 20px 0 0;
		max-width: 100%;
	}

	.gemstone-content h2 {
		font-size: 32px;
	}

	.gemstone-image img {
		min-height: 420px;
	}
}


/* Mobile */
@media (max-width: 767px) {
	.gemstone-section {
		padding: 60px 0;
	}

	.gemstone-content {
		padding: 0 0 30px;
	}

	.gemstone-content h2 {
		font-size: 26px;
	}

	.gemstone-desc,
	.gemstone-note {
		font-size: 14px;
	}

	.gemstone-grid {
		gap: 8px 12px;
	}

	.gemstone-item {
		font-size: 13px;
		padding: 6px 10px;
	}

	.gemstone-image img {
		min-height: 320px;
	}
}


/* =========================================
   DIAMOND GUIDE SECTION
========================================= */

.diamond-guide-section {
	position: relative;
	overflow: hidden;
	padding: 90px 0;
	background: #fffafa;
}

/* Heading */

.diamond-heading span {
	display: block;
	margin-bottom: 12px;
	color: #a91e43;
}

.diamond-heading h1 {
	margin: 0;
	color: #171717;
}

.heading-line {
	position: relative;
	width: 65px;
	height: 20px;
	margin-top: 12px;
}

/* Content Row */

.diamond-info-row {
	margin-top: 25px;
}


/* Individual Item */

.diamond-info {
	position: relative;
	min-height: 180px;
	padding: 0 18px;
	text-align: center;
}

.diamond-info:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 22px;
	right: 0;
	width: 1px;
	height: 125px;
	background: #ead9de;
}


/* Icon */

.diamond-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	margin: 0 auto 15px;
	/* border: 1px solid #e8cbd3; */
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
}

.diamond-icon svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: #c45a76;
	stroke-width: 2;
}


/* Title */

.diamond-info h3 {
	margin-bottom: 10px;
	color: #252525;
}


/* Description */

.diamond-info p {
	margin: 0 auto;
	color: #555;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

	.diamond-guide-section {
		padding: 50px 0;
	}

	.diamond-heading {
		text-align: center;
	}

	.heading-line {
		margin-left: auto;
		margin-right: auto;
	}

	.diamond-info {
		min-height: 200px;
		margin-bottom: 20px;
	}

	.diamond-info:not(:last-child)::after {
		display: none;
	}

	.diamond-visual {
		min-height: 300px;
		margin-top: 20px;
	}

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

	.diamond-guide-section {
		padding: 40px 15px;
	}

	.diamond-heading span {
		font-size: 11px;
	}

	.diamond-heading h1 {
		font-size: 28px;
	}

	.diamond-info-row {
		margin-top: 30px;
	}

	.diamond-info {
		min-height: 185px;
		padding: 0 8px;
	}

	.diamond-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 12px;
	}

	.diamond-icon svg {
		width: 34px;
		height: 34px;
	}

	.diamond-info h3 {
		font-size: 13px;
	}

	.diamond-info p {
		max-width: 135px;
		font-size: 10px;
	}

	.diamond-visual {
		min-height: auto;
		margin-top: 15px;
	}

	.large-diamond {
		max-width: 100%;
	}

}

/* ==========================================
   DIAMOND SHAPES
========================================== */

.diamond-shapes-section {
	padding: 90px 0;
	background: var(--bg-color);
	overflow: hidden;
}

/* Heading */

.diamond-shapes-heading {
	text-align: center;
	margin-bottom: 50px;
}

.diamond-shapes-heading h2 {
	margin: 0;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 36px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.shape-heading-line {
	position: relative;
	width: 110px;
	height: 16px;
	margin: 18px auto 0;
}

.shape-heading-line::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 110px;
	height: 3px;
	background: var(--accent-color);
	border-radius: 2px;
}

.shape-heading-line span {
	position: absolute;
	top: 3px;
	left: 52px;
	width: 11px;
	height: 11px;
	border: 2px solid var(--accent-color);
	border-radius: 50%;
	background: var(--bg-color);
}


/* ==========================================
   GRID
========================================== */

.diamond-shapes-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	max-width: 1100px;
	margin: 0 auto;
	border-top: 1px solid var(--divider-color);
	border-left: 1px solid var(--divider-color);
}


/* ==========================================
   ITEM
========================================== */

.diamond-shape-item {
	position: relative;
	padding: 30px 15px;
	text-align: center;
	border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	transition: all 0.4s ease;
	cursor: pointer;
	background: var(--bg-color);
}

.diamond-shape-item:hover {
	background: var(--secondary-color);
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
	z-index: 2;
}


/* ==========================================
   IMAGE
========================================== */

.diamond-image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90px;
	margin-bottom: 15px;
}

.diamond-image img {
	display: block;
	width: auto;
	max-width: 80px;
	height: 80px;
	object-fit: contain;
	transition: transform 0.4s ease;
	filter: grayscale(20%);
	opacity: 0.9;
}

.diamond-shape-item:hover .diamond-image img {
	transform: scale(1.08);
	filter: grayscale(0%);
	opacity: 1;
}


/* ==========================================
   TITLE
========================================== */

.diamond-shape-item h3 {
	margin: 0;
	color: var(--primary-color);
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.diamond-shape-item:hover h3 {
	color: var(--accent-color);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

	.diamond-shapes-section {
		padding: 60px 0;
	}

	.diamond-shapes-heading {
		margin-bottom: 40px;
	}

	.diamond-shapes-heading h2 {
		font-size: 28px;
	}

	.diamond-shapes-grid {
		grid-template-columns: repeat(3, 1fr);
		max-width: 700px;
	}

	.diamond-shape-item {
		padding: 25px 10px;
	}

	.diamond-image {
		height: 75px;
		margin-bottom: 12px;
	}

	.diamond-image img {
		max-width: 65px;
		height: 65px;
	}

	.diamond-shape-item h3 {
		font-size: 11px;
	}
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575.98px) {

	.diamond-shapes-section {
		padding: 50px 0;
	}

	.diamond-shapes-heading {
		margin-bottom: 30px;
	}

	.diamond-shapes-heading h2 {
		font-size: 24px;
	}

	.diamond-shapes-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 400px;
		margin: 0 auto;
	}

	.diamond-shape-item {
		padding: 20px 8px;
	}

	.diamond-image {
		height: 65px;
		margin-bottom: 10px;
	}

	.diamond-image img {
		max-width: 55px;
		height: 55px;
	}

	.diamond-shape-item h3 {
		font-size: 10px;
	}
}

/* ==========================================
   NATURAL VS LAB-GROWN
========================================== */

.natural-lab-section {
	position: relative;
	overflow: hidden;
	padding: 90px 0;
	background: #fffafa;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.natural-lab-content {
	padding-right: 35px;
}


/* Heading */

.section-heading h2 {
	margin: 0;
	color: #252525;
}

.heading-line {
	position: relative;
	width: 65px;
	height: 15px;
	margin-top: 6px;
}

.heading-line::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 65px;
	height: 1px;
	background: #bd4263;
}



/* ==========================================
   COMPARISON
========================================== */

.comparison-row {
	margin-top: 20px;
}

.comparison-item {
	position: relative;
	min-height: 205px;
	padding: 0 20px;
	text-align: center;
}




/* Icon */

.comparison-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	margin: 0 auto 12px;
	border: 1px solid #d9aebb;
	border-radius: 50%;
	color: #b73b5e;
	font-size: 25px;
}

.comparison-icon span {
	line-height: 1;
}


/* Title */

.comparison-item h3 {
	margin: 0 0 12px;
	color: #a5264c;
}


/* Paragraph */

.comparison-item p {
	max-width: 190px;
	margin: 0 auto 12px;
	color: #555;
}


/* ==========================================
   BOTTOM TEXT
========================================== */

.comparison-bottom {
	margin-top: 20px;
	text-align: left;
}

.comparison-bottom p {
	margin: 0;
	color: #555;
}

.comparison-bottom strong {
	color: #a5264c;
}


/* ==========================================
   RIGHT IMAGE
========================================== */

.natural-lab-image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 350px;
	overflow: hidden;
}

.natural-lab-image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 350px;
	object-fit: cover;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

	.natural-lab-section {
		padding: 50px 0;
	}

	.natural-lab-content {
		padding-right: 0;
		margin-bottom: 35px;
	}

	.section-heading {
		text-align: center;
	}

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767.98px) {

	.natural-lab-section {
		padding: 40px 15px;
	}

	.section-heading h2 {
		font-size: 25px;
	}

	.comparison-row {
		margin-top: 25px;
	}

	.comparison-item {
		min-height: auto;
		margin-bottom: 25px;
		padding: 0 10px;
	}

	.comparison-item:first-child {
		border-right: 0;
		border-bottom: 1px solid #e5cfd5;
		padding-bottom: 25px;
	}

	.comparison-item p {
		max-width: 280px;
	}

	.comparison-bottom {
		margin-top: 5px;
	}

}

/* ==========================================
   FROM DIAMOND TO JEWELLERY
========================================== */

.craftsmanship-section {
	padding: 55px 0;
	background: #fffafa;
	overflow: hidden;
}


/* ==========================================
   HEADING
========================================== */

.craftsmanship-heading {
	margin-bottom: 28px;
}

.craftsmanship-heading>span {
	display: block;
	margin-bottom: 8px;
	color: #a8244b;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .4px;
}

.craftsmanship-heading h2 {
	margin: 0;
	color: #252525;
}

.craftsmanship-heading p {
	margin: 7px 0 0;
	color: #555;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991.98px) {

	.craftsmanship-section {
		padding: 45px 0;
	}

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 575.98px) {

	.craftsmanship-section {
		padding: 40px 15px;
	}

	.craftsmanship-heading {
		margin-bottom: 30px;
	}
}

.process-section {
	background: #fff;
	padding-top: 90px;
	padding-bottom: 90px;
}

.process-wrapper {
	position: relative;
}

.process-row {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Card */
.process-card {
	width: 100%;
	border: 1px solid #ff9db8;
	background: #fff;
	text-align: center;
	padding: 8px;
	position: relative;
	z-index: 2;
}

.process-card img {
	width: 100%;
	height: 130px;
	object-fit: contain;
	background: #fafafa;
	display: block;
}

.process-title {
	font-family: Georgia, serif;
	font-size: 15px;
	color: #222;
	margin: 10px 0 2px;
}

/* Arrow between cards */
.process-arrow {
	flex: 0 0 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
}

.process-arrow::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #d98aa0;
	z-index: -1;
}

.process-arrow span {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #d98aa0;
	color: #9c1137;
	display: flex;
	align-items: center;
	justify-content: center;
}

.process-arrow svg {
	width: 14px;
	height: 14px;
}

/* Tablet */
@media (max-width: 991.98px) {

	.process-row {
		flex-wrap: wrap;
	}

	.process-card {
		width: calc(50% - 35px);
	}

	.process-arrow {
		width: 35px;
		flex: 0 0 35px;
	}

	/* Hide horizontal arrow after second item */
	.process-arrow:nth-of-type(4) {
		display: none;
	}
}

/* Mobile */
@media (max-width: 767.98px) {


	.process-row {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.process-card {
		width: 100%;
		max-width: 300px;
	}

	.process-card img {
		height: 150px;
	}

	/* Vertical arrow */
	.process-arrow {
		width: 100%;
		height: 45px;
		flex: 0 0 45px;
	}

	.process-arrow::before {
		width: 1px;
		height: 100%;
		left: 50%;
		top: 0;
	}

	.process-arrow span {
		transform: rotate(90deg);
	}

	/* Show all arrows on mobile */
	.process-arrow:nth-of-type(4) {
		display: flex;
	}
}

/* lab hero  */

.lab-hero {
	background: #fff;

}

/* LEFT CONTENT */
.lab-hero-content {
	padding: 90px 0px;
	display: flex;
	align-items: center;
	max-width: 550px;
}

.lab-hero h1 {
	color: var(--primary-color);
	margin: 0 0 10px;
	text-transform: uppercase;
}

.lab-subtitle {
	font-style: italic;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 14px;
}

.lab-hero p {
	color: var(--text-color);
	margin-bottom: 13px;
}



/* ========================= MOBILE ========================= */
@media (max-width: 767.98px) {
	.lab-hero-content {
		padding: 35px 20px;
	}

	.lab-hero-inner {
		max-width: 100%;
	}

}

/* ========================= SMALL MOBILE ========================= */
@media (max-width: 480px) {
	.lab-hero-content {
		padding: 30px 16px;
	}

}


.lab-subtitle {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 16px;
	line-height: 1.3;
	font-style: italic;
	font-weight: 300;
	color: #a80d3a;
	margin-bottom: 14px;
}

/* why choose lab */

.why-lab-section {
	background: linear-gradient(180deg, #fff 0%, #fdf5f7 40%, #fff 100%);
	padding: 90px 0;
	border-top: 1px solid #e8c4cf;
	border-bottom: 1px solid #e8c4cf;
	position: relative;
	overflow: hidden;
}

.why-lab-section::before {
	content: '';
	position: absolute;
	top: -40%;
	left: -8%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(156, 17, 55, 0.045) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.why-lab-section::after {
	content: '';
	position: absolute;
	bottom: -35%;
	right: -6%;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(156, 17, 55, 0.035) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}


/* HEADING */

.why-lab-title {
	margin: 0;
	color: var(--primary-color);
	font-size: 40px;
	font-weight: 500;
	letter-spacing: 0.02em;
}



/* ITEM CARD */

.why-lab-item {
	padding: 45px 30px 40px;
	text-align: center;
	position: relative;
	background: #fff;
	border: 1px solid #f0dce2;
	border-radius: 8px;
	margin-top: 30px;
	transition: all 0.4s ease;
	box-shadow: 0 4px 20px rgba(156, 17, 55, 0.04);
}

.why-lab-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(156, 17, 55, 0.10);
	border-color: #e8c4cf;
}

/* Vertical separator - hidden, using card borders instead */
.why-lab-item::after {
	display: none;
}

.col-lg-3:last-child .why-lab-item::after {
	display: none;
}

/* ICON */

.why-lab-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: var(--accent-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(156, 17, 55, 0.25);
	position: relative;
}

.why-lab-icon::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px solid #f0dce2;
}

.why-lab-icon i {
	font-size: 34px;
	line-height: 1;
}

/* TITLE */

.why-lab-item h3 {
	margin: 0 0 12px;
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.04em;
}

/* DESCRIPTION */

.why-lab-item p {
	max-width: 260px;
	margin: 0 auto;
	color: var(--text-color);
}

/* ==========================
   MOBILE
   ========================== */

@media (max-width: 767.98px) {
	.why-lab-section {
		padding: 55px 0 45px;
	}

	.why-lab-title {
		font-size: 26px;
	}

	.why-lab-item {
		padding: 30px 20px 30px;
		margin-top: 20px;
	}

	.why-lab-icon {
		width: 68px;
		height: 68px;
		margin-bottom: 18px;
	}

	.why-lab-icon i {
		font-size: 28px;
	}

	.why-lab-item h3 {
		font-size: 17px;
		margin-bottom: 10px;
	}

	.why-lab-item p {
		max-width: 100%;
		font-size: 14px;
	}
}

/* ==========================
   SMALL MOBILE
   ========================== */

@media (max-width: 480px) {
	.why-lab-section {
		padding: 45px 0 35px;
	}

	.why-lab-title {
		font-size: 22px;
	}

	.why-lab-item {
		padding: 25px 16px 28px;
	}

	.why-lab-icon {
		width: 64px;
		height: 64px;
	}

	.why-lab-icon i {
		font-size: 26px;
	}

	.why-lab-item h3 {
		font-size: 15px;
	}

	.why-lab-item p {
		font-size: 13px;
	}
}

/* =========================================
   NATURAL DIAMOND INTRO
========================================= */

.natural-diamond-intro {
	position: relative;
	padding: 100px 0;
	background: linear-gradient(135deg, #fff 0%, #fdf5f7 50%, #fff 100%);
	overflow: hidden;
}

.natural-diamond-intro .sub-title {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent-color);
	margin-bottom: 18px;
	padding: 6px 16px 6px 32px;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
}

.natural-diamond-intro .sub-title::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.natural-diamond-intro h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.15em;
	color: var(--primary-color);
	margin-bottom: 22px;
}

.natural-diamond-intro p {
	font-size: 16px;
	line-height: 1.75em;
	color: var(--text-color);
	margin-bottom: 35px;
	max-width: 520px;
}

.natural-diamond-intro-image {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.natural-diamond-intro-image::before {
	content: '';
	position: absolute;
	width: 280px;
	height: 280px;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	opacity: 0.5;
}

.natural-diamond-intro-image img {
	max-width: 320px;
	height: auto;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 25px 50px rgba(156, 17, 55, 0.18));
	animation: floatDiamond 6s ease-in-out infinite;
}

@keyframes floatDiamond {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

.natural-diamond-intro h2,
.natural-diamond-intro p,
.natural-diamond-intro .custom-btn {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s ease-out forwards;
}

.natural-diamond-intro h2 {
	animation-delay: 0.1s;
}

.natural-diamond-intro p {
	animation-delay: 0.25s;
}

.natural-diamond-intro .custom-btn {
	animation-delay: 0.4s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* =========================================
   5-COLUMN NATURAL FEATURES GRID
========================================= */

.natural-features-grid {
	display: flex;
	flex-wrap: wrap;
}

.natural-features-grid .col-lg {
	flex: 0 0 20%;
	max-width: 20%;
}

.natural-features-grid .why-lab-item {
	margin-top: 0;
}

.natural-features-grid .why-lab-item p {
	max-width: 100%;
}

.natural-features-grid .why-lab-icon {
	width: 85px;
	height: 85px;
	margin: 0 auto 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-color) 0%, #b8154a 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px rgba(156, 17, 55, 0.28);
	position: relative;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.natural-features-grid .why-lab-icon::after {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 1px solid rgba(156, 17, 55, 0.2);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.natural-features-grid .why-lab-item:hover .why-lab-icon {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 15px 35px rgba(156, 17, 55, 0.35);
}

.natural-features-grid .why-lab-item:hover .why-lab-icon::after {
	inset: -8px;
	border-color: rgba(156, 17, 55, 0.4);
}

.natural-features-grid .why-lab-icon i {
	font-size: 36px;
	line-height: 1;
}

.natural-features-grid .why-lab-item {
	padding: 40px 20px 35px;
	background: #fff;
	border: 1px solid #f0dce2;
	border-radius: 12px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(156, 17, 55, 0.04);
	position: relative;
	overflow: hidden;
}

.natural-features-grid .why-lab-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), #d4a0b5);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.natural-features-grid .why-lab-item:hover::before {
	opacity: 1;
}

.natural-features-grid .why-lab-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(156, 17, 55, 0.12);
	border-color: #e8c4cf;
}

.natural-features-grid .why-lab-item p {
	font-size: 13.5px;
	line-height: 1.65em;
	margin: 0 auto;
	color: var(--text-color);
}

.why-lab-intro {
	max-width: 600px;
	margin: 20px auto;
	font-size: 15px;
	color: var(--text-color);
	line-height: 1.6em;
}

/* ==========================
   TABLET - NATURAL FEATURES
   ========================== */

@media (max-width: 991.98px) {
	.natural-features-grid .col-lg {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.natural-diamond-intro {
		padding: 70px 0;
	}

	.natural-diamond-intro h2 {
		font-size: 40px;
	}

	.natural-diamond-intro-image img {
		max-width: 260px;
	}

	.natural-diamond-intro-image::before {
		width: 220px;
		height: 220px;
	}
}

/* ==========================
   MOBILE - NATURAL FEATURES
   ========================== */

@media (max-width: 767.98px) {
	.natural-features-grid .col-lg {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.natural-features-grid .why-lab-item {
		margin-top: 20px;
	}

	.natural-diamond-intro {
		padding: 55px 0;
		text-align: center;
	}

	.natural-diamond-intro h2 {
		font-size: 32px;
	}

	.natural-diamond-intro p {
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.natural-diamond-intro-image {
		margin-top: 40px;
	}

	.natural-diamond-intro-image img {
		max-width: 220px;
	}

	.natural-diamond-intro-image::before {
		width: 180px;
		height: 180px;
	}
}

/* ==========================
   SMALL MOBILE
   ========================== */

@media (max-width: 480px) {
	.natural-diamond-intro {
		padding: 45px 0;
	}

	.natural-diamond-intro h2 {
		font-size: 26px;
	}

	.natural-diamond-intro .sub-title {
		font-size: 11px;
		padding: 5px 12px 5px 26px;
	}

	.natural-diamond-intro .sub-title::before {
		left: 10px;
		width: 5px;
		height: 5px;
	}

	.natural-features-grid .why-lab-item {
		padding: 28px 16px 28px;
	}

	.natural-features-grid .why-lab-icon {
		width: 68px;
		height: 68px;
		margin-bottom: 18px;
	}

	.natural-features-grid .why-lab-icon i {
		font-size: 28px;
	}

	.natural-features-grid .why-lab-item h3 {
		font-size: 14px;
	}

	.natural-features-grid .why-lab-item p {
		font-size: 12.5px;
	}
}

.section-divider {
	position: relative;
	width: 100%;
	max-width: 500px;
	margin: 10px auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-divider hr {
	width: 100%;
	margin: 0;
	border: 0;
	border-top: 1px solid #e8b8c6;
	opacity: 1;
}

.section-divider span {
	position: absolute;
	padding: 0 10px;
	color: #a80d3a;
	line-height: 1;
}

.section-divider i {
	font-size: 10px;
}


/* =========================================
   COMMON
========================================= */

.comparison-title,
.science-title {
	color: #a80d3a;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
}

.comparison-divider {
	position: relative;
	width: 100px;
	height: 12px;
	margin: 8px auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.comparison-divider hr {
	width: 100%;
	margin: 0;
	border: 0;
	border-top: 1px solid #e2b5c2;
	opacity: 1;
}

.comparison-divider span {
	position: absolute;
	background: #fff;
	color: #a80d3a;
	padding: 0 8px;
}

.comparison-divider i {
	font-size: 9px;
}


/* =========================================
   SECTION 1
========================================= */

.diamond-comparison-section {
	background: #fff;
	padding: 55px 0;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	font-size: 13px;
}

.comparison-table th {
	background: #a80d3a;
	color: #fff;
	padding: 14px 12px;
	border: 1px solid #fff;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
}

.comparison-table th:first-child {
	width: 23%;
}

.comparison-table th:nth-child(2),
.comparison-table th:nth-child(3) {
	width: 38.5%;
}

.comparison-table td {
	border: 1px solid #e6c4ce;
	padding: 14px 15px;
	color: #222;
	line-height: 1.4;
	vertical-align: middle;
}

.comparison-table td:first-child {
	font-weight: 600;
	color: #333;
}

.comparison-table td:first-child i {
	color: #a80d3a;
	width: 22px;
	margin-right: 5px;
	text-align: center;
}


/* =========================================
   SECTION 2
========================================= */

.science-brilliance-section {
	position: relative;
	background: linear-gradient(135deg, #fff 0%, #fff8fa 50%, #fff 100%);
	padding: 90px 0;
	border-top: 1px solid #e6c4ce;
	border-bottom: 1px solid #e6c4ce;
	overflow: hidden;
}

.science-brilliance-section::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -80px;
	width: 340px;
	height: 340px;
	background: radial-gradient(circle, rgba(168, 13, 58, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.science-brilliance-section::after {
	content: '';
	position: absolute;
	bottom: -100px;
	left: -60px;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(168, 13, 58, 0.035) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.science-title {
	color: #222;
	font-family: var(--accent-font);
	font-size: 36px;
	font-weight: 500;
	letter-spacing: 0.02em;
	margin-bottom: 8px;
}

.science-description {
	color: #555;
	font-size: 15px;
	line-height: 1.7;
	margin: 0 auto 50px;
	max-width: 680px;
}


/* =========================================
   FEATURES
========================================= */

.science-features {
	max-width: 1000px;
	margin: 0 auto;
}

.science-feature-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 28px 24px;
	background: #fff;
	border: 1px solid #f0dce2;
	border-radius: 12px;
	transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(168, 13, 58, 0.04);
	position: relative;
	overflow: hidden;
}

.science-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #a80d3a, #d4a0b5);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.science-feature-card:hover::before {
	opacity: 1;
}

.science-feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(168, 13, 58, 0.12);
	border-color: #e8c4cf;
}

.science-icon {
	width: 60px;
	height: 60px;
	min-width: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #a80d3a 0%, #c71551 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(168, 13, 58, 0.25);
	transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.science-icon::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px solid rgba(168, 13, 58, 0.2);
	transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.science-feature-card:hover .science-icon {
	transform: translateY(-4px) scale(1.06);
	box-shadow: 0 12px 28px rgba(168, 13, 58, 0.35);
}

.science-feature-card:hover .science-icon::after {
	inset: -7px;
	border-color: rgba(168, 13, 58, 0.4);
}

.science-icon i {
	font-size: 24px;
}

.science-feature-content {
	flex: 1;
	text-align: left;
}

.science-feature-content h3 {
	color: #222;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 8px;
	letter-spacing: 0.03em;
}

.science-feature-content h3 span {
	display: block;
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 500;
	color: #a80d3a;
	letter-spacing: 0.08em;
	margin-top: 2px;
}

.science-feature-content p {
	color: #666;
	font-size: 13.5px;
	line-height: 1.6;
	margin: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

	.science-brilliance-section {
		padding: 70px 0;
	}

	.science-title {
		font-size: 30px;
	}

	.science-feature-card {
		padding: 22px 18px;
		gap: 16px;
	}

	.science-icon {
		width: 52px;
		height: 52px;
		min-width: 52px;
	}

	.science-icon i {
		font-size: 20px;
	}

	.science-feature-content h3 {
		font-size: 16px;
	}

	.science-feature-content h3 span {
		font-size: 12px;
	}

	.science-feature-content p {
		font-size: 12.5px;
	}
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

	.science-brilliance-section {
		padding: 55px 15px;
	}

	.science-title {
		font-size: 24px;
	}

	.science-description {
		font-size: 13.5px;
		margin-bottom: 35px;
	}

	.science-feature-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 25px 20px;
		margin-bottom: 15px;
	}

	.science-feature-content {
		text-align: center;
	}

	.science-icon {
		width: 56px;
		height: 56px;
		min-width: 56px;
	}

	.science-icon i {
		font-size: 22px;
	}

	.science-feature-content h3 {
		font-size: 15px;
	}

	.science-feature-content p {
		font-size: 12.5px;
	}
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

	.science-brilliance-section {
		padding: 45px 12px;
	}

	.science-title {
		font-size: 20px;
	}

	.science-feature-card {
		padding: 22px 16px;
	}

	.science-icon {
		width: 48px;
		height: 48px;
		min-width: 48px;
	}

	.science-icon i {
		font-size: 18px;
	}

	.science-feature-content h3 {
		font-size: 14px;
	}

	.science-feature-content h3 span {
		font-size: 11px;
	}

	.science-feature-content p {
		font-size: 11.5px;
	}
}

.bg-color-2 {
	background: linear-gradient(180deg, #fff 0%, #fdf5f7 100%);
	border-top: 1px solid #e8c4cf;
	border-bottom: 1px solid #e8c4cf;
}

/* about us  */

/* About Intro */
.about-intro {
	background: #fff;
	position: relative;
	overflow: hidden;
}

.about-intro::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(156, 17, 55, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.about-intro p {
	color: #555;
	font-size: 15px;
	line-height: 1.7;
}

.about-intro p strong {
	color: #a70d3c;
	font-weight: 600;
}

/* Section Badge */
.section-badge {
	display: inline-block;
	margin-bottom: 12px;
}

.section-badge .section-sub-title {
	display: inline-block;
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	line-height: 1.286em;
	color: var(--accent-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 6px 16px 6px 32px;
	position: relative;
}

.section-badge .section-sub-title::before {
	content: '';
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

/* Section Title */
.section-title-content .section-title {
	font-family: var(--accent-font);
	font-size: 46px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
	margin-bottom: 0;
}

/* About Intro Summary */
.about-intro-summary {
	font-size: 15px;
	color: #777;
	line-height: 1.8;
	margin-bottom: 28px !important;
}

/* Icons */
.about-icon {
	width: 42px;
	height: 42px;
	border: 1px solid #f2d7df;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a70d3c;
	font-size: 20px;
	background: #fffafb;
	transition: all 0.4s ease-in-out;
}

.about-icon i {
	transition: all 0.4s ease-in-out;
}

.about-intro .d-flex:hover .about-icon {
	background: var(--accent-color);
	border-color: var(--accent-color);
	box-shadow: 0 4px 15px rgba(156, 17, 55, 0.25);
}

.about-intro .d-flex:hover .about-icon i {
	color: var(--white-color);
}

/* Image */
.about-image-wrapper {
	position: relative;
	padding: 12px;
	background: #fff8fa;
	border-radius: 10px;
}

.about-image-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 38px;
	height: 38px;
	border-top: 2px solid #d9a441;
	border-left: 2px solid #d9a441;
}

.about-image-wrapper::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 38px;
	height: 38px;
	border-right: 2px solid #d9a441;
	border-bottom: 2px solid #d9a441;
}

.about-image-wrapper img {
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
	border-radius: 6px;
}

/* Tablet */
@media (max-width: 991.98px) {
	.about-intro p {
		font-size: 14px;
	}

	.about-image-wrapper img {
		height: 320px;
	}

	.section-title-content .section-title {
		font-size: 36px;
	}
}

/* Mobile */
@media (max-width: 767.98px) {
	.about-intro {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}

	.about-intro p {
		font-size: 14px;
		line-height: 1.6;
	}

	.about-intro-summary {
		font-size: 14px !important;
	}

	.about-icon {
		width: 38px;
		height: 38px;
		font-size: 17px;
	}

	.about-image-wrapper {
		margin-top: 15px;
	}

	.about-image-wrapper img {
		height: 280px;
	}

	.section-title-content .section-title {
		font-size: 30px;
	}
}

/* Small Mobile */
@media (max-width: 575.98px) {
	.about-image-wrapper img {
		height: 240px;
	}

	.about-intro p {
		font-size: 13px;
	}

	.section-title-content .section-title {
		font-size: 26px;
	}
}

/* =========================
   OUR VALUES
========================= */

.our-values {
	position: relative;
	background: linear-gradient(180deg, #fff 0%, #fdf5f7 50%, #fff 100%);
	padding: 100px 0 90px;
	overflow: hidden;
}

.our-values::before {
	content: '';
	position: absolute;
	top: -15%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(167, 13, 60, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.our-values::after {
	content: '';
	position: absolute;
	bottom: -20%;
	right: -8%;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(213, 161, 58, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

/* Heading */

.values-sub-title {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--accent-color);
	margin-bottom: 14px;
	padding: 6px 18px 6px 34px;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
}

.values-sub-title::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.values-title {
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 42px;
	font-weight: 500;
	letter-spacing: 0.02em;
	margin-bottom: 0;
}

/* Divider */

.values-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 16px;
}

.values-divider span {
	width: 50px;
	height: 1px;
	background: var(--accent-color);
	opacity: 0.4;
}

.values-divider i {
	color: var(--accent-color);
	font-size: 12px;
	transform: rotate(45deg);
}


/* Card */

.value-card {
	position: relative;
	background: #fff;
	border: 1px solid #f0dce2;
	border-radius: 16px;
	padding: 40px 22px 30px;
	min-height: 240px;

	display: flex;
	flex-direction: column;
	align-items: center;

	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(167, 13, 60, 0.04);
	overflow: hidden;
}

.value-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), #d4a0b5);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.value-card:hover::before {
	opacity: 1;
}

.value-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(167, 13, 60, 0.12);
	border-color: #e8c4cf;
}


/* Icon */

.value-icon {
	position: relative;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-color) 0%, #b8154a 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	margin-bottom: 18px;
	box-shadow: 0 10px 25px rgba(167, 13, 60, 0.25);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.value-icon::after {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 1px solid rgba(167, 13, 60, 0.2);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-icon {
	transform: translateY(-6px) scale(1.06);
	box-shadow: 0 15px 35px rgba(167, 13, 60, 0.35);
}

.value-card:hover .value-icon::after {
	inset: -8px;
	border-color: rgba(167, 13, 60, 0.35);
}

.value-icon i {
	font-weight: normal;
}


/* Number */

.value-number {
	position: absolute;
	top: 18px;
	right: 20px;
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 500;
	color: var(--accent-color);
	opacity: 0.25;
	letter-spacing: 0.05em;
	transition: all 0.4s ease;
}

.value-card:hover .value-number {
	opacity: 0.6;
}


/* Card Heading */

.value-card h3 {
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	letter-spacing: 0.04em;
	transition: color 0.3s ease;
}

.value-card:hover h3 {
	color: var(--accent-color);
}


/* Description */

.value-card p {
	color: var(--text-color);
	font-size: 13.5px;
	line-height: 1.65;
	margin: 0;
	max-width: 220px;
}


/* Hover line */

.value-card-hover-line {
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-color), #d4a0b5);
	margin-top: 18px;
	border-radius: 2px;
	transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-card-hover-line {
	width: 50px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

	.our-values {
		padding: 80px 0 70px;
	}

	.values-title {
		font-size: 36px;
	}

	.value-card {
		min-height: 220px;
		padding: 35px 18px 28px;
	}

	.value-icon {
		width: 65px;
		height: 65px;
		font-size: 30px;
	}

	.value-card h3 {
		font-size: 16px;
	}

	.value-card p {
		font-size: 12.5px;
		max-width: 200px;
	}
}


/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {

	.our-values {
		padding: 60px 0 50px;
	}

	.values-title {
		font-size: 30px;
	}

	.value-card {
		min-height: auto;
		padding: 30px 20px 25px;
	}

	.value-icon {
		width: 60px;
		height: 60px;
		font-size: 28px;
	}

	.value-number {
		top: 14px;
		right: 16px;
		font-size: 12px;
	}

	.value-card h3 {
		font-size: 15px;
	}

	.value-card p {
		font-size: 12.5px;
		max-width: 260px;
	}
}

/* =====================================
   QUALITY & CERTIFICATION
===================================== */

.quality-section {
	position: relative;
	background: linear-gradient(180deg, #fff 0%, #fdf5f7 50%, #fff 100%);
	padding: 100px 0 90px;
	overflow: hidden;
}

.quality-section::before {
	content: '';
	position: absolute;
	top: -15%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(167, 13, 60, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.quality-section::after {
	content: '';
	position: absolute;
	bottom: -20%;
	right: -8%;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(213, 161, 58, 0.035) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.quality-section .container {
	position: relative;
	z-index: 1;
}


/* =====================================
   HEADING
===================================== */

.quality-heading {
	position: relative;
	margin-bottom: 50px;
}

.quality-heading > span {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--accent-color);
	margin-bottom: 14px;
	padding: 6px 18px 6px 34px;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
}

.quality-heading > span::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.quality-heading h2 {
	margin: 0;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 42px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.quality-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 16px 0 16px;
}

.quality-divider span {
	width: 50px;
	height: 1px;
	background: var(--accent-color);
	opacity: 0.4;
}

.quality-divider i {
	color: var(--accent-color);
	font-size: 12px;
	transform: rotate(45deg);
}

.quality-heading p {
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 0;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}


/* =====================================
   QUALITY LIST
===================================== */

.quality-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.quality-item {
	display: flex;
	align-items: center;
	gap: 20px;
	background: #fff;
	border: 1px solid #f0dce2;
	border-radius: 12px;
	padding: 18px 20px;
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(167, 13, 60, 0.04);
}

.quality-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), #d4a0b5);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.quality-item:hover::before {
	opacity: 1;
}

.quality-item:hover {
	transform: translateX(8px);
	box-shadow: 0 12px 30px rgba(167, 13, 60, 0.10);
	border-color: #e8c4cf;
}


/* Icon */

.quality-icon {
	width: 55px;
	height: 55px;
	min-width: 55px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-color) 0%, #b8154a 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	box-shadow: 0 8px 20px rgba(167, 13, 60, 0.25);
	position: relative;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quality-icon::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px solid rgba(167, 13, 60, 0.2);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quality-item:hover .quality-icon {
	transform: scale(1.08);
	box-shadow: 0 12px 28px rgba(167, 13, 60, 0.35);
}

.quality-item:hover .quality-icon::after {
	inset: -7px;
	border-color: rgba(167, 13, 60, 0.4);
}


/* Content */

.quality-content {
	flex: 1;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.quality-content h3 {
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 17px;
	font-weight: 600;
	margin: 0 0 6px;
	letter-spacing: 0.03em;
	transition: color 0.3s ease;
}

.quality-item:hover .quality-content h3 {
	color: var(--accent-color);
}

.quality-content p {
	color: var(--text-color);
	font-size: 13.5px;
	line-height: 1.6;
	margin: 0;
	max-width: 100%;
}


/* =====================================
   COMMITMENT CARD
===================================== */

.commitment-card {
	max-width: 380px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #f0dce2;
	box-shadow: 0 8px 30px rgba(167, 13, 60, 0.08);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.commitment-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), #d4a0b5);
}

.commitment-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(167, 13, 60, 0.15);
}

.commitment-image {
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px 30px 0;
	background: linear-gradient(180deg, #fff 0%, #fdf5f7 100%);
}

.commitment-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 15px 30px rgba(167, 13, 60, 0.15));
	transition: transform 0.6s ease;
}

.commitment-card:hover .commitment-image img {
	transform: scale(1.04) translateY(-5px);
}

.commitment-content {
	padding: 25px 30px 30px;
	text-align: center;
	background: #fff;
}

.commitment-content h3 {
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	letter-spacing: 0.03em;
}

.commitment-content p {
	color: var(--text-color);
	font-size: 13.5px;
	line-height: 1.65;
	margin: 0 auto 20px;
	max-width: 280px;
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767.98px) {

	.quality-section {
		padding: 60px 0 50px;
	}

	.quality-heading h2 {
		font-size: 28px;
	}

	.quality-heading p {
		font-size: 13.5px;
	}

	.quality-item {
		padding: 16px;
		gap: 14px;
	}

	.quality-icon {
		width: 44px;
		height: 44px;
		min-width: 44px;
		font-size: 16px;
	}

	.quality-content h3 {
		font-size: 14px;
	}

	.quality-content p {
		font-size: 12px;
	}

	.commitment-card {
		max-width: 340px;
		margin-top: 15px;
	}

	.commitment-image {
		height: 220px;
	}

	.commitment-content {
		padding: 20px 22px 25px;
	}

	.commitment-content h3 {
		font-size: 18px;
	}
}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {

	.quality-section {
		padding: 50px 0 40px;
	}

	.quality-heading > span {
		font-size: 10px;
		padding: 5px 12px 5px 26px;
	}

	.quality-heading > span::before {
		left: 10px;
		width: 5px;
		height: 5px;
	}

	.quality-heading h2 {
		font-size: 24px;
	}

	.quality-heading p {
		font-size: 12px;
	}

	.quality-item {
		padding: 14px;
		gap: 12px;
	}

	.quality-icon {
		width: 40px;
		height: 40px;
		min-width: 40px;
		font-size: 14px;
	}

	.quality-content h3 {
		font-size: 12px;
	}

	.quality-content p {
		font-size: 11px;
	}

	.commitment-card {
		max-width: 280px;
	}

	.commitment-image {
		height: 180px;
	}

	.commitment-content {
		padding: 18px 18px 22px;
	}

	.commitment-content h3 {
		font-size: 16px;
	}

	.commitment-content p {
		font-size: 11px;
	}

	.commitment-btn {
		font-size: 11px;
		padding: 10px 22px;
	}
}
/* home */


/* ==============================
   CUSTOM + GEMSTONE PROMO
================================ */

.custom-gemstone-section {
    background: #fff;
}

.promo-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #f1e4e7;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.promo-card:hover {
    box-shadow: 0 10px 30px rgba(150, 15, 55, 0.08);
    transform: translateY(-3px);
}


/* Image */

.promo-image {
    flex: 0 0 42%;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    min-height: 205px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.04);
}


/* Content */

.promo-content {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-content h3 {
    color: #9c1137;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 2px;
}

.promo-content h4 {
    color: #9c1137;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.promo-content p {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 360px;
}


/* Button */

.promo-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: #9c1137;
    color: #fff;
    text-decoration: none;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;

    padding: 11px 17px;
    border-radius: 5px;

    transition: all 0.3s ease;
}

.promo-btn:hover {
    background: #7f0d2d;
    color: #fff;
}

.promo-btn span {
    font-size: 18px;
    line-height: 10px;
}


/* ==============================
   TABLET
================================ */

@media (max-width: 991.98px) {

    .promo-content {
        padding: 25px;
    }

    .promo-content h3 {
        font-size: 19px;
    }

    .promo-content h4 {
        font-size: 15px;
    }

    .promo-content p {
        font-size: 12px;
    }

}


/* ==============================
   MOBILE
================================ */

@media (max-width: 575.98px) {

    .custom-gemstone-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .promo-card {
        flex-direction: column;
    }

    .promo-image {
        flex: none;
        width: 100%;
    }

    .promo-image img {
        height: 220px;
        min-height: 0;
    }

    .promo-content {
        padding: 22px 20px 25px;
    }

    .promo-content h3 {
        font-size: 19px;
    }

    .promo-content h4 {
        font-size: 15px;
    }

    .promo-content p {
        font-size: 13px;
        max-width: none;
        margin-bottom: 18px;
    }

    .promo-btn {
        font-size: 10px;
        padding: 10px 14px;
    }

}

/* =========================================
   VIRGIN JEWELS - ABOUT SECTION
========================================= */

.vj-about-section {
	position: relative;
	background: linear-gradient(135deg, #fff 0%, #fdf5f7 50%, #fff 100%);
	padding: 100px 0 90px;
	overflow: hidden;
}

.vj-about-section::before {
	content: '';
	position: absolute;
	top: -15%;
	right: -10%;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(156, 17, 55, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.vj-about-section::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -8%;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(156, 17, 55, 0.03) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

/* Image */

.vj-about-image {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(156, 17, 55, 0.12);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vj-about-image:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 60px rgba(156, 17, 55, 0.18);
}

.vj-about-image img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.vj-about-image:hover img {
	transform: scale(1.05);
}

.vj-about-image-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 10px 20px;
	border-radius: 100px;
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 600;
	color: var(--accent-color);
	letter-spacing: 0.05em;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	z-index: 2;
}


/* About Content */

.vj-about-content {
	position: relative;
	padding-left: 20px;
}

.vj-section-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	padding: 6px 16px 6px 10px;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	background: rgba(156, 17, 55, 0.02);
}

.vj-section-label span {
	color: var(--accent-color);
	font-family: var(--default-font);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.15em;
}

.vj-section-label i {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--accent-color);
	position: relative;
}

.vj-section-label i::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
}

.vj-about-content h2,
.vj-collections-heading h2 {
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2em;
	letter-spacing: 0.01em;
	margin-bottom: 20px;
}

.vj-about-lead {
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	line-height: 1.7;
}

.vj-about-content p {
	color: var(--text-color);
	font-size: 14.5px;
	line-height: 1.7;
	margin-bottom: 14px;
	max-width: 540px;
}

.vj-about-content strong {
	font-weight: 600;
	color: var(--primary-color);
}


/* Highlights */

.vj-about-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 25px 0 30px;
}

.vj-highlight-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: #fff;
	border: 1px solid #f0dce2;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 500;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.vj-highlight-item:hover {
	border-color: var(--accent-color);
	background: rgba(156, 17, 55, 0.03);
	transform: translateY(-2px);
}

.vj-highlight-icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-color) 0%, #b8154a 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
}


/* Button */

.vj-primary-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 5px;
	padding: 14px 28px;
	background: var(--accent-color);
	color: #fff;
	text-decoration: none;
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.05em;
	border-radius: 6px;
	box-shadow: 0 8px 25px rgba(156, 17, 55, 0.25);
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.vj-primary-btn::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: 50%;
	opacity: 0;
	background-color: var(--primary-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.vj-primary-btn:hover::after {
	left: 0;
	right: 0;
	opacity: 1;
}

.vj-primary-btn:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(156, 17, 55, 0.35);
}

.vj-primary-btn span {
	font-size: 18px;
	line-height: 10px;
	transition: transform 0.3s ease;
}

.vj-primary-btn:hover span {
	transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

	.vj-about-section {
		padding: 80px 0 70px;
	}

	.vj-about-image img {
		height: 350px;
	}

	.vj-about-content {
		padding-left: 0;
		padding-top: 10px;
	}

	.vj-about-content h2 {
		font-size: 34px;
	}

	.vj-about-content p {
		font-size: 14px;
		max-width: 100%;
	}
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

	.vj-about-section {
		padding: 60px 0 50px;
	}

	.vj-about-image img {
		height: 280px;
	}

	.vj-about-image-badge {
		bottom: 15px;
		left: 15px;
		padding: 8px 16px;
		font-size: 11px;
	}

	.vj-about-content {
		padding-top: 5px;
	}

	.vj-about-content h2 {
		font-size: 28px;
	}

	.vj-about-lead {
		font-size: 15px;
	}

	.vj-about-content p {
		font-size: 13.5px;
	}

	.vj-about-highlights {
		gap: 8px;
		margin: 20px 0 25px;
	}

	.vj-highlight-item {
		padding: 7px 14px;
		font-size: 11px;
	}

	.vj-primary-btn {
		font-size: 12px;
		padding: 12px 24px;
	}
}


/* =========================================
   VERY SMALL DEVICES
========================================= */

@media (max-width: 375px) {

	.vj-about-section {
		padding: 50px 0 40px;
	}

	.vj-about-image img {
		height: 240px;
	}

	.vj-about-content h2 {
		font-size: 24px;
	}

	.vj-about-content p {
		font-size: 13px;
	}

	.vj-highlight-item {
		padding: 6px 12px;
		font-size: 10px;
	}

	.vj-primary-btn {
		font-size: 11px;
		padding: 10px 20px;
	}
}


/* =========================================
   COLLECTION SECTION
========================================= */

.vj-collections-section {
	position: relative;
	background: linear-gradient(180deg, #fff 0%, #fdf5f7 50%, #fff 100%);
	padding: 100px 0 90px;
	overflow: hidden;
}

.vj-collections-section::before {
	content: '';
	position: absolute;
	top: -15%;
	right: -10%;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(156, 17, 55, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.vj-collections-section::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -8%;
	width: 380px;
	height: 380px;
	background: radial-gradient(circle, rgba(156, 17, 55, 0.03) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.vj-collections-heading {
	position: relative;
	z-index: 1;
	margin-bottom: 50px !important;
}

.vj-collections-heading .vj-section-label {
	justify-content: center;
}

.vj-collections-heading h2 {
	margin-bottom: 0;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 42px;
	font-weight: 500;
	letter-spacing: 0.02em;
}


/* =========================================
   COLLECTION CARD
========================================= */

.vj-collection-card {
	position: relative;
	background: #fff;
	border: 1px solid #f0dce2;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(156, 17, 55, 0.04);
	z-index: 1;
}

.vj-collection-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent-color), #d4a0b5);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 3;
}

.vj-collection-card:hover::before {
	opacity: 1;
}

.vj-collection-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(156, 17, 55, 0.12);
	border-color: #e8c4cf;
}


/* Card Image */

.vj-card-image {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: #faf5f2;
}

.vj-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.vj-collection-card:hover .vj-card-image img {
	transform: scale(1.06);
}

.vj-card-icon {
	position: absolute;
	bottom: 12px;
	right: 12px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	z-index: 2;
	transition: all 0.4s ease;
}

.vj-collection-card:hover .vj-card-icon {
	background: var(--accent-color);
	color: #fff;
	transform: scale(1.1) rotate(10deg);
}


/* Card Content */

.vj-card-content {
	position: relative;
	text-align: center;
	padding: 20px 16px 22px;
	z-index: 2;
}

.vj-card-content h3 {
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 10px;
	letter-spacing: 0.04em;
	transition: color 0.3s ease;
}

.vj-collection-card:hover .vj-card-content h3 {
	color: var(--accent-color);
}

.vj-card-content p {
	color: var(--text-color);
	font-size: 13px;
	line-height: 1.55;
	margin: 0;
}

.vj-card-content p span {
	color: #ccc;
	margin: 0 3px;
}

.vj-card-content a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	color: var(--accent-color);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.vj-card-content a span {
	font-size: 16px;
	transition: transform 0.3s ease;
}

.vj-card-content a:hover {
	color: var(--primary-color);
}

.vj-card-content a:hover span {
	transform: translateX(4px);
}




/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .vj-about-section,
    .vj-collections-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .vj-about-image img {
        height: 250px;
    }

    .vj-about-content {
        padding-top: 5px;
    }

    .vj-section-label span {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .vj-section-label i {
        width: 30px;
    }

    .vj-about-content h2,
    .vj-collections-heading h2 {
        font-size: 20px;
        line-height: 1.25;
    }

    .vj-about-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .vj-primary-btn {
        font-size: 14px;
        padding: 10px 14px;
    }


    /* Collection Cards */

    .vj-card-image {
        height: 220px;
    }

    .vj-card-content {
        padding: 16px 12px;
    }

    .vj-card-content h3 {
        font-size: 15px;
    }

    .vj-card-content p {
        font-size: 11px;
        min-height: auto;
    }

}


/* =========================================
   VERY SMALL DEVICES
========================================= */

@media (max-width: 375px) {

    .vj-card-image {
        height: 190px;
    }

    .vj-about-image img {
        height: 220px;
    }

}
/* =========================================
   ENHANCED KEY BENEFIT BOX
========================================= */

.key-benefit-box {
	position: relative;
	background: linear-gradient(180deg, #fff 0%, #fdf5f7 50%, #fff 100%);
	padding: 80px 0;
	overflow: hidden;
}

.key-benefit-box::before {
	content: '';
	position: absolute;
	top: -15%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(156, 17, 55, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.key-benefit-box::after {
	content: '';
	position: absolute;
	bottom: -20%;
	right: -8%;
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(156, 17, 55, 0.03) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.key-benefit-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	position: relative;
	z-index: 1;
}

.key-benefit-item {
	width: calc(25% - 22.5px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	padding: 24px 20px;
	background: #fff;
	border: 1px solid #f0dce2;
	border-radius: 12px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(156, 17, 55, 0.04);
	position: relative;
	overflow: hidden;
}

.key-benefit-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-color), #d4a0b5);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.key-benefit-item:hover::before {
	opacity: 1;
}

.key-benefit-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(156, 17, 55, 0.10);
	border-color: #e8c4cf;
}

.key-benefit-item .icon-box {
	width: 60px;
	height: 60px;
	min-width: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-color) 0%, #b8154a 100%);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: 0 8px 20px rgba(156, 17, 55, 0.25);
	position: relative;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.key-benefit-item .icon-box::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px solid rgba(156, 17, 55, 0.2);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.key-benefit-item:hover .icon-box {
	transform: scale(1.08);
	box-shadow: 0 12px 28px rgba(156, 17, 55, 0.35);
}

.key-benefit-item:hover .icon-box::after {
	inset: -7px;
	border-color: rgba(156, 17, 55, 0.4);
}

.key-benefit-item .icon-box img {
	width: 100%;
	max-width: 28px;
	filter: brightness(0) invert(1);
}

.key-benefit-item-content {
	flex: 1;
	width: auto;
}

.key-benefit-item-content h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0 0 6px;
	letter-spacing: 0.03em;
	transition: color 0.3s ease;
}

.key-benefit-item:hover .key-benefit-item-content h3 {
	color: var(--accent-color);
}

.key-benefit-item-content p {
	color: var(--text-color);
	font-size: 13px;
	line-height: 1.55;
	margin: 0;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	background: var(--accent-color);
	color: var(--white-color);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 999;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--primary-color);
	color: var(--white-color);
	transform: translateY(-4px);
}

.back-to-top i {
	font-size: 18px;
	line-height: 1;
}

@media (max-width: 767px) {
	.back-to-top {
		bottom: 20px;
		right: 20px;
		width: 42px;
		height: 42px;
	}
}


.global-client-section {
    background: #fff7f9;
    padding: 70px 0;
    overflow: hidden;
}

/* Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border: 1px solid #f2d4de;
    border-radius: 50px;
    color: #ad1241;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #fff;
}

.section-label span {
    width: 5px;
    height: 5px;
    background: #ad1241;
    border-radius: 50%;
}

/* Heading */
.global-content h2 {
    margin: 14px 0 8px;
    color: #293b37;
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
}

/* Locations */
.locations {
    color: #ad1241;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.locations span {
    margin: 0 5px;
    color: #d7a0b0;
}

/* Paragraph */
.global-content p {
    max-width: 470px;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Button */
.global-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #ad1241;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 3px;
    transition: all .3s ease;
}

.global-btn:hover {
    background: #8f0e35;
    color: #fff;
    transform: translateY(-2px);
}

/* Map */
.world-map {
    position: relative;
    width: 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-map > img {
    width: 100%;
    max-width: 700px;
    opacity: .65;
}

/* Location */
.map-location {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
}

.map-pin {
    width: 30px;
    height: 30px;
    background: #ad1241;
    color: #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(173, 18, 65, .25);
}

.map-pin i {
    transform: rotate(45deg);
    font-size: 12px;
}

.location-name {
    background: #fff;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

/* Desktop positions */
.new-york {
    top: 18%;
    left: 43%;
}

.london {
    top: 18%;
    left: 67%;
}

.dubai {
    top: 43%;
    right: 18%;
}

.los-angeles {
    top: 42%;
    left: 27%;
}

.sydney {
    bottom: 18%;
    right: 5%;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991.98px) {

    .global-client-section {
        padding: 55px 0;
    }

    .global-content {
        text-align: center;
    }

    .global-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .world-map {
        min-height: 320px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 575.98px) {

    .global-client-section {
        padding: 45px 15px;
    }

    .global-content h2 {
        font-size: 32px;
    }

    .locations {
        font-size: 12px;
        line-height: 1.8;
    }

    .global-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .world-map {
        min-height: 240px;
        margin-top: 10px;
    }

    .world-map > img {
        width: 100%;
    }

    .map-pin {
        width: 23px;
        height: 23px;
    }

    .map-pin i {
        font-size: 9px;
    }

    .location-name {
        font-size: 8px;
        padding: 4px 8px;
    }

    .new-york {
        top: 15%;
        left: 39%;
    }

    .london {
        top: 15%;
        left: 63%;
    }

    .dubai {
        top: 40%;
        right: 12%;
    }

    .los-angeles {
        top: 40%;
        left: 20%;
    }

    .sydney {
        bottom: 15%;
        right: 2%;
    }

}