:root {
    --banner-height: 80vh;
    --banner-min-height: 400px;
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

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: top 0.3s ease-in-out;
}
#banner{
    margin-top: 150px;
}

#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;
}

        .banner {
            position: relative;
            width: 100%;
            height: var(--banner-height);
            min-height: var(--banner-min-height);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
        }
        
        .banner__media {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        /* Updated CSS for background image approach */
        .banner__media.poster {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: opacity 0.5s ease;
        }
        
.banner__media.video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Same as background-size: cover */
    object-position: center;
    /* Remove the positioning stuff */
}
        
        .banner__content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 90%;
            padding: 2rem;
            opacity: 0;
            align-self: flex-end;
            animation: fadeInUp 1.2s ease-out 0.5s forwards;
   transform: translateY(30px);
        }

        .banner__content::before {
            content: '';
            position: absolute;
            inset: -1rem;
        
            border-radius: 5px;
            z-index: -1;
        }

        .banner__content a{
            text-decoration: none;
        }

        .banner__title {
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .banner__button {
            display: inline-block;
            padding: 0.75rem 2rem;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            color: #000;
            background: white;
            border: 2px solid white;
            border-radius: 6px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .banner__button:hover {
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        .video-ready .banner__media.poster {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .ios-device .banner__media.video {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .interaction-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            background: transparent;
            pointer-events: all;
            display: none;
        }

        .ios-device .interaction-overlay.active {
            display: block;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --banner-height: 70vh;
                --banner-min-height: 350px;
            }
            
            .banner__content {
                padding: 1.5rem;
            }
            
            .banner__button {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            :root {
                --banner-height: 72.5vh;
                --banner-min-height: 300px;
            }
            
            .banner__content {
                padding: 1rem;
            }
        }

/* 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 {
  padding-top: 30px;
  transition: padding-top 0.3s ease-in-out;
}

body.no-banner {
  padding-top: 60px;
}

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;
}
.navlist {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 3;
    
}

.navlist > * {
    flex-shrink: 0; /* Prevents flex items from shrinking */
    white-space: nowrap; /* Prevents text in children from wrapping */
}

        .navlist.hidden {
            opacity: 0;
            visibility: hidden;
            transform: translate(-50%, -50%) scale(0.95);
        }

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


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


/*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;
    margin-top: 150px;
}
.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;
}
/* Cigar*/
.cigardiv{
	overflow: hidden;
    	width: 100%;
	height: 500px;
	
}

.cigarimgdesk{
	position: relative;
	width: 100%;
	height: 500px;
	z-index: 2;
	background-position: center;
	background-size: 100% auto;
	transition: background-size 1.2s ease-in-out;
}
body.loaded .cigarimgdesk {
    background-size: 107% auto;
}
.titleoverlay{
    display: block;
    text-align: center!important;
	z-index: 3;
	position: relative;
	top: -400px;
	margin-bottom: -140px;
	padding-bottom: 20px;
}
.titleoverlay {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.titleoverlay h2{
	font-size: 50px;
    letter-spacing: 2px;
    font-weight: 400;
	color: #fff;
    margin-bottom: 20px;
    opacity: 0.95;
}
.titleoverlay button{
	width: 170px;
	height: 45px;
	background-color: #fff;
	border: 2px solid #fff;
	text-transform: uppercase;
	font-size: 14px;
	opacity: 0.8;
	transition: 0.5s ease-out;
	font-weight: 300;
    letter-spacing: 2px;
    color: #000;
}
.titleoverlay a{
    color: #000;
    text-decoration: none;
}
.titleoverlay button:hover{
	opacity: 1;
}
body.loaded .titleoverlay {
    opacity: 1;
    transform: translateY(0);
}
/* Cuban Brands */
.carousel-cell p{
	font-weight: 400;
    font-size: 20px;
    letter-spacing: 1.5px;
	white-space: nowrap
}


/* Flickity */
.carousel.first{
	opacity: 0;
    transition: 0.8s 0.2s;
}
.carousel {
	background: #fff;
	margin-top: 20px;
	margin-bottom: 20px;
	z-index: 0;
    transform: translateY(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
body.loaded .carousel.first{
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s 0.2s;
}

.carousel a{
	color: #000;
	text-decoration: none;
}
.carousel-cell {
  width: 20%;
  margin-right: 10px;
  background: #fff;
    text-align: center;
}
.carousel-cell-image{
    margin-bottom: 10px;
    height: 100%;
    width: 100%;
	max-height: 250px;
	max-width: 250px;
    width: 80%;
}


.allimg{
    height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    position: relative;
}
.allimg img{
    position: absolute; /* Position the image absolutely within its container */
    top: 0; /* Position the image at the top */
    left: 8%; /* Position the image at the left */
    width: 84%; /* Ensure the image fills its container */
    height: 84%; /* Ensure the image fills its container */
    object-fit: contain; /* Maintain aspect ratio without stretching */
}
.meta-image{
    opacity: 1;
    z-index: 2;
}
.meta-image.gold{
    top: 2% !important;
    height: 80% !important;
    width: 80% !important;
    left: 10% !important;
    position: absolute;
    z-index: 1;
}

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

/* When it's in viewport, change its state */
@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;
	}
}
@keyframes fadeInScale {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.second .carousel-cell {
    opacity: 0;
}
.second .carousel-cell.animate {
    animation: fadeInScale 0.8s ease-out forwards;
}
/* Show cells beyond 5 by default */
.second .carousel-cell:nth-child(n+6) {
    opacity: 1;
}
/* fade in lazy loaded image */

/* Gridsplay */
.gridsplay{
    opacity: 0;
    transition: opacity 1.8s ease-in;
	display: grid;
	grid-template-columns: 40% 60%;
}
body.loaded .gridsplay{
    opacity: 1;
}
.gridsplay div:nth-child(2){
	padding: 30px;
	text-align: left;
	margin: auto;
}
.gridsplay div:nth-child(1){
	margin: auto;
	text-align: center;
	padding-left: 30px;
}
.gridsplay h2{
	letter-spacing: 2px;
	font-weight: 400;
}
.gridsplay img{
	width: 100%;
}
.cigardesktop{
	display: none;
}
/* best seller */
.bestsell{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
	max-width: 100vw;
    overflow-x: hidden;
}
.bestsell p4{
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
    font-weight: 400;
          display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bestsell p5{
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
    font-weight: 600;
    
      display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bestsell a{
	text-decoration: none;
	color: #000;
}
.bestsellers{
	display: grid;
	grid-template-columns: 25% 25% 25% 25%;
	max-width: 1000px;
	margin: auto;
}

/* FLICKER BESTSELLING */
.bestselling{
	max-width: 1000px;
	margin: auto;
}
.best-cell{
	width: 25%;
}
.bestselling div{
	padding: 10px;
}
.bestselling img{
	height: auto;
		width: 100%;
}



.bestsellers div{
	padding: 10px;
}
.bestsellers img{
	height: auto;
		width: 100%;
}


.shopnow, .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;

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

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

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

.shopnow:hover{
    color: #fff;
}
.addtocart:hover {
    color: #fff;
}



.pipetobacco{
	margin-top: 40px;
	margin-bottom: 50px;
	display: grid;
	grid-template-columns: 50% 50%;
}
.pipetobacco h3{
	text-transform: uppercase;
	letter-spacing: 2px;
}
.pipetobacco div:first-child{
	padding: 20px;
}
.pipetobacco div{
	display: flex;
	flex-direction: column;

	justify-content: center;
}
.pipeimg{
	max-height: 400px;
	width: 100%;
	max-width: 400px;
	margin-left: auto;
}
.pipetobacco div:last-child span{
	max-width: 500px;
	margin-right: auto;
	padding: 10px;
	text-align: left;
}
.pipetobacco div:last-child button{
	width: 40%;
	min-width: 140px;
	height: 40px;
	max-width: 300px;
	background-color: #fff;
	border: 1px solid #ccc;
	font-size: 12px;
	letter-spacing: 2px;
}

@media(max-width: 700px){
	.pipetobacco h3{
		font-size: 24px
	}
	.pipetobacco p{
		font-size: 14px;
	}
	.pipetobacco div:first-child{
		padding: 10px;
	}
}


@media(max-width: 800px){
	.bestsellers img{
	height: auto;
		width: 100%;
	}
	.bestsellers div{
padding: 10px;
	}
		.bestsell{
		margin-top: 0;
		margin-bottom: 0;
	}
}
@media(max-width: 600px){
	.bestsellers{
	grid-template-columns: 50% 50%;
	}
	.best-cell{
		width: 50%;
	}
	.bestsellers div{
		padding: 0 20px;
	}
}


/* Boxes */
.gridbox{
	display: grid;
	grid-template-columns: 50% 0% 50%;
	text-align: center;
		max-width: 100%;
	height: 700px;
clip-path: polygon(0 15%, 50% 0, 100% 15%, 100% 85%, 50% 100%, 0 85%);
	max-width: 1400px;
	margin: auto;
}
.gridbox div{
overflow: hidden;
}
.gridbox a{
	text-decoration: none;
}
.gridbox h3{
	color: #fff;
	font-weight: 400;
	letter-spacing: 1px;
}
.gridbox button{
	background-color: #fff;
	padding: 5px 20px;
	border: 1px solid transparent;
	border-radius: 30px;
	color: #3D3D3D;
}
.auc{
	position: relative;
	height: 150px;
	padding: 5px;
	width: 150px;
	border: 1px solid transparent;
	border-radius: 10px;
	right: 75px;
	top: calc(50% - 75px);
	background-color: #fff;
box-shadow:5px 5px 10px rgba(0, 0, 0, 0.5);
	z-index: 3;
}
.box{
	height: 700px;
	margin: auto;
    display: flex;
	width: 100%;
    align-items: center;
    justify-content: center;
	position: relative;
	background-position: center;
	transition: transform 0.3s ease-in-out;
	overflow: hidden;
}
.box.one{
	background-image: url(../imgs/accessories.webp);
	background-size: cover;
	position: relative;
clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
	z-index: 2;

}
.box.one:hover{
transform: scale(1.1);
}
.box.two{
	background-image: url(../imgs/limited.webp);
	background-size:cover;
	clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
		position: relative;

}
.box.two:hover{
	transform: scale(1.1);
}
@media(min-width: 1000px){
	.box h3{
	font-size: 38px;
}
	.box button{
		font-size: 20px;
	}
}

@media(min-width: 1500px){
	.gridbox{
	height: 900px;
}
		.box{
	height: 900px;
}
		.box h3{
	font-size: 45px;
}
	.box button{
		font-size: 24px;
	}
}
@media(max-width: 900px){
	.gridbox{
	height: 500px;
}
		.box{
	height: 500px;
}
	.auc{
		height: 100px;
		width: 100px;
			right: 50px;
	top: calc(50% - 50px);
		border-radius: 7px;
	}
}
@media(max-width: 720px){
		.auc{
		height: 80px;
		width: 80px;
			right: 40px;
	top: calc(50% - 40px);
		border-radius: 7px;
	}
	.box div{
		width: 65%;
	}
	.box h3{
		font-size: 27px;
	}
}
@media(max-width: 450px){
		.auc{
		height: 70px;
		width: 70px;
			right: 35px;
	top: calc(50% - 35px);
		border-radius: 7px;
	}
	.box button{
		font-size: 14px;
	}
		.box div{
		width: 80%;
	}
	.box.one div{
		margin-right: auto;
		margin-left: 5px;
	}
		.box.two div{
		margin-left: auto;
				margin-right: 5px;
	}
}
@media(max-width: 600px){
		.gridbox{
	height: 350px;
}
	.box{
	height: 350px;
}
}
@media(max-width: 450px){
	.box{
	height: 320px;
}
	
}
@media(max-width: 500px){
	.box h3{
	font-size: 23px;
}
}

@media(min-width: 1200px){
	.bestsell h3{
		font-size: 40px;
	}
	.bestsell p3{
		font-size: 20px;
	}
	.bestsellers{
			max-width: 1300px;
	}
	.bestsellers p4{
		font-size: 22px;
	}
	.bestsellers div{
		padding: 20px;
	}
	.gridbox{
		margin-top: 10px;
		margin-bottom: 10px;
	}
}
/* Swiper */
.slidesdiv{
	display: grid;
	grid-template-columns: 50% 50%;
	margin-top: 10px;
	margin-bottom: 50px;

}
.slidesdiv div:last-child{
	padding: 20px;
	margin: auto auto auto 0;
	max-width: 600px;
}
.slidesdiv img{
	height: auto;
	width: 100%;
}
/* Newsletter */
#notify{
	visibility: hidden;
	opacity: 0;
    transition: opacity .25s ease-in;
	z-index: 9999;
}
.newslettermodal{
	position: fixed;
	top: calc(50% - 300px);
	left: calc(50% - 300px);
	border: 2px solid #fff;
	border-radius: 10px;
	z-index: 20;
	width: 635px;
	height: 555px;
	background-image: url(../imgs/notification-desktop.webp);
	background-color: #fff;
	background-size: 100%;
    background-position: bottom;
	background-repeat: no-repeat;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.3);
}
.newoverlay{
	height: 340px;
	width: 340px;
	border: 1px solid transparent;
	border-radius: 500px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    padding-bottom: 20px;
}
.closenotify{
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    background-color: transparent;
    color: #B76E79;
}
.newstitle{
	width: 635px;
	text-align: center;
	background-color: transparent;
}

.newstitle h4{
	font-size: 48px;
	padding-bottom: 0px;
	letter-spacing: 1px;
	color: #B76E79;
	margin-bottom: 2px;
	font-weight: 500;
	overflow: visible;
	width: 100%;
	font-family: "Times New Roman", Times, serif;
}
.newstitle div{
	width: 70%;
	margin: auto;
	margin-bottom: 15px;
}
.newoverlay p4{
	color: #bcbcbc;
	letter-spacing: 0.5px;
	background-color: #fff;
	padding-top: 2.5px;
	padding-bottom: 2.5px;
}
.noti{
	width: 80%;

}
.notifybuttondiv{
    text-align: center;
	
}
.notifyme{
    width: 55%;

	border-radius: 0px;
    margin-top: 5px;
    padding: 10px 0px;
    background-color: #B76E79;
    color: #fff;
    font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
    border: 1px solid #B76E79;
	font-weight: 200;
}
.value{
	margin-top: 20px;
	position: absolute;
	width: 200px;
	right: calc(50% - 100px);
	font-size: 12px;
}

.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: #B76E79;
}

.button.active button{
    background-color: #B76E79;
    color: #fff;
	border: 2px solid B76E79;
}
.btn-group{
    display: table-cell;
    float: none;
}
.emailbtn{
    padding: 5px;
    background-color: #fff;
    color: #B76E79;
    border: 1px solid #B76E79;
    border-right: none;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    width: 100%;
    letter-spacing: 1px;
    font-weight: 200;
	font-size: 18px;
}
.emailbtn:visited{
    background-color: #F3F3F3;
}
.emailbtn:focus, .smsbtn:focus {
    outline: none;
}
.smsbtn{
    width: 100%;
    padding: 5px;
    background-color: #fff;
    color: #B76E79;
    border: 1px solid #B76E79;
    border-left: none;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    letter-spacing: 1px;
    font-weight: 200;
		font-size: 18px;
}
.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: 2px solid #B76E79;
	color:  #B76E79;
    border-radius: 3px;
    height: 40px;
    padding-left: 10px;
	font-size: 18px;
}
#notifyinput:focus{
    background-color: #fff;
    border: 2px solid #B76E79;
    outline: none !important;
    border-color: #B76E79;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(183, 110, 121, 1);
}


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

/* 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*/
/* Default (smallest screens) */
.cigarimgdesk {
     background-image: url('../imgs/aucigars-australia_daxrsb_c_scale,w_300.webp');
	background-position: top;
}

@media (min-width: 830px) {
    .cigarimgdesk {
        height: 578px;
    }
    .cigardiv{
        height: 578px;
    }
}
@media (min-width: 870px) {
    .cigarimgdesk {
        height: 600px;
    }
    .cigardiv{
        height: 600px;
    }
}
@media (min-width: 980px) {
    .cigarimgdesk {
        height: 650px;
    }
    .cigardiv{
        height: 650px;
    }
}



/* For devices with a width of at least 320px (covers up to 775px) */
@media (min-width: 337px) {
    .cigarimgdesk {
        background-image: url('../imgs/aucigars-australia_w_450.webp');
		background-position: top;
    }
    .titleoverlay{
        top: -300px;
    }
}
@media (min-width: 450px) {
    .cigarimgdesk {
        background-image: url('../imgs/aucigars-australia_daxrsb_c_scale,w_600.webp');
		background-position: top;
	
    }
}
@media (min-width: 660px) {
    .cigarimgdesk {
        background-image: url('../imgs/aucigars-australia_daxrsb_c_scale,w_970.webp');
		background-position: top;

    }
    .titleoverlay{
      top: -300px;
    }
    .titleoverlay h2{
        font-size: 40px;
    }
}
/* For devices with a width of at least 776px (covers up to 1110px) */
@media (min-width: 776px) {
    .cigarimgdesk {
        background-image: url('../imgs/aucigars-australia_daxrsb_c_scale,w_1111.webp');
        height: 550px;
    }
    .cigardiv{
        height: 550px;
    }
    .titleoverlay h2{
        font-size: 50px;
    }
}
/* For devices with a width of at least 1111px (covers up to 1378px) */
@media (min-width: 1111px) {
    .cigarimgdesk {
        background-image: url('../imgs/aucigars-australia_daxrsb_c_scale,w_1379.webp');
        height: 700px;
    }
    .cigardiv{
        height: 700px;
    }
    .titleoverlay{
        top: -400px;
    }
}

/* For devices with a width of at least 1379px (covers up to 1727px) */
@media (min-width: 1379px) {
    .cigarimgdesk {
        background-image: url('../imgs/aucigars-australia_daxrsb_c_scale,w_1728.webp');
        height: 725px;
    }
    .cigardiv{
        height: 725px;
    }
}

/* For devices with a width of at least 1728px (covers up to 2024px) */
@media (min-width: 1728px) {
    .cigarimgdesk {
        background-image: url('../imgs/aucigars-australia_daxrsb_c_scale,w_2025.webp');
        height: 950px;
    }
    .cigardiv{
        height: 950px;
    }
}

/* For devices with a width of at least 2025px (and upwards) */
@media (min-width: 2025px) {
    .cigarimgdesk {
        background-image: url('../imgs/aucigars-australia_daxrsb_c_scale,w_2048.webp');
        height: 1050px;
    }
    .cigardiv{
        height: 1050px;
    }
}



@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(max-height: 1100px){
    #banner {
        margin-top: 120px;
    }
    .menu{
        margin-top: 120px;
    }
}
/*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;
	}
	.menuicon{
		height: 23px;
	}
	.newslettermodal{
		width: 80vw;
		left: 10vw;
		height: 70vw;
        top: calc(50% - 40vw);
    
	}
	.newstitle{
		width: 80vw;
	}

	.gridbox{
		grid-template-columns: 50% 0% 50%;
	}
    .navcart{
        height: 30px;
    }
}

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

}

/* Mobile view */
@media(max-width: 450px){
	.menuicon{
		height: 23px;
	}
	.quicklinks{
    padding-left: 20px;
	width: 50vw;
}
	.information{
		width: 50vw;
	}
	.hide{
		display: none;
	}
}
@media(max-width: 450px){
		.quicklinks{
		padding-left: 10px;
	}
	.footerdiv {
    display: flex;       /* Use flexbox layout */
    flex-direction: column; /* Arrange children vertically */
}

    .quicklinks, .information {
        width: 100%;    
        text-align: center/* Take up full width of parent */
    }	
	.subscribebtn{ 
		width: 100%;
	}
	.newsinput{
		max-width: 65%;
		min-width: 65%;
		font-size: 12px;
		margin-left: 2.5%;
	}
	.newsubscribe{
		width: 30%;
				font-size: 8px;
	}
        .quicklinks     ul {
        display: flex;
        flex-direction: column-reverse;
    }
        .newsletter p6{
        font-size: 12px;
        opacity: 0.65;
    }
    .banner-container p{
        font-size: 11px;
        
    }
}



/* Main Image */
@media(max-width: 760px){

	
}
@media(min-width: 760px){
	.cigarimgdesk{
		background-position: top;
	}
}

@media(max-width: 617px){
	.cigardiv{
		height: 450px;
	}
	.titleoverlay h2{
		font-size: 40px;
	}
	.newslettermodal{
        left: 3.5vw;
		background-image: url(../imgs/notification-mobile.webp);
		width: 93vw;
		height: 43vh;
        border-radius: 2px;
	}
	.newstitle{
		width: 96vw;
	}
	.newstitle h4{
		font-size: 8vw;
		color: #B76E79;
		margin-bottom: 0;
	}
	.newoverlay{
		width: 80%;

	}
	.modal__content p6{
        font-size: 15px;
	}
	.value{
		font-size: 10px;
		margin-top: 10px;
	}
	.newstitle p4{
		font-size: 12px;
		line-height: 12px;
	}
	.newstitle div{
		margin-bottom: 5px;
		line-height: 20px;
	}
    .carousel{
        margin-top: 10px;
    }
    .gridsplay div:last-child{
        padding-top: 10px;
    }
}

/* Brands Banner */
@media(min-width: 1020px){
    .gridsplay{
        grid-template-columns: 30% 70%;
    }

}

@media(min-width: 1600px){
	.cigarmobile{
		display: none;
	}
	.cigardesktop{
		display: inline;
        
	}
       .gridsplay{
        grid-template-columns: 40% 60%;
    }
}
@media(min-width: 750px){
		.cigarmm{
		display: none;
	}

}
@media(max-width: 750px){
	.gridsplay h1{
		font-size: 32px;
	}
	.gridsplay{
		display: inherit;
	}
	.gridsplay div:nth-child(2){
		text-align: center;
	}
	.mobile{
		display: none;
	}
	.cigarmobile{
		display: none;
	}
	.cigardesktop{
display: none;
	}
	.cigarmm{
		display: inherit;
	}
	.carousel{
		margin-bottom: 0;
	}
}
@media(max-width: 540px){
    #mobile{
        display: none;
    }
    .titleoverlay h2{
        font-size: 35px;
    }
    .cigarimgdesk{
        background-position: top;
    }
}
@media(max-width: 365px){
    	.cigardiv{
		height: 420px;
	}
    .banner-container p{
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    #close-banner{
        right: 5px;
    }
}