
body {
    font-family: 'Montserrat', sans-serif;
}
nav{
    align-items: center;
    background: #fff;
    color: #000; 
    left: 0px;
    right: 0px;
    z-index: 100;
    text-align: center;
    box-shadow: 0 1px 10px rgb(0 0 0 / 30%);
    position: fixed;
    height: 120px;
	opacity: 0;
    top: 30px;
	transition: opacity 1s ease-in-out;
      transition: top 0.3s ease-in-out;
} 
#banner{
    margin-top: 180px;
}
#shipping-banner {
  background-color: #172b4d; /* Dark gray - more neutral and professional */
  color: white;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.banner-container {
  display: flex;
  justify-content: center; /* Center the content */
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

/* Center the text */
.banner-container p {
  margin: 0;
  text-align: center;
}

#close-banner {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  position: absolute; /* Position it absolutely */
  right: 20px; /* Position from right edge */
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
#close-banner:focus{
    outline: none;
}
#close-banner:hover {
  transform: translateY(-50%) scale(1.2);
}

/* Rest of the CSS remains the same */
.banner-closed {
  height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.loaded nav{
	opacity: 1;
}
.center{
	position: absolute;
}
.aulogo{
	height: 110px;
	width: auto;
} 
.menuicon{
	position: absolute;
	left: 10px;
	height: 30px;
	z-index: 2;
}
.closeicon{
	position: absolute;
	left: 10px;
	height: 30px;
	display: none;
	z-index: 2;
}
.closeicon:hover{
	cursor: pointer;
}
.navcart{
	height: 30px;
	position: absolute;
	right: 20px;
}
.navcart:hover{
	cursor: pointer;
}

/* Navbar container */
.navlist {
	z-index: 3;
	margin: auto;
	display: flex;
    position: relative;
}

/* Links inside the navbar */
#lnks{
	float: left;
	color: #000;
	text-align: center;
	padding: 10px 0 0 0;
    margin-left: 16px;
    margin-right: 16px;
	text-decoration: none;
	font-weight: 200;
    letter-spacing: 1px;
}

/* The dropdown container */
.dropdowns {
	float: left;
	z-index: 1;
}

/* Dropdown button */
.dropdowns .dropbtn {
	border: none;
	outline: none;
	padding: 14px 16px;
	background-color: transparent;
	margin: 0; 
}


.logomini{
    height: 38px;
    width: 38px;
    margin-left: auto;
    background-color: #fff;
}
.submenu .logomini{
	position: absolute;
	right: 20px;
	top: 2px;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #B76E79;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #B76E79;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after,
.dropdowns:hover .hover-underline-animation::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.newcollection{
    letter-spacing: 1px;
    font-weight: 400;
    background-color: #d6ab67;
    color: #fff;
    font-size: 6px;
transform: rotate(-10deg) skew(-10deg); 
    display: inline-block;
    text-transform: uppercase;
    padding: 3px 8px 3px 8px;
    position: relative;
    bottom: 5px;
}
/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
	position: absolute;
    top: 34px;
    left:0;
	background-color: #fff;
	min-width: 500px;
	border: 0px solid transparent;
	border-bottom-right-radius: 1px;
	border-bottom-left-radius: 1px;
    font-size: 14px;
    letter-spacing: 5px;
	font-weight: 300;
    padding-top: 2px;
}

.dropdown-content::after{
    content: "";
    min-width: 500px;
    height: 426px;
	border: 1px solid transparent;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
    background-color: #000;
        position: absolute;
	bottom: 0px;
	left: 0px;
    z-index: -1;  /* to be below the parent element */
	 box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}
/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 0px 16px;
    text-decoration: none;
    display: flex;

    align-items: center; /* Vertically center */
    text-align: left;
    height: 48.5px;
}
.dropdown-content p{
    margin: 0;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgba(183, 110, 121, 0.2);
}

/* Show the dropdown menu on hover */
.dropdowns:hover .dropdown-content {
  display: block;
}


/* NEW SEARCH */
.searchbutton{
    cursor: pointer;
    margin-top: auto;
    padding-bottom: 0px;
    height: 22px;
}
.search-container {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #fff;
    border: 2px solid #b76e79;
    border-radius: 25px;
    padding: 5px 15px;
    width: 500px;
    max-width: 60vw;
}

.search-container.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.search-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    background: transparent;
    font-family: Montserrat, sans-serif;
}

.search-input::placeholder {
    color: #999;
    font-weight: 300;
}

.search-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b76e79;
    transition: color 0.2s ease;
}

.search-submit:hover {
    color: #8b5661;
}

.close-search {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: color 0.2s ease;
    margin-left: 10px;
}

.close-search:hover {
    color: #666;
}

