@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Outfit:wght@100..900&display=swap');
 @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
html,
body {
	height: 100%;
	font-family: "Outfit", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Barlow", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 40px;
	font-weight: 900;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
    font-size: 18px;
    color: #282828;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #4d4d4d;
}

ul,
ol {
	padding: 0;
	margin: 0;
}



            :root {
                --primary-color: #4361ee;
                --secondary-color: #3f37c9;
                --accent-color: #4cc9f0;
                --dark-color: #2b2d42;
                --light-color: #f8f9fa;
            }
            
            body {
                font-family: 'Poppins', sans-serif;
            }
            
            .header {
                background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                position: relative;
                z-index: 1000;
            }
            
            .header-top-two {
                background: rgba(255, 255, 255, 0.1);
                padding: 8px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .header-cta ul li {
                margin-right: 25px;
            }
            
            .header-cta .call-box {
                display: flex;
                align-items: center;
            }
            
            .header-cta .icon {
                width: 36px;
                height: 36px;
                background: rgba(255, 255, 255, 0.15);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 12px;
            }
            
            .header-cta .icon i {
                color: white;
                font-size: 16px;
            }
            
            .header-cta .text strong a {
                color: white;
                font-size: 14px;
                font-weight: 500;
            }
            
            #header-sticky {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                transition: all 0.3s ease;
            }
            
            #header-sticky.sticky {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                z-index: 999;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .header__logo img {
                max-height: 55px;
                transition: all 0.3s ease;
            }
            
            .header__menu ul li {
                margin: 0 15px;
                position: relative;
            }
            
            .header__menu ul li a {
                color: var(--dark-color);
                font-weight: 500;
                font-size: 15px;
                padding: 25px 0;
                display: block;
                position: relative;
                transition: all 0.3s ease;
            }
            
            .header__menu ul li a:hover {
                color: var(--primary-color);
            }
            
            .header__menu ul li a:after {
                content: '';
                position: absolute;
                width: 0;
                height: 3px;
                background: var(--accent-color);
                bottom: 0;
                left: 0;
                transition: all 0.3s ease;
            }
            
            .header__menu ul li a:hover:after {
                width: 100%;
            }
            
            .header__cart ul li a {
                color: var(--dark-color);
                font-size: 20px;
                position: relative;
                transition: all 0.3s ease;
            }
            
            .header__cart ul li a:hover {
                color: var(--primary-color);
            }
            
            .header__cart ul li a span {
                position: absolute;
                top: -8px;
                right: -12px;
                background: var(--accent-color);
                color: white;
                font-size: 11px;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 600;
            }
            
            .header__cart__price {
                color: var(--dark-color);
                font-size: 13px;
                margin-top: 5px;
            }
            
            .header__cart__price span {
                font-weight: 600;
                color: var(--primary-color);
            }
            
            .humberger__open {
                color: white;
                font-size: 24px;
                cursor: pointer;
                transition: all 0.3s ease;
            }
            
            .humberger__open:hover {
                color: var(--accent-color);
            }
            
            /* Mobile Menu Styles */
            .humberger__menu__overlay {
                background: rgba(0, 0, 0, 0.5);
            }
            
            .humberger__menu__wrapper {
                background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
                padding: 30px;
            }
            
            .humberger__menu__logo a img {
                max-height: 40px;
            }
            
            .nav-mobile li {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding: 12px 0;
            }
            
            .nav-mobile li a {
                color: white;
                font-weight: 500;
                font-size: 15px;
            }
            
            .humberger__menu__contact ul li {
                margin-bottom: 15px;
                color: rgba(255, 255, 255, 0.8);
                font-size: 14px;
            }
            
            .humberger__menu__contact ul li i {
                color: var(--accent-color);
                margin-right: 10px;
            }
            
            .humberger__menu__contact ul li a {
                color: rgba(255, 255, 255, 0.8);
            }
        

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 20px;
	text-align: center;
}

.section-title h2 {
	color: #FFC000;
	font-weight: 700;
	position: relative;
	font-size: 50px;
	margin-bottom: 20px;
}
.section-title p{
    color: #333;
}


.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

/* buttons */

.primary-main-btn {
	display: inline-block;
	font-size: 20px;
	padding: 10px 45px 10px;
	color: #000;
	text-transform: uppercase;
	font-weight: 700;
	background: #fbb71c;
	letter-spacing: 0.5px;
	border-radius: 50px;
	transition: all 0.4s ease-in-out;
}
.primary-main-btn:hover{
    background-color: #FFC000;
    color: #fff;
}

