﻿/* Custom Container */
@media only screen and (min-width : 1200px){
	.container{
		max-width: 1600px;
	}
}

/* Global */
::-moz-selection { /* Code for Firefox */
	background-color: #FFB300;
	color: #fff;
}
::selection {
	background-color: #FFB300;
	color: #fff;
}
/* Works on Firefox */
*{
  scrollbar-width: thin;
  scrollbar-color: #393f47 #cccccc;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar{
  width: 8px;
}
*::-webkit-scrollbar-track{
  background: #cccccc;
}
*::-webkit-scrollbar-thumb{
  background: #393f47;
}
/* Light - 300 */
@font-face {
	font-family: 'CynthoNext';
	src: url('./fonts/CynthoNextLight.otf') format('opentype');
	font-weight: 300;
	font-style: normal;
}

/* Medium - 500 */
@font-face {
	font-family: 'CynthoNext';
	src: url('./fonts/CynthoNextMedium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
}

/* Bold - 700 */
@font-face {
	font-family: 'CynthoNext';
	src: url('./fonts/CynthoNextBold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}
*, body, h1, h2, h3, h4, h5, h6, p, a{
	outline: 0 !important;
    font-family: 'CynthoNext', sans-serif;
	font-weight: 300;
}
html{
	scroll-behavior: smooth;
}
.btn:focus,
.form-control:focus,
.form-select:focus{
	outline: 0;
	box-shadow: none;
}

.add_shadow{
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
.dark_theme{
	background-color: #0f0f0f;
}

.btn-primary {
	background-color: #000;
	padding: 13px 34px;
	color: #fff !important;
	font-size: 16px;
	font-weight: 500;
	border: 1px solid transparent;
	transition: 0.5s ease;
}
.btn-primary:hover, .btn-primary:active{
	background-color: transparent !important;
	color: #000 !important;
	border: 1px solid #000;
	transition: 0.5s ease;
}
.btn-banner {
	background-color: #FFB300;
	padding: 14px 40px;
	color: #000 !important;
	font-size: 16px;
	font-weight: 700;
	border: 1px solid #FFB300;
	border-radius: 50px;
	display: inline-block;
	margin-top: 20px;
	transition: 0.3s ease;
}
.btn-banner:hover {
	background-color: #000;
	border-color: #000;
	color: #FFB300 !important;
}
.btn-secondary {
	background-color: #FFB300;
	padding: 13px 34px;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	border: 1px solid #FFB300;
	transition: 0.5s ease;
}
.btn-secondary:hover, .btn-secondary:active{
	background-color: #fff !important;
	color:  #FFB300;
	transition: 0.5s ease;
}
.btn-third{
	background-color: #fff ;
	color: #000;
	border-radius: 60px;
	padding: 12px 0px;
	font-weight: 500;
	border-color: transparent;
}
.heading_primary{
	font-size: 40px;
	font-weight: 700;
}
.heading_secondary{
	font-size: 36px;
	font-weight: 700;
}
.heading_third{
	font-size: 32px;
	font-weight: 400 !important;
}
.section_title{
	font-weight: 500 !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
p{
	font-size: 16px;
}
.description_primary{
	font-size: 26px !important;
}
a{
	color: #000;
	text-decoration: none;
}
a:hover{
	color: #FFB300;
}
li{
	list-style: none;
}
.content_ul li{
	list-style: disc;
}
.gold_color{
	color: #FFB300 !important;
}
.form-control{
	border-radius: 0;
}
.one-line {
    white-space: nowrap;       /* force single line */
    overflow: hidden;          /* hide extra text */
    text-overflow: ellipsis;   /* add the "..." */
    display: block;            /* required for ellipsis to work */
    max-width: 100%;           /* keep within container */
}
/* Header */
.header-top-bar{
	background-color: #000;
	padding: 10px 0;
}
.header-top-inner{
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
}
.header-top-item{
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
}
.header-top-left{
	justify-self: start;
}
.header-top-center{
	justify-self: center;
	font-weight: 600;
}
.header-top-right{
	justify-self: end;
}
.header-navbar{
	background-color: #fff;
	border-bottom: none;
	padding-top: 16px;
	padding-bottom: 16px;
}
.header-navbar > .container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.header-navbar .navbar-collapse{
	flex-grow: 1;
}
.header-navbar .navbar-collapse.show,
.header-navbar .navbar-collapse.collapsing{
	width: 100%;
}
.header-logo .logo,
.logo {
	width: auto;
	height: 52px;
	max-width: 160px;
	object-fit: contain;
}
.header-nav{
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}
.header-nav .nav-link{
	color: #111 !important;
	font-size: 16px;
	font-weight: 500;
	padding: 6px 8px !important;
	white-space: nowrap;
	transition: 0.2s all;
}
.header-nav .nav-link:hover,
.header-nav .nav-link:focus{
	color: #FFB300 !important;
}
.header-nav .dropdown-menu{
	border: none;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	border-radius: 8px;
}
.header-nav .dropdown-item{
	font-size: 13px;
	font-weight: 500;
	color: #111;
}
.header-nav .dropdown-item:hover{
	background-color: #f7f7f7;
	color: #FFB300;
}
.header-icon img{
	width: 22px;
	height: 22px;
	object-fit: contain;
}
.header-icon,
.nav-icons a{
	color: #111;
	line-height: 1;
}
.header-icon:hover,
.nav-icons a:hover{
	opacity: 0.7;
}
.nav-icons .dropdown-toggle::after{
	display: none;
}
.header-toggler{
	border-color: #111 !important;
	padding: 4px 8px !important;
}
.header-toggler .navbar-toggler-icon{
	width: 1.2em !important;
}
.navbar-nav{
	gap: 8px;
}
.navbar{
	background-color: #fff;
	color: #111;
}
.navbar-nav li a{
	color: #111;
	font-size: 13px;
	font-weight: 500;
	transition: 0.2s all;
}
.navbar-nav li a:hover, .footer .footer_ul a:hover{
	color: #FFB300;
}
.navbar-toggler {
	border-color: #111;
	padding: 4px 8px !important;
}
.navbar-toggler-icon {
	width: 1.2em !important;
}
#header-cart .cart_counter{
	background-color: #FFB300;
	color: #000;
	font-size: 10px;
	font-weight: 700;
	top: -8px;
	right: -10px;
}

#product-manufacturer{
	margin-bottom: 20px;
}
/* Banner */
.banner-section{
	padding: 24px 0 0;
}
.banner-section > .container{
	padding-left: 24px;
	padding-right: 24px;
}
.main_banner_swiper{
	position: relative;
	border-radius: 28px;
	overflow: hidden;
}
.main_banner{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 560px;
	display: flex;
	align-items: center;
	position: relative;
	border-radius: 28px;
	overflow: hidden;
}
.main_banner::before{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.05) 100%);
	pointer-events: none;
	border-radius: 28px;
}
.main_banner .banner_content{
	color: #fff;
	width: 55%;
	max-width: 620px;
	padding-left: 48px;
}
.main_banner .banner_content_main{
	padding-top: 100px;
	padding-bottom: 120px;
	position: relative;
	z-index: 1;
	width: 100%;
}
.banner_heading{
	font-size: 56px;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 18px;
}
.banner_heading_light{
	display: block;
	color: #fff;
	font-weight: 500;
}
.banner_heading_gold{
	display: block;
	color: #FFB300;
	font-weight: 700;
}
.main_banner p{
	font-size: 16px;
	font-weight: 300;
	max-width: 460px;
	margin-bottom: 0;
	line-height: 1.6;
}
.banner-pagination{
	position: absolute !important;
	left: 48px !important;
	bottom: 32px !important;
	width: auto !important;
	z-index: 5;
}
.banner-pagination .swiper-pagination-bullet{
	background: transparent;
	border: 2px solid rgba(255,255,255,0.85);
	opacity: 1;
	width: 10px;
	height: 10px;
}
.banner-pagination .swiper-pagination-bullet-active{
	background: #fff;
	border-color: #fff;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}
.product_card_main{
	margin-top: 80px;
}
.view_all_btn_solid{
	background-color: #111;
	color: #fff !important;
	padding: 10px 28px;
	border-radius: 40px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	transition: 0.3s ease;
}
.view_all_btn_solid:hover{
	background-color: #FFB300;
	color: #111 !important;
}
.cart_btn{
	border: 1px solid #000;
	background-color: #F5F5F5;
	padding: 10px;
}
.product_card_v2{
	position: relative;
}
.product_card_v2 .product_card_inner{
	position: relative;
	background: #f3f3f3;
	border-radius: 16px;
	overflow: hidden;
	min-height: 420px;
}
.product_card_img{
	height: 420px;
	object-fit: cover;
	display: block;
}
.discount_badge{
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	background-color: #FFB300;
	color: #111;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
}
.product_card_meta{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	padding: 18px;
	background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.75) 60%, rgba(255,255,255,0) 100%);
}
.product_card_name{
	font-size: 18px;
	font-weight: 700 !important;
	margin-bottom: 4px;
	color: #111;
}
.product_card_price{
	font-size: 15px;
	font-weight: 600 !important;
	margin: 0;
	color: #111;
}
.cart_btn_round{
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 50%;
	background-color: #FFB300;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease;
}
.cart_btn_round img{
	width: 18px;
	height: 18px;
}
.cart_btn_round:hover{
	background-color: #111;
}
.cart_btn_round:hover img{
	filter: invert(1) brightness(2);
}
.product_card_form .cart_btn_round{
	border: none;
	padding: 0;
	cursor: pointer;
}
.shop_by_brands_section{
	margin-top: 60px;
}
.fragrances_style_section{
	margin-top: 80px;
}
.fragrances_style_banner{
	/* border-radius: 28px; */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 340px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.fragrances_style_banner::before{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.15) 100%);
}
.fragrances_style_content{
	position: relative;
	z-index: 1;
	/* max-width: 540px; */
	padding: 56px 48px;
	color: #fff;
}
.fragrances_style_heading{
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
}
.fragrances_style_content p{
	color: rgba(255,255,255,0.9);
	margin-bottom: 24px;
	max-width: 460px;
}
.explore_alvies_section{
	margin-top: 100px;
	margin-bottom: 100px;
}
.explore_alvies_inner{
	display: flex;
	align-items: stretch;
	gap: 32px;
}
.explore_alvies_intro{
	/* flex: 0 0 28%;
	display: flex;
	flex-direction: column;
	justify-content: center; */
	padding-right: 12px;
}
.explore_alvies_heading{
	font-size: 36px;
	font-weight: 700 !important;
	margin-bottom: 12px;
	line-height: 1.2;
}
.explore_alvies_text{
	color: #777;
	font-size: 16px;
	margin-bottom: 28px;
}
.explore_alvies_cards{
	flex: 1;
	min-width: 0;
}
.explore_category_card{
	height: 480px;
}
.old-price {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-skip-ink: none;
}
.discount{
	background-color: #FFB300;
	color: #fff;
	padding: 8px 20px;
	display: inline-block;
	font-weight: bold;
}
.section_3{
	padding-top: 100px;

}
.section_3_left{
	background-color: #ECF9FF;
}
.section_3_right{
	background-color: #FCEFF1;
}
.category_card{
	background-size: cover;
	background-position: center;
	height: 420px;
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}
.category_card_link{
	display: block;
	height: 100%;
	width: 100%;
	position: relative;
}
.category_card_detail{
	position: absolute;
	inset: 0;
}
.category_card_detail::after{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
	z-index: 0;
}
.category_content{
	position: absolute;
    bottom: 24px;
    left: 24px;
    width: auto;
    text-align: left;
    color: white;
    z-index: 1;
}
.category_name{
	font-size: 28px;
	font-weight: 700 !important;
	color: #fff;
	margin-bottom: 12px;
	text-transform: capitalize;
}
.category_view_all_btn{
	font-size: 13px;
	font-weight: 500;
	color: #fff !important;
	border: 1px solid rgba(255,255,255,0.85);
	border-radius: 70px;
	padding: 6px 14px;
	display: inline-block;
	background: rgba(255,255,255,0.08);
	text-decoration: none !important;
	transition: 0.3s ease;
}
.category_view_all_btn:hover{
	background: #FFB300;
	border-color: #FFB300;
	color: #111 !important;
}
.section_6{
	margin-top: 100px;
	background-color: #FFB300;
}
.section_6_main{
	padding: 80px;
}
.section_10{
	padding: 60px 0px;
	margin-top: 100px;
	background-color: #000;
}
.section_10 .heading_third{
	text-transform: uppercase;
}
.section_10 h5{
	font-size: 24px;
}
.section_8{
	margin-top: 100px;
}
.category_bg{
	background-size: cover;  
	background-position: center;  
	width: 100%;  
	position: relative;
}
.category_bg .content{
	position: absolute;
	bottom: 30px;
    left: 0;
	text-align: center;
    width: 100%;
    color: white;
    z-index: 1; 
}