/* LOGIN */
.login-icon{
    cursor: pointer;
    margin-top: auto;
    padding-bottom: 0px;
    height: 25px;
    margin-right: 10px;
}
.login-icon svg{
    height: 28px;
    width: 28px;
}



.logomini {
    height: 38px;
    width: 38px;
    margin-left: auto;
    background-color: #fff;
}

.newcollection {
    letter-spacing: 1px;
    font-weight: 400;
    background-color: #d6ab67;
    color: #fff;
    font-size: 6px;
    transform: rotate(-10deg) skew(-10deg);
    display: inline-block;
    text-transform: uppercase;
    padding: 3px 8px 3px 8px;
    position: relative;
    bottom: 5px;
}

/* Mobile responsiveness */
@media (max-width: 800px) {
    .searchbutton {
        display: none;
    }

    .dropdowncontainer {
        display: none;
    }
}

@media (max-width: 480px) {
    .search-container {
        width: 250px;
        max-width: 85vw;
    }
}

/* Mobile Search specific styles */
.mobile-search-submenu{
    background-color:#fff;
    transition:max-height .5s ease-in-out;
    max-height:0;
    overflow:hidden;
}

.mobile-search-submenu.active{
    max-height: 100px;
}

.mobile-search-container{
    padding: 20px 40px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.mobile-search-input{
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: Montserrat, sans-serif;
}

.mobile-search-input:focus{
    border-color: #b76e79;
}

.mobile-search-input::placeholder{
    color: #999;
    font-weight: 300;
}

.mobile-search-btn{
    padding: 12px 20px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-search-btn:hover{
    background-color: #a05a6b;
}

/*MENU*/
.menuicon:hover{
    cursor: pointer;
}

.menu {
    width: 100%;
    z-index: 99;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    position: fixed;
    max-height: 0px;
    transform: translateY(0px);
    transition: 0.4s;
    overflow: hidden;
}
.menu symbol{
    
}
.menudiv p3 {
  display: inline-block;
  position: relative;
  transition: transform 0.25s ease-out;
}
.menudiv.active p3::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.menudiv p3::after {
  content: '';
  position: absolute;
  color: #B76E79;
  width: 100%;
    transform: scaleX(0);
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: #B76E79;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.overlay{
	position: fixed;
    visibility: hidden !important;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 101;
    opacity: 0 !important;
	background-color: rgba(45, 45, 45, 0.35);
    right: 0;
    transition: opacity .25s ease-in;
}
.overlay.visible{
	    transition: opacity .25s ease-in;
	opacity: 1 !important;
	visibility: visible !important;
}
.overlay-visible{
	    transition: opacity .25s ease-in;
	opacity: 1 !important;
	visibility: visible !important;
}
.menudiv{
    width: 100%;
    margin: auto;
    padding: 10px 30px 10px 40px;
    background-color: #fff;
    border-radius: 3px;
    background-color: #fff;
    transition: 0.1s ease;
	font-weight:	400;
	box-shadow: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.menudiv:hover{
     background-color: rgba(183, 110, 121, 0.2);
}
.menu a:hover{
		text-decoration: none;
}
.arrow-icon{
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 256 256"><g><g id="Layer_1"><path d="M192.5,128L77.8,10l-9,9.3,105.5,108.7-105.9,108.3,9.4,9.7,114.7-118Z"/></g></g></svg>');
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;

    position: absolute;
    right: 20px;
}
.menudiv p3{
    color: #000;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 15px;
}
.arrow-icon{
    height: 20px;
    float: right;
	opacity: 0.75;
}
.arrow-icon.active {
    transform: rotate(90deg);
}
.submenu {
    background-color: #fff;
    transition: max-height 0.5s ease-in-out;
    max-height: 0px; /* Start with a maximum height of 0 */
    overflow: hidden; /* Hide content that overflows the submenu */
}
/* CSS to show the submenu when the parent menu item is active */
.submenu.active {
    max-height: 380px; /* Adjust the maximum height as needed */
}
.submenu a{
	position: relative;
}
.submenu .logomini{
    height: 34px;
    width: 34px;
    margin-right: 5px;
}
.submenu .menudiv{
    height: 38px;
    padding-left: 55px;
    font-size: 10px;
}
.submenu .menudiv p3{
    font-size: 14px;
}


/*New New*/
.navigation{
	margin: 0;
	padding: 10px 0 0 0;
	text-align: center;
	font-weight: 400;
	color: #000;
}
.navigation a{
		color: #000;
}

.navigation li{
	display: inline;
}
.seperator{
	margin-left: 5px;
	margin-right: 5px;
	color: #999;
	font-weight: 200;
}
.pname{
	color: #999;
}
.value{
	margin-bottom: 10px;
}
:root {
  --color-primary: 21, 21, 21;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid rgba(var(--color-primary), 0.55); /* Adjust the color variable as needed */
    padding: 0 35px 0 16px;
    height: 46px;
    line-height: 46px;
    color: rgba(var(--color-primary), 0.75); /* Adjust the color variable as needed */
    font-size: 14px;
    outline: 0;
    position: relative;
    background: transparent;
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
}

	.boxopt{
		margin-top: 10px;
		font-weight: 500;
	}
	
div.quantitynew {
    display: inline-flex;
    position: relative;
	top: 1px;
}
div.quantitynew.buttons_added {
    padding-right: 22px;
    padding-left: 22px;
}
div.quantitynew .qty {
    display: inline-flex;
    padding: 0;
    width: 51px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
	border-left: none;
	border-right: none;
    justify-content: center;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0;
}
	
div.quantitynew .minuss {
    bottom: 0;
    left: 0;
	border-right: 0px !important;
}
div.quantitynew .pluss {
    top: 0;
    right: 0;
    height: 46px;
    line-height: 23px;
	border-left: 0px !important;
}
div.quantitynew .minuss, div.quantitynew .pluss {
    display: flex;
    padding: 0;
    margin: 0;
    border: 1px solid #efefef;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 23px;
    height: 46px;
    overflow: visible;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    text-shadow: none;
    background: transparent;
    color: #151515;
    border-radius: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.select {
    position: relative;
	max-width: 400px;
}
.addqty{
	max-width: 400px;
}
.select:after {
	content: '\e313';
    font-family: 'Material Icons';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    font-size: 20px;
    position: absolute;
    top: 0;
    height: 100%;
    width: 35px;
    pointer-events: none;
    right: 0;
}
	
body.loaded .select:after {
	opacity: 1;
}
select:focus + .select:after {
    content: 'expand_less' !important;
}
	
	
/* TABS */
.hidden {
    display: none;
}
.tab-button {
    cursor: pointer;
    padding: 2px 5px;
    background-color: transparent;
    border: none;
    margin-right: 5px;
	margin: 10px;
}
.tab-button.active{
	border-bottom: 1px solid #000;
}
.tab-button:focus{
	outline: none;
}
.details{
display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    border-spacing: 2px;
    border-color: gray;
	border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0;
}
.details tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}
.details tbody tr:nth-child(2n) {
    border-bottom: 0;
    background-color: #f1f1f1;
}
	.details tbody th, table:not(.shop_table) tbody td {
    padding: 0.5rem 0.625rem 0.625rem;
}
	#description-content{
		padding: 5px 0 10px 0;
	}
	
	#description-content p1{
		font-size: 18px;
	}
/*New New*/
h1{
    font-size: 30px;
    margin: 0;
    font-weight: 400;
    color: #182b43;
}
h2{
    font-size: 20px;
	font-weight: 400;
}
.containerx{
    width: 100%;
    display: table;
    margin-left: 0;
    padding-left: 0;
    display: grid;
    grid-template-columns: 50% 50%;
    margin: auto;
    padding: 0;
}
.rightcontainer{
    border: 0px solid;
    border-radius: 10px;
    padding: 30px 20px 0 20px;
    margin-top: auto;
    margin-bottom: auto;
	z-index: 1;
}
.rightcontainer button{
	color: #000;
}
.leftcontainer{
}
.leftcontainer{ 
	position: relative;
	display:grid;
	grid-template-columns: 15% 85%;
	max-width: 700px;
	margin-left: auto;
}
.product-price{
    font-size: 26px;
	font-weight: 300;
}

.jcart p5{
	color: #F94C4C;
	font-weight: 500;
}

.addtocart {
    font-size: 9px;
    letter-spacing: 1px;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    width: 120px;
    margin-top: 10px;
    font-weight: 600;
    height: 30px;
    position: relative;
    overflow: hidden;
    opacity: 0.85;
    cursor: pointer;
    transition: color 0.3s ease;
    text-transform: uppercase;

}
.addtocart:focus{
    outline: none;
}
.addtocart::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: left 0.3s ease;
    z-index: 1;
}