.site-main-btn {
	    font-size: 14px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    padding: 13px 30px 12px;
    background: #fbb71c;
    border: none;
    /* clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%, 0 43%); */
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*---------------------
  Header
-----------------------*/

.header__top {
	background: #f5f5f5;
}

.header__top__left {
	padding: 10px 0 13px;
}

.header__top__left ul li {
	font-size: 14px;
	color: #1c1c1c;
	display: inline-block;
	margin-right: 45px;
	position: relative;
}

.header__top__left ul li:after {
	position: absolute;
	right: -25px;
	top: 1px;
	height: 20px;
	width: 1px;
	background: #000000;
	opacity: 0.1;
	content: "";
}

.header__top__left ul li:last-child {
	margin-right: 0;
}

.header__top__left ul li:last-child:after {
	display: none;
}

.header__top__left ul li i {
	color: #252525;
	margin-right: 5px;
}

.header__top__right {
	text-align: right;
	padding: 10px 0 13px;
}

.header__top__right__social {
	position: relative;
	display: inline-block;
	margin-right: 35px;
}

.header__top__right__social:after {
	position: absolute;
	right: -20px;
	top: 1px;
	height: 20px;
	width: 1px;
	background: #000000;
	opacity: 0.1;
	content: "";
}

.header__top__right__social a {
	font-size: 14px;
	display: inline-block;
	color: #1c1c1c;
	margin-right: 20px;
}

.header__top__right__social a:last-child {
	margin-right: 0;
}

.header__top__right__language {
	position: relative;
	display: inline-block;
	margin-right: 40px;
	cursor: pointer;
}

.header__top__right__language:hover ul {
	top: 23px;
	opacity: 1;
	visibility: visible;
}

.header__top__right__language:after {
	position: absolute;
	right: -21px;
	top: 1px;
	height: 20px;
	width: 1px;
	background: #000000;
	opacity: 0.1;
	content: "";
}

.header__top__right__language img {
	margin-right: 6px;
}

.header__top__right__language div {
	font-size: 14px;
	color: #1c1c1c;
	display: inline-block;
	margin-right: 4px;
}

.header__top__right__language span {
	font-size: 14px;
	color: #1c1c1c;
	position: relative;
	top: 2px;
}

.header__top__right__language ul {
	background: #222222;
	width: 100px;
	text-align: left;
	padding: 5px 0;
	position: absolute;
	left: 0;
	top: 43px;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__top__right__language ul li {
	list-style: none;
}

.header__top__right__language ul li a {
	font-size: 14px;
	color: #ffffff;
	padding: 5px 10px;
}

.header__top__right__auth {
	display: inline-block;
}

.header__top__right__auth a {
	display: block;
	font-size: 14px;
	color: #1c1c1c;
}

.header__top__right__auth a i {
	margin-right: 6px;
}

.header__logo {
	padding: 15px 0;
}

.header__logo a {
	display: inline-block;
	width: 200px;
}

.header__menu {
	padding: 24px 0;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 50px;
	position: relative;
}

.header__menu ul li .header__menu__dropdown {
	position: absolute;
	left: 0;
	top: 50px;
	background: #222222;
	width: 180px;
	z-index: 9;
	padding: 5px 0;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	opacity: 0;
	visibility: hidden;
}

.header__menu ul li .header__menu__dropdown li {
	margin-right: 0;
	display: block;
}

.header__menu ul li .header__menu__dropdown li:hover>a {
	color: #fbb71c;
}

.header__menu ul li .header__menu__dropdown li a {
	text-transform: capitalize;
	color: #ffffff;
	font-weight: 400;
	padding: 5px 15px;
}

.header__menu ul li.active a {
	color: #fbb71c;
}

.header__menu ul li:hover .header__menu__dropdown {
	top: 30px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li:hover>a {
	color: #fbb71c;
}

.header__menu ul li:last-child {
	margin-right: 0;
}

.header__menu ul li a {
	font-size: 14px;
	color: #141b22;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	padding: 5px 0;
	display: block;
}

.header__cart {
	text-align: center;
	padding: 24px 0;
    margin-top: 5px;
}

.header__cart ul {
	display: inline-block;
	margin-right: 25px;
}

.header__cart ul li {
	list-style: none;
	display: inline-block;
	margin-right: 15px;
}

.header__cart ul li:last-child {
	margin-right: 0;
}

.header__cart ul li a {
	position: relative;
}

.header__cart ul li a i {
	font-size: 22px;
    color: #141b22;
}

.header__cart ul li a span {
	height: 18px;
	width: 18px;
	background: #fbb71c;;
	font-size: 13px;
	color: #ffffff;
	line-height: 13px;
	text-align: center;
	font-weight: 700;
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	top: -7px;
	right: -9px;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header__cart .header__cart__price {
	font-size: 16px;
    color: #ffc000;
    display: inline-block;
}

.header__cart .header__cart__price span {
	color: #141b22;
	font-weight: 700;
}

.humberger__menu__wrapper {
	display: none;
}

.humberger__open {
	display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero {
	background-image: url(../img/banner-1.png);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	padding: 100px 0;
	z-index: 1;
    min-height: 750px;
}

.hero.hero-normal {
	padding-bottom: 30px;
}

.hero.hero-normal .hero__categories {
	position: relative;
}

.hero.hero-normal .hero__categories ul {
	display: none;
	position: absolute;
	left: 0;
	top: 46px;
	width: 100%;
	z-index: 9;
	background: #ffffff;
}

.hero.hero-normal .hero__search {
	margin-bottom: 0;
}

.hero__categories__all {
	background: #fbb71c;
	position: relative;
	padding: 10px 25px 10px 40px;
	cursor: pointer;
}

.hero__categories__all i {
	font-size: 16px;
	color: #ffffff;
	margin-right: 10px;
}

.hero__categories__all span {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
}

.hero__categories__all:after {
	position: absolute;
	right: 18px;
	top: 9px;
	content: "3";
	font-family: "ElegantIcons";
	font-size: 18px;
	color: #ffffff;
}

.hero__categories ul {
	border: 1px solid #ebebeb;
	padding-left: 40px;
	padding-top: 10px;
	padding-bottom: 12px;
}

.hero__categories ul li {
	list-style: none;
}

.hero__categories ul li a {
	font-size: 16px;
	color: #1c1c1c;
	line-height: 39px;
	display: block;
}

.hero__search {
	overflow: hidden;
	margin-bottom: 30px;
}

.hero__search__form {
	width: 610px;
	height: 50px;
	border: 1px solid #ebebeb;
	position: relative;
	float: left;
}

.hero__search__form form .hero__search__categories {
	width: 30%;
	float: left;
	font-size: 16px;
	color: #1c1c1c;
	font-weight: 700;
	padding-left: 18px;
	padding-top: 11px;
	position: relative;
}

.hero__search__form form .hero__search__categories:after {
	position: absolute;
	right: 0;
	top: 14px;
	height: 20px;
	width: 1px;
	background: #000000;
	opacity: 0.1;
	content: "";
}

.hero__search__form form .hero__search__categories span {
	position: absolute;
	right: 14px;
	top: 14px;
}

.hero__search__form form input {
	width: 70%;
	border: none;
	height: 48px;
	font-size: 16px;
	color: #b2b2b2;
	padding-left: 20px;
}

.hero__search__form form input::placeholder {
	color: #b2b2b2;
}

.hero__search__form form button {
	position: absolute;
	right: 0;
	top: -1px;
	height: 50px;
}

.hero__search__phone {
	float: right;
}

.hero__search__phone__icon {
	font-size: 18px;
	color: #fbb71c;
	height: 50px;
	width: 50px;
	background: #f5f5f5;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	float: left;
	margin-right: 20px;
}

.hero__search__phone__text {
	overflow: hidden;
}

.hero__search__phone__text h5 {
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 5px;
}

.hero__search__phone__text span {
	font-size: 14px;
	color: #6f6f6f;
}

.hero__item {
	display: flex;
	align-items: center;
	padding-top: 125px;
}

.hero__text h5 span {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 4px;
	color: #fbb71c;
}

.hero__text h2 {
	font-size: 55px;
	color: #fff;
	line-height: 52px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 20px;
	line-height: 1.1;
}

.hero__text p {
	margin-bottom: 25px;
	color: #fff;
}

/*---------------------
  Categories
-----------------------*/

.categories__item {
	height: 270px;
	position: relative;
}

.categories__item h5 {
	position: absolute;
	left: 0;
	width: 100%;
	padding: 0 20px;
	bottom: 20px;
	text-align: center;
}

.categories__item h5 a {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 12px 0 10px;
	background: #ffffff;
	display: block;
}

.categories__slider .col-lg-3 {
	max-width: 100%;
}

.categories__slider.owl-carousel .owl-nav button {
	font-size: 18px;
	color: #1c1c1c;
	height: 70px;
	width: 30px;
	line-height: 70px;
	text-align: center;
	border: 1px solid #ebebeb;
	position: absolute;
	left: -35px;
	top: 50%;
	-webkit-transform: translateY(-35px);
	background: #ffffff;
}

.categories__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -35px;
}

/*---------------------
  Featured
-----------------------*/

.featured__controls {
	text-align: center;
	margin-bottom: 50px;
}

.featured__controls ul li {
	list-style: none;
	font-size: 18px;
	color: #1c1c1c;
	display: inline-block;
	margin-right: 25px;
	position: relative;
	cursor: pointer;
}

.featured__controls ul li.active:after {
	opacity: 1;
}

.featured__controls ul li:after {
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: #fbb71c;
	content: "";
	opacity: 0;
}

.featured__controls ul li:last-child {
	margin-right: 0;
}

.featured__item {
	margin-bottom: 50px;
	border: 1px solid #ddd;
}

.featured__item:hover .featured__item__pic .featured__item__pic__hover {
	bottom: 20px;
}

.featured__item__pic {
	height: 270px;
	position: relative;
	overflow: hidden;
	background-position: center center;
}

.featured__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.featured__item__pic__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.featured__item__pic__hover li:last-child {
	margin-right: 0;
}

.featured__item__pic__hover li:hover a {
	background: #fbb71c;
	border-color: #fbb71c;
}

.featured__item__pic__hover li:hover a i {
	color: #ffffff;
	transform: rotate(360deg);
}

.featured__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #FFC000;
	background: #FFC000;
	display: block;
	border-radius: 50%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.featured__item__pic__hover li a i {
	position: relative;
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	color: #fff;
}

.featured__item__text {
	text-align: center;
	padding-top: 15px;
	background: #FFC000;
	padding: 20px 10px;
	clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%, 0 19%);
	border-radius: 7px;
}

.featured__item__text h6 {
	margin-bottom: 10px;
}

.featured__item__text h6 a {
	color: #ffffff;
	font-size: 21px;
}

.featured__item__text h5 {
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
}

/*---------------------
  Latest Product
-----------------------*/

.latest-product {
	padding-top: 80px;
	padding-bottom: 0;
}

.latest-product__text h4 {
	font-weight: 700;
	color: #1c1c1c;
	margin-bottom: 45px;
}

.latest-product__slider.owl-carousel .owl-nav {
	position: absolute;
	right: 20px;
	top: -75px;
}

.latest-product__slider.owl-carousel .owl-nav button {
	height: 30px;
	width: 30px;
	background: #F3F6FA;
	border: 1px solid #e6e6e6;
	font-size: 14px;
	color: #636363;
	margin-right: 10px;
	line-height: 30px;
	text-align: center;
}

.latest-product__slider.owl-carousel .owl-nav button span {
	font-weight: 700;
}

.latest-product__slider.owl-carousel .owl-nav button:last-child {
	margin-right: 0;
}

.latest-product__item {
	margin-bottom: 20px;
	overflow: hidden;
	display: block;
}

.latest-product__item__pic {
	float: left;
	margin-right: 26px;
}

.latest-product__item__pic img {
	height: 110px;
	width: 110px;
}

.latest-product__item__text {
	overflow: hidden;
	padding-top: 10px;
}

.latest-product__item__text h6 {
	color: #252525;
	margin-bottom: 8px;
}

.latest-product__item__text span {
	font-size: 18px;
	display: block;
	color: #252525;
	font-weight: 700;
}

/*---------------------
  Form BLog
-----------------------*/

.from-blog {
    position: relative;
    padding: 80px 0 0;
    z-index: 1;
}

.from-blog .blog__item {
	background: #FFC000;
	padding: 30px;
	border-radius: 12px;
	height: 100%;
	position: relative;
}

.from-blog__title {
	margin-bottom: 100px;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-section {
	display: flex;
	align-items: center;
	padding: 45px 0 60px;
	background: #FFC000;
}

.breadcrumb__text h2 {
	font-size: 46px;
	color: #ffffff;
	font-weight: 700;
}

.breadcrumb__option a {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	font-weight: 700;
	margin-right: 20px;
	position: relative;
}

.breadcrumb__option a:after {
	position: absolute;
	right: -12px;
	top: 13px;
	height: 1px;
	width: 10px;
	background: #ffffff;
	content: "";
}

.breadcrumb__option span {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
}

/*---------------------
  Sidebar
-----------------------*/

.sidebar__item {
	margin-bottom: 35px;
}

.sidebar__item.sidebar__item__color--option {
	overflow: hidden;
}

.sidebar__item h4 {
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 25px;
}

.sidebar__item ul li {
	list-style: none;
}

.sidebar__item ul li a {
	font-size: 16px;
	color: #1c1c1c;
	line-height: 39px;
	display: block;
}

.sidebar__item .latest-product__text {
	position: relative;
}

.sidebar__item .latest-product__text h4 {
	margin-bottom: 45px;
}

.sidebar__item .latest-product__text .owl-carousel .owl-nav {
	right: 0;
}

.price-range-wrap .range-slider {
	margin-top: 20px;
}

.price-range-wrap .range-slider .price-input {
	position: relative;
}

.price-range-wrap .range-slider .price-input:after {
	position: absolute;
	left: 38px;
	top: 13px;
	height: 1px;
	width: 5px;
	background: #dd2222;
	content: "";
}

.price-range-wrap .range-slider .price-input input {
	font-size: 16px;
	color: #dd2222;
	font-weight: 700;
	max-width: 20%;
	border: none;
	display: inline-block;
}

.price-range-wrap .price-range {
	border-radius: 0;
}

.price-range-wrap .price-range.ui-widget-content {
	border: none;
	background: #ebebeb;
	height: 5px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
	height: 13px;
	width: 13px;
	border-radius: 50%;
	background: #ffffff;
	border: none;
	-webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
	outline: none;
	cursor: pointer;
}

.price-range-wrap .price-range .ui-slider-range {
	background: #dd2222;
	border-radius: 0;
}

.price-range-wrap .price-range .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
	background: #dd2222;
}

.sidebar__item__color {
	float: left;
	width: 40%;
}

.sidebar__item__color.sidebar__item__color--white label:after {
	border: 2px solid #333333;
	background: transparent;
}

.sidebar__item__color.sidebar__item__color--gray label:after {
	background: #E9A625;
}

.sidebar__item__color.sidebar__item__color--red label:after {
	background: #D62D2D;
}

.sidebar__item__color.sidebar__item__color--black label:after {
	background: #252525;
}

.sidebar__item__color.sidebar__item__color--blue label:after {
	background: #249BC8;
}

.sidebar__item__color.sidebar__item__color--green label:after {
	background: #3CC032;
}

.sidebar__item__color label {
	font-size: 16px;
	color: #333333;
	position: relative;
	padding-left: 32px;
	cursor: pointer;
}

.sidebar__item__color label input {
	position: absolute;
	visibility: hidden;
}

.sidebar__item__color label:after {
	position: absolute;
	left: 0;
	top: 5px;
	height: 14px;
	width: 14px;
	background: #222;
	content: "";
	border-radius: 50%;
}

.sidebar__item__size {
	display: inline-block;
	margin-right: 16px;
	margin-bottom: 10px;
}

.sidebar__item__size label {
	font-size: 12px;
	color: #6f6f6f;
	display: inline-block;
	padding: 8px 25px 6px;
	background: #f5f5f5;
	cursor: pointer;
	margin-bottom: 0;
}

.sidebar__item__size label input {
	position: absolute;
	visibility: hidden;
}

/*---------------------
  Shop Grid
-----------------------*/

.product {
	padding-top: 80px;
	padding-bottom: 80px;
}

.product__discount {
	padding-bottom: 50px;
}

.product__discount__title {
	text-align: left;
	margin-bottom: 65px;
}

.product__discount__title h2 {
	display: inline-block;
}

.product__discount__title h2:after {
	margin: 0;
	width: 100%;
}

.product__discount__item:hover .product__discount__item__pic .product__item__pic__hover {
	bottom: 20px;
}

.product__discount__item__pic {
	height: 270px;
	position: relative;
	overflow: hidden;
}

.product__discount__item__pic .product__discount__percent {
	height: 45px;
	width: 45px;
	background: #dd2222;
	border-radius: 50%;
	font-size: 14px;
	color: #ffffff;
	line-height: 45px;
	text-align: center;
	position: absolute;
	left: 15px;
	top: 15px;
}

.product__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.product__item__pic__hover li:last-child {
	margin-right: 0;
}

.product__item__pic__hover li:hover a {
	background: #fbb71c;
	border-color: #fbb71c;
}

.product__item__pic__hover li:hover a i {
	color: #ffffff;
	transform: rotate(360deg);
}

.product__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #ebebeb;
	background: #ffffff;
	display: block;
	border-radius: 50%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li a i {
	position: relative;
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__discount__item__text {
	text-align: center;
	padding-top: 20px;
}

.product__discount__item__text span {
	font-size: 14px;
	color: #b2b2b2;
	display: block;
	margin-bottom: 4px;
}

.product__discount__item__text h5 {
	margin-bottom: 6px;
}

.product__discount__item__text h5 a {
	color: #1c1c1c;
}

.product__discount__item__text .product__item__price {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
}

.product__discount__item__text .product__item__price span {
	display: inline-block;
	font-weight: 400;
	text-decoration: line-through;
	margin-left: 10px;
}

.product__discount__slider .col-lg-4 {
	max-width: 100%;
}

.product__discount__slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.product__discount__slider.owl-carousel .owl-dots button {
	height: 12px;
	width: 12px;
	border: 1px solid #b2b2b2;
	border-radius: 50%;
	margin-right: 12px;
}

.product__discount__slider.owl-carousel .owl-dots button.active {
	background: #707070;
	border-color: #6f6f6f;
}

.product__discount__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

.filter__item {
	padding-top: 45px;
	border-top: 1px solid #ebebeb;
	padding-bottom: 20px;
}

.filter__sort {
	margin-bottom: 15px;
}

.filter__sort span {
	font-size: 16px;
	color: #6f6f6f;
	display: inline-block;
}

.filter__sort .nice-select {
	background-color: #fff;
	border-radius: 0;
	border: none;
	display: inline-block;
	float: none;
	height: 0;
	line-height: 0;
	padding-left: 18px;
	padding-right: 30px;
	font-size: 16px;
	color: #1c1c1c;
	font-weight: 700;
	cursor: pointer;
}

.filter__sort .nice-select span {
	color: #1c1c1c;
}

.filter__sort .nice-select:after {
	border-bottom: 1.5px solid #1c1c1c;
	border-right: 1.5px solid #1c1c1c;
	height: 8px;
	margin-top: 0;
	right: 16px;
	width: 8px;
	top: -5px;
}

.filter__sort .nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}

.filter__sort .nice-select .list {
	border-radius: 0;
	margin-top: 0;
	top: 15px;
}

.filter__sort .nice-select .option {
	line-height: 30px;
	min-height: 30px;
}

.filter__found {
	text-align: center;
	margin-bottom: 15px;
}

.filter__found h6 {
	font-size: 16px;
	color: #b2b2b2;
}

.filter__found h6 span {
	color: #1c1c1c;
	font-weight: 700;
	margin-right: 5px;
}

.filter__option {
	text-align: right;
	margin-bottom: 15px;
}

.filter__option span {
	font-size: 24px;
	color: #b2b2b2;
	margin-right: 10px;
	cursor: pointer;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.filter__option span:last-child {
	margin: 0;
}

.filter__option span:hover {
	color: #fbb71c;
}

.product__item {
	border-radius: 10px;
    height: 100%;
    border: 1px solid #D0D0D0;
    margin: 0 12px 30px;
    padding: 0 25px 25px;
}

.product__item:hover .product__item__pic .product__item__pic__hover {
	bottom: 20px;
}

.product__item__pic {
	height: 340px;
	position: relative;
	overflow: hidden;
    background-size: contain !important;
    background-position: center center !important;
}

.product__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.product__item__pic__hover li:last-child {
	margin-right: 0;
}

.product__item__pic__hover li:hover a {
	background: #fbb71c;
	border-color: #fbb71c;
}

.product__item__pic__hover li:hover a i {
	color: #ffffff;
	transform: rotate(360deg);
}

.product__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #ebebeb;
	background: #ffffff;
	display: block;
	border-radius: 50%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li a i {
	position: relative;
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__item__text {
	text-align: center;
	/* padding-top: 15px;
	background: #FFC000;
	padding: 20px 10px;
	border-radius: 7px; */
	/* clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%, 0 19%); */
}

.product__item__text h6 {
	margin-bottom: 10px;
	font-family: 'Poppins', sans-serif;
    color: #141b22;
}

.product__item__text h6 a {
	color: #141b22;
	font-size: 20px;
}

.product__item__text h5 {
	color: #FFC000;
	font-weight: 700;
	font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

.product__pagination,
.blog__pagination {
	padding-top: 10px;
}

.product__pagination a,
.blog__pagination a {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 1px solid #b2b2b2;
	font-size: 14px;
	color: #b2b2b2;
	font-weight: 700;
	line-height: 28px;
	text-align: center;
	margin-right: 16px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__pagination a:hover,
.blog__pagination a:hover {
	background: #fbb71c;
	border-color: #fbb71c;
	color: #ffffff;
}

.product__pagination a:last-child,
.blog__pagination a:last-child {
	margin-right: 0;
}

/*---------------------
  Shop Details
-----------------------*/

.product-details {
	padding-top: 80px;
}

.product__details__pic__item {
	margin-bottom: 20px;
}

.product__details__pic__item img {
	min-width: 100%;
}

.product__details__pic__slider img {
	cursor: pointer;
}

.product__details__pic__slider.owl-carousel .owl-item img {
	width: auto;
}

.product__details__text h3 {
	color: #141b22;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
	
}

.product__details__text .product__details__rating {
	font-size: 14px;
	margin-bottom: 12px;
}

.product__details__text .product__details__rating i {
	margin-right: -2px;
	color: #EDBB0E;
}

.product__details__text .product__details__rating span {
	color: #dd2222;
	margin-left: 4px;
}

.product__details__text .product__details__price {
	font-size: 35px;
	color: #FFC000;
	font-weight: 800;
	margin-bottom: 15px;
}

.product__details__text p {
	margin-bottom: 45px;
}

.product__details__text .primary-main-btn {
	padding: 16px 28px 14px;
	margin-right: 6px;
	margin-bottom: 5px;
}

.product__details__text .heart-icon {
	display: inline-block;
	font-size: 16px;
	color: #6f6f6f;
	padding: 13px 16px 13px;
	background: #f5f5f5;
}

.product__details__text ul {
	border-top: 1px solid #ebebeb;
	padding-top: 40px;
	margin-top: 50px;
}

.product__details__text ul li {
	font-size: 16px;
	color: #1c1c1c;
	list-style: none;
	line-height: 36px;
}

.product__details__text ul li b {
	font-weight: 700;
	width: 135px;
	display: inline-block;
}

.product__details__text ul li span samp {
	color: #dd2222;
}

.product__details__text ul li .share {
	display: inline-block;
}

.product__details__text ul li .share a {
	display: inline-block;
	font-size: 15px;
	color: #1c1c1c;
	margin-right: 25px;
}

.product__details__text ul li .share a:last-child {
	margin-right: 0;
}

.product__details__quantity {
	display: inline-block;
	margin-right: 6px;
}

.pro-qty {
	width: 140px;
	height: 50px;
	display: inline-block;
	position: relative;
	text-align: center;
	background: #f5f5f5;
	margin-bottom: 5px;
}

.pro-qty input {
	height: 100%;
	width: 100%;
	font-size: 16px;
	color: #6f6f6f;
	width: 50px;
	border: none;
	background: #f5f5f5;
	text-align: center;
}

.pro-qty .qtymain-btn {
	width: 35px;
	font-size: 16px;
	color: #6f6f6f;
	cursor: pointer;
	display: inline-block;
}

.product__details__tab {
	padding-top: 85px;
}

.product__details__tab .nav-tabs {
	border-bottom: none;
	justify-content: center;
	position: relative;
}

.product__details__tab .nav-tabs:before {
	position: absolute;
	left: 0;
	top: 12px;
	height: 1px;
	width: 370px;
	background: #ebebeb;
	content: "";
}

.product__details__tab .nav-tabs:after {
	position: absolute;
	right: 0;
	top: 12px;
	height: 1px;
	width: 370px;
	background: #ebebeb;
	content: "";
}

.product__details__tab .nav-tabs li {
	margin-bottom: 0;
	margin-right: 65px;
}

.product__details__tab .nav-tabs li:last-child {
	margin-right: 0;
}

.product__details__tab .nav-tabs li a {
	font-size: 16px;
	color: #999999;
	font-weight: 700;
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0;
}

.product__details__tab .product__details__tab__desc {
	padding-top: 44px;
}

.product__details__tab .product__details__tab__desc h6 {
	font-weight: 700;
	color: #333333;
	margin-bottom: 26px;
}

.product__details__tab .product__details__tab__desc p {
	color: #666666;
}

/*---------------------
  Shop Details
-----------------------*/

.related-product {
	padding-bottom: 30px;
}

.related__product__title {
	margin-bottom: 70px;
}

/*---------------------
  Shop Cart
-----------------------*/

.shoping-cart {
	padding-top: 80px;
	padding-bottom: 80px;
}

.shoping__cart__table {
	margin-bottom: 30px;
}

.shoping__cart__table table {
	width: 100%;
	text-align: center;
}

.shoping__cart__table table thead tr {
	border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table thead th {
	font-size: 20px;
	font-weight: 700;
	color: #1c1c1c;
	padding-bottom: 20px;
}

.shoping__cart__table table thead th.shoping__product {
	text-align: left;
}

.shoping__cart__table table tbody tr td {
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table tbody tr td.shoping__cart__item {
	width: 630px;
	text-align: left;
}

.shoping__cart__table table tbody tr td.shoping__cart__item img {
	display: inline-block;
	margin-right: 25px;
	width: 100px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item h5 {
	color: #1c1c1c;
	display: inline-block;
}

.shoping__cart__table table tbody tr td.shoping__cart__price {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	width: 100px;
}

.shoping__cart__table table tbody tr td.shoping__cart__total {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	width: 110px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close {
	text-align: right;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close span {
	font-size: 24px;
	color: #b2b2b2;
	cursor: pointer;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity {
	width: 225px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty {
	width: 120px;
	height: 40px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input {
	color: #1c1c1c;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input::placeholder {
	color: #1c1c1c;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty .qtymain-btn {
	width: 15px;
}

.primary-main-btn.cart-main-btn {
	color: #6f6f6f;
	padding: 14px 30px 12px;
	background: #f5f5f5;
}

.primary-main-btn.cart-main-btn span {
	font-size: 14px;
}

.primary-main-btn.cart-main-btn.cart-main-btn-right {
	float: right;
}

.shoping__discount {
	margin-top: 45px;
}

.shoping__discount h5 {
	font-size: 20px;
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 25px;
}

.shoping__discount form input {
	width: 255px;
	height: 46px;
	border: 1px solid #cccccc;
	font-size: 16px;
	color: #b2b2b2;
	text-align: center;
	display: inline-block;
	margin-right: 15px;
}

.shoping__discount form input::placeholder {
	color: #b2b2b2;
}

.shoping__discount form button {
	padding: 15px 30px 11px;
	font-size: 12px;
	letter-spacing: 4px;
	background: #6f6f6f;
}

.shoping__checkout {
	background: #f5f5f5;
	padding: 30px;
	padding-top: 20px;
	margin-top: 50px;
}

.shoping__checkout h5 {
	color: #1c1c1c;
	font-weight: 700;
	font-size: 20px;
	margin-bottom: 28px;
}

.shoping__checkout ul {
	margin-bottom: 28px;
}

.shoping__checkout ul li {
	font-size: 16px;
	color: #1c1c1c;
	font-weight: 700;
	list-style: none;
	overflow: hidden;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 13px;
	margin-bottom: 18px;
}

.shoping__checkout ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.shoping__checkout ul li span {
	font-size: 18px;
	color: #dd2222;
	float: right;
}

.shoping__checkout .primary-main-btn {
	display: block;
	text-align: center;
}

/*---------------------
  Checkout
-----------------------*/

.checkout {
	padding-top: 80px;
	padding-bottom: 60px;
}

.checkout h6 {
	color: #999999;
	text-align: center;
	background: #f5f5f5;
	border-top: 1px solid #6AB963;
	padding: 12px 0 12px;
	margin-bottom: 75px;
}

.checkout h6 span {
	font-size: 16px;
	color: #6AB963;
	margin-right: 5px;
}

.checkout h6 a {
	text-decoration: underline;
	color: #999999;
}

.checkout__form h4 {
	color: #1c1c1c;
	font-weight: 700;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 20px;
	margin-bottom: 25px;
}

.checkout__form p {
	column-rule: #b2b2b2;
}

.checkout__input {
	margin-bottom: 24px;
}

.checkout__input p {
	color: #1c1c1c;
	margin-bottom: 20px;
}

.checkout__input p span {
	color: #dd2222;
}

.checkout__input input, .checkout__input select {
	width: 100%;
	height: 46px;
	border: 1px solid #ebebeb;
	padding-left: 20px;
	font-size: 16px;
	color: #b2b2b2;
	border-radius: 4px;
}

.checkout__input input.checkout__input__add {
	margin-bottom: 20px;
}

.checkout__input input::placeholder {
	color: #b2b2b2;
}

.checkout__input__checkbox {
	margin-bottom: 10px;
}

.checkout__input__checkbox label {
	position: relative;
	font-size: 14px;
	color: #1c1c1c;
	padding-left: 40px;
	cursor: pointer;
}

.checkout__input__checkbox label input {
	position: absolute;
	visibility: hidden;
}

.checkout__input__checkbox label input:checked~.checkmark {
	background: #fbb71c;
	border-color: #fbb71c;
}

.checkout__input__checkbox label input:checked~.checkmark:after {
	opacity: 1;
}

.checkout__input__checkbox label .checkmark {
	position: absolute;
	left: 0;
	top: 4px;
	height: 16px;
	width: 14px;
	border: 1px solid #a6a6a6;
	content: "";
	border-radius: 4px;
}

.checkout__input__checkbox label .checkmark:after {
	position: absolute;
	left: 1px;
	top: 1px;
	width: 10px;
	height: 8px;
	border: solid white;
	border-width: 3px 3px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	content: "";
	opacity: 0;
}

.checkout__order {
	background: #f5f5f5;
	padding: 40px;
	padding-top: 30px;
}

.checkout__order h4 {
	color: #1c1c1c;
	font-weight: 700;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.checkout__order .checkout__order__products {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 10px;
}

.checkout__order .checkout__order__products span {
	float: right;
}

.checkout__order ul {
	margin-bottom: 12px;
}

.checkout__order ul li {
	font-size: 10px;
    color: #6f6f6f;
    line-height: 34px;
    list-style: none;
}

.checkout__order ul li span {
	font-weight: 700;
	float: right;
}

.checkout__order .checkout__order__subtotal {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	border-bottom: 1px solid #e1e1e1;
	border-top: 1px solid #e1e1e1;
	padding-bottom: 15px;
	margin-bottom: 15px;
	padding-top: 15px;
}

.checkout__order .checkout__order__subtotal span {
	float: right;
}

.checkout__order .checkout__input__checkbox label {
	padding-left: 20px;
}

.checkout__order .checkout__order__total {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 700;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.checkout__order .checkout__order__total span {
	float: right;
	color: #dd2222;
}

.checkout__order button {
	font-size: 18px;
	letter-spacing: 2px;
	width: 100%;
	margin-top: 10px;
}

/*---------------------
  Blog
-----------------------*/

.blog__item {
}

.blog__item__pic img {
	min-width: 50px;
	width: 50px;
    filter: brightness(0) invert(1);
}

.blog__item__text {
	padding-top: 25px;
}

.blog__item__text ul {
	margin-bottom: 15px;
}

.blog__item__text ul li {
	font-size: 16px;
	color: #b2b2b2;
	list-style: none;
	display: inline-block;
	margin-right: 15px;
}

.blog__item__text ul li:last-child {
	margin-right: 0;
}

.blog__item__text h5 {
	border-bottom: 1px solid #fff;
	width: fit-content;
}

.blog__item__text h5 a {
	font-size: 18px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
}

.blog__item__text p {
	margin-top: 15px;
	margin-bottom: 0;
}

.blog__item__text .blog__main-btn {
	display: inline-block;
	font-size: 14px;
	color: #1c1c1c;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid #b2b2b2;
	padding: 14px 20px 12px;
	border-radius: 25px;
}

.blog__item__text .blog__main-btn span {
	position: relative;
	top: 1px;
	margin-left: 5px;
}

.blog__pagination {
	padding-top: 5px;
	position: relative;
}

.blog__pagination:before {
	position: absolute;
	left: 0;
	top: -29px;
	height: 1px;
	width: 100%;
	background: #000000;
	opacity: 0.1;
	content: "";
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar {
	padding-top: 50px;
}

.blog__sidebar__item {
	margin-bottom: 50px;
}

.blog__sidebar__item h4 {
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 25px;
}

.blog__sidebar__item ul li {
	list-style: none;
}

.blog__sidebar__item ul li a {
	font-size: 16px;
	color: #666666;
	line-height: 48px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__sidebar__item ul li a:hover {
	color: #fbb71c;
}

.blog__sidebar__search {
	margin-bottom: 50px;
}

.blog__sidebar__search form {
	position: relative;
}

.blog__sidebar__search form input {
	width: 100%;
	height: 46px;
	font-size: 16px;
	color: #6f6f6f;
	padding-left: 15px;
	border: 1px solid #e1e1e1;
	border-radius: 20px;
}

.blog__sidebar__search form input::placeholder {
	color: #6f6f6f;
}

.blog__sidebar__search form button {
	font-size: 16px;
	color: #6f6f6f;
	background: transparent;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0px 18px;
}

.blog__sidebar__recent .blog__sidebar__recent__item {
	display: block;
}

.blog__sidebar__recent .blog__sidebar__recent__item:last-child {
	margin-bottom: 0;
}

.blog__sidebar__recent__item {
	overflow: hidden;
	margin-bottom: 20px;
}

.blog__sidebar__recent__item__pic {
	float: left;
	margin-right: 20px;
}

.blog__sidebar__recent__item__text {
	overflow: hidden;
}

.blog__sidebar__recent__item__text h6 {
	font-weight: 700;
	color: #333333;
	line-height: 20px;
	margin-bottom: 5px;
}

.blog__sidebar__recent__item__text span {
	font-size: 12px;
	color: #999999;
	text-transform: uppercase;
}

.blog__sidebar__item__tags a {
	font-size: 16px;
	color: #6f6f6f;
	background: #f5f5f5;
	display: inline-block;
	padding: 7px 26px 5px;
	margin-right: 6px;
	margin-bottom: 10px;
}

/*---------------------
  Blog Details Hero
-----------------------*/

.blog-details-hero {
	height: 350px;
	display: flex;
	align-items: center;
}

.blog__details__hero__text {
	text-align: center;
}

.blog__details__hero__text h2 {
	font-size: 46px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 10px;
}

.blog__details__hero__text ul li {
	font-size: 16px;
	color: #ffffff;
	list-style: none;
	display: inline-block;
	margin-right: 45px;
	position: relative;
}

.blog__details__hero__text ul li:after {
	position: absolute;
	right: -26px;
	top: 0;
	content: "|";
}

.blog__details__hero__text ul li:last-child {
	margin-right: 0;
}

.blog__details__hero__text ul li:last-child:after {
	display: none;
}

/*---------------------
  Blog Details
-----------------------*/

.related-blog {
	padding-top: 70px;
	padding-bottom: 10px;
}

.related-blog-title {
	margin-bottom: 70px;
}

.blog-details {
	padding-bottom: 75px;
	border-bottom: 1px solid #e1e1e1;
}

.blog__details__text {
	margin-bottom: 45px;
}

.blog__details__text img {
	margin-bottom: 30px;
}

.blog__details__text p {
	font-size: 18px;
	line-height: 30px;
}

.blog__details__text h3 {
	color: #333333;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 30px;
}

.blog__details__author__pic {
	float: left;
	margin-right: 15px;
}

.blog__details__author__pic img {
	height: 92px;
	width: 92px;
	border-radius: 50%;
}

.blog__details__author__text {
	overflow: hidden;
	padding-top: 30px;
}

.blog__details__author__text h6 {
	color: #1c1c1c;
	font-weight: 700;
}

.blog__details__author__text span {
	font-size: 16px;
	color: #6f6f6f;
}

.blog__details__widget ul {
	margin-bottom: 5px;
}

.blog__details__widget ul li {
	font-size: 16px;
	color: #6f6f6f;
	list-style: none;
	line-height: 30px;
}

.blog__details__widget ul li span {
	color: #1c1c1c;
	font-weight: 700;
}

.blog__details__widget .blog__details__social a {
	display: inline-block;
	font-size: 20px;
	color: #6f6f6f;
	margin-right: 24px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__details__widget .blog__details__social a:hover {
	color: #fbb71c;
}

.blog__details__widget .blog__details__social a:last-child {
	margin-right: 0;
}

/*---------------------
  Footer
-----------------------*/

.footer {
	background: url(../img/footer-bg.png);
    background-size: cover;
	padding-top: 70px;
	padding-bottom: 0;
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about ul li {
	font-size: 16px;
	color: #ffffff;
	line-height: 36px;
	list-style: none;
}

.footer__about__logo {
	margin-bottom: 15px;
}

.footer__about__logo a {
	display: inline-block;
	width: 260px;
}

.footer__widget {
	margin-bottom: 30px;
	overflow: hidden;
}

.footer__widget h6 {
	font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    position: relative;
    padding-bottom: 30px;
    color: #ffffffa3;
}

.footer__widget ul {
	/* width: 50%; */
	float: left;
}

.footer__widget ul li {
	list-style: none;
}

.footer__widget ul li a {
	color: #d0d0d0;
    font-size: 15px;
    line-height: 32px;
}

.footer__widget p {
	font-size: 14px;
	color: #ffffff;
	margin-bottom: 30px;
}

.footer__widget form {
	position: relative;
	margin-bottom: 30px;
}

.footer__widget form input {
	width: 100%;
	font-size: 16px;
	padding-left: 20px;
	color: #1c1c1c;
	height: 46px;
	border: 1px solid #ededed;
}

.footer__widget form input::placeholder {
	color: #1c1c1c;
}

.footer__widget form button {
	position: absolute;
	right: 0;
	top: 0;
	padding: 0 26px;
	height: 100%;
}

.footer__widget .footer__widget__social a {
	display: inline-block;
	height: 41px;
	width: 41px;
	font-size: 16px;
	color: #404040;
	border: 1px solid #ededed;
	border-radius: 50%;
	line-height: 38px;
	text-align: center;
	background: #ffffff;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-right: 10px;
}

.footer__widget .footer__widget__social a:last-child {
	margin-right: 0;
}

.footer__widget .footer__widget__social a:hover {
	background: #fbb71c;
	color: #ffffff;
	border-color: #ffffff;
}

.footer__copyright {
	border-top: 1px solid #ebebeb;
	padding: 15px 0;
	overflow: hidden;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.footer__copyright__text {
	font-size: 14px;
	color: #1c1c1c;
	line-height: 25px;
}

/*---------------------
  Contact
-----------------------*/

.contact {
	padding-top: 80px;
	padding-bottom: 50px;
}

.contact__widget {
	margin-bottom: 30px;
}

.contact__widget span {
	font-size: 36px;
	color: #fbb71c;
}

.contact__widget h4 {
	color: #1c1c1c;
	font-weight: 700;
	margin-bottom: 6px;
	margin-top: 18px;
}

.contact__widget p {
	color: #666666;
	margin-bottom: 0;
}

/*---------------------
  Map
-----------------------*/

.map {
	height: 500px;
	position: relative;
}

.map iframe {
	width: 100%;
}

.map .map-inside {
	position: absolute;
	left: 50%;
	top: 160px;
	-webkit-transform: translateX(-175px);
	-ms-transform: translateX(-175px);
	transform: translateX(-175px);
}

.map .map-inside i {
	font-size: 48px;
	color: #fbb71c;
	position: absolute;
	bottom: -75px;
	left: 50%;
	-webkit-transform: translateX(-18px);
	-ms-transform: translateX(-18px);
	transform: translateX(-18px);
}

.map .map-inside .inside-widget {
	width: 350px;
	background: #ffffff;
	text-align: center;
	padding: 23px 0;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
	box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
}

.map .map-inside .inside-widget:after {
	position: absolute;
	left: 50%;
	bottom: -30px;
	-webkit-transform: translateX(-6px);
	-ms-transform: translateX(-6px);
	transform: translateX(-6px);
	border: 12px solid transparent;
	border-top: 30px solid #ffffff;
	content: "";
	z-index: -1;
}

.map .map-inside .inside-widget h4 {
	font-size: 22px;
	font-weight: 700;
	color: #1c1c1c;
	margin-bottom: 4px;
}

.map .map-inside .inside-widget ul li {
	list-style: none;
	font-size: 16px;
	color: #666666;
	line-height: 26px;
}

/*---------------------
  Contact Form
-----------------------*/

.contact__form__title {
	margin-bottom: 50px;
	text-align: center;
}

.contact__form__title h2 {
	color: #1c1c1c;
	font-weight: 700;
}

.contact-form {
	padding-top: 80px;
	padding-bottom: 80px;
}

.contact-form form input {
	width: 100%;
	height: 50px;
	font-size: 16px;
	color: #6f6f6f;
	padding-left: 20px;
	margin-bottom: 30px;
	border: 1px solid #ebebeb;
	border-radius: 4px;
}

.contact-form form input::placeholder {
	color: #6f6f6f;
}

.contact-form form textarea {
	width: 100%;
	height: 150px;
	font-size: 16px;
	color: #6f6f6f;
	padding-left: 20px;
	margin-bottom: 24px;
	border: 1px solid #ebebeb;
	border-radius: 4px;
	padding-top: 12px;
	resize: none;
}

.contact-form form textarea::placeholder {
	color: #6f6f6f;
}

.contact-form form button {
	font-size: 18px;
	letter-spacing: 2px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header__menu ul li {
		margin-right: 45px;
	}
	.hero__search__form {
		width: 490px;
	}
	.hero__categories__all {
		padding: 10px 25px 10px 20px;
	}
	.hero__categories ul {
		padding-left: 20px;
	}
	.latest-product__slider.owl-carousel .owl-nav {
		right: 0;
	}
	.product__details__tab .nav-tabs:before {
		width: 265px;
	}
	.product__details__tab .nav-tabs:after {
		width: 265px;
	}
	.shoping__discount form input {
		width: 240px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hero__categories {
		margin-bottom: 30px;
	}
	.hero__search__form {
		width: 485px;
	}
	.categories__slider.owl-carousel .owl-nav button {
		left: -20px;
	}
	.categories__slider.owl-carousel .owl-nav button.owl-next {
		right: -20px;
	}
	.filter__sort .nice-select {
		padding-left: 5px;
		padding-right: 28px;
	}
	.product__details__quantity {
		margin-bottom: 10px;
	}
	.product__details__text .primary-main-btn {
		margin-bottom: 10px;
	}
	.product__details__tab .nav-tabs:before {
		width: 150px;
	}
	.product__details__tab .nav-tabs:after {
		width: 150px;
	}
	.blog__details__author {
		overflow: hidden;
		margin-bottom: 25px;
	}
	.humberger__open {
		display: block;
		font-size: 22px;
		color: #e3e3e3;
		height: 35px;
		width: 35px;
		line-height: 33px;
		text-align: center;
		border: 1px solid #1c1c1c;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 22px;
	}
	.header .container {
		position: relative;
	}
	.humberger__menu__wrapper {
		width: 300px;
		background: #ffffff;
		position: fixed;
		left: -300px;
		top: 0;
		height: 100%;
		overflow-y: auto;
		z-index: 99;
		padding: 30px;
		padding-top: 50px;
		opacity: 0;
		display: block;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
	}
	.humberger__menu__wrapper.show__humberger__menu__wrapper {
		opacity: 1;
		left: 0;
	}
	.humberger__menu__logo {
		margin-bottom: 30px;
	}
	.humberger__menu__logo a {
		display: inline-block;
	}
	.humberger__menu__contact {
		padding: 10px 0 13px;
	}
	.humberger__menu__contact ul li {
		font-size: 14px;
		color: #1c1c1c;
		position: relative;
		line-height: 30px;
		list-style: none;
	}
	.humberger__menu__contact ul li i {
		color: #252525;
		margin-right: 5px;
	}
	.humberger__menu__cart ul {
		display: inline-block;
		margin-right: 25px;
	}
	.humberger__menu__cart ul li {
		list-style: none;
		display: inline-block;
		margin-right: 15px;
	}
	.humberger__menu__cart ul li:last-child {
		margin-right: 0;
	}
	.humberger__menu__cart ul li a {
		position: relative;
	}
	.humberger__menu__cart ul li a i {
		font-size: 18px;
		color: #1c1c1c;
	}
	.humberger__menu__cart ul li a span {
		height: 13px;
		width: 13px;
		background: #fbb71c;;
		font-size: 10px;
		color: #ffffff;
		line-height: 13px;
		text-align: center;
		font-weight: 700;
		display: inline-block;
		border-radius: 50%;
		position: absolute;
		top: 0;
		right: -12px;
	}
	.humberger__menu__cart .header__cart__price {
		font-size: 14px;
		color: #6f6f6f;
		display: inline-block;
	}
	.humberger__menu__cart .header__cart__price span {
		color: #252525;
		font-weight: 700;
	}
	.humberger__menu__cart {
		margin-bottom: 25px;
	}
	.humberger__menu__widget {
		margin-bottom: 20px;
	}
	.humberger__menu__widget .header__top__right__language {
		margin-right: 20px;
	}
	.humberger__menu__nav {
		display: none;
	}
	.humberger__menu__wrapper .header__top__right__social {
		display: block;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.humberger__menu__overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.5);
		content: "";
		z-index: 98;
		visibility: hidden;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
	}
	.humberger__menu__overlay.active {
		visibility: visible;
	}
	.header__top {
		display: none;
	}
	.header__menu {
		display: none;
	}
	.header__cart {
		text-align: center;
		padding: 10px 0 24px;
	}
	.over_hid {
		overflow: hidden;
	}

}



/* Wide Mobile = 480px */

@media only screen and (max-width: 768px) {
	.hero__categories {
		margin-bottom: 30px;
	}
	.hero__search {
		margin-bottom: 30px;
	}
	.hero__search__form {
		width: 100%;
	}
	.hero__search__form form input {
		width: 100%;
	}
	.hero__search__form form .hero__search__categories {
		display: none;
	}
	.hero__search__phone {
		float: left;
		margin-top: 30px;
	}
	.categories__slider.owl-carousel .owl-nav {
		text-align: center;
		margin-top: 40px;
	}
	.categories__slider.owl-carousel .owl-nav button {
		position: relative;
		left: 0;
		top: 0;
		-webkit-transform: translateY(0);
	}
	.categories__slider.owl-carousel .owl-nav button.owl-next {
		right: -10px;
	}
	.footer__copyright {
		text-align: center;
	}
	.footer__copyright__text {
		float: none;
		margin-bottom: 25px;
	}
	.footer__copyright__payment {
		float: none;
	}
	.filter__item {
		text-align: center;
	}
	.filter__option {
		text-align: center;
	}
	.product__details__pic {
		margin-bottom: 40px;
	}
	.product__details__tab .nav-tabs:before {
		display: none;
	}
	.product__details__tab .nav-tabs:after {
		display: none;
	}
	.shoping__cart__table {
		overflow-y: auto;
	}
	.shoping__discount form input {
		margin-bottom: 15px;
	}
	.blog__details__author {
		overflow: hidden;
		margin-bottom: 25px;
	}
	.humberger__open {
		display: block;
		font-size: 22px;
		color: #d3d3d3;
		height: 35px;
		width: 35px;
		line-height: 33px;
		text-align: center;
		border: 1px solid #1c1c1c;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 22px;
	}
	.header .container {
		position: relative;
	}
	.humberger__menu__wrapper {
		width: 300px;
		background: #ffffff;
		position: fixed;
		left: -300px;
		top: 0;
		height: 100%;
		overflow-y: auto;
		z-index: 99;
		padding: 30px;
		padding-top: 50px;
		opacity: 0;
		display: block;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
	}
	.humberger__menu__wrapper.show__humberger__menu__wrapper {
		opacity: 1;
		left: 0;
	}
	.humberger__menu__logo {
		margin-bottom: 30px;
	}
	.humberger__menu__logo a {
		display: inline-block;
	}
	.humberger__menu__contact {
		padding: 10px 0 13px;
	}

	.humberger__menu__contact ul{
		margin-top: 20px;
	}
	
	.humberger__menu__contact ul li {
		font-size: 14px;
		color: #1c1c1c;
		position: relative;
		list-style: none;
		display: flex;
		align-items: baseline;
		margin-bottom: 15px;
		gap: 10px;
	}
	.humberger__menu__contact ul li a{
		overflow-wrap: anywhere;
		display: inline-block;
		line-height: normal;
	}
	
	.humberger__menu__contact ul li i {
		color: #252525;
		margin-right: 5px;
	}
	.humberger__menu__cart ul {
		display: inline-block;
		margin-right: 25px;
	}
	.humberger__menu__cart ul li {
		list-style: none;
		display: inline-block;
		margin-right: 15px;
	}
	.humberger__menu__cart ul li:last-child {
		margin-right: 0;
	}
	.humberger__menu__cart ul li a {
		position: relative;
	}
	.humberger__menu__cart ul li a i {
		font-size: 18px;
		color: #1c1c1c;
	}
	.humberger__menu__cart ul li a span {
		height: 13px;
		width: 13px;
		background: #fbb71c;;
		font-size: 10px;
		color: #ffffff;
		line-height: 13px;
		text-align: center;
		font-weight: 700;
		display: inline-block;
		border-radius: 50%;
		position: absolute;
		top: 0;
		right: -12px;
	}
	.humberger__menu__cart .header__cart__price {
		font-size: 14px;
		color: #6f6f6f;
		display: inline-block;
		float: right;
	}
	.humberger__menu__cart .header__cart__price span {
		color: #252525;
		font-weight: 700;
	}
	.humberger__menu__cart {
		margin-bottom: 25px;
	}
	.humberger__menu__widget {
		margin-bottom: 20px;
	}
	.humberger__menu__widget .header__top__right__language {
		margin-right: 20px;
	}
	.humberger__menu__nav {
		display: none;
	}
	.humberger__menu__wrapper .header__top__right__social {
		display: block;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.humberger__menu__overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.5);
		content: "";
		z-index: 98;
		visibility: hidden;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
	}
	.humberger__menu__overlay.active {
		visibility: visible;
	}
	.header__top {
		display: none;
	}
	.header__menu {
		display: none;
	}
	.header__cart {
		text-align: center;
		padding: 10px 0 24px;
	}
	.over_hid {
		overflow: hidden;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.hero__search__form form .hero__search__categories {
		display: none;
	}
	.featured__controls ul li {
		margin-bottom: 10px;
	}
	.product__details__text ul li b {
		width: 100px;
	}
	.product__details__tab .nav-tabs li {
		margin-right: 20px;
	}
	.shoping__cart__main-btns {
		text-align: center;
	}
	.primary-main-btn.cart-main-btn.cart-main-btn-right {
		float: none;
		margin-top: 10px;
	}
	.shoping__checkout .primary-main-btn {
		display: block;
		text-align: center;
		padding: 10px 15px 10px;
	}
	.map .map-inside {
		-webkit-transform: translateX(-125px);
		-ms-transform: translateX(-125px);
		transform: translateX(-125px);
	}
	.map .map-inside .inside-widget {
		width: 250px;
	}
	.product__details__tab .nav-tabs li {
		margin-right: 15px;
	}
	.shoping__discount form input {
		width: 100%;
	}
	.checkout__order {
		padding: 20px;
	}
	.blog__details__hero__text h2 {
		font-size: 24px;
	}
}
li {
    list-style: none;
}

#cookiePopup {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #161e0f;
        padding: 15px;
        flex-wrap: wrap;
        z-index: 999999;
        gap: 20px;
        align-items: center;
        justify-content: center;
        display: none;
    }

    #cookiePopup h4 {
        font-size: 22px;
        color: #fff;
        margin-bottom: 15px;
    }

    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }

    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }

    .cookiemain-btns {
        display: inline-flex;
        gap: 10px;
    }

    .cookiemain-btns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        background: #161e0f;
        cursor: pointer;
        transition: all 0.5s ease;
        border: 2px solid #fff;
    }

    .cookiemain-btns button:last-child {
        background-color: #fff;
        color: #161e0f;
    }
    .hero__text {
    /* width: 60%; */
}
.banner__pic {
    background-size: cover;
    background-position: center;
    padding: 55px 30px 55px 220px;
}
.banner__pic h3{
    font-size: 26px;
    font-weight: 700;
}
.banner__pic p{}
a {
        color: #4e4e4e;
}

.shoping__cart__quantity button, .product__details__quantity button{
    width: 40px;
    height: 40px;
    font-size: 24px;
    padding: 15px 0 20px;
    line-height: 1px;
    border: 1px solid #ffffff;
    background-color: #ededed;
    color: #6c6c6c;
}

.shoping__cart__quantity input, .product__details__quantity input{
    width: 60px;
    height: 40px;
    border-radius: 0;
    border: 1px solid #333;
    text-align: center;
}
.header{
    background: transparent;
    /* border-bottom: 1px solid #dddddd73; */
    /* position: absolute; */
    content: "";
    /* top: 0; */
    /* left: 0px; */
    /* width: 100%; */
    z-index: 9;
}
.header .second-header {
    background: none;
    margin-top: 0;
    margin-left: 265px;
}
.second-header {
    border: none;
    padding-bottom: 10px;
    background: #FFC000;
    padding-top: 10px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.header .second-header .header-cta {
    margin-right: 15px;
}
.header-cta ul li:first-child {
    margin-left: 0;
}

.header-cta ul li {
    display: inline-block;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #e1e1e140;
}
.header-cta .call-box {
    display: flex;
    text-align: left;
}
.call-box .icon {
    display: inline-block;
}
.header-cta ul li i {
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 1px;
    color: #FFC000;
}
.call-box .text {
    margin-left: 10px;
}
.second-header a, .second-header span {
    color: #fff;
}
.header-cta ul li:last-child {
    padding-right: 0;
    border-right: none;
    margin-right: 0;
}
.scrr-bann{
    width: auto;
    margin: 0 20px;
    border-radius: 20px;
    overflow: hidden;
}
.bann-height-light{
    position: absolute;
    top: 15%;
    right: 7%;
    background: #fbb71c;;
    padding: 30px;
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 13%);
    border-radius: 10px;
}
.bann-height-light h5{
    font-size: 25px;
    font-weight: 700;
}
.bann-height-light p{
    font-size: 35px;
    color: #000000;
    margin: 10px 0 40px;
}
.cc-border{
    border-bottom: 1px solid #dddddd80;
}
.hero__text h2 span{
    color: #ffffff;
}
.bann-height-light ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    border-bottom: 1px solid #00000082;
    padding-bottom: 20px;
}
.bann-prod-left h5{
    font-size: 17px;
    color: #4a4a4a;
    font-weight: 600;
}
.about-sec{
    padding: 100px 0;
}
.hed-title{
    /* border: 1px solid #000000; */
    color: #ffffff;
    font-size: 20px;
    display: inline;
    padding: 5px 25px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 43%);
    background: #FFC000;
    text-transform: uppercase;
    border-radius: 7px;
}
.ab-box h5{
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #FFC000;
    margin-bottom: 20px;
}
.ab-box p{
    color: #4c4c4c;
    font-size: 18px;
    line-height: 30px;
}
.ab-img img {
    /* margin-top: 30px; */
    /* clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 13%); */
    /* margin: 50px 30px 0 0; */
    /* width: -webkit-fill-available; */
}
.hover-section {
      display: flex;
      /* width: 80%; */
      /* max-width: 1200px; */
      /* background: #fff; */
      /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
      justify-content: space-between;
      margin-top: 40px;
    }

    .text-section {
      width: 40%;
      /* padding: 20px; */
      /* border-right: 1px solid #ddd; */
    }

    .text-section div {
      margin: 20px 0;
      font-size: 34px;
      cursor: pointer;
      transition: color 0.3s ease;
      color: #fff;
      
    }

    .text-section div:hover {
      color: #adadad;
    }

    .image-section {
      width: 54%;
      background-size: cover;
      background-position: center;
      transition: background-image 0.5s ease;
      clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
    }

    .image-section.default {
      background-image: url('../img/br.png'); 
    }
  .image-section.image1 {
      background-image: url('../img/br1.png'); 
    }
    .image-section.image2 {
      background-image: url('../img/br2.png'); 
    }

    .image-section.image3 {
      background-image: url('../img/br3.png'); 
    }

    .image-section.image4 {
      background-image: url('../img/br4.png'); 
    }
     .image-section.image5 {
      background-image: url('../img/br5.png'); 
    }
  

.prod-brand-title h5{
    font-size: 50px;
    
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 50px;
}
.prod-brand-title p{
    width: 100%;
    font-size: 22px;
    color: #c3c3c3;
    margin-top: 23px;
}
.prod-brand-title{
    width: 76%;
    margin: 0 auto;
}
.prod-brand-sec{
    padding: 60px 0;
    background: #FFC000;
}

.blog__item__pic {
    background: #fbb71c;
    display: inline-block;
    padding: 10px;
    position: absolute;
    top: -35px;
    border-radius: 10px;
}
.faq-sec{
    padding: 60px 0;
}
.faq-sec h2{
    font-size: 50px;
    
    color: #FFC000;
    line-height: 45px;
    margin-bottom: 20px;
}
.faq-sec h2 span{
    font-size: 40px;
    color: #605e5e;
}
.faq-sec p{
    color: #000;
    text-align: center;
    font-size: 20px;
    color: #545454;
    max-width: 600px;
    margin: 0 auto 40px;
}
.accordion {
    /* width: 70%; */
    margin: 0 auto;
}
.accordion .card{
    border-bottom: 1px solid #ddd;
    margin: 20px 0;
}
.accordion .card button{
    font-size: 18px;
    position: relative;
    color: #141b22;
    text-align: left;
    padding: 15px;
    width: 100%;
    background: #FFC000;
}

.accordion .card button::after{
	position: absolute;
	content:"\25be";
	font-size: 40px;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
}

.accordion .card .card-body{
    color: #707070;
    font-size: 18px;
    padding: 20px 10px;
}
.accordion .card .main-btn:focus{
    box-shadow: none;
}
.order_details{
    margin-bottom: 40px;
}
.order_details a{
    font-size: 30px;
}
.blog__item__text p{
    color: #dbdbdb;
    font-size: 15px;
}

.humberger__menu__logo img{
    filter: brightness(0);
}

.nav-mobile{
    background-color: #FFC000;
}

.nav-mobile li{
    padding: 10px;
}

.nav-mobile li a{
    color: #fff;
    transition: 0.5s all;
}

.nav-mobile li a:hover{
    color: #fbb71c;
}

@media (max-width: 992px) {
        .from-blog .row {
        row-gap: 60px;
    }
}

.footer__copyright__text p{
    margin: 0;
    color: #fff;
}

.footer__copyright__payment{
    margin: auto;
}






/*-------------------------------- NEW CSS --------------------------*/
.menu-area {
    position: relative;
}
.header .second-menu {
    background: #fff;
}
.second-menu {
    position: relative;
    z-index: 9;
}
.header .header__logo {
    /* background: #FFC000; */
    /* width: 200px; */
    /* height: 127px; */
    display: flex;
    align-items: center;
    text-align: center;
    /* top: -47px; */
    /* position: absolute; */
    left: 0;
}
.header .header__logo a {
    color: #fff;
    text-align: center;
    width: 100%;
}
.header .header__logo img {
    /* width: 305px; */
}
.header__menu {
    position: relative;
    z-index: 9;
    margin-right: -70px;
}
.hero__text h4 {
    color: #ffc000;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 18px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}
.hero__text h2 {
    margin-bottom: 25px;
    font-size: 62px;
    line-height: 1.2;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
.hero__text h2 span {
    color: #000;
    position: relative;
    padding: 0 13px;
}
.hero__text h2 span::before {
    content: "";
    width: 100%;
    height: 80%;
    background: #fff;
    position: absolute;
    top: 10px;
    z-index: -2;
    left: 0;
    transform: skew(-10deg);
}
.main-btn {
	border-radius:50px;
	color: #111111;
	display: inline-block;
	font-size: 16px;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 0;
	padding: 20px 30px;
	text-align: center;
	text-transform: unset;
	touch-action: manipulation;
	transition: all 0.3s ease 0s;
	vertical-align: middle;
	white-space: nowrap;
	position: relative;
    z-index:1;
    text-transform: capitalize;
   background: #FFC000;
    border: 1px solid #FFC000;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.main-btn::before {
    width: 40px;
    height: 40px;
    position: absolute;
    border-radius: 50%;
    content: "";
    background: #FFC000;
    top: -60PX;
    left: 10px;
    z-index: -1;    
    transition: all 0.3s ease 0s;
}
.main-btn:hover::before {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 0px;
    content: "";
    background: #141b22;
    top: 0;
    left: 0;
    z-index: -1;
}
.main-btn:hover{
    color: #fff;
    border-color: #141b22;
}
.about-area {
    position: relative;
    z-index: 0;
    overflow: hidden;
    padding: 80px 0 0px;
}
.about-title h5 {
    color: #FFC000;
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.s-about-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: #141b22;
    font-weight: 700;
}
.s-about-content p {
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #777;
    line-height: 26px;
}
.about-content .call-box {
    display: inline-flex;
    gap: 15px;
    align-items: center;
}
.about-content .call-box .icon {
    font-size: 50px;
    color: #FFC000;
}
.call-box .icon {
    display: inline-block;
}
.call-box .text {
    margin-left: 10px;
}
.about-content .call-box span {
    color: #777;
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}
.about-content strong {
    color: #FFC000;
}
.about-content .call-box strong a {
    color: #777;
    font-size: 18px;
    font-weight: 600;
}
.ab-img {
    margin-left: -68px;
}
.s-about-img img {
    width: 100%;
}
.counter-area {
    position: relative;
    z-index: 0;
    padding: 120px 0;
}
.count-bdr {
    border: 5px solid #ffffff1c;
    border-radius: 10px;
    padding: 60px 70px 30px 100px;
}
.p-relative {
    position: relative;
    z-index: 0;
}
.counter-area .single-counter {
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
}
.single-counter {
    padding: 0 25px;
}
.counter {
    position: relative;
    z-index: 0;
}
.single-counter .icon {
    margin-bottom: 15px;
    display: block;
    width: 75px;
}
.count, .single-counter span {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}
.single-counter p {
    font-size: 16px;
    margin-bottom: 0;
    color: #fff;
    padding-top: 5px;
    line-height: 22px;
}
.steps-area {
    position: relative;
    z-index: 0;
    padding: 20px 0 100px;
}
.section-title h5 {
    color: #FFC000;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.section-title h2 {
    font-size: 60px;
    margin-bottom: 40px !important;
    position: relative;
    font-family: 'Poppins', sans-serif;
    color: #141b22;
    font-weight: 700;
}
.step-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-bottom: 5px solid #fff;
}
.step-box:hover{
    border-bottom: 5px solid #FFC000;
}
.step-box:hover .step-box-text-two .btn{
    background: #FFC000;
    border-color:  #FFC000;
}
.step-box:hover .number {
    color: #FFC000;
}
.step-box-text-one {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.step-box-text-one .line{
    width: 54%;
}
.step-box-text-one .line hr{
    width: 70%;
    border-bottom: 1px solid #D0D0D0;
    margin-left: 20px;
    opacity: 1;
}
.step-box-text-one .number {
    font-size: 70px;
    font-weight: 600;
    color: #11111114;
}
.step-box-text-one .icon{
    width: 26%;
}
.step-box-text-one .icon i {
    width: 100%;
    height: 85px;
    text-align: center;
    font-size: 42px;
    border: 1px dashed #999;
    line-height: 78px;
    border-radius: 10px;
    color: #ffc000;
}
.step-box-text-two h3{
    margin-bottom: 15px;
    font-size: 20px;
}
.step-box-text-two .btn{
    background: none;
    border: 1px solid #D0D0D0; 
    margin-top: 15px;
}
.step-box .text p,.service-detail .step-box .step-box-text-two  p{
    margin-bottom: 0;
}
.step-box .date-box {
    width: 65px;
    height: 65px;
    margin-right: 20px;
    text-align: center;
    position: relative;
    float: left;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 70px;
}
.booking {
    position: relative;
    z-index: 0;
    padding: 120px 0;
}
.booking ul {
    margin-top: 50px;
    padding-right: 20px;
}
.booking li {
    margin-bottom: 50px;
}
.booking-box {
    display: flex;
}
.booking-box .dnumber {
    width: 25%;
}
.booking-box .date-box {
    font-weight: 700;
    font-size: 35px;
    line-height: 45px;
    color: #FFC000;
}
.booking-box h3 {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #141b22;
    font-weight: 700;
    margin-bottom: 10px;
}
.booking-box .text p {
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #777;
    line-height: 26px;
}
.booking .section-title {
    margin-bottom: 20px;
    text-align: left;
}
.contact-bg02 {
    background: #fff;
    padding: 80px 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    margin-top: -165px;
}
.cta-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
    padding: 70px 0;
}
.cta-title p {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    font-family: 'Poppins', sans-serif;
    color: #141b22;
}
.contact-bg02 .section-title {
    margin-bottom: 20px;
    text-align: left;
}
.contact-bg02 .section-title h4 {
    color: #FFC000;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.contact-bg02 .section-title p {
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #141b22;
    line-height: 34px;
}
.cta-bg .section-title {
    margin-bottom: 0px !important;
    text-align: left;
}
.cta-bg .cta-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.courses {
    padding: 100px 0;
}
.breadcrumb-area {
    background-size: cover;
    position: relative;
    min-height: 200px;
    background-repeat: no-repeat;
    background-color: #000;
    padding-top: 180px;
    text-align: center;
}
.breadcrumb-wrap {
    text-align: center;
}
.breadcrumb {
    display: inline-block;
    -ms-flex-wrap: wrap;
    flex-wrap: unset;
    padding: 0;
    margin-bottom: 15px;
    list-style: none;
    background-color: unset;
    position: relative;
}
.breadcrumb li {
    display: inline-block;
}
.breadcrumb li a {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
.breadcrumb > .active {
    color: #fffc !important;
    font-weight: 500;
}
.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 15px;
    padding-left: 10px;
    color: #ddd;
    content: "|";
}
.breadcrumb-title h2 {
    font-size: 70px;
    margin-bottom: 25px;
    line-height: 1;
    color: #fff;
    letter-spacing: 1px;
}


 

    /* Featured Products Container */
    .featured-products-container {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
        position: relative;
    }
    
    .featured-product-item {
        width: 33.333%;
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    /* Featured Product Card */
    .featured-product-card {
        background: linear-gradient(to bottom, #ffffff, #f9f9f9);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        transition: all 0.5s ease;
        position: relative;
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .featured-product-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(37, 117, 252, 0.1);
    }
    
    /* Featured Product Image */
    .featured-product-image {
        position: relative;
        height: 350px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        transition: transform 0.8s ease;
    }
    
    .featured-product-card:hover .featured-product-image {
        transform: scale(1.08);
    }
    
    /* Product Badge */
    .featured-product-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        color: #fff;
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        z-index: 2;
        box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
    }
    
    /* Featured Product Hover Actions */
    .featured-product-hover {
        position: absolute;
        bottom: 30px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 0 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        list-style: none;
        margin: 0;
    }
    
    .featured-product-card:hover .featured-product-hover {
        opacity: 1;
        transform: translateY(0);
    }
    
    .featured-product-hover li {
        margin: 0;
    }
    
    .featured-product-action {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2575fc;
        font-size: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: all 0.4s ease;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.8);
    }
    
    .featured-product-action:hover {
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        color: #fff;
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 30px rgba(37, 117, 252, 0.4);
    }
    
    /* Featured Product Info */
    .featured-product-info {
        padding: 30px;
        position: relative;
    }
    
    .product-category {
        font-size: 12px;
        color: #2575fc;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
        opacity: 0.8;
    }
    
    .featured-product-name {
        font-size: 16px;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 700;
        line-height: 1.3;
        display: block;
        transition: color 0.3s ease;
        text-decoration: none;
        letter-spacing: -0.5px;
    }
    
    .featured-product-name:hover {
        color: #2575fc;
    }
    
    /* Product Rating */
    .product-rating {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .product-rating i {
        color: #ffc107;
        font-size: 14px;
        margin-right: 2px;
    }
    
    /* Product Price Row */
    .product-price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .featured-product-price {
        font-size: 21px;
        font-weight: 800;
        color: #2575fc;
        margin: 0;
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .view-product-btn {
        display: inline-block;
        padding: 8px 40px;
        background: rgba(37, 117, 252, 0.1);
        color: #2575fc;
        font-weight: 600;
        border-radius: 30px;
        text-align: center;
        transition: all 0.3s ease;
        font-size: 14px;
        text-decoration: none;
        border: 1px solid rgba(37, 117, 252, 0.2);
    }
    
    .view-product-btn:hover {
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .featured-product-item {
            width: 50%;
        }
    }
    
    @media (max-width: 768px) {
        .featured-product-item {
            width: 50%;
        }
        
        .featured-product-image {
            height: 260px;
        }
        
        .featured-product-info {
            padding: 25px;
        }
        
        .featured-product-name {
            font-size: 18px;
        }
        
        .featured-product-price {
            font-size: 22px;
        }
    }
    
    @media (max-width: 576px) {
        .featured-product-item {
            width: 100%;
        }
        
        .featured-product-image {
            height: 300px;
        }
        
        .product-price-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
    }




        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f8f9fa;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        
        p {
            margin-bottom: 20px;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* Buttons */
        .btn-primary {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: #fff;
            font-weight: 600;
            border-radius: 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(37, 117, 252, 0.4);
            color: #fff;
        }
        
        .btn-secondary {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            border-radius: 30px;
            text-align: center;
            border: 2px solid #2575fc;
            transition: all 0.3s ease;
            margin-left: 15px;
        }
        
        .btn-secondary:hover {
            background: #2575fc;
            color: #fff;
        }
        
        .btn-outline {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: #fff;
            font-weight: 600;
            border-radius: 30px;
            text-align: center;
            border: 2px solid #fff;
            transition: all 0.3s ease;
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background: #fff;
            color: #2575fc;
        }
        
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-badge {
            /* display: inline-block; */
            padding: 5px 15px;
            /* background: rgba(37, 117, 252, 0.1); */
            color: #2575fc;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 20px;
            margin-bottom: 0;
        }
        
        .section-title {
            font-size: 36px;
            color: #2c3e50;
            position: relative;
            /* display: inline-block; */
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            /* transform: translateX(-50%); */
            width: 60px;
            height: 4px;
            /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */
            border-radius: 2px;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #101010db 0%, #0e0e0ef7 100%);
            z-index: -2;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 50%, rgb(229 238 255 / 20%) 0%, rgba(26, 42, 108, 0) 70%);
            z-index: -1;
        }
        
        .geometric-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            z-index: -1;
        }
        
        .shape1 {
            width: 300px;
            height: 300px;
            background: #2575fc;
            top: -100px;
            right: -100px;
        }
        
        .shape2 {
            width: 200px;
            height: 200px;
            background: #2a83bd;
            bottom: 100px;
            left: -50px;
        }
        
        .shape3 {
            width: 150px;
            height: 150px;
            background: #2575fc;
            bottom: -50px;
            right: 100px;
        }
        
        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-content {
            width: 50%;
            padding-right: 30px;
        }
        
        .hero-badge {
            display: inline-block;
            padding: 5px 15px;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 20px;
            margin-bottom: 20px;
        }
        
        .hero-title {
            font-size: 48px;
            color: #fff;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .hero-title span {
            color: #ff9800;
            position: relative;
        }
        
        .hero-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
        }
        
        .hero-buttons {
            display: flex;
            align-items: center;
        }
        
        .hero-visual {
            width: 45%;
            position: relative;
        }
        
        .product-showcase {
            position: relative;
            height: 400px;
            perspective: 1000px;
            text-align: center;
        }
        
        .product-card {
            position: absolute;
            /* width: 100%; */
            height: 100%;
            /* background: rgba(255, 255, 255, 0.1); */
            /* backdrop-filter: blur(10px); */
            border-radius: 20px;
            overflow: hidden;
            /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
            transition: all 0.5s ease;
            transform: translateX(100%) rotateY(30deg);
            opacity: 0;
            text-align: center;
        }
        
        .product-card.active {
            transform: translateX(85px) rotateY(0);
            opacity: 1;
        }
        
        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            margin: 0 auto;
            display: block;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: #fff;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .about-text {
            width: 50%;
            padding-right: 30px;
        }
        
        .about-visual {
            width: 45%;
        }
        
        .image-stack {
            position: relative;
            height: 400px;
        }
        
        .stack-image {
            position: absolute;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .stack-image:hover {
            transform: translateY(-40px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .stack-image-1 {
            width: 60%;
            height: 60%;
            top: 0;
            left: 0;
            z-index: 3;
        }
        
        .stack-image-2 {
            width: 50%;
            height: 50%;
            bottom: 0;
            right: 0;
            z-index: 2;
        }
        
        .stack-image-3 {
            width: 40%;
            height: 40%;
            top: 50%;
            left: 30%;
            z-index: 1;
        }
        
        .stack-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-cta {
            display: flex;
            align-items: center;
            margin-top: 30px;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            margin-left: 30px;
            padding: 15px 20px;
            background: rgba(37, 117, 252, 0.05);
            border-radius: 10px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .contact-icon i {
            color: #fff;
            font-size: 20px;
        }
        
        .contact-details span {
            display: block;
            font-size: 14px;
            color: #666;
        }
        
        .contact-details strong a {
            font-size: 18px;
            color: #2c3e50;
            font-weight: 600;
        }
        
        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            background: #fff;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: rgba(37, 117, 252, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feature-icon img {
            width: 40px;
            height: 40px;
        }
        
        .feature-title {
            font-size: 22px;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .feature-description {
            color: #666;
            font-size: 16px;
        }
        
        /* Benefits Section */
        .benefits-section {
            padding: 100px 0;
            background: #f3f3f3;
        }
        
        .benefits-wrapper {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
        }
        
        .benefits-content {
            width: 45%;
        }
        
        .benefits-faq {
            width: 50%;
        }
        
        .benefits-list {
            margin-top: 30px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(37, 117, 252, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            background: rgba(37, 117, 252, 0.1);
            transform: translateX(10px);
        }
        
        .benefit-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .benefit-details h3 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .benefit-details p {
            color: #666;
            font-size: 16px;
        }
        
        .faq-container {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .faq-accordion {
            margin-top: 20px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            cursor: pointer;
        }
        
        .faq-question h4 {
            font-size: 18px;
            color: #2c3e50;
            margin: 0;
        }
        
        .faq-icon {
            width: 30px;
            height: 30px;
            background: rgba(37, 117, 252, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2575fc;
            font-size: 20px;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .faq-answer {
            display: none;
            padding: 0 20px 20px;
            color: #666;
        }
        
        /* Process Section */
        .process-section {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .process-timeline {
            position: relative;
            margin-top: 50px;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #6a11cb, #2575fc);
            border-radius: 2px;
        }
        
        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            position: relative;
        }
        
        .process-step:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        .process-step:nth-child(odd) .step-content {
            text-align: right;
            padding-right: 50px;
            padding-left: 0;
        }
        
        .process-step:nth-child(even) .step-content {
            text-align: left;
            padding-left: 50px;
            padding-right: 0;
        }
        
        .step-visual {
            width: 50%;
            display: flex;
            justify-content: center;
            position: relative;
        }
        
        .step-icon {
            width: 100px;
            height: 100px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }
        
        .step-icon img {
            width: 60px;
            height: 60px;
        }
        
        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            z-index: 3;
        }
        
        .step-content {
            width: 50%;
            padding: 0 20px;
        }
        
        .step-content h3 {
            font-size: 24px;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .step-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        /* CTA Section */
        .cta-section {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
            background-image: url(../img/prlx-bg.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center right;
        }
        
        .cta-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
            z-index: 0;
            opacity: .7;
        }
        
        .cta-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('img/pattern.png');
            background-size: cover;
            opacity: 0.1;
            z-index: -1;
        }
        
        .cta-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-size: 42px;
            color: #fff;
            margin-bottom: 20px;
        }
        
        .cta-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
        }
        
        /* Products Section */
        .products-section {
            padding: 100px 0;
            background: #fff;
        }
        
        .products-container {
            margin-top: 50px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero .container {
                flex-direction: column;
            }
            
            .hero-content {
                width: 100%;
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .hero-visual {
                width: 100%;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                width: 100%;
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .about-visual {
                width: 100%;
            }
            
            .benefits-wrapper {
                flex-direction: column;
            }
            
            .benefits-content,
            .benefits-faq {
                width: 100%;
            }
            
            .benefits-faq {
                margin-top: 50px;
            }
            
            .process-timeline::before {
                left: 30px;
            }
            
            .process-step {
                flex-direction: row !important;
                margin-bottom: 50px;
            }
            
            .step-visual {
                width: 60px;
            }
            
            .step-content {
                width: calc(100% - 60px);
                padding-left: 50px !important;
                padding-right: 0 !important;
                text-align: left !important;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-title {
                font-size: 32px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .btn-secondary,
            .btn-outline {
                margin-left: 0;
                margin-top: 15px;
            }
        }
    
 

    /* Breadcrumb Section */
    .breadcrumb-area {
        padding: 80px 0;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .breadcrumb-area:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(67, 97, 238, 0.8) 0%, rgba(63, 55, 201, 0.8) 100%);
        z-index: 1;
    }
    
    .breadcrumb-wrap {
        position: relative;
        z-index: 2;
    }
    
    .breadcrumb {
        background: transparent;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .breadcrumb-item + .breadcrumb-item:before {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .breadcrumb-item a:hover {
        color: white;
    }
    
    .breadcrumb-item.active {
        color: white;
        font-weight: 600;
    }
    
    .breadcrumb-title h2 {
        color: white;
        font-size: 36px;
        font-weight: 700;
        margin: 0;
        position: relative;
        display: inline-block;
    }
    
    .breadcrumb-title h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: #4cc9f0;
        border-radius: 2px;
    }
    
    /* Product Details Section */
    .product-details {
        padding: 80px 0;
        background: #f8f9fa;
    }
    
    .product__details__pic {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .product__details__pic__item {
        position: relative;
        overflow: hidden;
    }
    
    .product__details__pic__item--large {
        width: 100%;
        height: auto;
        transition: all 0.5s ease;
    }
    
    .product__details__pic__item:hover .product__details__pic__item--large {
        transform: scale(1.05);
    }
    
    .product-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: #4361ee;
        color: white;
        padding: 6px 12px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 600;
        z-index: 1;
    }
    
    .product-badge.sale {
        background: #e63946;
    }
    
    .product__details__text {
        padding-left: 30px;
    }
    
    .product__details__text h3 {
        font-size: 28px;
        font-weight: 700;
        color: #2b2d42;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .product__details__price {
        font-size: 24px;
        font-weight: 700;
        color: #4361ee;
        margin-bottom: 15px;
    }
    
    .product__details__quantity {
        display: flex;
        align-items: center;
        margin: 25px 0;
    }
    
    .quantity {
        display: flex;
        align-items: center;
        border: 1px solid #e9ecef;
        border-radius: 50px;
        overflow: hidden;
        margin-right: 20px;
    }
    
    .btn-quantity {
        background: #f8f9fa;
        border: none;
        width: 40px;
        height: 40px;
        font-size: 18px;
        color: #495057;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-quantity:hover {
        background: #e9ecef;
    }
    
    .btn-quantity:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .quantity input {
        border: none;
        width: 50px;
        height: 40px;
        text-align: center;
        font-weight: 600;
        background: transparent;
    }
    
    .stock-info {
        display: flex;
        align-items: center;
        color: #28a745;
        font-weight: 600;
    }
    
    .stock-info i {
        margin-right: 8px;
    }
    
    .product-actions {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .primary-btn {
        display: inline-block;
        background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
        color: white;
        padding: 14px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        border: none;
        cursor: pointer;
    }
    
    .primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(67, 97, 238, 0.4);
        color: white;
    }
    
    .wishlist-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: white;
        color: #6c757d;
        margin-left: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .wishlist-btn:hover {
        background: #4361ee;
        color: white;
        transform: translateY(-3px);
    }
    
    .product-meta {
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
    }
    
    .meta-item {
        display: flex;
        align-items: flex-start;
        margin-right: 30px;
        margin-bottom: 20px;
    }
    
    .meta-item i {
        font-size: 24px;
        color: #4361ee;
        margin-right: 15px;
        margin-top: 3px;
    }
    
    .meta-text h4 {
        font-size: 16px;
        font-weight: 600;
        color: #2b2d42;
        margin: 0 0 5px;
    }
    
    .meta-text p {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
    }
    
    /* Product Tabs */
    .product__details__tab {
        margin-top: 60px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }
    
    .nav-tabs {
        border-bottom: 1px solid #e9ecef;
        padding: 0 20px;
    }
    
    .nav-tabs .nav-item {
        margin-bottom: 0;
    }
    
    .nav-tabs .nav-link {
        border: none;
        color: #6c757d;
        font-weight: 600;
        padding: 20px 25px;
        border-radius: 0;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .nav-tabs .nav-link:hover {
        color: #4361ee;
    }
    
    .nav-tabs .nav-link.active {
        color: #4361ee;
        background: transparent;
    }
    
    .nav-tabs .nav-link.active:after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #4361ee;
    }
    
    .tab-content {
        padding: 30px;
    }
    
    .product__details__tab__desc h6 {
        font-size: 18px;
        font-weight: 700;
        color: #2b2d42;
        margin-bottom: 20px;
        position: relative;
        padding-left: 15px;
    }
    
    .product__details__tab__desc h6:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 20px;
        background: #4361ee;
        border-radius: 3px;
    }
    
    /* Related Products */
    .related-product {
        padding: 80px 0;
        background: white;
    }
    
    .section-title {
        position: relative;
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 28px;
        font-weight: 700;
        color: #2b2d42;
        margin: 0;
        position: relative;
        display: inline-block;
    }
    
    .section-title h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: #4361ee;
        border-radius: 2px;
    }
    
    .section-nav {
        position: absolute;
        right: 0;
        top: 5px;
    }
    
    .prev-btn, .next-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f8f9fa;
        color: #6c757d;
        margin-left: 10px;
        transition: all 0.3s ease;
    }
    
    .prev-btn:hover, .next-btn:hover {
        background: #4361ee;
        color: white;
    }
    
    .product__item {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        margin-bottom: 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .product__item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .product__item__pic {
        position: relative;
        height: 220px;
        overflow: hidden;
    }
    
    .product-label {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #4361ee;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 600;
        z-index: 1;
    }
    
    .product-label.sale {
        background: #e63946;
    }
    
    .product__item__pic__hover {
        position: absolute;
        left: 0;
        bottom: -50px;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        padding: 15px 0;
        display: flex;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .product__item:hover .product__item__pic__hover {
        bottom: 0;
    }
    
    .product__item__pic__hover li {
        list-style: none;
        margin: 0 10px;
    }
    
    .product__item__pic__hover li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f8f9fa;
        color: #6c757d;
        transition: all 0.3s ease;
    }
    
    .product__item__pic__hover li a:hover {
        background: #4361ee;
        color: white;
    }
    
    .product__item__text {
        padding: 20px;
        text-align: center;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .product__item__text h6 {
        font-size: 16px;
        font-weight: 600;
        color: #2b2d42;
        margin: 0 0 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        line-height: 1.4;
    }
    
    .product__item__text h6 a {
        color: #2b2d42;
        transition: all 0.3s ease;
    }
    
    .product__item__text h6 a:hover {
        color: #4361ee;
    }
    
    .product__item__text h5 {
        font-size: 18px;
        font-weight: 700;
        color: #4361ee;
        margin: 0 0 15px;
    }
    
    .product__action {
        margin-top: auto;
    }
    
    .add-to-cart {
        display: inline-block;
        background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .add-to-cart:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
        color: white;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .product__details__text {
            padding-left: 0;
            margin-top: 30px;
        }
        
        .product-meta {
            flex-direction: column;
        }
        
        .meta-item {
            margin-right: 0;
        }
    }
    
    @media (max-width: 768px) {
        .breadcrumb-area {
            padding: 60px 0;
        }
        
        .breadcrumb-title h2 {
            font-size: 28px;
        }
        
        .product-details {
            padding: 60px 0;
        }
        
        .related-product {
            padding: 60px 0;
        }
        
        .section-title h2 {
            font-size: 24px;
        }
        
        .section-nav {
            position: static;
            text-align: center;
            margin-top: 15px;
        }
    }
    
    @media (max-width: 576px) {
        .product__details__text h3 {
            font-size: 22px;
        }
        
        .product__details__price {
            font-size: 20px;
        }
        
        .product-actions {
            flex-wrap: wrap;
        }
        
        .primary-btn {
            width: 100%;
            margin-bottom: 15px;
        }
        
        .wishlist-btn {
            margin-left: 0;
            margin-right: 15px;
        }
        
        .nav-tabs .nav-link {
            padding: 15px;
            font-size: 14px;
        }
        
        .tab-content {
            padding: 20px;
        }
        
        .product__item__pic {
            height: 180px;
        }
    }


    /* Breadcrumb Section */
    .breadcrumb-area {
        padding: 80px 0;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .breadcrumb-area:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(67, 97, 238, 0.8) 0%, rgba(63, 55, 201, 0.8) 100%);
        z-index: 1;
    }
    
    .breadcrumb-wrap {
        position: relative;
        z-index: 2;
    }
    
    .breadcrumb {
        background: transparent;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .breadcrumb-item + .breadcrumb-item:before {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .breadcrumb-item a:hover {
        color: white;
    }
    
    .breadcrumb-item.active {
        color: white;
        font-weight: 600;
    }
    
    .breadcrumb-title h2 {
        color: white;
        font-size: 36px;
        font-weight: 700;
        margin: 0;
        position: relative;
        display: inline-block;
    }
    
    .breadcrumb-title h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: #4cc9f0;
        border-radius: 2px;
    }
    
    /* Shopping Cart Section */
    .shoping-cart {
        padding: 80px 0;
        background: #f8f9fa;
    }
    
    .shoping__cart__table {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }
    
    .shoping__cart__table table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .shoping__cart__table thead {
        background: #f8f9fa;
    }
    
    .shoping__cart__table th {
        padding: 20px;
        text-align: left;
        font-weight: 600;
        color: #2b2d42;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .shoping__cart__table th.shoping__product {
        width: 40%;
    }
    
    .shoping__cart__table th:last-child {
        text-align: center;
        width: 50px;
    }
    
    .shoping__cart__table td {
        padding: 25px 20px;
        vertical-align: middle;
        border-bottom: 1px solid #f1f3f5;
    }
    
    .shoping__cart__table tbody tr:last-child td {
        border-bottom: none;
    }
    
    .shoping__cart__item {
        display: flex;
        align-items: center;
    }
    
    .shoping__cart__item img {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        object-fit: cover;
        margin-right: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .shoping__cart__item h5 {
        font-size: 16px;
        font-weight: 600;
        color: #2b2d42;
        margin: 0;
        line-height: 1.4;
    }
    
    .shoping__cart__price {
        font-size: 16px;
        font-weight: 600;
        color: #4361ee;
    }
    
    .shoping__cart__total {
        font-size: 18px;
        font-weight: 700;
        color: #2b2d42;
    }
    
    /* Quantity Selector */
    .wg-quantity {
        display: inline-flex;
        align-items: center;
        border: 1px solid #e9ecef;
        border-radius: 50px;
        overflow: hidden;
        background: white;
    }
    
    .btn-quantity {
        width: 40px;
        height: 40px;
        border: none;
        background: #f8f9fa;
        color: #6c757d;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-quantity:hover {
        background: #e9ecef;
        color: #4361ee;
    }
    
    .btn-quantity:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .wg-quantity input {
        width: 50px;
        height: 40px;
        border: none;
        text-align: center;
        font-weight: 600;
        background: transparent;
    }
    
    /* Remove Button */
    .shoping__cart__item__close .btn-remove {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f8f9fa;
        color: #e63946;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    
    .shoping__cart__item__close .btn-remove:hover {
        background: #e63946;
        color: white;
        transform: scale(1.1);
    }
    
    /* Cart Buttons */
    .shoping__cart__btns {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    
    .main-btn {
        display: inline-block;
        background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
        color: white;
        padding: 14px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        border: none;
        cursor: pointer;
        font-size: 14px;
    }
    
    .main-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(67, 97, 238, 0.4);
        color: white;
    }
    
    .cart-btn {
        background: white;
        color: #4361ee;
        border: 2px solid #4361ee;
        box-shadow: none;
    }
    
    .cart-btn:hover {
        background: #4361ee;
        color: white;
    }
    
    .cart-btn-right {
        background: #e63946;
        color: white;
        border-color: #e63946;
    }
    
    .cart-btn-right:hover {
        background: #d62828;
        border-color: #d62828;
    }
    
    /* Checkout */
    .shoping__checkout {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
    
    .shoping__checkout h5 {
        font-size: 18px;
        font-weight: 700;
        color: #2b2d42;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .shoping__checkout h5:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: #4361ee;
        border-radius: 2px;
    }
    
    .shoping__checkout ul {
        list-style: none;
        padding: 0;
        margin: 0 0 30px;
    }
    
    .shoping__checkout ul li {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        font-size: 16px;
        color: #495057;
        border-bottom: 1px solid #f1f3f5;
    }
    
    .shoping__checkout ul li:last-child {
        border-bottom: none;
        font-weight: 700;
        color: #2b2d42;
        font-size: 18px;
    }
    
    .shoping__checkout ul li span {
        font-weight: 600;
    }
    
    .shoping__checkout .main-btn {
        width: 100%;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .shoping-cart {
            padding: 60px 0;
        }
    }
    
    @media (max-width: 768px) {
        .breadcrumb-area {
            padding: 60px 0;
        }
        
        .breadcrumb-title h2 {
            font-size: 28px;
        }
        
        .shoping-cart {
            padding: 40px 0;
        }
        
        .shoping__cart__table {
            overflow-x: auto;
        }
        
        .shoping__cart__table table {
            min-width: 600px;
        }
        
        .shoping__cart__btns {
            flex-direction: column;
        }
        
        .shoping__cart__btns .main-btn {
            width: 100%;
            margin-bottom: 15px;
        }
    }
    
    @media (max-width: 576px) {
        .shoping__cart__item img {
            width: 60px;
            height: 60px;
        }
        
        .shoping__cart__item h5 {
            font-size: 14px;
        }
        
        .shoping__checkout {
            padding: 20px;
        }
    }





    /* Breadcrumb Section */
    .breadcrumb-area {
        padding: 80px 0;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .breadcrumb-area:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(67, 97, 238, 0.8) 0%, rgba(63, 55, 201, 0.8) 100%);
        z-index: 1;
    }
    
    .breadcrumb-wrap {
        position: relative;
        z-index: 2;
    }
    
    .breadcrumb {
        background: transparent;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .breadcrumb-item + .breadcrumb-item:before {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .breadcrumb-item a:hover {
        color: white;
    }
    
    .breadcrumb-item.active {
        color: white;
        font-weight: 600;
    }
    
    .breadcrumb-title h2 {
        color: white;
        font-size: 36px;
        font-weight: 700;
        margin: 0;
        position: relative;
        display: inline-block;
    }
    
    .breadcrumb-title h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: #4cc9f0;
        border-radius: 2px;
    }
    
    /* Checkout Section */
    .checkout {
        padding: 80px 0;
        background: #f8f9fa;
    }
    
    .checkout__form {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 40px;
    }
    
    .checkout__form h4 {
        font-size: 24px;
        font-weight: 700;
        color: #2b2d42;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .checkout__form h4:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
        border-radius: 2px;
    }
    
    .checkout__input {
        margin-bottom: 25px;
    }
    
    .checkout__input p {
        font-size: 16px;
        font-weight: 600;
        color: #2b2d42;
        margin-bottom: 10px;
    }
    
    .checkout__input p span {
        color: #e63946;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        font-size: 15px;
        color: #495057;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }
    
    .form-control:focus {
        border-color: #4361ee;
        outline: none;
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
        background: white;
    }
    
    .country_select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        font-size: 15px;
        color: #495057;
        transition: all 0.3s ease;
        background: #f8f9fa;
        cursor: pointer;
    }
    
    .country_select:focus {
        border-color: #4361ee;
        outline: none;
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
        background: white;
    }
    
    /* Checkout Order */
    .checkout__order {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 30px;
        height: 100%;
    }
    
    .checkout__order h4 {
        font-size: 24px;
        font-weight: 700;
        color: #2b2d42;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .checkout__order h4:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
        border-radius: 2px;
    }
    
    .checkout__order__products {
        font-size: 16px;
        font-weight: 600;
        color: #2b2d42;
        padding: 15px 0;
        border-bottom: 1px solid #f1f3f5;
        display: flex;
        justify-content: space-between;
    }
    
    .checkout__order ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
        border-bottom: 1px solid #f1f3f5;
        padding-bottom: 20px;
    }
    
    .checkout__order ul li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        font-size: 15px;
        color: #495057;
    }
    
    .checkout__order ul li:last-child {
        margin-bottom: 0;
    }
    
    .checkout__order ul li span {
        font-weight: 600;
        color: #2b2d42;
    }
    
    .checkout__order__subtotal {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        font-size: 16px;
        color: #495057;
    }
    
    .checkout__order__total {
        display: flex;
        justify-content: space-between;
        margin-bottom: 25px;
        font-size: 18px;
        font-weight: 700;
        color: #2b2d42;
        padding-top: 15px;
        border-top: 1px solid #f1f3f5;
    }
    
    .checkout__order__total span {
        color: #4361ee;
    }
    
    .checkout__input__checkbox {
        margin-bottom: 30px;
    }
    
    .checkout__input__checkbox label {
        font-size: 14px;
        color: #495057;
        line-height: 1.6;
        display: block;
        position: relative;
        padding-left: 30px;
        cursor: pointer;
    }
    
    .checkout__input__checkbox label a {
        color: #4361ee;
        text-decoration: none;
    }
    
    .checkout__input__checkbox label a:hover {
        text-decoration: underline;
    }
    
    .checkout__input__checkbox input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    
    .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .checkout__input__checkbox label:hover input ~ .checkmark {
        background-color: #e9ecef;
    }
    
    .checkout__input__checkbox label input:checked ~ .checkmark {
        background-color: #4361ee;
        border-color: #4361ee;
    }
    
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
        left: 7px;
        top: 3px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
    
    .checkout__input__checkbox label input:checked ~ .checkmark:after {
        display: block;
    }
    
    .site-btn {
        display: inline-block;
        background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
        border: none;
        cursor: pointer;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
    
    .site-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(67, 97, 238, 0.4);
        color: white;
    }
    
    /* Footer */
    .footer {
        background: #2b2d42;
        padding: 70px 0 20px;
    }
    
    .footer__about {
        margin-bottom: 30px;
    }
    
    .footer__about__logo {
        margin-bottom: 20px;
    }
    
    .footer__about__logo img {
        max-height: 40px;
    }
    
    .footer__about ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer__about ul li {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 10px;
        font-size: 14px;
        display: flex;
        align-items: center;
    }
    
    .footer__about ul li:before {
        content: '\f3c5';
        font-family: 'FontAwesome';
        margin-right: 10px;
        color: #4cc9f0;
    }
    
    .footer__widget h6 {
        color: white;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer__widget h6:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: #4cc9f0;
    }
    
    .footer__widget ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer__widget ul li {
        margin-bottom: 12px;
    }
    
    .footer__widget ul li a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
    }
    
    .footer__widget ul li a:hover {
        color: #4cc9f0;
        padding-left: 5px;
    }
    
    .footer__widget p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    .footer__copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        margin-top: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer__copyright__text p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        margin: 0;
    }
    
    .footer__copyright__payment img {
        max-width: 200px;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .checkout {
            padding: 60px 0;
        }
        
        .checkout__form {
            padding: 30px;
        }
        
        .checkout__order {
            margin-top: 30px;
        }
    }
    
    @media (max-width: 768px) {
        .breadcrumb-area {
            padding: 60px 0;
        }
        
        .breadcrumb-title h2 {
            font-size: 28px;
        }
        
        .checkout {
            padding: 40px 0;
        }
        
        .checkout__form {
            padding: 20px;
        }
        
        .checkout__form h4 {
            font-size: 20px;
        }
        
        .checkout__order h4 {
            font-size: 20px;
        }
        
        .footer__copyright {
            flex-direction: column;
            text-align: center;
        }
        
        .footer__copyright__payment {
            margin-top: 20px;
        }
    }
    
    @media (max-width: 576px) {
        .checkout__input p {
            font-size: 14px;
        }
        
        .form-control {
            padding: 10px 12px;
            font-size: 14px;
        }
        
        .country_select {
            padding: 10px 12px;
            font-size: 14px;
        }
        
        .site-btn {
            padding: 12px 20px;
            font-size: 14px;
        }
    }



    /* Breadcrumb Section */
    .breadcrumb-area {
        padding: 40px 0;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .breadcrumb-area:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(67, 97, 238, 0.8) 0%, rgba(63, 55, 201, 0.8) 100%);
        z-index: 1;
    }
    
    .breadcrumb-wrap {
        position: relative;
        z-index: 2;
    }
    
    .breadcrumb {
        background: transparent;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .breadcrumb-item + .breadcrumb-item:before {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .breadcrumb-item a:hover {
        color: white;
    }
    
    .breadcrumb-item.active {
        color: white;
        font-weight: 600;
    }
    
    .breadcrumb-title h2 {
        color: white;
        font-size: 36px;
        font-weight: 700;
        margin: 0;
        position: relative;
        display: inline-block;
    }
    
    .breadcrumb-title h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: #4cc9f0;
        border-radius: 2px;
    }
    
    /* Order Confirmed Section */
    .breadcrumb-section {
        padding: 60px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
    }
    
    .breadcrumb-section:before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(67, 97, 238, 0.05);
        z-index: 0;
    }
    
    .breadcrumb-section:after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(76, 201, 240, 0.05);
        z-index: 0;
    }
    
    .breadcrumb__text {
        position: relative;
        z-index: 1;
    }
    
    .breadcrumb__text h2 {
        font-size: 42px;
        font-weight: 700;
        color: #2b2d42;
        margin: 0;
        position: relative;
        display: inline-block;
    }
    
    .breadcrumb__text h2:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
        border-radius: 2px;
    }
    
    /* Order Details Section */
    .order_details {
        padding: 100px 0;
        background: #f8f9fa;
        position: relative;
    }
    
    .order_details:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
    }
    
    .order_details .container {
        position: relative;
        z-index: 1;
    }
    
    .order_details .container:before {
        content: '\f058';
        font-family: 'FontAwesome';
        position: absolute;
        top: -59px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 80px;
        color: #28a745;
        opacity: 0.2;
        z-index: -1;
    }
    
    .title_confirmation {
        font-size: 32px;
        font-weight: 700;
        color: #2b2d42;
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
    }
    
    .title_confirmation:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
        border-radius: 2px;
    }
    
    .order_details a {
        display: block;
        font-size: 20px;
        color: #495057;
        padding: 15px 30px;
        background: white;
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-decoration: none;
        margin-top: 20px;
    }
    
    .order_details a:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        color: #4361ee;
    }
    
    .order_details a span {
        font-weight: 600;
        color: #4361ee;
    }
    
    /* Add decorative elements */
    .order_details .container:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
        z-index: -1;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .order_details {
            padding: 80px 0;
        }
        
        .title_confirmation {
            font-size: 28px;
        }
    }
    
    @media (max-width: 768px) {
        .breadcrumb-area {
            padding: 60px 0;
        }
        
        .breadcrumb-title h2 {
            font-size: 28px;
        }
        
        .breadcrumb-section {
            padding: 40px 0;
        }
        
        .breadcrumb__text h2 {
            font-size: 32px;
        }
        
        .order_details {
            padding: 60px 0;
        }
        
        .title_confirmation {
            font-size: 24px;
        }
        
        .order_details a {
            font-size: 18px;
            padding: 12px 25px;
        }
    }
    
    @media (max-width: 576px) {
        .breadcrumb__text h2 {
            font-size: 24px;
        }
        
        .title_confirmation {
            font-size: 20px;
        }
        
        .order_details a {
            font-size: 16px;
            padding: 10px 20px;
        }
    }





    /* Add FontAwesome CDN if not already included */
   
    
    /* Footer Styles */
    .footer {
        background: linear-gradient(135deg, #2b2d42 0%, #1a1b2e 100%);
        padding: 80px 0 30px;
        position: relative;
        overflow: hidden;
    }
    
    .footer:before {
        /* content: ''; */
        position: absolute;
        top: 0;
        left: 76px;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
    }
    
    .footer:after {
        /* content: ''; */
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
        background-size: 100px 100px;
        opacity: 0.5;
        z-index: 1;
        pointer-events: none;
    }
    
    .footer > .container {
        position: relative;
        z-index: 2;
    }
    
    .footer__about {
        margin-bottom: 30px;
    }
    
    .footer__about__logo {
        margin-bottom: 25px;
        display: inline-block;
    }
    
    .footer__about__logo img {
        max-height: 50px;
        transition: all 0.3s ease;
    }
    
    .footer__about__logo:hover img {
        transform: scale(1.05);
    }
    
    .footer__about ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer__about ul li {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 15px;
        font-size: 15px;
        display: flex;
        align-items: flex-start;
        line-height: 1.5;
    }
    
    .footer__about ul li:last-child {
        margin-bottom: 0;
    }
    
    .footer__about ul li:before {
        content: '\f3c5';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-right: 12px;
        color: #4cc9f0;
        font-size: 16px;
        flex-shrink: 0;
        margin-top: 3px;
    }
    
    .footer__widget {
        margin-bottom: 30px;
    }
    
    .footer__widget h6 {
        color: white;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .footer__widget h6:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
        border-radius: 2px;
    }
    
    .footer__widget ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer__widget ul li {
        margin-bottom: 15px;
    }
    
    .footer__widget ul li:last-child {
        margin-bottom: 0;
    }
    
    .footer__widget ul li a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        position: relative;
        padding-left: 20px;
    }
    
    .footer__widget ul li a:before {
        content: '\f105';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }
    
    .footer__widget ul li a:hover {
        color: #4cc9f0;
        padding-left: 25px;
    }
    
    .footer__widget p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 0;
    }
    
    .footer__copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        margin-top: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer__copyright__text p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        margin: 0;
    }
    
    .footer__copyright__payment {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .footer__copyright__payment:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-3px);
    }
    
 
    
    .footer__copyright__payment:hover img {
        opacity: 1;
        transform: scale(1.05);
    }
    
    /* Add decorative elements */
    .footer .row > div {
        position: relative;
    }
    
    .footer .row > div:before {
        /* content: ''; */
        position: absolute;
        top: -20px;
        left: 0;
        width: 30px;
        height: 3px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
        border-radius: 2px;
    }
    
    /* Fallback for missing card image */
    .footer__copyright__payment:empty:before {
        content: 'Secure Payment Methods';
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        font-weight: 600;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .footer {
            padding: 70px 0 30px;
        }
        
        .footer__widget {
            margin-top: 30px;
        }
    }
    
    @media (max-width: 768px) {
        .footer {
            padding: 60px 0 20px;
        }
        
        .footer__copyright {
            flex-direction: column;
            text-align: center;
        }
        
        .footer__copyright__payment {
            margin-top: 20px;
        }
        
        .footer__about ul li {
            font-size: 14px;
        }
        
        .footer__widget ul li a {
            font-size: 14px;
        }
        
        .footer__widget p {
            font-size: 14px;
        }
    }
    
    @media (max-width: 576px) {
        .footer {
            padding: 50px 0 20px;
        }
        
        .footer__about__logo img {
            max-height: 40px;
        }
        
        .footer__widget h6 {
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .footer__about ul li:before {
            margin-right: 8px;
            font-size: 14px;
        }
        
        .footer__widget ul li a {
            font-size: 13px;
        }
        
        .footer__copyright__text p {
            font-size: 13px;
        }
        
        .footer__copyright__payment {
            padding: 8px 15px;
        }
        
        .footer__copyright__payment img {
            max-width: 150px;
        }
    }




    /* Elegant About Section Styles */
    .about-section {
        padding: 100px 0;
        /* background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%); */
        position: relative;
        overflow: hidden;
    }
    
    .about-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a5c4e0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
        z-index: 0;
    }
    
    .container {
        position: relative;
        z-index: 1;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .section-badge {
        display: inline-block;
        padding: 8px 20px;
        background-color: #2c3e50;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        border-radius: 30px;
        margin-bottom: 15px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .section-title {
        font-size: 30px;
        font-weight: 700;
        /* color: #2c3e50; */
        line-height: 1.2;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        padding-bottom: 20px;
    }
    
    .section-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        /* transform: translateX(-50%); */
        width: 80px;
        height: 4px;
        /* background: linear-gradient(90deg, #3498db, #2c3e50); */
        border-radius: 2px;
    }
    
    .about-content {
        display: flex;
        align-items: center;
        gap: 60px;
    }
    
    .about-text {
        flex: 1;
    }
    
    .about-text p {
        font-size: 18px;
        line-height: 1.8;
        color: #34495e;
        margin-bottom: 25px;
    }
    
    .about-cta {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
    }
    
    .btn-primary {
        display: inline-block;
        padding: 15px 35px;
        background: linear-gradient(90deg, #3498db, #2980b9);
        color: white;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        box-shadow: 0 8px 15px rgb(124 124 124 / 30%);
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 20px rgba(52, 152, 219, 0.4);
        background: linear-gradient(90deg, #2980b9, #3498db);
    }
    
    .contact-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        background-color: #2c3e50;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .contact-details span {
        display: block;
        font-size: 14px;
        color: #7f8c8d;
    }
    
    .contact-details strong a {
        font-size: 18px;
        color: #2c3e50;
        text-decoration: none;
        font-weight: 700;
    }
    
    .about-visual {
        flex: 1;
    }
    
    .image-stack {
        position: relative;
        height: 500px;
    }
    
    .stack-image {
        position: absolute;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        transition: all 0.5s ease;
    }
    
    .stack-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .stack-image:hover img {
        transform: scale(1.05);
    }
    
    .stack-image-1 {
        top: 0;
        left: -15px;
        width: 55%;
        height: 65%;
        z-index: 3;
        border: 8px solid white;
    }
    
    .stack-image-2 {
        bottom: -45px;
        right: 0;
        width: 50%;
        height: 60%;
        z-index: 2;
        border: 8px solid white;
    }
    
    .stack-image-3 {
        top: 10%;
        left: 55%;
        width: 40%;
        height: 45%;
        z-index: 1;
        border: 8px solid white;
        transform: translateY(-50%);
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .about-content {
            flex-direction: column;
            gap: 40px;
        }
        
        .section-title {
            font-size: 36px;
        }
        
        .about-visual {
            width: 100%;
        }
        
        .image-stack {
            height: 400px;
        }
    }
    
    @media (max-width: 576px) {
        .section-title {
            font-size: 28px;
        }
        
        .about-text p {
            font-size: 16px;
        }
        
        .about-cta {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
        
        .image-stack {
            height: 350px;
        }
    }
.text-left{
    text-align: left !important;
}
.bnft-img{}
.bnft-img img{}