/* Footer */
.footer-section{
	/* padding-top: 80px; */
	background-color: #000;
}
.footer-top{
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	min-height: 300px;
	display: flex;
	align-items: center;
	position: relative;
}
.footer-top::before{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.35) 100%);
}
.footer-top .container{
	position: relative;
	z-index: 1;
}
.footer-top-inner{
	display: flex;
	align-items: center;
	/* justify-content: space-between; */
	gap: 50px;
	flex-wrap: wrap;
	padding: 50px 0;
}
.footer-top-logo{
	/* height: 70px; */
	width: auto;
	max-width: 140px;
	object-fit: contain;
}
.footer-top-heading{
	color: #fff;
	font-size: 36px;
	font-weight: 700 !important;
	margin-bottom: 8px;
}
.footer-top-text{
	color: rgba(255,255,255,0.85);
	margin: 0;
	max-width: 420px;
}
.footer-subscribe-form{
	flex: 1 1 360px;
	max-width: 520px;
}
.footer-subscribe-field{
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(0,0,0,0.55);
	border: 1px solid #FFB300;
	border-radius: 50px;
	padding: 6px 6px 6px 18px;
}
.footer-subscribe-field i{
	color: #FFB300;
}
.footer-subscribe-field input{
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	padding: 10px 0;
	min-width: 0;
}
.footer-subscribe-field input::placeholder{
	color: rgba(255,255,255,0.65);
}
.btn-subscribe{
	background-color: #FFB300;
	color: #111;
	border: none;
	border-radius: 50px;
	padding: 12px 22px;
	font-weight: 700;
	white-space: nowrap;
	transition: 0.3s ease;
}
.btn-subscribe:hover{
	background-color: #fff;
}
.footer-main-wrap{
	background-color: #000;
	border-top: 1px solid rgba(255,179,0,0.35);
}
.footer_main{
	padding-top: 60px;
	padding-bottom: 30px;
}
.footer-logo{
	height: 64px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
}
.footer-brand-col{
	border-right: 1px solid rgba(255,179,0,0.25);
	padding-right: 24px;
}
.footer-brand-text{
	color: rgba(255,255,255,0.85);
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}
.footer-heading{
	color: #FFB300 !important;
	font-size: 15px;
	font-weight: 700 !important;
	letter-spacing: 1px;
	margin-bottom: 20px;
	text-transform: uppercase;
}
footer ul li{
	margin-bottom: 12px;
}
.footer_link{
	font-size: 14px;
	color: rgba(255,255,255,0.9);
	transition:  0.2s all;
}
.footer_link:hover{
	color: #FFB300;
}
.footer-contact-list li{
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: rgba(255,255,255,0.9);
	font-size: 14px;
}
.footer-contact-list i{
	color: #FFB300;
	margin-top: 3px;
	min-width: 16px;
}
.footer-bottom{
	border-top: 1px solid rgba(255,179,0,0.35);
	padding: 22px 0 30px;
	color: rgba(255,255,255,0.85);
	font-size: 13px;
	gap: 16px;
}
.footer-payments span{
	margin-right: 6px;
}
.footer-payments img{
	height: 24px;
	width: auto;
}
.news_letter_main{
	background-color: #FFB300;
	padding: 40px;
	border-radius: 20px;
	color: #fff;
}
.news_letter_main input{
	padding: 13px;
	border: none;
}
.contact_form_main{
	background-color: #FFB300;
}
.social_link{
	background-color: transparent;
	border: 1px solid #C5A05933;
	width: 34px;
	height: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: 0.2s all;
}
.social_link a{
	color: #FFB300;
	line-height: 1;
}
.social_link:hover{
	background-color: #FFB300;
}
.social_link:hover a{
	color: #000;
}
.list-group-item.active {
  background-color: #000;
  border-color: #000;
}
#checkout-payment .btn-primary{
	background-color: #000 !important;
	border-color: #000;
}
.cart_counter{
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #000;
	color: #fff;
	border-radius: 50%;
	position: absolute;
	top: -13px;
	right: -13px;
}
/* Responsive */