.addtocart span {
    position: relative;
    z-index: 2;
}

.addtocart:hover::before {
    left: 0;
}

.addtocart:hover {
    color: #fff;
}

.notifybtn{
    text-align: center;
    height: 46px;
    background-color: #182b43;
    border: 1px solid #000;
    border-radius: 2px;
    color: #fff;
    padding: 10px 30px 10px 30px;
    width: calc(100% - 100px);
    transition: 0.4s ease-in;
    font-weight: 400;
    letter-spacing: .15385em;
    font-size: .8125rem;
}

.out-of-stock {
    color: #999; /* Change text color */
    background-color: #f5f5f5; /* Change background color */

}
.productbanner .comingsoon{
	    text-align: center;
    height: 40px;
    background-color: #2D2937;
    border: 0px solid;
    border-radius: 50px;
    color: #fff;
    padding: 0px 0px 0px 0px;
    width: 70%;
    max-width: 100px;
    max-width: 300px;
    margin-top: 5px;
    font-weight: 700;
    letter-spacing: .15385em;
    font-size: .8125rem;
	margin-bottom: 10px;
}
.product a{
    color: #000;
    text-decoration: none;
}
.comingsoon{
	    text-align: center;
    height: 50px;
    background-color: #2D2937;
    border: 0px solid;
    border-radius: 50px;
    color: #fff;
    padding: 10px 30px 10px 30px;
    width: 100%;
    max-width: 300px;
    margin-top: 5px;
    font-weight: 700;
    letter-spacing: .15385em;
    font-size: .8125rem;
}

