@charset "utf-8";
/* 
Start Project 
Company Name: Eclick Softwares
Date: 24/10/2025
Time: 11:06PM
Project name: Chillbardelivery
Developer Name: rjStyle
CSS Document 
*/
@import url('https://fonts.googleapis.com/css2?family=Comforter+Brush&family=Gupter:wght@400;500;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root{
	--primaryFont: "Inter", sans-serif;
	--secondaryFont: "Gupter", serif;
    --specialFont: "Comforter Brush", cursive;
	--white-color: #ffffff;
	--black-color: #000000;
	--body-color: #7C7878;
	--nav-color: #ffffff;
	--heading-color: #000000;
	--primary-color: #800020;
	--secondary-color: #D4AF37;
	--primary-gradient: linear-gradient(110.43deg, #800020 12.45%, #D4AF37 84.61%);
	--linear-background: linear-gradient(180deg, rgba(255, 246, 230, 0.4) 50.03%, rgba(255, 246, 230, 0.4) 83.87%);;
	--primary-bg: #FEE8EE;
	--star-color: #FF9900;
    --danger-color: #ff0000;
	--gap-section: 10px;
	--box-shadow: 0px 6px 46px 0px #0000000F;
}
::selection{
    background: var(--primary-color);
}
@media only screen and (min-width: 1480px) {
    .container.containerOverride{
        max-width: 1470px;
        padding-inline: 0px 30px;
    }
    .container.fuild-container{
        max-width: 1630px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1479px) { 
    .container.fuild-container{
        max-width: 1240px;
    }  
}
body{
    overflow-x: hidden;
}
img {
	max-width: 100%;
}
[class*="chill-btn-"]{
    --size: 50px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    min-width: 150px;
    height: var(--size);
    font: 500 18px var(--primaryFont);
    line-height: var(--size);
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    padding: 0px 26px;
    border: none;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
[class*="chill-btn-"].sec-btn,
[class*="chill-btn-"]:hover{
    background: var(--secondary-color);
    color: var(--black-color);
}
[class*="chill-btn-"].sec-btn:hover{
    background: var(--black-color);
    color: var(--secondary-color);
}
[class*="chill-btn-"].sm {
	--size: 44px;
	font-size: 15px;
	min-width: 130px;
	padding: 0px 24px;
}
.btn_left, .btn_center {
    margin-top: 50px;
}
:is(.btn_left, .btn_center).sm {
    margin-top: 30px;
}
.btn_center {
    text-align: center;
}
/* Header Start */
.mainHeader {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
}
.mainHeader ul,
.nav_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gap-2 {
	column-gap: 10px;
}
.gap-4 {
	column-gap: 20px;
}
.logo {
	width: 148px;
	height: 154px;
    padding: 8px;
	display: grid;
	place-items: center;
	background: var(--white-color);
	border-radius: 0px 0px 24px 24px;
}
.logo img {
	max-width: 100%;
}
.nav_menu .menu_wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
        font: 600 20px / 1 var(--secondaryFont);
}
.nav_menu .menu-item {
	position: relative;
	z-index: 1;
}
.nav_menu a{
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.menu_wrapper > .menu-item > .menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--black-color);
    padding: 22px 18px;
    border-radius: 30px;
}
.menu_wrapper > .menu-item.active > .menu-link,
.menu_wrapper > .menu-item > .menu-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.nav_menu .submenu {
    position: absolute;
    top: calc(100% + 14px);
    background: linear-gradient(45deg, #800020, #80002082);
    width: 220px;
    margin-top: 16px;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.menu_wrapper > .menu-item:hover .submenu{
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.nav_menu .submenu::before {
    content: '';
    background: var(--primary-color);
    position: absolute;
    top: -14px;
    left: 8px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 20px;
    height: 14px;
}
.nav_menu .submenu a {
    padding: 10px 12px;
    display: block;
    color: var(--white-color);
    font-weight: 400;
    border-bottom: 1px solid #cccccc4a;
    font-size: 0.92em;
    position: relative;
    z-index: 1;
}
.nav_menu .submenu a::before{
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    z-index: -1;
    background: var(--secondary-color);
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.nav_menu .submenu a:hover{
    color: var(--black-color);
}
.nav_menu .submenu a:hover:before{
    width: 100%;
}
.nav_menu .submenu li:has( > a:empty) {
    display: none;
}
#searchForm {
	position: relative;
	z-index: 1;
	width: clamp(250px, 17vw, 320px);
}
#searchForm .form-control {
    padding: 0 30px;
    border-radius: 30px !important;
    border: none !important;
    color: #434242;
    /* box-shadow: 0px 4px 54px #58515117 !important; */
    height: 50px;
}
#searchForm .form-control::placeholder{
    color: #434242;;
}
#searchForm button {
    --size: 40px;
    border: none;
    outline: none;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 100%;
    width: var(--size);
    height: var(--size);
    font-size: 15px;
}
.header_right ul{
	display: flex;
	align-items: center;
	gap: 16px;
}
.header_right [class*="chill-btn-"]{
    min-width: auto;
    font-weight: 600;
}

/* common */
.heading, .title, .subheading, .subtitle {
    display: block;
    position: relative;
    z-index: 1;
    color: var(--heading-color);
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    font: 700 80px / 1 var(--secondaryFont);
    margin-bottom: 20px;
}
.title{
    font-size: 58px;
    border: none;
}
.subheading, .subtitle{
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 8px;
}
.subtitle{
    font-size: 20px;
}
:is(.heading, .subheading, .subtitle):last-child{
    margin-bottom: 0;
}
.heading span, .title span{
    color: var(--primary-color);
}
.cursiveFont {
    font-family: var(--specialFont);
    color: var(--primary-color);
    font-weight: normal;
    text-transform: lowercase;
}
.sectionArea{
	position: relative;
	z-index: 1;
	margin-block: 120px;
}
.stickyContent{
	position: sticky;
	top: 8px;
}
.rowGap{
	row-gap: var(--bs-gutter-x);
}
.section-content{
	max-width: 840px;
	margin-bottom: 60px;
}
.section-content:last-child{
    margin-bottom: 0;
}
.section-content.text-center{
	margin-inline: auto;
}
/* Banner */
.common_banner {
    position: relative;
    z-index: 1;
}
.banner_img{
    margin: 0;
}
.banner_img img {
    width: 100%;
}
.banner_text {
    position: absolute;
    inset: auto 0 40%;
    transform: translateY(50%);
    z-index: 2;
}
.banner_text-in {
    max-width: 760px;
    margin: 0 auto;
}
.banner_text-in .heading {
    font-size: 80px;
    line-height: 1.1em;
    color: var(--black-color);
    text-wrap: balance;
    text-align: center;
}
.addressBar {
	max-width: 650px;
	margin: 40px auto 30px;
}
.addressBar form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.infutField{
    width: 100%;
}
.addressBar .infutField .form-control {
    padding: 0 30px;
    border-radius: 30px !important;
    border: none !important;
    color: #434242;
    /* box-shadow: 0px 4px 54px #58515117 !important; */
    height: 50px;
    text-shadow: none;
    width: 100%;
}
#searchForm .form-control:is(:hover, :focus),
.addressBar .infutField .form-control:is(:hover, :focus){
    background: var(--white-color);
    box-shadow: 0 2px 8px 1px rgba(64,60,67,.24) !important;
}
.infutField .form-control::placeholder{
    color: inherit;
}
.banner_text-in .term_and_condition {
    text-align: center;
    margin: 0;
    font-size: 18px;
}
.term_and_condition a {
    color: inherit;
    text-decoration: underline;
}
.term_and_condition a:hover {
    color: var(--primary-color);
}

/* Products */
.productsArea{
    padding-block: 120px;
    background: var(--linear-background);
    position: relative;
    z-index: 1;
}
.owl-carousel.owl-drag.productCarousel .owl-item{
    border: none;
    margin-block: 0px;
    border-radius: 0;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
/* .owl-carousel.owl-drag.productCarousel .owl-item:hover{
    box-shadow: 0px 4px 34px 0px #00000008;
} */
.owl-carousel.owl-drag.productCarousel .item{
    height: 100%;
}
.owl-carousel.productCarousel .owl-item img{
    border-radius: 0;
}
.productBox .add_to_cart_new {
    --size: 36px;
    width: var(--size);
    height: var(--size);
    background: var(--primary-color);
    border-radius: 100%;
    padding: 6px;
    position: absolute;
    top: 8px;
    right: 12px;
    display: grid;
    place-items: center;
}
.add_to_cart_new img {
    width:  auto !important;
    filter: brightness(0) invert(1);
    max-width: 100%;
}
.productBox {
	min-height: 100%;
	background: var(--white-color);
	padding: 20px 0;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.product_text {
    padding: 24px 16px 0px;
    text-align: center;
}
.review_rating {
    font-size: 14px;
    color: #D9D3D4;
    margin: 0 auto 12px;
}
.review_rating .fa-solid {
    color: var(--primary-color);
}
.productBox .price {
    font: 700 20px / 1 var(--secondaryFont);
    color: var(--primary-color);
}
.productBox .price del {
    color: #D9D3D4;
}
.productCarousel  .owl-dots {
    text-align: center;
}
.productCarousel.owl-carousel .owl-dots .owl-dot {
    background: #D9D9D9;
}
.productCarousel.owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
}
/* How To Order */
.howtoOrder{
    position: relative;
    z-index: 1;
    padding: 90px 0px;
    background: url(../images/order-bg.png) no-repeat center / cover;
}
.orderStep {
	max-width: 1380px;
	margin-inline: auto;
}
.stepBox {
    color: #636262;
    font-family: var(--primaryFont);
    font-size: 15px;
    text-align: center;
}
.stepBox figure {
    height: 270px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.stepBox figure::after,
.callBox figure::after{
	content: '';
	position: absolute;
	top: 30%;
	left: 80%;
	background: url(../images/bent_arrow.png) no-repeat left / contain;
	width: 196px;
	height: 36px;
}
[class*="col-"]:nth-child(2n) .stepBox figure::after{
    transform: scaleY(-1);
}
[class*="col-"]:last-child .stepBox figure::after,
[class*="col-"]:last-child .callBox figure::after{
    display: none;
}
.stepBox [class*="chill-btn-"]{
    margin-top: 20px;
}
/* User Experience */
.userExperience {
    padding: 90px 0;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 18px;
}
.userExperience .section-content {
	max-width: 650px;
	position: relative;
	z-index: 1;
	padding-right: 30px;
}
.userExperience .section-content::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: calc(100% - 30px);
    background: url(../images/bent_line.png) no-repeat left / contain;
    width: 350px;
    height: 138px;
}
.userExperience .heading{
    color: inherit;
}
.mobileBox {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: end;
}
.mobileBox::after {
	content: '';
	position: absolute;
	bottom: -20px;
	background: url(../images/radial.png) no-repeat center;
	width: 130%;
	height: 24px;
	opacity: 0.2;
	filter: brightness(0);
	left: -5%;
}

/* Why People Choose Us */
.whyChooseUs{
    padding-block: 120px;
    background: var(--primary-bg);
    font-family: var(--primaryFont);
    color: #7C7878;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.beer_bottel{
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 270px;
}
.whyChooseUs-wrap {
	max-width: 1380px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(1, 7fr 6fr);
	gap: 80px;
}
.chooseImg {
    position: relative;
    z-index: 1;
}
.chooseImg img:not(:first-child) {
	position: absolute;
	bottom: -50px;
	right: -50px;
	z-index: 1;
}
.whyChooseUs-wrap .title {
    font-size: 120px;
}
.whyChooseUs-wrap .title span {
    font-size: .5em;
    display: block;
}
.usp ul{
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 400;
}
.usp li:not(:last-child){
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.usp p:last-child {
    margin: 0;
}
.usp .usp_top{
    display: flex;
    align-items: start;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--black-color);
    margin-bottom: 20px;
}
.usp_top img{
    max-width: 32px;
    flex-shrink: 0;
}
/* Call to Action Start */
.calltoAction{
    padding-block: 120px;
}
.calltoWrap {
    max-width: 1380px;
    margin-inline: auto;
}
.callBox {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #7C7878;
    font-family: var(--primaryFont);
    font-size: 16px;
}
.callBox .subheading {
    font-size: 30px;
    margin-bottom: 12px;
    max-width: 80%;
    margin-inline: auto;
}
.callBox figure::after {
	width: 257px;
	height: 46px;
}
/* Call to Action Ends */

/* Meili Vodka Start */
.meili_vedka {
    padding: 50px 0;
    color: #918D8D;
    font-size: 18px;
    font-family: var(--primaryFont);
    min-height: 470px;
    display: grid;
    align-content: center;
}
.meili_vedka .section-content {
    max-width: 670px;
}
.meili_vedka .section-content p{
    mix-blend-mode: difference;
}

/* Footer Start */
.mainFooter{
    padding: 120px 0px 20px;
    position: relative;
    z-index: 1;
    font-family: var(--primaryFont);
    font-size: 16px;
}
.mainFooter::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	background: url(../images/footer-bottle.png) no-repeat bottom right / contain;
	width: 110px;
	height: 300px;
}
.footerRow {
    display: grid;
    grid-template-columns: repeat(1, 4fr 3fr 3fr 3fr 3fr);
    padding-left: 30px;
    column-gap: 24px;
}
.mainFooter .download_app img {
	width: 190px;
}
.mainFooter ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footerColumn {
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
}
.footerColumn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, .1);
}
.footer-about {
    font-size: 18px;
    font-family: var(--secondaryFont);
    font-weight: 500;
}
.footerLinks {
    max-width: max-content;
    margin-inline: auto;
}
.footerColumn:first-child:after {
    display: none;
}
.footerTitle {
    font: 700 24px / 1 var(--secondaryFont);
    color: var(--black-color);
    margin-bottom: 24px;
}
.fnav a {
    color: #504B4B;
    padding: 6px 0;
    display: block;
}
.fnav a:hover {
    color: var(--primary-color);
}
.contact-info li a {
    color: #504B4B;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-info li a i {
    font-size: 1.1em;
    color: var(--primary-color);
    margin-top: 2px;
}
.social {
    display: flex;
    align-items: center;
    gap: 8px;
    --size: 32px;
    --font: 12px;
    margin-top: 24px;
}
.social a i {
    display: grid;
    place-items: center;
    width: var(--size);
    height: var(--size);
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 100%;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.social a:hover i {
    transform: rotate(360deg);
}
.copyright .d-flex {
    border-top: 1px solid rgba(0, 0, 0, .1);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.9em;
}
.policyLink {
    display: flex;
    align-items: center;
}
.policyLink li {
    position: relative;
    z-index: 1;
    display: flex;
}
.policyLink li:not(:first-child)::before {
    content: '||';
    display: block;
    margin: 0 12px;
}
.copyright a {
    color: var(--black-color);
}
.copyright a:hover {
    color: var(--primary-color);
}
/* .login, .signup 
{
    display: none;
} */