/* Small Device */
@media only screen and (max-width: 1199px){
	.heading_secondary{
		font-size: 26px;
	}
	.banner_heading{
		font-size: 46px;
	}
	.main_banner .banner_content_main{
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.header-nav .nav-link{
		font-size: 12px;
		padding: 6px 5px !important;
	}
}

@media only screen and (max-width: 992px){
	.header-top-inner{
		grid-template-columns: 1fr;
		text-align: center;
		gap: 6px;
	}
	.header-top-left,
	.header-top-center,
	.header-top-right{
		justify-self: center;
	}
	.header-top-item{
		font-size: 12px;
	}
	.banner-section{
		padding-top: 16px;
	}
	.banner-section > .container{
		padding-left: 16px;
		padding-right: 16px;
	}
	.main_banner_swiper,
	.main_banner,
	.main_banner::before{
		border-radius: 20px;
	}
	.main_banner .banner_content{
		padding-left: 32px;
	}
	.banner-pagination{
		left: 32px !important;
		bottom: 24px !important;
	}
	.heading_primary{
		font-size: 30px;
		line-height: 1;
	}
	.heading_secondary{
		font-size: 22px;
	}
	.heading_third{
		font-size: 20px;
	}
	p{
		font-size: 14px;
	}
	.description_primary{
		font-size: 22px !important;
	}
	.navbar-nav{
		gap: 0px;
	}
	.navbar-nav li a {
		font-size: 14px;
		font-weight: 400;
	}
	.header-nav{
		align-items: flex-start;
		margin: 16px 0;
	}
	.nav-icons{
		margin-bottom: 10px;
	}
	.main_banner{
		min-height: 420px;
	}
	.main_banner .banner_content{
		width: 80%;
	}
	.main_banner .banner_content_main{
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.banner_heading{
		font-size: 40px;
	}
	.main_banner p{
		font-size: 15px;
	}
	.product_card_img,
	.product_card_v2 .product_card_inner{
		height: 340px;
		min-height: 340px;
	}
	.view_all_btn{
		font-size: 14px;
	}
	.product_card h4,
	.product_card_name{
		font-size: 16px;
	}
	.product_card h5,
	.product_card_price{
		font-size: 14px;
	}
	.discount{
		font-size: 16px;
	}
	.category_name{
		font-size: 22px;
	}
	.category_view_all_btn{
		font-size: 12px;
	}
	.category_card{
		height:320px;
	}
	.product_card_main{
		margin-top: 70px;
	}
	.section_6{
		margin-top: 70px;
	}
	.section_6_main{
		padding: 40px 0px;
	}
	.section_3 {
		padding-top: 70px;
	}
	.section_10{
		padding: 60px 0px;
		margin-top: 70px;
	}
	.section_10 h5{
		font-size: 18px;
	}
	.section_8{
		margin-top: 70px;
	}
	.section_8_image_1{
		height: 400px  !important;
	}
	.explore_alvies_inner{
		flex-direction: column;
		gap: 24px;
	}
	.explore_alvies_intro{
		flex: 1 1 100%;
		padding-right: 0;
	}
	.explore_category_card{
		height: 360px;
	}
	.explore_alvies_section{
		margin-top: 70px;
		margin-bottom: 70px;
	}
	.explore_alvies_heading{
		font-size: 28px;
	}
	.fragrances_style_content{
		padding: 40px 32px;
	}
	.fragrances_style_heading{
		font-size: 30px;
	}
	.shop_by_brands_section{
		margin-top: 50px;
	}
	.footer-section{
		padding-top: 50px;
	}
	.footer_link{
		font-size: 14px;
	}
	.footer_main{
		padding-top: 50px;
	}
	.footer-brand-col{
		border-right: none;
		padding-right: 12px;
	}
	.footer-top-heading{
		font-size: 28px;
	}
	.footer-top-inner{
		padding: 40px 0;
	}
}

/* Tablet */
@media only screen and (max-width: 810px){
	.description_primary{
		font-size: 18px !important;
	}
	.heading_primary{
		font-size: 25px;
	}
	.heading_secondary{
		font-size: 20px;
	}
	.heading_third{
		font-size: 18px;
	}
	.discount{
		font-size: 14px;
	}
	.main_banner .banner_content{
		width: 100%;
	}
	.main_banner .banner_content_main{
		padding-top: 70px;
		padding-bottom: 90px;
	}
	.banner_heading{
		font-size: 34px;
	}
	.main_banner p{
		font-size: 14px;
	}
	.footer_main{
		padding-top: 40px;
	}
	.footer-subscribe-form{
		max-width: 100%;
		flex: 1 1 100%;
	}
	.footer-subscribe-field{
		flex-wrap: wrap;
		border-radius: 16px;
		padding: 12px;
	}
	.btn-subscribe{
		width: 100%;
	}
	.explore_category_card{
		height: 320px;
	}
	.fragrances_style_banner{
		min-height: 280px;
	}
	.fragrances_style_content{
		padding: 32px 24px;
	}
	.fragrances_style_heading{
		font-size: 26px;
	}
}

/* Mobile */
@media only screen and (max-width: 481px){
	.header-top-bar{
		padding: 8px 0;
	}
	.header-top-left,
	.header-top-right{
		display: none;
	}
	.header-top-center{
		font-size: 11px;
	}
	.banner-section > .container{
		padding-left: 12px;
		padding-right: 12px;
	}
	.main_banner_swiper,
	.main_banner,
	.main_banner::before{
		border-radius: 16px;
	}
	.main_banner .banner_content{
		padding-left: 20px;
		width: 100%;
	}
	.banner-pagination{
		left: 20px !important;
		bottom: 18px !important;
	}
	.description_primary{
		font-size: 16px !important;
	}
	.heading_primary{
		font-size: 20px;
	}
	.heading_secondary{
		font-size: 18px;
	}
	.heading_third{
		font-size: 16px;
	}
	.view_all_btn,
	.view_all_btn_solid{
		font-size: 12px;
		padding: 8px 16px;
	}
	p{
		font-size: 12px;
	}
	.btn-primary,
	.btn-banner {
		padding: 10px 28px;
		font-size: 12px;
	}
	.btn-secondary {
		padding: 10px 40px;
		font-size: 12px;
	}
	.header-logo .logo,
	.logo{
		height: 42px;
	}
	.main_banner {
		min-height: 380px;
		margin-bottom: 20px;
	}
	.banner_heading{
		font-size: 28px;
	}
	.product_card_img,
	.product_card_v2 .product_card_inner{
		height: 300px;
		min-height: 300px;
	}
	.product_card h4,
	.product_card_name{
		font-size: 15px;
	}
	.product_card h5,
	.product_card_price{
		font-size: 13px;
	}
	.discount{
		font-size: 12px;
	}
	.category_view_all_btn{
		font-size: 11px;
	}
	.category_name{
		font-size: 18px;
	}
	.category_content{
		left: 16px;
		bottom: 16px;
	}
	.product_card_main{
		margin-top: 50px;
	}
	.section_3 {
		padding-top: 50px;
	}
	.section_6{
		margin-top: 50px;
	}
	.section_6_main{
		padding: 40px 0px;
	}
	.section_10{
		padding: 50px 0px;
		margin-top: 50px;
	}
	.section_10 h5{
		font-size: 14px;
		margin-bottom: 20px;
	}
	.section_8{
		margin-top: 50px;
	}
	.section_8_image_1{
		height: 300px !important;
	}
	.explore_alvies_section{
		margin-top: 50px;
		margin-bottom: 50px;
	}
	.explore_alvies_heading{
		font-size: 24px;
	}
	.explore_category_card{
		height: 280px;
	}
	.fragrances_style_banner{
		min-height: 260px;
	}
	.fragrances_style_content{
		padding: 24px 20px;
	}
	.fragrances_style_heading{
		font-size: 22px;
	}
	.footer-section{
		padding-top: 30px;
	}
	footer ul li{
		margin-bottom: 10px;
	}
	.footer_link{
		font-size: 12px;
	}
	.footer_main{
		padding-top: 30px;
	}
	.footer-heading{
		font-size: 13px;
	}
	.footer-top-heading{
		font-size: 24px;
	}
	.footer-top-logo,
	.footer-logo{
		height: 50px;
	}
	.footer-bottom{
		justify-content: center !important;
		text-align: center;
	}
}

/* Tablet Landscape Mode */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1280px)
and (orientation: landscape){
	
}

/* Mobile Landscape Mode */
@media only screen 
and (min-device-width: 360px) 
and (max-device-width: 926px) 
and (orientation: landscape) {
 	
}