#payment-request-button{
	max-width: 300px;
	position: relative;
	top: -10px;
	display: none;
}
.description{
    margin-top: 30px;
    max-width: 600px;
}
.bottomcontainer{
    padding: 10px;
    display: grid;
    grid-template-columns: 50% 50%;
    max-width: 1200px;
    margin: auto;
}
.bottomcontainer h4{
    margin-left: 10px;
	font-weight: 700;
	font-size: 30px;
}
.bottomcontainer ul{
    list-style: none;
}
.bottomcontainer p4{

}
.imgdivbox img{
	margin: auto;
    width: 100%;
}
.imgdiv img{
    margin:auto;
    width: 100%;
}
.productimg{
     height: 50vw;
    max-height: 600px;
    margin: auto 0 auto auto;
    display: flex;
    margin-top: 5px;
}
/* Individual Product Box */
#pboxb, #pboxc, #pboxd, #pboxe, #pboxf{
	display: none;
}
.pboxdiv{
	margin: auto;
	height: 100%;
}
.boxminip{
	height: 85px;
	width: 70px;
    border-radius: 2px;
    margin-top: 10px;
    z-index: 1;
    position: relative;
    border: 1px solid #e6ecf2;
	background-repeat: repeat;
	background-size: cover;
    background-position: center center;
}
.boxminip:hover{
	cursor: pointer;
}
.miniboxdiv ul{
	margin: 0px;
	padding: 0;
	list-style: none;
	position: relative;
	
}
.boxmini:focus{
   border: #000 solid;
}
.miniboxdiv{
	margin: 10px;
	padding: 0;
	height: 70px;
	width: 70px;


}
.boxmini:hover{
    cursor: pointer;
}
.boxmini{
	height: 70px;
	width: 70px;
    border-radius: 2px;
    margin-top: 10px;
    z-index: 1;
    position: relative;
    border: 1px solid #e6ecf2;
	background-repeat: repeat;
	background-size: cover;
}
/* Cuban Brands */
.allbrands{
}
.banner{
  display: flex;
  justify-content: center;
  align-items: center;
	height:	auto;
	padding-top: 20px;
	padding-bottom: 20px;
}
.allbrand{

}
.brandContainer{
	text-align: center;
	transition: 0.4s ease;
	font-weight: 800;
	font-size: 17px;
	text-transform: uppercase;
	color: #000 !important;
    padding: 20px;
    margin: auto;
}

.brandContainer:hover{
	transform: scale(1.1);
	cursor: pointer;
	backface-visibility: hidden;
}
.carousel-cell p{
	font-weight: 400;
    font-size: 20px;
    letter-spacing: 1.5px;
	white-space: nowrap
}


/* Item Pulse Radar */
.variant__countdown {
  font-weight:400;
  line-height: 20px;
  margin-bottom: 5px;
}

.variant__countdown--in,
.variant__countdown--low,
.variant__countdown--out,
.variant__countdown--unavailable {
  padding-left: 16px;
  position: relative;

}

/* Countdown styles for different states */
.variant__countdown--in {
  --dot-color: #51c88e; /* Green dot color */
}

.variant__countdown--low {
  --dot-color: #ffc896; /* Orange dot color */
}

.variant__countdown--out {
  --dot-color: #ff8484; /* Red dot color */
}

.variant__countdown--unavailable {
  --dot-color: rgba(0, 0, 0, 0.5); /* Gray dot color */
}

/* Dot styling */
.variant__countdown--in:after,
.variant__countdown--in:before,
.variant__countdown--low:after,
.variant__countdown--low:before,
.variant__countdown--out:after,
.variant__countdown--out:before,
.variant__countdown--unavailable:after,
.variant__countdown--unavailable:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--dot-color);
  border-radius: 50%;
}

/* Dot animation */
.variant__countdown--in:before,
.variant__countdown--low:before,
.variant__countdown--out:before,
.variant__countdown--unavailable:before {
  opacity: 0.2;
  animation: pulse 2.5s linear infinite; /* Apply the pulse animation */
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  69% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1);
    opacity: 0.2;
  }
  to {
    transform: scale(5);
    opacity: 0;
  }
}
/* Dot animation with -webkit- prefix */
.variant__countdown--in:before,
.variant__countdown--low:before,
.variant__countdown--out:before,
.variant__countdown--unavailable:before {
  opacity: 0.2;
  -webkit-animation: pulse 2.5s linear infinite; /* Add -webkit- prefix */
  animation: pulse 2.5s linear infinite;
}

