/******************************************************************
  Theme Name: Anime
  Description: Anime video tamplate
  Author: Colorib
  Author URI: https://colorib.com/
  Version: 1.0
  Created: Colorib
******************************************************************/

/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Banner Section
6.  Product Section
7.  Intagram Section
8.  Latest Section
9.  Contact
10.  Footer Style
-------------------------------------------------------------------*/

/*----------------------------------------*/

/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: "Mulish", sans-serif;
	-webkit-font-smoothing: antialiased;
	background: #000;
	/* background: #11131c; */
	/* background: #0b0c2a; */
}

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

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 15px;
	font-family: "Mulish", sans-serif;
	color: #3d3d3d;
	font-weight: 400;
	line-height: 25px;
	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: #ffffff;
}

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

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

.section-title {
	margin-bottom: 30px;
}

.section-title h4,
.section-title h5 {
	color: #ffffff;
	font-weight: 600;
	line-height: 21px;
	text-transform: uppercase;
	padding-left: 20px;
	position: relative;
	font-family: "Oswald", sans-serif;
}

.section-title h4:after,
.section-title h5:after {
	position: absolute;
	left: 0;
	top: -6px;
	height: 32px;
	width: 4px;
	background: #e53637;
	content: "";
}

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

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

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px;
}

.primary-btn span {
	font-size: 18px;
	margin-left: 5px;
	position: relative;
	top: 3px;
}

.site-btn {
	font-size: 13px;
	color: #ffffff;
	background: #e53637;
	font-weight: 700;
	border: none;
	border-radius: 2px;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 30px;
}

/* 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;
	}
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: 0 0;
	color: #999;
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 28px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

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

.header {
	background: #11131c;
	/* background: #070720; */
	padding: 30px 0;
	position: relative;
}
.navbar-clip{
	position: absolute;
    clip-path: polygon(50% 100%, 100% 80%, 100% 100%, 0 99%, 0 80%);
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 100%;
    background-color: #00ff66;
}
.header__logo {
	/* padding: 20px 0 17px; */
}

.header__logo a {
	display: inline-block;
}

.header__menu {
	text-align: center;
}

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

.header__menu ul li.active a {
	background: #e53637;
	color: #ffffff;
}

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

.header__menu ul li:hover .dropdown {
	top: 62px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li:hover .dropdown li a {
	background: transparent;
}

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

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 82px;
	width: 150px;
	background: #ffffff;
	text-align: left;
	padding: 5px 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

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

.header__menu ul li .dropdown li a {
	font-size: 14px;
	color: #111111;
	font-weight: 500;
	padding: 5px 20px;
}

.header__menu ul li a {
	font-size: 15px;
	color: #b7b7b7;
	display: block;
	font-weight: 700;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	padding: 20px;
}

.header__menu ul li a span {
	position: relative;
	font-size: 17px;
	top: 2px;
}

.header__right {
	text-align: right;
	padding: 20px 0 15px;
}

.header__right a {
	display: inline-block;
	font-size: 18px;
	color: #ffffff;
	margin-right: 30px;
}

.header__right a:last-child {
	margin-right: 0;
}
@media screen and (max-width:767px) {
	.brand img{
		width: 150px;
	}
}
/*---------------------
  Hero
-----------------------*/

.hero {
	padding-top: 50px;
	background-image: url(../img/hero/bg-top.png);
	padding-bottom: 120px;
	/* height: 100vh; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 

}

.hero__items {
	padding: 90px 0 42px 50px;
	border-radius: 5px;
}

.hero__text {
	position: relative;
	z-index: 9;
}

.hero__text .label {
	font-size: 13px;
	color: #e53637;
	background: #ffffff;
	padding: 5px 14px 3px;
	display: inline-block;
	position: relative;
	top: -100px;
	opacity: 0;
	-webkit-transition: all, 0.2s;
	-o-transition: all, 0.2s;
	transition: all, 0.2s;
}

.hero__text h2 {
	color: #ffffff;
	font-size: 42px;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	line-height: 52px;
	margin-top: 35px;
	margin-bottom: 8px;
	position: relative;
	top: -100px;
	opacity: 0;
	-webkit-transition: all, 0.4s;
	-o-transition: all, 0.4s;
	transition: all, 0.4s;
}

.hero__text p {
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 40px;
	position: relative;
	top: -100px;
	opacity: 0;
	-webkit-transition: all, 0.6s;
	-o-transition: all, 0.6s;
	transition: all, 0.6s;
}

.hero__text a {
	position: relative;
	top: -100px;
	opacity: 0;
	-webkit-transition: all, 0.8s;
	-o-transition: all, 0.8s;
	transition: all, 0.8s;
}

.hero__text a span {
	font-size: 13px;
	color: #ffffff;
	background: #e53637;
	display: inline-block;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 14px 20px;
	border-radius: 4px 0 0 4px;
	margin-right: 1px;
}

.hero__text a i {
	font-size: 20px;
	display: inline-block;
	background: #e53637;
	padding: 11px 5px 16px 8px;
	color: #ffffff;
	border-radius: 0 4px 4px 0;
}

.hero__slider.owl-carousel .owl-item.active .hero__text .label {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text h2 {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text p {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text a {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-dots {
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 100%;
	text-align: center;
}

.hero__slider.owl-carousel .owl-dots button {
	height: 8px;
	width: 8px;
	background: #b7b7b7;
	border-radius: 50%;
	margin-right: 10px;
}

.hero__slider.owl-carousel .owl-dots button.active {
	background: #ffffff;
}

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

.hero__slider.owl-carousel .owl-nav button {
	font-size: 36px;
	height: 66px;
	width: 66px;
	/* background: #0b0c2a; */
	background: #00ff66;
	line-height: 66px;
	text-align: center;
	color: #ffffff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: relative;
	z-index: 1;
	position: absolute;
	left: -33px;
	top: 50%;
	margin-top: -47px;
}

.hero__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -33px;
}

.hero__slider.owl-carousel .owl-nav button:after {
	position: absolute;
	top: 6px;
	left: 0;
	right: 0;
	height: 54px;
	width: 54px;
	/* background: rgba(255, 255, 255, 0.1); */
	background: rgb(17 19 28);
	content: "";
	z-index: -1;
	margin: 0 auto;
}

.hero__slider.owl-carousel .owl-nav button span {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	display: block;
	z-index: 1;
}

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

.product {
	padding-bottom: 30px;
	padding-top: 100px;
}

.product-page {
	padding-top: 60px;
}

.btn__all {
	text-align: right;
	margin-bottom: 30px;
}

.trending__product {
	margin-bottom: 50px;
}

.popular__product {
	margin-bottom: 50px;
}

.recent__product {
	margin-bottom: 50px;
}

.product__item {
	margin-bottom: 30px;
}

.product__item__pic {
	height: 325px;
	position: relative;
	border-radius: 5px;
}

.product__item__pic .ep {
	font-size: 13px;
	color: #ffffff;
	background: #e53637;
	display: inline-block;
	padding: 2px 12px;
	border-radius: 4px;
	position: absolute;
	left: 10px;
	top: 10px;
}

.product__item__pic .comment {
	font-size: 13px;
	color: #ffffff;
	background: #3d3d3d;
	display: inline-block;
	padding: 2px 10px;
	border-radius: 4px;
	position: absolute;
	left: 10px;
	bottom: 10px;
}