@-webkit-keyframes pulse { /* Add -webkit- prefix to keyframes */
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  69% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(1);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scale(5);
    opacity: 0;
  }
}

/* Flickity */
.carousel {
  background: #fff;
margin-top: 20px;
margin-bottom: 20px;
}

.carousel-cell {
  width: 20%;
  margin-right: 10px;
  background: #fff;
    text-align: center;
}
.carousel-cell-image{
    margin-bottom: 10px;
    height: auto;
	max-height: 250px;
	max-width: 250px;
    width: 80%;
}
@media(max-width: 1224px){
	.carousel-cell{
		width: 25% !important;
	}
}

@media(max-width: 768px){
	.carousel-cell{
		width: 33.35% !important;
	}
}

@media(max-width: 500px){
	.carousel-cell{
		width: 50% !important;
	}
}

@media(min-width: 1224px){
	.carousel-cell{
		width: 20% !important;
	}
	.carousel-cell p{
	font-weight: 400;
    font-size: 25px;
	}
}

/* fade in lazy loaded image */
.carousel-cell-image.flickity-lazyloaded,
.carousel-cell-image.flickity-lazyerror {
  opacity: 1;
}

.flickity-page-dots, .flickity-prev-next-button{
  display: none;
}

/* Gridsplay */
.gridsplay{
	display: grid;
	grid-template-columns: 40% 60%;
}
.gridsplay div:nth-child(2){
	padding: 30px;
	text-align: left;
	margin: auto;
}
.gridsplay div:nth-child(1){
	margin: auto;
	text-align: center;
}
.gridsplay h2{
	letter-spacing: 2px;
	font-weight: 400;
}
.gridsplay img{
	width: 100%;
}
.cigardesktop{
	display: none;
}
/* Swiper */
.swiper-pagination{
    position: relative;
}
.swiper-slide{
    opacity: 0;
    transition: 0.5s ease;
}
.swiper-slide a{
	text-decoration: none;
	color: #000;
}
.product a .shopnow{
    color: #000;
}
.separator {
    z-index: 100000;
    width: 1px; /* Adjust the width of the separator */
        background-color: rgba(252, 231, 242, 0.4);

    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); /* Box shadow on both sides */
    height: 50%;

    position: absolute;
    right: 0;
    top: 30%
    
}
.productbanner h2{
	font-weight: 500;
	font-size: 18px;
    color: #182b43;
	letter-spacing: 0.5px;
	text-transform: capitalize;
	padding-top: 10px;
    margin-bottom: 0;
        max-height: 3em; /* Adjust the maximum height as needed */
    overflow: hidden;

}
.productbanner p3{
	font-weight: 200;
	font-size: 12px;
    text-transform: uppercase;
	letter-spacing: 2.5px;
	padding-top: 10px;
	height: 0;
}
.productbanner{
	text-align: center;
	height: auto;
	align-items: center;
	justify-content: center;
    padding: 30px
}
.productbanner .shopnow{
    margin-top: 20px;
    background-color: transparent;
    border: 1px solid #000;
    font-size: 10px;
    text-transform: uppercase;
    height: 30px;
    width: 110px;
    letter-spacing: 1px;
}
.titlebanner{
}
.pimg {
    position: relative;
    width: 100%;
    max-width: 280px; /* Maximum width for the container */
    aspect-ratio: 25 / 29;
    height: auto; /* Keep height auto to maintain responsiveness */
    display: block;
    object-fit: cover; 
	font-size: 0
}
.swiper-lazy-preloader {
    border: 1px solid #f3f3f3;
    border-top: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: calc(50% - 40px);
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    pointer-events: none;
}

.swiper-lazy-preloader.hidden {
    display: none;
    animation: none; /* Stop animation when hidden */
}

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

.imgcontain{
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.swiper-button-prev, .swiper-button-next{
		transition: opacity 0.5s ease-in-out;
	 opacity: 1;
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  opacity: 1;
}

/* NOTIFY ME */
#notify{
    display: none;
}
.notify{
    margin: 0;
    width: 250px;
    height: 50px;
    text-transform: uppercase;
    background-color: #000;
    color: #fff;
    padding: 12px 10px 5px 10px;
    border: 2px solid #000;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-weight: 700;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: fixed; 
    right: -100px;
    top: 50vh;
    z-index: 10;
    transition: 2s;
    z-index: 103;
}
.notify:hover{
    cursor:pointer;
}

.notifymodelshade{

  
}
.close-notify{
    width: 100vw;
    height: 100vh;
    position: fixed;
}
.notifymodel {
    position: fixed;
    z-index: 103;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    max-width: 560px;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 1px;
}

.notifytop{
    padding-left: 5px;
}
.notifymodel h5{
    font-size: 22px;
	font-weight: 400;
}
.notifymodel p5{
    font-weight: 300;
}
.small-print{
    opacity: 0.835;
    font-size: 12px;
    margin: auto;
}
.notifyfoot{
    text-align: center;
    margin-top: -10px
}
.closenotify{
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: none;
    color: #333;
}
.notiftyproduct{
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 5px;
	font-weight: 500;
}
.notifymodel hr{
    margin-top: 20px;
	width: 90%;
}
.notifybuttondiv{
    text-align: center;
}
.notifyme{
    width: 100%;
    margin-top: 5px;
    padding: 5px;
    background-color: #fff;
    color: #000;
	font-weight: 300;
    font-size: 18px;
    border: 1px solid #B76E79;
    border-radius: 2px;
}
.notifyme:focus{
	outline: none;
}

.add-to-cart{
    text-align: center;
    height: 46px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 2px;
    color: #000;
    padding: 10px 30px 10px 30px;
    width: calc(100% - 100px);
    transition: 0.4s ease-in;
    font-weight: 400;
    letter-spacing: .15385em;
    font-size: .8125rem;
}

.form-group button:focus{
	outline: none;
}

.form-group{
    text-align: center;
    display: table;
    border-collapse: separate;
    table-layout: fixed;
    width: 100%;
    font-size: 15px;
	margin-bottom: 10px;
}
.form-group button:active{
    background-color: #fff;
    border-color: #000;
}

.button.active button{
    background-color: #B76E79;
    color: #fff;
}
.btn:hover{
    cursor: pointer;
}
.btn-group{
    display: table-cell;
    float: none;
}
.emailbtn{
    padding: 5px;
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
    border-right: none;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    width: 100%;
    letter-spacing: 1px;
    font-weight: 100;
}
.emailbtn:visited{
    background-color: #F3F3F3;
}
.smsbtn{
    width: 100%;
    padding: 5px;
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
    border-left: none;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    letter-spacing: 1px;
    font-weight: 100;
}
.smsbtn:hover{
    background-color: #F3F3F3;
}
.emailbtn:hover{
    background-color: #F3F3F3;
}
.container{
    padding: 0;
}
#notifyinput{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #000;
    border-radius: 2px;
    height: 40px;
    padding-left: 10px;
}

#notifyinputnum{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid #000;
    border-radius: 2px;
    height: 40px;
    padding-left: 10px;
}

#notifyinput:focus{
    background-color: #eee;
    background-color: rgb(238, 238, 238);
    border: 1px solid #66afe9;
    outline: none !important;
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}
#notifyinputnum:focus{
    background-color: #eee;
    background-color: rgb(238, 238, 238);
    border: 1px solid #66afe9;
    outline: none !important;
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}

/* ENTER MODAL */
.modal__overlay{
    width: 100vw;
    margin: 0; 
    height: 100%; 
    overflow: hidden;
    top: 0;
    left: 0; 
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    

}

.modal__window{
    max-width: 500px;
	
    background: #fff;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgb(255 255 255 / 30%);
    text-align: center;
    padding-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
    margin: auto;
}

.modal__titlebar{

    background: #fff;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
    width: 80%;
    margin: auto;
}

.modal__title{

	max-height: 150px;
}

.eight{
    position: relative;
    color: #000;
    text-align: center;
    font-size: 18px;
    font-family: arial;
}
.modal__subtitle{
    color: #fff;
    font-size: 12px;
    display: flex;
    margin: auto;
}

.modal__close{
    background: #fff;
    padding:  6px 20px;
    color: #000;
    display: inline-block;
    font-size: 20px;
    border: 1px solid #000;
    border-radius: 0px;
    font-weight: 600;
}

.modal__enter{
    background: #000;
    padding: 6px 20px;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    border: 1px solid #000;
    border-radius: 0px;
    letter-spacing: 0.2px;
    font-weight: 600;
}


.modal__enter:hover .enterarrow{
        fill: #000;
} 
.modal__close:hover .exitarrow{
        fill: #fff;
} 

.modal__enter:hover{
    background: #fff;
    color: #000;
    transition: 0;
}
.modal__close:hover{
    background: #000;
    color: #fff;
    transition: 0;
}

.modal__content{
    padding-top: 15px;
    margin-bottom: -3px;
    text-align: center;
}
.modal__content p6{
    font-size: 20px;
    font-weight: 600;
}
.arrow1{
    height: 20px;
    display: none;
}

.arrow2{
    height: 12px;
    display: none;
}