.product__item__pic .view {
	font-size: 13px;
	color: #ffffff;
	background: #3d3d3d;
	display: inline-block;
	padding: 2px 10px;
	border-radius: 4px;
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.product__item__text {
	padding-top: 20px;
}

.product__item__text ul {
	margin-bottom: 10px;
}

.product__item__text ul li {
	list-style: none;
	font-size: 10px;
	color: #ffffff;
	font-weight: 700;
	padding: 1px 10px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	display: inline-block;
}

.product__item__text h5 a {
	color: #ffffff;
	font-weight: 700;
	line-height: 26px;
}

.product__sidebar .section-title h5 {
	color: #ffffff;
	font-weight: 600;
	font-family: "Oswald", sans-serif;
	line-height: 21px;
	text-transform: uppercase;
	padding-left: 20px;
	position: relative;
}

.product__sidebar .section-title h5:after {
	position: absolute;
	left: 0;
	top: -6px;
	height: 32px;
	width: 4px;
	background: #e53637;
	content: "";
}

.product__sidebar__view {
	position: relative;
	margin-bottom: 80px;
}

.product__sidebar__view .filter__controls {
	position: absolute;
	right: 0;
	top: -5px;
}

.product__sidebar__view .filter__controls li {
	list-style: none;
	font-size: 13px;
	color: #b7b7b7;
	display: inline-block;
	margin-right: 7px;
	cursor: pointer;
}

.product__sidebar__view .filter__controls li.active {
	color: #ffffff;
}

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

.product__sidebar__view__item {
	height: 190px;
	position: relative;
	border-radius: 5px;
	margin-bottom: 20px;
}

.product__sidebar__view__item .ep {
	font-size: 13px;
	color: #ffffff;
	background: #e53637;
	display: inline-block;
	padding: 2px 12px;
	border-radius: 4px;
	position: absolute;
	left: 10px;
	top: 10px;
}

.product__sidebar__view__item .view {
	font-size: 13px;
	color: #ffffff;
	background: #3d3d3d;
	display: inline-block;
	padding: 2px 10px;
	border-radius: 4px;
	position: absolute;
	right: 10px;
	top: 10px;
}

.product__sidebar__view__item h5 {
	position: absolute;
	left: 0;
	bottom: 25px;
	width: 100%;
	padding: 0 30px 0 20px;
}

.product__sidebar__view__item h5 a {
	color: #ffffff;
	font-weight: 700;
	line-height: 26px;
}

.product__sidebar__comment {
	margin-bottom: 35px;
}

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

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

.product__sidebar__comment__item__text {
	overflow: hidden;
}

.product__sidebar__comment__item__text ul {
	margin-bottom: 10px;
}

.product__sidebar__comment__item__text ul li {
	list-style: none;
	font-size: 10px;
	color: #ffffff;
	font-weight: 700;
	padding: 1px 10px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	display: inline-block;
}

.product__sidebar__comment__item__text h5 {
	margin-bottom: 10px;
}

.product__sidebar__comment__item__text h5 a {
	color: #ffffff;
	font-weight: 700;
	line-height: 26px;
}

.product__sidebar__comment__item__text span {
	display: block;
	font-size: 13px;
	color: #b7b7b7;
}

.product__page__title {
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 10px;
	margin-bottom: 30px;
}

.product__page__title .section-title {
	margin-bottom: 0;
}

.product__page__title .product__page__filter {
	text-align: right;
}

.product__page__title .product__page__filter p {
	color: #ffffff;
	display: inline-block;
	margin-bottom: 0;
	margin-right: 16px;
}

.product__page__title .product__page__filter .nice-select {
	float: none;
	display: inline-block;
	font-size: 14px !important;
	color: #3d3d3d;
	font-weight: 700;
	border-radius: 0;
	padding-left: 15px;
	padding-right: 40px;
	height: 27px;
	line-height: 27px;
	display: flex;
	align-items: center;
}

.product__page__title .product__page__filter .nice-select:after {
	border-bottom: 2px solid #111;
	border-right: 2px solid #111;
	height: 8px;
	top: 47%;
	width: 8px;
	right: 15px;
}

.product__page__title .product__page__filter .nice-select .list {
	margin-top: 0;
	border-radius: 0;
}

.product__pagination {
	padding-top: 15px;
}

.product__pagination a {
	display: inline-block;
	font-size: 15px;
	color: #b7b7b7;
	font-weight: 600;
	height: 50px;
	width: 50px;
	border: 1px solid transparent;
	border-radius: 50%;
	line-height: 48px;
	text-align: center;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__pagination a:hover {
	color: #ffffff;
}

.product__pagination a.current-page {
	border: 1px solid #ffffff;
}

.product__pagination a i {
	color: #b7b7b7;
	font-size: 15px;
}

/*---------------------
  Anime Details
-----------------------*/

.anime-details {
	padding-top: 60px;
}

.anime__details__content {
	margin-bottom: 65px;
}

.anime__details__text {
	position: relative;
}

.anime__details__text p {
	color: #b7b7b7;
	font-size: 18px;
	line-height: 30px;
}

.anime__details__pic {
	height: 440px;
	border-radius: 5px;
	position: relative;
}

.anime__details__pic .comment {
	font-size: 13px;
	color: #ffffff;
	background: #3d3d3d;
	display: inline-block;
	padding: 2px 10px;
	border-radius: 4px;
	position: absolute;
	left: 10px;
	bottom: 25px;
}

.anime__details__pic .view {
	font-size: 13px;
	color: #ffffff;
	background: #3d3d3d;
	display: inline-block;
	padding: 2px 10px;
	border-radius: 4px;
	position: absolute;
	right: 10px;
	bottom: 25px;
}

.anime__details__title {
	margin-bottom: 20px;
}

.anime__details__title h3 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 13px;
}

.anime__details__title span {
	font-size: 15px;
	color: #b7b7b7;
	display: block;
}

.anime__details__rating {
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
}

.anime__details__rating .rating i {
	font-size: 24px;
	color: #e89f12;
	display: inline-block;
}

.anime__details__rating span {
	display: block;
	font-size: 18px;
	color: #b7b7b7;
}

.anime__details__widget {
	margin-bottom: 15px;
}

.anime__details__widget ul {
	margin-bottom: 20px;
}

.anime__details__widget ul li {
	list-style: none;
	font-size: 15px;
	color: #ffffff;
	line-height: 30px;
	position: relative;
	padding-left: 18px;
}

.anime__details__widget ul li:before {
	position: absolute;
	left: 0;
	top: 12px;
	height: 6px;
	width: 6px;
	background: #b7b7b7;
	content: "";
}

.anime__details__widget ul li span {
	color: #b7b7b7;
	width: 115px;
	display: inline-block;
}

.anime__details__btn .follow-btn {
	font-size: 13px;
	color: #ffffff;
	background: #e53637;
	display: inline-block;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 14px 20px;
	border-radius: 4px;
	margin-right: 11px;
}

.anime__details__btn .watch-btn span {
	font-size: 13px;
	color: #ffffff;
	background: #e53637;
	display: inline-block;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 14px 20px;
	border-radius: 4px 0 0 4px;
	margin-right: 1px;
}

.anime__details__btn .watch-btn i {
	font-size: 20px;
	display: inline-block;
	background: #e53637;
	padding: 11px 5px 16px 8px;
	color: #ffffff;
	border-radius: 0 4px 4px 0;
}

.anime__details__review {
	margin-bottom: 55px;
}

.anime__review__item {
	overflow: hidden;
	margin-bottom: 15px;
}

.anime__review__item__pic {
	float: left;
	margin-right: 20px;
	position: relative;
}

.anime__review__item__pic:before {
	position: absolute;
	right: -30px;
	top: 15px;
	border-top: 15px solid transparent;
	border-left: 15px solid #1d1e39;
	content: "";
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

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

.anime__review__item__text {
	overflow: hidden;
	background: #1d1e39;
	padding: 18px 30px 16px 20px;
	border-radius: 10px;
}

.anime__review__item__text h6 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 10px;
}

.anime__review__item__text h6 span {
	color: #b7b7b7;
	font-weight: 400;
}

.anime__review__item__text p {
	color: #b7b7b7;
	line-height: 23px;
	margin-bottom: 0;
}

.anime__details__form form textarea {
	width: 100%;
	font-size: 15px;
	color: #b7b7b7;
	padding-left: 20px;
	padding-top: 12px;
	height: 110px;
	border: none;
	border-radius: 5px;
	resize: none;
	margin-bottom: 24px;
}

.anime__details__form form button {
	font-size: 11px;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: #e53637;
	border: none;
	padding: 10px 15px;
	border-radius: 2px;
}

/*---------------------
  Anime Watching
-----------------------*/

.anime__video__player {
	margin-bottom: 70px;
}

.anime__video__player .plyr audio,
.anime__video__player .plyr iframe,
.anime__video__player .plyr video {
	width: 102%;
}

.anime__video__player .plyr--full-ui input[type=range] {
	color: #ffffff;
}

.anime__video__player .plyr__controls .plyr__controls__item.plyr__progress__container {
	position: absolute;
	left: 26px;
	bottom: 45px;
	width: calc(100% - 60px);
}

.anime__video__player .plyr__menu {
	margin-right: 70px;
}

.anime__video__player .plyr__controls .plyr__controls__item:first-child {
	position: absolute;
	left: 32px;
	bottom: 8px;
}

.anime__video__player .plyr__controls .plyr__controls__item:last-child {
	position: absolute;
	right: 32px;
	bottom: 8px;
}

.anime__video__player .plyr__volume {
	position: absolute;
	width: auto;
	left: 76px;
	bottom: 8px;
}

.anime__video__player .plyr__controls .plyr__controls__item.plyr__time {
	position: absolute;
	left: 106px;
	bottom: 12px;
}

.anime__details__episodes {
	margin-bottom: 35px;
}

.anime__details__episodes a {
	display: inline-block;
	font-size: 15px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.2);
	padding: 10px 20px;
	border-radius: 4px;
	margin-right: 15px;
	margin-bottom: 20px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.anime__details__episodes a:hover {
	color: #000000;
	background: #ffffff;
}

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

.breadcrumb-option {
	padding-top: 35px;
}

.breadcrumb__links a {
	font-size: 15px;
	color: #ffffff;
	margin-right: 18px;
	display: inline-block;
	position: relative;
}

.breadcrumb__links a i {
	margin-right: 5px;
	color: #e53637;
}

.breadcrumb__links a:after {
	position: absolute;
	right: -14px;
	top: 0;
	content: "";
	font-family: "FontAwesome";
}

.breadcrumb__links span {
	font-size: 15px;
	color: #b7b7b7;
	display: inline-block;
}

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

.normal-breadcrumb {
	height: 300px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.normal__breadcrumb__text h2 {
	color: #ffffff;
	font-size: 48px;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	margin-bottom: 22px;
}

.normal__breadcrumb__text p {
	color: #ffffff;
	font-size: 24px;
	margin-bottom: 0;
}

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

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

.blog__item {
	height: 580px;
	position: relative;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 10px;
}

.blog__item.small__item {
	height: 285px;
}

.blog__item.small__item .blog__item__text {
	padding: 0 30px;
}

.blog__item.small__item .blog__item__text p {
	margin-bottom: 5px;
}

.blog__item.small__item .blog__item__text h4 a {
	font-size: 20px;
	line-height: 30px;
}

.blog__item__text {
	position: absolute;
	left: 0;
	bottom: 25px;
	text-align: center;
	width: 100%;
	padding: 0 105px;
}

.blog__item__text p {
	color: #ffffff;
	margin-bottom: 12px;
}

.blog__item__text p span {
	color: #e53637;
	margin-right: 5px;
}

.blog__item__text h4 a {
	color: #ffffff;
	line-height: 34px;
}

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

.blog-details {
	padding-top: 70px;
}

.blog__details__title {
	text-align: center;
	margin-bottom: 70px;
}

.blog__details__title h6 {
	font-size: 15px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.blog__details__title h6 span {
	color: #b7b7b7;
	font-weight: 400;
	text-transform: none;
}

.blog__details__title h2 {
	color: #ffffff;
	font-size: 48px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 38px;
}

.blog__details__title .blog__details__social a {
	display: inline-block;
	font-size: 15px;
	color: #ffffff;
	padding: 16px 35px 14px 20px;
	border-radius: 2px;
	margin-right: 6px;
}

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

.blog__details__title .blog__details__social a.facebook {
	background: #3b5998;
}

.blog__details__title .blog__details__social a.pinterest {
	background: #ca2027;
}

.blog__details__title .blog__details__social a.linkedin {
	background: #0372b1;
}

.blog__details__title .blog__details__social a.twitter {
	background: #39a1f2;
}

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

.blog__details__pic {
	margin-bottom: 30px;
}

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

.blog__details__text {
	margin-bottom: 40px;
}

.blog__details__text p {
	color: #ffffff;
	font-size: 17px;
	line-height: 30px;
}

.blog__details__item__text {
	margin-bottom: 42px;
}

.blog__details__item__text h4 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 35px;
}

.blog__details__item__text img {
	min-width: 100%;
	margin-bottom: 26px;
}

.blog__details__item__text p {
	color: #ffffff;
	font-size: 17px;
	line-height: 30px;
	margin-bottom: 0;
}

.blog__details__tags {
	margin-bottom: 60px;
}

.blog__details__tags a {
	display: inline-block;
	color: #b7b7b7;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 2px;
	margin-right: 6px;
	padding: 6px 15px;
	margin-bottom: 10px;
}

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

.blog__details__btns {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 20px 0 15px;
	margin-bottom: 65px;
}

.blog__details__btns__item {
	margin-bottom: 20px;
}

.blog__details__btns__item.next__btn {
	text-align: right;
}

.blog__details__btns__item h5 a {
	font-size: 17px;
	letter-spacing: 2px;
	color: #ffffff;
}

.blog__details__btns__item h5 a span {
	font-size: 30px;
	color: #b7b7b7;
	position: relative;
	top: 8px;
}

.blog__details__comment {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 30px;
}

.blog__details__comment h4 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 26px;
}

.blog__details__comment__item {
	margin-bottom: 40px;
	overflow: hidden;
}

.blog__details__comment__item.blog__details__comment__item--reply {
	padding-left: 112px;
}

.blog__details__comment__item__pic {
	float: left;
	margin-right: 40px;
}

.blog__details__comment__item__text {
	overflow: hidden;
}

.blog__details__comment__item__text span {
	font-size: 14px;
	color: #b7b7b7;
	display: block;
	margin-bottom: 10px;
}

.blog__details__comment__item__text h5 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 10px;
}