.tac{
    font-size: 14px;
    padding-bottom: 5px;
    margin-top: 5px;
    background: transparent;
    border: none;
    color: blue;
}
.tac:focus{
    outline: none;
}
#more{
    display: none;
}
.border{
    padding: 10px;
}
.cen{
    text-align: center;
}

.terms{
    font-size: 13px;
    text-align: left;
    margin-bottom: 10px;
    padding: 1px;
}


/*Cart Modal*/
#sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
    transform: translateX(100%);
}

.cart-header {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-count {
  background: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #666;
}

.cart-items {
  flex: 1 1 0;
  overflow-y: auto;
  padding: 1rem;
  padding-top: 0;
  height: calc(100vh - 73px - 240px); 
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.item-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.item-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.item-header h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
    margin-top: auto;
  padding-right: 1rem; /* Prevent text from running into remove button */
}

.jcart-remove {
  color: #666;
  text-decoration: none;
  padding: 0;
  flex-shrink: 0;
    text-decoration: none;
}
.jcart-remove:hover{
    text-decoration: none;
    color: #666;
}
.item-subname {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}

.item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto; /* Push to bottom of item-content */
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: fit-content;
}

.quantity-btn {
  background: none;
  border: none;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  color: #666;
}
.quantity-btn:focus{
    outline: none;
}
.quantity-input:focus{
    outline: none;
}
.quantity-input {
  width: 35px;
  text-align: center;
  border: none;
  font-size: 0.875rem;
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.item-price {
  font-weight: 500;
}

.cart-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  border-top: 1px solid #eee;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05); 
height: 240px;
	 padding-bottom: calc(1rem + env(safe-area-inset-bottom));
 margin-bottom: env(safe-area-inset-bottom);
}

.cart-summary {
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  color: #666;
}

.summary-row.total {
  font-weight: 500;
  color: #000;
  font-size: 1.125rem;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-actions button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.btn-view-cart {
  background: #f5f5f5;
  color: #333;
}

.btn-checkout {
  background: #d6ab67;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cart-actions a{
	text-decoration: none;
}
.icon-lock {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.cart-empty {
  text-align: center;
  padding: 2rem;
  color: #666;
}
.cart-empty img{
	height: 40px;
	opacity: 0.6;
}

@media (max-width: 640px) {
  #sidebar {
    max-width: 100%;
  }
    .boxminip{
    height: 70px;
    width: 57px;
    }
}

/* Related Produucts */
.relatedproducts{
	width: 100%;
	text-align: center;
}
.moreflavour{
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-top: 40px;
	font-weight: 400;
	font-size: 25px;
	text-align: center;
    color: #182b43;
}

/* Footer */

/* Main Footer */
.footer {
    background-color: #ffffff;
    margin: 0 auto;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Footer Grid Container */
.footer-content {
    padding: 60px 48px 0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 10px;
}

.footer-column h3 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #6e6e73;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #d6ab67;
    transform: translateX(2px);
}

/* Newsletter Section */
.newsletter-section {
    max-width: 600px;
    text-align: center;
    padding: 24px;
    margin: 0 auto;
}

.newsletter-section h3 {
    font-size: 12px;
    font-weight: 600;
    color: #6e6e73;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.newsletter-section p {
    display: none;
}

.newsletter-form {
    display: flex;
    gap: 4px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid #d2d2d7;
    border-radius: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.newsletter-input:focus {
    outline: none;
    border-color: #d6ab67;
    box-shadow: 0 0 0 3px rgba(214, 171, 103, 0.1);
}

.newsletter-button {
    padding: 12px 28px;
    background-color: #d6ab67;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background-color: #ce9c4a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(214, 171, 103, 0.3);
}

/* Payment Methods */
.payment-section {
    text-align: center;
    padding: 32px 24px;
}

.payment-section h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6e6e73;
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-icon {
    display: inline-block;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Logo Section */
.footer-logo {
    text-align: center;
}

.footer-logo img {
    height: 120px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

/* Copyright */
.footer-bottom {
    text-align: center;
    padding-bottom: 4px;
    font-size: 12px;
    color: #ddd;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 24px 0px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .newsletter-section {
        padding: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-button {
        width: 100%;
    }

    .payment-methods {
        gap: 12px;
    }

    .footer-logo img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
}


/*Media Queries*/
@media(min-height: 1100px){
    nav{
        height: 150px;
    }
    .aulogo{
        height: 130px;
    }
    #lnks{
        font-size: 22px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .navcart{
        height: 40px;
    }
    .dropdown-content{
         top: 43px;
        min-width: 585px;
    }
    .dropdown-content::after{
        min-width: 585px;
    }
}
/*Media Queries*/
@media(min-height: 1100px) and (max-width: 1000px){
    .searchbutton{
        padding-bottom: 2px;
        height: 22px;
    }
    #lnks{
        font-size: 17px;
        margin-left: 12px;
        margin-right: 12px;
    }
    .dropdown-content{
        top: 36px;
        min-width: 455px;
    }
    .dropdown-content::after{
        min-width: 455px;
    }
}

/* nav shortening */
@media(max-width: 800px){
	.center{
		margin: auto;
		position: absolute;
		width: 100%;
	}
	.navlist{
		display: none;
	}
    .igetlogo{
        max-height: 70px;
        height: 70px;
    }
	.menuicon{
		height: 23px;
	}
	.newslettermodal{
		width: 80vw;
		left: 10vw;
		height: 70vw;
	}
	.closenotify{
		font-size: 20px;
	}
}

@media(min-width: 800px){
	.center{
		padding-left: 20px;
	}
	.menu{
		display: none !important;
	}
	.closeicon{
		display: none !important;
	}
	.menuicon{
		display: none !important;
	}
	.productbanner{

	}
}

/* Mobile view */



@media(max-width: 600px){
	.notifymodel{
		width: 95vw !important;
	}
	.rightcontainer{
		width: 95vw;
        margin: auto;
	}

}






@media(max-width: 900px){
	.notifymodel{
		width: 70vw;
	}
    .containerx{
        grid-template-columns: 100%;
    }
    .bottomcontainer{
        grid-template-columns: 100%;
        text-align: center;
    }
	.description{
		text-align: center;
		width: 70vw;
		margin: 10px auto;
	}
    .bottomcontainer ul{
        text-align: left;
        padding-left: 20px;
    }
    .hqdimg img{
        height: 500px;
    }
    .leftcontainer{
        margin: auto;
    }
     .leftcontainer img{
        height: 500px;
    }
    .rightcontainer{
        text-align: center;
		margin: auto;
    }
	.sdiv{
		margin: auto;
		text-align: center;
	}
	#payment-request-button{
		margin: auto;
		text-align: center;
	}
	.productimg{
		height: 80vw;
		width: auto;
	}
	#box .productimg{
		width: 80vw;
		height: 80vw;
	}
	#top{
		margin-top: 50px;
	}
	#box{
		margin: auto;
	}
	.leftcontainer{
		grid-template-columns: 0% 100%;
		width: 100%;
	}
	
	.miniboxdiv{
		float: left;
		margin-left: 10px;
	}
	.contactinfo{
		display: none;
	}
	.select {
		margin: auto;
	}
	.addqty{
		margin: auto;
	}
		.productbanner h2{
		font-size: 18px;
	}
}
@media (max-width: 450px) {
    .footerdiv {
        display: flex;
        flex-direction: column;
        width: 100vw;
        margin: auto;
    }

    .quicklinks, .information {
        width: 100%;
        margin: auto;
    }

    .footerdiv h6 {
        margin: 25px auto 5px auto;
        text-align: center;
    }
    
    .information h6:nth-child(3), .quicklinks h6:nth-child(3){
        margin-top: 25px;
    }
    .quicklinks h6:first-child{
        margin-top: 5px;
    }

    .footerdiv ul {
        text-align: center;
        padding: 0;
        width: 100%;
    }

    .newsinput {
        max-width: 65%;
        min-width: 65%;
        font-size: 12px;
        margin-left: 2.5%;
    }

    .newsubscribe {
        width: 30%;
        font-size: 8px;
    }
    .newsletter p6{
        font-size: 12px;
        opacity: 0.65;
    }
    .quicklinks     ul {
        display: flex;
        flex-direction: column-reverse;
    }
    footer{
        overflow: hidden
    }
    .navigation{
        font-size: 12px;
    }
    .description{
        width: 90vw;
        padding: 0;
        margin: 0;
    }

}
@media(max-width: 450px){
	.add{
		display: none;
	}
	.productimg{
		height: auto;
		width: 80vw;
	}
	#count{
		height: 15px;
		width: 15px;
		right: 5px;
		margin-top: 3px;
	}
	.menuicon{
		height: 23px;
	}
	.productbanner h2{
	font-weight: 400;
	font-size: 18px;
	}
	.productbanner p3{
		font-weight: 200;
		font-size: 16px;
	}
	.pimg{
		width: 100%;
		height: auto;
	}
	.leftcontainer img{
		height: auto;
	}
    .rightcontainer h1{
        font-size: 25px;
        font-weight: 300;
    }
    .product-price{
        font-size: 20px;
        font-weight: 200;
        opacity: 0.7;
    }
    .boxopt{
        display: none;
    }
    .value{
        margin-top: 10px;
    }
    .boxminip{
        height: 57px;
        width: 47px;
    }
    .miniboxdiv{
        margin: 5px;
    }
    .add-to-cart{
        font-size: 10px;
    }
}


@media(max-width: 700px){
	.whatsinheader{
		font-size: 27px;
		margin-top: 10px;
		margin-bottom: 20px;
	}
}