.blog__details__comment__item__text p {
	color: #b7b7b7;
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 25px;
}

.blog__details__comment__item__text a {
	display: inline-block;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	padding: 6px 20px;
	letter-spacing: 2px;
	border-radius: 2px;
	margin-right: 14px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__details__comment__item__text a:hover {
	background: #e53637;
}

.blog__details__form {
	padding-top: 50px;
}

.blog__details__form h4 {
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 26px;
}

.blog__details__form form input {
	height: 50px;
	width: 100%;
	background: #ffffff;
	font-size: 15px;
	color: #a6a6a6;
	padding-left: 20px;
	border-radius: 2px;
	border: none;
	margin-bottom: 30px;
}

.blog__details__form form input::-webkit-input-placeholder {
	color: #a6a6a6;
}

.blog__details__form form input::-moz-placeholder {
	color: #a6a6a6;
}

.blog__details__form form input:-ms-input-placeholder {
	color: #a6a6a6;
}

.blog__details__form form input::-ms-input-placeholder {
	color: #a6a6a6;
}

.blog__details__form form input::placeholder {
	color: #a6a6a6;
}

.blog__details__form form textarea {
	height: 115px;
	width: 100%;
	background: #ffffff;
	font-size: 15px;
	color: #a6a6a6;
	padding-left: 20px;
	border-radius: 2px;
	padding-top: 12px;
	resize: none;
	border: none;
	margin-bottom: 34px;
}

.blog__details__form form textarea::-webkit-input-placeholder {
	color: #a6a6a6;
}

.blog__details__form form textarea::-moz-placeholder {
	color: #a6a6a6;
}

.blog__details__form form textarea:-ms-input-placeholder {
	color: #a6a6a6;
}

.blog__details__form form textarea::-ms-input-placeholder {
	color: #a6a6a6;
}

.blog__details__form form textarea::placeholder {
	color: #a6a6a6;
}

/*---------------------
  Login
-----------------------*/

.login {
	padding-top: 130px;
	padding-bottom: 120px;
}

.login__form {
	position: relative;
	padding-left: 145px;
}

.login__form:after {
	position: absolute;
	right: -14px;
	top: -40px;
	height: 330px;
	width: 1px;
	background: rgba(255, 255, 255, 0.2);
	content: "";
}

.login__form h3 {
	color: #ffffff;
	font-weight: 700;
	font-family: "Oswald", sans-serif;
	margin-bottom: 30px;
}

.login__form form .input__item {
	position: relative;
	width: 370px;
	margin-bottom: 20px;
}

.login__form form .input__item:before {
	position: absolute;
	left: 50px;
	top: 10px;
	height: 30px;
	width: 1px;
	background: #b7b7b7;
	content: "";
}

.login__form form .input__item input {
	height: 50px;
	width: 100%;
	font-size: 15px;
	color: #b7b7b7;
	background: #ffffff;
	border: none;
	padding-left: 76px;
}

.login__form form .input__item input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.login__form form .input__item input::-moz-placeholder {
	color: #b7b7b7;
}

.login__form form .input__item input:-ms-input-placeholder {
	color: #b7b7b7;
}

.login__form form .input__item input::-ms-input-placeholder {
	color: #b7b7b7;
}

.login__form form .input__item input::placeholder {
	color: #b7b7b7;
}

.login__form form .input__item span {
	color: #b7b7b7;
	font-size: 20px;
	position: absolute;
	left: 15px;
	top: 13px;
}

.login__form form button {
	border-radius: 0;
	margin-top: 10px;
}

.login__form .forget_pass {
	font-size: 15px;
	color: #ffffff;
	display: inline-block;
	position: absolute;
	right: 60px;
	bottom: 12px;
}

.login__register {
	padding-left: 30px;
}

.login__register h3 {
	color: #ffffff;
	font-weight: 700;
	font-family: "Oswald", sans-serif;
	margin-bottom: 30px;
}

.login__register .primary-btn {
	background: #e53637;
	padding: 12px 42px;
}

.login__social {
	padding-top: 52px;
}

.login__social__links {
	text-align: center;
}

.login__social__links span {
	color: #ffffff;
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.login__social__links ul li {
	list-style: none;
	margin-bottom: 15px;
}

.login__social__links ul li:last-child {
	margin-bottom: 0;
}

.login__social__links ul li a {
	color: #ffffff;
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	width: 460px;
	padding: 14px 0;
	position: relative;
	margin: 0 auto;
}

.login__social__links ul li a.facebook {
	background: #4267b2;
}

.login__social__links ul li a.google {
	background: #ff4343;
}

.login__social__links ul li a.twitter {
	background: #1da1f2;
}

.login__social__links ul li a i {
	font-size: 20px;
	position: absolute;
	left: 32px;
	top: 14px;
}

/*---------------------
  Sign Up
-----------------------*/

.signup {
	padding-top: 130px;
	padding-bottom: 150px;
}

.signup .login__form:after {
	height: 450px;
}

.signup .login__form h5 {
	font-size: 15px;
	color: #ffffff;
	margin-top: 36px;
}

.signup .login__form h5 a {
	color: #e53637;
	font-weight: 700;
}

.signup .login__social__links {
	text-align: left;
	padding-left: 40px;
}

.signup .login__social__links h3 {
	color: #ffffff;
	font-weight: 700;
	font-family: "Oswald", sans-serif;
	margin-bottom: 30px;
}

.signup .login__social__links ul li a {
	margin: 0;
	text-align: center;
}

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

.footer {
	background: #070720;
	padding-top: 60px;
	padding-bottom: 40px;
	position: relative;
}

.page-up {
	position: absolute;
	left: 50%;
	top: -25px;
	margin-left: -25px;
}

.page-up a {
	display: inline-block;
	font-size: 36px;
	color: #ffffff;
	height: 50px;
	width: 50px;
	background: #e53637;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
}

.page-up a span {
	position: relative;
	top: 2px;
	left: -1px;
}

.footer__nav {
	text-align: center;
}

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

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

.footer__nav ul li a {
	font-size: 15px;
	color: #b7b7b7;
	display: block;
	font-weight: 700;
}

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

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
	.hero {
		overflow: hidden;
	}
}

@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) {
	.hero {
		overflow: hidden;
	}

	.login__form {
		position: relative;
		padding-left: 32px;
	}

	.login__social__links ul li a {
		width: 380px;
	}

	.blog__item__text {
		padding: 0 50px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hero {
		overflow: hidden;
	}

	.header {
		position: relative;
	}

	.header .container {
		position: relative;
	}

	.header__right {
		position: absolute;
		right: 120px;
		top: -42px;
		padding: 0;
	}

	.header__menu {
		display: none;
	}

	.product__sidebar {
		padding-top: 50px;
	}

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

	.footer__nav {
		margin-bottom: 15px;
	}

	.anime__details__widget ul li span {
		width: 90px;
	}

	.anime__details__pic {
		margin-bottom: 40px;
	}

	.anime__details__sidebar {
		padding-top: 50px;
	}

	.login__form {
		padding-left: 0;
		margin-bottom: 40px;
	}

	.login__form:after {
		display: none;
	}

	.login__form form .input__item {
		width: auto;
	}

	.login__register {
		padding-left: 0;
	}

	.signup .login__social__links {
		padding-left: 0;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.hero {
		overflow: hidden;
	}

	.header {
		position: relative;
	}

	.header .container {
		position: relative;
	}
/* 
	.header__right {
		position: absolute;
		right: 120px;
		top: -42px;
		padding: 0;
	} */
	 .search-switch{
		display: none !important;
	 }
	 /* .slicknav_menu{
		background: transparent !important;
	 } */
.header__right {
        position: absolute;
        right: 0;
        top: -62px;
        padding: 0;
        display: flex;
        gap: 23px;
        align-items: center;
    }
	.header__menu {
		display: none;
	}

	.product__sidebar {
		padding-top: 50px;
	}

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

	.footer__nav {
		margin-bottom: 15px;
	}

	.blog__details__title h2 {
		font-size: 34px;
		line-height: normal;
	}

	.anime__details__pic {
		margin-bottom: 40px;
	}

	.anime__details__sidebar {
		padding-top: 50px;
	}

	.btn__all {
		text-align: left;
	}

	.product__page__title .section-title {
		margin-bottom: 30px;
	}

	.product__page__title .product__page__filter {
		text-align: left;
	}

	.anime__details__rating {
		text-align: left;
		position: relative;
		margin-bottom: 20px;
	}

	.blog__details__social {
		overflow: hidden;
	}

	.blog__details__title .blog__details__social a {
		margin-right: 10px;
		margin-bottom: 10px;
		width: calc(50% - 10px);
		float: left;
	}

	.login__form {
		padding-left: 0;
		margin-bottom: 40px;
	}

	.login__form:after {
		display: none;
	}

	.login__form form .input__item {
		width: auto;
	}

	.signup .login__social__links {
		padding-left: 0;
	}

	.login__social__links ul li a {
		width: auto;
	}

	.blog__item__text {
		padding: 0 30px;
	}

	.login__register {
		padding-left: 0;
	}

	.product__sidebar__view .filter__controls li {
		margin-right: 2px;
	}

	.search-model-form input {
		width: 100%;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.hero__slider.owl-carousel .owl-nav {
		display: none;
	}

	.hero__items {
		padding: 0px 0 42px 15px;
	}

	.hero__text h2 {
		font-size: 32px;
	}

	.footer__nav ul li {
		margin-right: 10px;
	}

	.anime__details__btn .follow-btn {
		padding: 14px 26px;
		margin-right: 11px;
		margin-bottom: 25px;
	}

	.anime__details__widget ul li span {
		width: 85px;
	}

	.anime__video__player .plyr__volume {
		left: 65px;
	}

	.anime__video__player .plyr__controls .plyr__controls__item.plyr__time {
		left: 95px;
	}

	.anime__video__player .plyr__menu {
		margin-right: 60px;
	}

	.blog__details__title h2 {
		font-size: 30px;
		line-height: normal;
	}

	.blog__details__title .blog__details__social a {
		padding: 16px 25px 14px 20px;
	}

	.blog__details__comment__item.blog__details__comment__item--reply {
		padding-left: 0;
	}

	.blog__details__comment__item__pic {
		margin-right: 25px;
	}

	.blog__details__comment__item__text a {
		margin-right: 6px;
	}

	.login__social__links ul li a i {
		left: 20px;
	}

	.login__form .forget_pass {
		position: relative;
		left: 0;
		bottom: 0;
		margin-top: 25px;
	}

	.header__right a {
		margin-right: 10px;
	}

	.anime__review__item__text h6 span {
		font-size: 12px;
	}

	.anime__review__item__text {
		padding: 18px 20px 20px;
	}
}

/* ================================ */
/* Sirf is particular carousel ke liye */
.best-sellers-carousel .owl-stage-outer {
	padding: 10px 0;
}

/* Next/Prev Arrows - Overlay aur sirf is carousel pe */
.best-sellers-carousel .owl-nav {
	margin: 0 !important;
}

.best-sellers-carousel .owl-prev,
.best-sellers-carousel .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(0, 255, 102, 0.8) !important;
	border-radius: 50% !important;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px !important;
	color: #000 !important;
	margin: 0;
	transition: all 0.3s;
}

.best-sellers-carousel .owl-prev:hover,
.best-sellers-carousel .owl-next:hover {
	background: #00ff66 !important;
}

.best-sellers-carousel .owl-prev {
	left: -25px;
}

.best-sellers-carousel .owl-next {
	right: -25px;
}


@media (max-width: 768px) {
	.best-sellers-carousel .owl-prev {
		left: 10px;
	}

	.best-sellers-carousel .owl-next {
		right: 10px;
	}
}


.best-sellers-carousel .owl-dots {
	display: none;
}

/* ======================== */
/* Main Slider Container */
.best-sellers-slider {
	position: relative;
	padding: 0px 0;
	/* background: #000; */
}

.best-sellers-title {
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
	padding-left: 20px;
	position: relative;
}

.best-sellers-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 60px;
	height: 4px;
	background: #00ff66;
}


.product-card01 {
	    background: #111;
    border-radius: 10px 14px 0px 0px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    margin: 0 0px;
    position: relative;
    height: 420px;
}

.product-card01:hover {
	transform: translateY(-8px);
}

.product-card01 img {
	width: 100%;
	height: auto;
	display: block;
}

.product-badge {
	position: absolute;
	top: 1px;
	right: -2px;
	background: #ffd700;
	color: #000;
	font-size: 12px;
	font-weight: bold;
	padding: 4px 10px;
	border-radius: 4px;
	z-index: 2;
}

.platform-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 11px;
	padding: 3px 8px;
	border-radius: 4px;
	z-index: 1;
	display: none;
}

.product-info {
	padding: 12px;
	color: #fff;
}

.product-title {
	font-size: 14px;
	line-height: 1.3;
	margin-bottom: 8px;
	min-height: 40px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-price {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.current-price {
	font-size: 16px;
	font-weight: bold;
	color: #00ff66;
}

.original-price {
	font-size: 15px;
	color: #777;
	text-decoration: line-through;
}

.add-to-cart-btn {
	width: 100%;
	background: #00ff66;
	color: #000;
	border: none;
	padding: 0px;
	border-radius: 50px;
	font-weight: bold;
	cursor: pointer;
	font-size: 16px;
	clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
	/* clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%, 20% 50%); */
}

/* Arrows default hidden */
.best-sellers-carousel .owl-prev,
.best-sellers-carousel .owl-next {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Slider hover pe arrows show ho jayein */
.best-sellers-slider:hover .best-sellers-carousel .owl-prev,
.best-sellers-slider:hover .best-sellers-carousel .owl-next {
	opacity: 1;
	visibility: visible;
}

/* Arrow design (pehle wala hi rakha hai, bas thoda smooth kiya) */
/* .best-sellers-carousel .owl-prev,
.best-sellers-carousel .owl-next {
position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 100px;
    background: rgb(224 255 236 / 37%) !important;
    border-radius: 10% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px !important;
    color: #000 !important;
    margin: 0;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
} */


.best-sellers-carousel .owl-prev:hover,
.best-sellers-carousel .owl-next:hover {
	background: #00ff66 !important;
	transform: translateY(-50%) scale(1.1);
}

/* .best-sellers-carousel .owl-prev {
	left: -10px;
}

.best-sellers-carousel .owl-next {
	right: -10px;
} */

/* Mobile pe bhi hover ki jagah always visible (kyunki touch devices pe hover nahi hota) */
@media (max-width: 768px) {

	/* .best-sellers-carousel .owl-prev,
	.best-sellers-carousel .owl-next {
		opacity: 0.8;
		visibility: visible;
		left: 5px;
		right: 5px;
		width: 40px;
		height: 40px;
		font-size: 24px;
	} */
}

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



.footer01 {
	background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
	padding: 180px 20px 20px;
	position: relative;
	overflow: hidden;
	background-image: url(https://html.themegenix.com/mykd/assets/img/bg/footer_shape.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	/* background-image: url(../img/banner/footer_bg3.png); */
	background-repeat: no-repeat;
	background-size: cover;

}

.footer01::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	/* background: linear-gradient(90deg, transparent, #00ff88, transparent); */
}

.footer01-container {
	max-width: 1400px;
	margin: 0 auto;
}

.footer01-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 50px;
	margin-bottom: 50px;
}

.footer01-brand {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.footer01-logo {
	font-size: 32px;
	font-weight: 900;
	background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer01-logo::before {
	content: '⚡';
	font-size: 36px;
	filter: drop-shadow(0 0 10px #00ff88);
}

.footer01-contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #b8b8b8;
	font-size: 15px;
	transition: all 0.3s ease;
}

.footer01-contact-item:hover {
	color: #00ff88;
	transform: translateX(5px);
}

.footer01-icon {
	width: 20px;
	height: 20px;
	fill: #00ff88;
}

.footer01-section {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer01-heading {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	padding-bottom: 10px;
}

.footer01-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #00ff88, transparent);
}

.footer01-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer01-link {
	color: #b8b8b8;
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.footer01-link::before {
	content: '›';
	margin-right: 8px;
	color: #00ff88;
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.3s ease;
}

.footer01-link:hover {
	color: #00ff88;
	transform: translateX(5px);
}

.footer01-link:hover::before {
	opacity: 1;
	transform: translateX(0);
}

.footer01-social {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer01-social-title {
	color: #b8b8b8;
	font-size: 14px;
}

.footer01-social-icons {
	display: flex;
	gap: 15px;
}

.footer01-social-btn {
	width: 45px;
	height: 45px;
	border-radius: 10px;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00ff88;
	font-size: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer01-social-btn:hover {
	background: #00ff88;
	color: #000;
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.footer01-payment {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.footer01-payment-logo {
	height: 35px;
	padding: 8px 15px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	color: #fff;
}

.footer01-payment-logo:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #00ff88;
	transform: translateY(-3px);
}

.footer01-payment-logo img {
	height: 100%;
	width: auto;
	object-fit: contain;
}

.footer01-cta {
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
	border: 1px solid rgba(0, 255, 136, 0.3);
	border-radius: 15px;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.footer01-cta-content h3 {
	color: #fff;
	font-size: 24px;
	margin-bottom: 8px;
}

.footer01-cta-content p {
	color: #b8b8b8;
	font-size: 14px;
}

.footer01-cta-actions {
	display: flex;
	gap: 15px;
}

.footer01-btn {
	padding: 12px 30px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.footer01-btn-primary {
	background: linear-gradient(135deg, #00ff88, #00ccff);
	color: #000;
}

.footer01-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

.footer01-btn-secondary {
	background: transparent;
	color: #00ff88;
	border: 2px solid #00ff88;
}

.footer01-btn-secondary:hover {
	background: #00ff88;
	color: #000;
}

.footer01-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer01-copyright {
	color: #777;
	font-size: 14px;
}

.footer01-copyright span {
	color: #00ff88;
}

.footer01-steps {
	display: flex;
	gap: 30px;
}

.footer01-step {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #b8b8b8;
	font-size: 14px;
	font-weight: 600;
}

.footer01-step-number {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(0, 255, 136, 0.1);
	border: 2px solid #00ff88;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00ff88;
	font-size: 12px;
	font-weight: 700;
}

@media (max-width: 1024px) {
	.footer01-top {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.footer01-cta {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.footer01-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.footer01-steps {
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.footer01 {
		padding: 40px 15px 15px;
	}

	.footer01-top {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer01-cta {
		padding: 20px;
	}

	.footer01-cta-content h3 {
		font-size: 20px;
	}

	.footer01-cta-actions {
		flex-direction: column;
		width: 100%;
	}

	.footer01-btn {
		width: 100%;
		justify-content: center;
	}

	.footer01-payment {
		justify-content: center;
	}

	.footer01-social-icons {
		justify-content: center;
	}
}

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


.faq01-section {
	background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
	padding: 40px 0;
	position: relative;
	overflow: hidden;
	background-image: url(../img/banner/video_bg4.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
		/* background-repeat: no-repeat;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; */
}

.faq01-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	/* background: linear-gradient(90deg, transparent, #00ff88, transparent); */
}

.faq01-section::after {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	/* background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%); */
	top: -250px;
	right: -250px;
	pointer-events: none;
}

.faq01-header {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
}

.faq01-subtitle {
	color: #00ff88;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
	display: inline-block;
	padding: 8px 20px;
	background: rgba(0, 255, 136, 0.1);
	border-radius: 30px;
	/* border: 1px solid rgba(0, 255, 136, 0.3); */
}

.faq01-title {
	font-size: 48px;
	font-weight: 900;
	background: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.faq01-description {
	color: #b8b8b8;
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto;
}

.faq01-accordion {
	position: relative;
	z-index: 2;
}

.faq01-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	margin-bottom: 7px;
	overflow: hidden;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.faq01-card:hover {
	border-color: rgba(0, 255, 136, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.faq01-card-header {
	background: transparent;
	border: none;
	padding: 0;
}

.faq01-btn {
	width: 100%;
	text-align: left;
	padding: 5px 10px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	border: 1px solid #68fb9a;
	/* background-color: #000; */
	overflow: hidden;
	border-radius: 14px;
}

.faq01-btn:focus {
	outline: none;
	box-shadow: none;
}

.faq01-btn:hover {
	color: #00ff88;
}

/* .faq01-btn::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #00ff88, #00ccff);
	transition: height 0.3s ease;
	border-radius: 0 4px 4px 0;
} */

.faq01-btn[aria-expanded="true"]::before {
	height: 60%;
}

.faq01-btn-text {
	flex: 1;
	padding-right: 20px;
}

.faq01-icon {
	width: 45px;
	height: 45px;
	border-radius: 10px;
	background: rgba(0, 255, 136, 0.1);
	border: 1px solid rgba(0, 255, 136, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #00ff88;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.faq01-btn[aria-expanded="true"] .faq01-icon {
	background: #00ff88;
	color: #000;
	transform: rotate(45deg);
}

.faq01-collapse {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq01-card-body {
	padding: 25px 30px 30px 30px;
	color: #b8b8b8;
	font-size: 16px;
	line-height: 1.8;
}

.faq01-card-body p {
	margin: 0;
}

.faq01-card-body strong {
	color: #00ff88;
}

.faq01-cta {
	text-align: center;
	margin-top: 60px;
	padding: 40px;
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1));
	border: 1px solid rgba(0, 255, 136, 0.3);
	border-radius: 20px;
	position: relative;
	z-index: 2;
}

.faq01-cta-title {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
}

.faq01-cta-text {
	color: #b8b8b8;
	font-size: 16px;
	margin-bottom: 25px;
}

.faq01-cta-btn {
	display: inline-block;
	padding: 15px 40px;
	background: linear-gradient(135deg, #00ff88, #00ccff);
	color: #000;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.faq01-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
	color: #000;
	text-decoration: none;
}

.faq01-number {
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(0, 255, 136, 0.1);
	border: 2px solid rgba(0, 255, 136, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00ff88;
	font-size: 12px;
	font-weight: 700;
	opacity: 0;
	transition: all 0.3s ease;
}

.faq01-card:hover .faq01-number {
	opacity: 1;
}

@media (max-width: 768px) {
	.faq01-section {
		padding: 50px 0;
	}

	.faq01-title {
		font-size: 32px;
	}

	.faq01-description {
		font-size: 16px;
	}

	.faq01-btn {
		padding: 20px 20px;
		font-size: 16px;
	}

	.faq01-card-body {
		padding: 20px;
		font-size: 15px;
	}

	.faq01-cta {
		padding: 30px 20px;
	}

	.faq01-cta-title {
		font-size: 22px;
	}

	.faq01-icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.faq01-title {
		font-size: 28px;
	}

	.faq01-btn {
		padding: 18px 15px;
		font-size: 15px;
	}
}

/* ========================= */
.sp-section{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: -58px;
}
/* ========================= */
/* Gaming Platform Section */
.game-platform {
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%); */
  position: relative;
  overflow: hidden;
background-image: url(https://html.themegenix.com/mykd/assets/img/bg/match_bg.jpg);
object-fit: cover;
background-repeat: no-repeat;
background-position: center;
}
/* .area01{
  background-image: url(https://html.themegenix.com/mykd/assets/img/bg/match_bg.jpg);
} */
.game-platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 255, 135, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.game-platform-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.game-platform-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 255, 135, 0.5);
}

.game-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  padding: 0px;
}

.game-platform-card {
  /* background: linear-gradient(145deg, #1e1e2e 0%, #252538 100%); */
  border-radius: 7px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      border: 1px solid #00ff88;
}

.game-platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 135, 0.1) 0%, rgba(0, 150, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.game-platform-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #00ff87;
  box-shadow: 
    0 20px 60px rgba(0, 255, 135, 0.3),
    0 0 40px rgba(0, 255, 135, 0.2),
    inset 0 0 30px rgba(0, 255, 135, 0.1);
}

.game-platform-card:hover::before {
  opacity: 1;
}

.game-platform-card:nth-child(2):hover {
  border-color: #0096ff;
  box-shadow: 
    0 20px 60px rgba(0, 150, 255, 0.3),
    0 0 40px rgba(0, 150, 255, 0.2),
    inset 0 0 30px rgba(0, 150, 255, 0.1);
}

.game-platform-card:nth-child(3):hover,
.game-platform-card:nth-child(4):hover {
  border-color: #10c946;
  box-shadow: 
    0 20px 60px rgba(16, 201, 70, 0.3),
    0 0 40px rgba(16, 201, 70, 0.2),
    inset 0 0 30px rgba(16, 201, 70, 0.1);
}

.game-platform-card:nth-child(5):hover {
  border-color: #e60012;
  box-shadow: 
    0 20px 60px rgba(230, 0, 18, 0.3),
    0 0 40px rgba(230, 0, 18, 0.2),
    inset 0 0 30px rgba(230, 0, 18, 0.1);
}

.game-platform-img {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  /* padding: 20px; */
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.game-platform-card:hover .game-platform-img {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 255, 135, 0.4);
}

.game-platform-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 255, 135, 0.3));
}

.game-platform-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.game-platform-card:hover .game-platform-name {
  color: #00ff87;
  text-shadow: 0 0 20px rgba(0, 255, 135, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
  .game-platform {
    padding: 60px 15px;
  }

  .game-platform-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .game-platform-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .game-platform-card {
    padding: 20px 15px;
  }

  .game-platform-img {
    width: 90px;
    height: 90px;
  }

  .game-platform-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .game-platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ============= */
.new-console{
	padding-bottom: 70px;
}
.new-arrivals {
    position: relative;
	background-image: url('../img/banner/banner_bg4.png');
	padding: 40px 0;
	object-fit: cover;
	background-repeat: no-repeat;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.new-arrivals::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/banner/area_bg03.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.new-arrivals::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ff87, #00d4ff);
    /* clip-path: polygon(26% 69%, 0% 100%, 100% 100%); */
	/* clip-path: polygon(42% 20%, 0 0, 100% 0); */
	clip-path: polygon(28% 20%, 0 0, 80% 0);

    opacity: 0.3;
    z-index: 0;
}
/* ==================== */
.bg03{
	background-image: url(../img/banner/area_bg03.png);
}
/* ================================= */
/* We Assure Section */
.we-assure {
    padding: 40px 0px;
    position: relative;
}

.we-assure-container {
    max-width: 1400px;
    margin: 0 auto;
}

.we-assure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.we-assure-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(0, 255, 135, 0.2);
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.we-assure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 135, 0.05) 0%, rgba(0, 150, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.we-assure-card:hover {
    transform: translateY(-10px);
    border-color: #00ff87;
    box-shadow: 
        0 20px 40px rgba(0, 255, 135, 0.2),
        0 0 30px rgba(0, 255, 135, 0.1),
        inset 0 0 20px rgba(0, 255, 135, 0.05);
}

.we-assure-card:hover::before {
    opacity: 1;
}

.we-assure-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 135, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.we-assure-card:hover .we-assure-icon {
    background: rgba(0, 255, 135, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 255, 135, 0.3);
}

.we-assure-icon i {
    font-size: 2rem;
    color: #00ff87;
    transition: all 0.3s ease;
}

.we-assure-card:hover .we-assure-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #00ff87);
}

.we-assure-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.we-assure-card:hover .we-assure-title {
    color: #00ff87;
}

.we-assure-text {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.we-assure-card:hover .we-assure-text {
    color: #d0d0d0;
}

/* Responsive */
@media (max-width: 768px) {
    .we-assure {
        padding: 60px 15px;
    }

    .we-assure-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .we-assure-card {
        padding: 40px 25px;
    }

    .we-assure-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .we-assure-icon i {
        font-size: 2rem;
    }

    .we-assure-title {
        font-size: 1.3rem;
    }

    .we-assure-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .we-assure-grid {
        grid-template-columns: 1fr;
    }
}
/* ==================================== */

/* Gaming hero-bottom Section */
.gaming-hero-bottom {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
	background-image: url(../img/banner/area_bg02.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.gaming-hero-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 135, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 150, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.gaming-hero-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.gaming-hero-bottom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.hero-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-bottom-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

.hero-bottom-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #00ff87, #00d4ff);
    box-shadow: 0 0 20px rgba(0, 255, 135, 0.6);
}

.hero-bottom-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    max-width: 600px;
}

.hero-bottom-stats {
    display: flex;
    gap: 60px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-bottom-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-read-more {
    padding: 15px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid #00ff87;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 135, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-read-more:hover::before {
    left: 100%;
}

.btn-read-more:hover {
    background: rgba(0, 255, 135, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 135, 0.4);
    transform: translateY(-3px);
}

.btn-play-new {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play-new i {
    font-size: 1.5rem;
}

.btn-play-new:hover {
    border-color: #00ff87;
    background: rgba(0, 255, 135, 0.1);
    transform: translateY(-3px);
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px dashed rgba(255, 193, 7, 0.5);
    border-radius: 50px;
    color: #ffc107;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.rating-badge i {
    font-size: 1.2rem;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Right Content - Image Section */
.hero-bottom-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bottom-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, #00ff87, #00d4ff);
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.hero-bottom-image-wrapper:hover .image-bg {
    transform: translate(-50%, -50%) rotate(5deg) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 255, 135, 0.4);
}

.hero-bottom-character {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: all 0.4s ease;
}

.hero-bottom-image-wrapper:hover .hero-bottom-character {
    transform: scale(1.05) translateY(-10px);
}

.tournament-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1e);
    border: 2px solid #ffc107;
    border-radius: 15px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.tournament-badge span {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tournament-badge i {
    font-size: 2.5rem;
    color: #ffc107;
    filter: drop-shadow(0 0 10px #ffc107);
}

.tournament-badge small {
    font-size: 0.75rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .gaming-hero-bottom-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-bottom-title {
        font-size: 2.5rem;
    }

    .hero-bottom-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .gaming-hero-bottom {
        padding: 60px 15px;
    }

    .hero-bottom-title {
        font-size: 2rem;
    }

    .hero-bottom-description {
        font-size: 1rem;
    }

    .hero-bottom-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-bottom-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-read-more,
    .btn-play-new {
        width: 100%;
        justify-content: center;
    }

    .tournament-badge {
        bottom: -10px;
        right: -10px;
        padding: 15px 20px;
    }
}
/* ============================ */
.new-console .best-sellers-slider .product-card01 img{
	width: 100%;
	height: 300px;
	object-fit: cover;
}
@media screen and (max-width:767px) {
	.new-console .best-sellers-slider .product-card01 img{
		height: 100%;
	}
	
}
/* ============================ */
/* Offcanvas Toggle Button */
.offcanvas-toggle-btn {
    /* position: fixed; */
     position: absolute;
	 left: 50%;
	 bottom: -23px;
	 transform: translate(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff87, #00d4ff);
    border: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 135, 0.4);
}

.offcanvas-toggle-btn span {
    width: 20px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.offcanvas-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 255, 135, 0.6);
}

.offcanvas-toggle-btn:hover span:nth-child(1) {
    transform: translateX(-3px);
}

.offcanvas-toggle-btn:hover span:nth-child(3) {
    transform: translateX(3px);
}

/* Offcanvas Menu */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-logo {
    max-width: 120px;
}

.offcanvas-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas-close:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    transform: rotate(90deg);
}

.offcanvas-body {
    padding: 30px;
}

.offcanvas-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.text-green {
    color: #00ff87;
}

.offcanvas-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #00ff87;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.contact-list li i {
    font-size: 1rem;
    color: #00ff87;
    width: 20px;
}

.subscribe-form {
    position: relative;
    margin-bottom: 15px;
}

.subscribe-input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.subscribe-input:focus {
    outline: none;
    border-color: #00ff87;
    background: rgba(255, 255, 255, 0.08);
}

.subscribe-input::placeholder {
    color: #666;
}

.subscribe-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00ff87, #00d4ff);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 255, 135, 0.4);
}

.subscribe-text {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(0, 255, 135, 0.2);
    border-color: #00ff87;
    color: #00ff87;
    transform: translateY(-3px);
}

.offcanvas-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-footer p {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}

/* Overlay */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Scrollbar Styling */
.offcanvas-menu::-webkit-scrollbar {
    width: 6px;
}

.offcanvas-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.offcanvas-menu::-webkit-scrollbar-thumb {
    background: #00ff87;
    border-radius: 10px;
}
#mobile-menu-wrap{
	display: none;
}
/* Responsive */
@media (max-width: 768px) {
    .offcanvas-menu {
        width: 100%;
        right: -100%;
    }
    
    .offcanvas-toggle-btn {
        width: 45px;
        height: 45px;
    }
	.offcanvas-toggle-btn {
		display: none;
	}
	#mobile-menu-wrap{
	display: block;
}
}
/* ================================== */
 /* Common button style */
 .card-bottom{
	display: flex;
	gap: 5px;
	position: absolute;
	left: 0;
    bottom: 1px;
	width: 100%;
 }
.theme-btn01,
.theme-btn02{
    /* display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 10px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
    clip-path: polygon(0% 0%, 92% 0%, 100% 25%, 100% 100%, 8% 100%, 0% 75%);
    font-size: 12px;
    width: 100%; */
	display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 7px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
    clip-path: polygon(0% 0%, 92% 0%, 100% 25%, 100% 100%, 8% 100%, 0% 75%);
    font-size: 10px;
    width: 100%;
}

/* ADD TO CART – Green */
.theme-btn01{
  background: linear-gradient(90deg, #2ec46a, #04c953);
}

/* SELL NOW – Blue */
.theme-btn02{
  background: linear-gradient(90deg, #dc2121, #dc3035);
  /* background: linear-gradient(90deg, #2b46c8, #3e63f2); */
}

.theme-btn01:hover,
.theme-btn02:hover{
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.theme-btn01 .icon{
  font-size: 18px;
}
.rsp-padding{
	padding: 0;
}
@media screen and (max-width:767px) {
	.card-bottom{
		display: block;
	}
	.card-bottom .theme-btn01{
		margin-bottom: 5px;
}
 .card-bottom{
	padding: 0 10px;
 }
.rsp-padding{
	padding-left:15px;
	padding-right:15px;
}
}
/* =========== */
    .hero__items.set-bg {
    min-height: 145px;
    background-size: contain !important; 
    background-repeat: no-repeat !important;
    background-position: center !important;
}


.hero__items .hero__text {
    display: none;
}


@media (max-width: 768px) {
    .hero__items.set-bg {
        min-height: 210px;
    }
	.hero{
		padding-top: 0px;
		padding-bottom: 50px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero__items.set-bg {
        min-height: 145px;
    }
}

@media (min-width: 1025px) {
    .hero__items.set-bg {
        min-height: 424px;
    }
}
/* ================================================ */

        .game-controls {
            display: flex;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
			justify-content: end;
			align-items: center;
			margin-bottom: 10px;
        }

        .game-controls .filter-btn {
            /* flex: 1; */
            /* background: #22c55e; */
			background: linear-gradient(90deg, #2ec46a, #04c953);
            color: #fff;
            border: none;
            padding: 7px 25px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background 0.2s;
			height: 40px;
        }

        .game-controls .filter-btn:hover {
            background: #16a34a;
        }

        .game-controls .sort-dropdown {
            /* flex: 1; */
            position: relative;
			
        }

        .game-controls .sort-dropdown .sort-btn {
            width: 100%;
            background: #1a1a1a;
            color: #fff;
            border: 1px solid #333;
            padding: 7px 20px;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.2s;
			height: 40px;
			position: relative;
        }

        .game-controls .sort-dropdown .sort-btn:hover {
            background: #252525;
        }

        .game-controls .sort-dropdown .sort-btn .sort-label {
            color: #999;
            font-size: 14px;
        }

        .game-controls .sort-dropdown .sort-btn .sort-value {
            font-weight: 600;
            margin-left: 8px;
        }

        .game-controls .sort-dropdown .dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            overflow: hidden;
            z-index: 100;
            display: none;
        }

        .game-controls .sort-dropdown.open .dropdown-menu {
            display: block;
        }

        .game-controls .sort-dropdown .dropdown-menu .dropdown-item {
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: background 0.2s;
            border-bottom: 1px solid #2a2a2a;
        }

        .game-controls .sort-dropdown .dropdown-menu .dropdown-item:last-child {
            border-bottom: none;
        }

        .game-controls .sort-dropdown .dropdown-menu .dropdown-item:hover {
            background: #252525;
        }

        .game-controls .sort-dropdown .dropdown-menu .dropdown-item.active {
            color: #22c55e;
        }

        .game-controls .sort-dropdown .dropdown-menu .dropdown-item .icon {
            font-size: 18px;
            width: 20px;
        }

        .filter-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .filter-modal.open {
            display: flex;
        }

      .filter-modal .modal-content {
    background: #0a0a0a;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    /* max-height: 90vh; */
    overflow-y: auto;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.filter-modal .modal-content::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* border thickness */
    border-radius: 16px;
    background: linear-gradient(135deg, #22c55e, #10b981, #059669, #22c55e);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

		  .filter-modal .modal-content::-webkit-scrollbar{
			display: none;
		  }

        .filter-modal .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

      .filter-modal .modal-header h2 {
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, #22c55e, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.35);
}


        .filter-modal .modal-header .close-btn {
            background: none;
            border: none;
            color: #ef4444;
            font-size: 32px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.2s;
        }

        .filter-modal .modal-header .close-btn:hover {
            background: rgba(239, 68, 68, 0.1);
        }

        .filter-modal .filter-section {
            margin-bottom: 18px;
        }

        .filter-modal .filter-section h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
			color: white;
        }

        .filter-modal .filter-section .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .filter-modal .filter-section .filter-options .filter-option {
            padding: 6px 15px;
            background: transparent;
            border: 2px solid #333;
            border-radius: 8px;
            color: #fff;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .filter-modal .filter-section .filter-options .filter-option:hover {
            border-color: #22c55e;
        }

        .filter-modal .filter-section .filter-options .filter-option.active {
            background: #22c55e;
            border-color: #22c55e;
            color: #000;
            font-weight: 600;
        }

        .filter-modal .price-section .price-range {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .filter-modal .price-section .price-range span {
            font-size: 14px;
            color: #999;
        }

        .filter-modal .price-section input[type="range"] {
            width: 100%;
            height: 4px;
            background: #333;
            border-radius: 5px;
            outline: none;
            -webkit-appearance: none;
        }

        .filter-modal .price-section input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 15px;
            height: 15px;
            background: #22c55e;
            border-radius: 50%;
            cursor: pointer;
        }

        .filter-modal .price-section input[type="range"]::-moz-range-thumb {
            width: 15px;
            height: 15px;
            background: #22c55e;
            border-radius: 50%;
            cursor: pointer;
            border: none;
        }

        .filter-modal .release-section .date-inputs {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .filter-modal .release-section .date-inputs select {
            flex: 1;
            padding: 12px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            color: #3b82f6;
            font-size: 15px;
            cursor: pointer;
        }

        .filter-modal .release-section .date-inputs .to-label {
            color: #999;
            font-weight: 600;
        }

        .filter-modal .modal-footer {
            margin-top: 40px;
            display: flex;
            justify-content: center;
        }

        .filter-modal .modal-footer .apply-btn {
            background: #22c55e;
            color: #ffffff;
            border: none;
            padding: 10px 50px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .filter-modal .modal-footer .apply-btn:hover {
            background: #16a34a;
        }
/* ================================================ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.price-container{
	display: flex;
	gap: 7px;
}
.btn-contact{
	background-color: #0096ff;
	font-size: 13px;
	border-radius: 0;
	color: #fff;
	width: 100%;
	clip-path: polygon(0% 0%, 92% 0%, 100% 25%, 100% 100%, 8% 100%, 0% 75%);
	padding: 5px 7px;
}
/* =========================================== */
/* Mobile Bottom Fixed Buttons */
.mobile-bottom-buttons {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0b0f19;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    padding: 8px;
    border-top: 1px solid #1a1f2e;
}

.mobile-bottom-buttons {
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
}

.mobile-bottom-btn {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
    text-align: center;
    gap: 6px;
    border: 1px solid transparent;
}

.mobile-bottom-btn i {
    font-size: 16px;
    margin: 0;
}

.mobile-bottom-btn span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mobile-btn-buy {
    background: #e4003a;
    border-color: #e4003a;
}

.mobile-btn-buy:hover {
    background: #c7002f;
    border-color: #c7002f;
    transform: scale(1.02);
    color: #fff;
}

.mobile-btn-sell {
    background: #ff6b00;
    border-color: #ff6b00;
}

.mobile-btn-sell:hover {
    background: #e65c00;
    border-color: #e65c00;
    transform: scale(1.02);
    color: #fff;
}

.mobile-btn-contact {
    background: #25d366;
    border-color: #25d366;
}

.mobile-btn-contact:hover {
    background: #1fb855;
    border-color: #1fb855;
    transform: scale(1.02);
    color: #fff;
}

/* Show only on mobile devices (768px and below) */
@media (max-width: 768px) {
    .mobile-bottom-buttons {
        display: flex;
    }
    
    /* Add padding to body to prevent content from being hidden behind fixed buttons */
    body {
        padding-bottom: 70px;
    }
    
    /* Hide the floating WhatsApp button on mobile when bottom buttons are shown */
    .whatsapp-float {
        display: none;
    }
}

/* Hide on tablets and desktop */
@media (min-width: 769px) {
    .mobile-bottom-buttons {
        display: none !important;
    }
}
/* =========================================== */