@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Outfit:wght@100..900&family=Rowdies:wght@300;400;700&display=swap');
:root{
	--pink:#FD85B2;
    --pink2:#fe6787;
	--pitch:#fcf3f5;
	--red:#E34F4D;
    --green:#39a0a7;
	    --wdtAccentTxtColorRgb: 255, 255, 255;
}
/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}


body {
	font-family:'Outfit','Nunito Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 22px;
	font-weight:400;
    color: #000;
    background: var(--pitch);
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}
.clear:after { clear:both;}

.clear {*zoom:1; clear:both;}

img {max-width:100%;}

.banner-fit { height:560px; object-fit:cover; }

a {	color:#444;	text-decoration:none;}

a:hover {text-decoration:none;}

a:focus {outline:0;text-decoration:none;}

a:hover, a:active {	outline:0;}

input:focus, textarea:focus, button:focus {	outline:0;	border:0;}

ul,li {list-style-type:none;margin:0;padding:0}

h1, h2, h3, h4, h5, h6{
	margin-bottom:0;
    font-family: "Rowdies", sans-serif;
	color: #000;
}
/*------------------------------------*\
    TYPOGRAPHY
\*------------------------------------*/

.text-pink{color: var(--pink);}
.text-pink2{color: var(--pink2);}
.text-red{color: var(--red);}

.bg-pink{background: var(--pink); }
.bg-red{background: var(--red); }
.bg-pitch{background: var(--pitch); }
.bg-pink2{background: var(--pink2); }


h1        {	    font-size: 42px;	line-height: 48px;}
h2 ,.fs-30{	    font-size: 30px;	line-height: 36px;}
h3        { 	font-size: 24px;	line-height: 28px;}
h4,.fs-20 {		font-size: 20px;    line-height: 24px;}
h5,.fs-18 {		font-size: 18px;    line-height: 22px;}
h6,.fs-16 {		font-size: 16px;	line-height: 20px;}
.fs-16    {		font-size: 16px;	line-height: 20px;}
.fs-14    {		font-size: 14px;	line-height: 18px;}
.fs-12    {		font-size: 12px;	line-height: 14px;}

.btn1{
	display: inline-block;
    padding: 12px 28px;    
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    transition: all .3s ;    
	border-radius:8px;
    text-transform: capitalize;
    color: #fff;
	background: var(--green);
	border:2px solid var(--green);
	border-radius:25px;
    text-align: center;
}

.btn1:hover{
    background: var(--pink2);
    border-color: var(--pink2);
}

.btn2{
	display: inline-block;
    padding: 12px 28px;    
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    transition: all .3s ease-in;    
	border-radius:8px;
    text-transform: capitalize;
    background: #fff;
	color: var(--green);
	border:2px solid var(--green);
	border-radius:25px;
    text-align: center;
}

.btn2:hover{
    background: var(--green);
    color: #fff;
}



/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* wrapper */
.container{

}
/* header */
.header {

}

.pro-count-wrap i{
    font-size: 40px;
}

.pro-count{
    padding-bottom: 5px;
}

.cart-item img{
    width: 60px;
    height: 60px;
    border-radius: 4px;
}

.pro-add-btn {
    max-width: 120px;
}

.offcanvas-body::-webkit-scrollbar{
    display: none;
}

/* logo */


/* nav */


/* footer */
.footer{
    background-image: linear-gradient(90deg, rgb(var(--wdtAccentTxtColorRgb), 0.08) 50%, rgb(var(--wdtAccentTxtColorRgb), 0) 50%);
    background-repeat: repeat-x;
    background-size: clamp(3.125rem, 2.5rem + 3.125vw, 6.25rem) 100%;
    height: calc(100% + 40px);
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/
.banner-content {
    z-index: 1;
    background: radial-gradient(#0000001f, #ffffff00);
}
.banner-content h1{
    text-shadow: 0 0 15px #000;
}
.pro-rating i{
    color: var(--pink2);
}
.pro-thumb img{
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #fff;
}

.product-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pro-content .btn1 {
    margin-top: auto;
}
.pro-content {
    flex-grow: 1;
    display: flex
;
    flex-direction: column;
}

.product-item:hover{
    box-shadow:  0 0 5px #d1d1d1;
}

.product-item:hover .pro-normal{
    opacity: 0;
}

.product-item .pro-hover{
    opacity: 0 ;
    transition: all .3s;
}

.product-item:hover .pro-hover{
    opacity: 1;
    transform: scale(.9);
}

ul#product_tab li button {
    margin-bottom: 0;
    border: 0;
}

ul#product_tab {
    border-bottom: 1px solid #e34f4d4d;
}

#product_tab.nav-tabs .nav-link{
    color: #000;
    background: #fff;
}

#product_tab.nav-tabs .nav-link.active{
    background:var(--red);
    color: #fff;
}

.pagination .page-item{
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item.current{
    background: var(--red);
    color: #fff;
}

.pro-summary .pro-rating{
    background: #f6dce0;
}

span.promocode {
    border: 3px dashed;
}

.pro-shipping-option {
    background: #f6dce0;
    border: 1px solid var(--pink2);
}

.pro-bag-size  .form-select{
    background-color: transparent;
    border: 1px solid var(--red);
    border-radius: 0 5px  5px 5px;
}

.pro-bag-size p{
    border-radius: 5px 5px 0 0 ;
}

.best-seller{
   /* background: #f6dce0;*/
    border: 1px solid var(--pink2) !important;
} 

.bestseller-item {
    border: 1px solid #fae8e8;
}

.bestseller-item .btn1{
    font-size: 14px;
    line-height:16px;
    border: 0;
    padding: 8px 15px;
}

.product-slider .owl-nav {
    width: 100%;
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}

.product-slider.owl-theme .owl-nav button {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    background: #ffffff7d;
    backdrop-filter: blur(12px);
    color: var(--red);
    border:1px solid var(--red)
}

.product-slider.owl-theme .owl-nav button:hover{
    background: var(--red);
    color: #fff;
}

.product-thumb-img  img{
    height: 130px;
    object-fit: cover;
    border:2px solid #000;
    border-radius: 5px;
    cursor: pointer;
}

.current .product-thumb-img img{
    border: 2px solid var(--red);
}

.pro-feature-select{
    border: 1px solid var(--red);
    border-radius: 0 5px  5px 5px;
    height: 480px;
    overflow: auto;
}

.pro-feature-title{
    border-radius: 5px 5px 0 0;
}

.feature-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid transparent;
}

.feature-list{
    padding: 0 15px;
}

.feature-list span {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 1px solid #000;
    background: #fff;
    display: inline-flex;
    border-radius: 50%;
    justify-content: center;
    line-height: 26px;
}

span.fea-vegan {
    background: yellow;
}

span.fea-gluten {
    background: #ff0000;
}

span.fea-halal {
    background: #444;
    color: #fff;
}

span.fea-v {
    background: green;
    color: #fff;
}

.feature-item label{
    cursor: pointer;
}

.feature-item input:checked ~ label .feature-img img{
    border: 2px solid #000;
}


.checkout-pro-img{
    height: 80px;
    width: 80px;
    border-radius: 5px;
    object-fit: cover;
    min-width: 80px;
}


/*------------------------------------*\
    FORM
\*------------------------------------*/

.form-select:focus {
    border-color: #e34f4d;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(227 79 77 / 14%);
}

.form-radio {
    width: 20px;
    height: 20px;
    accent-color: var(--red);
}

.custom-form .form-control {
    background-color: #fcf3f5;
    border: 1px solid #e34f4d57;
    padding: 12px 15px;
}


/* Chrome, Safari, Edge, Opera */
.pro-add-btn input::-webkit-outer-spin-button,
.pro-add-btn input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pro-add-btn input{
    text-align: center;
}

.pro-add-btn button:hover{
    color: var(--red);
}

.thankyou h1{
    font-family: "Lobster", sans-serif;
    font-size: 60px;
}

.thankyou i{
    font-size: 60px;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:1025px) {
    .title-area h2{
        font-size: 42px;
    }

}


@media only screen and (min-width:992px) {

	#nav_menu.collapse:not(.show) {
        display: block;
    }
}

@media only screen and (max-width:1024px) {
	
}

@media only screen and (max-width:991px) {	
	.banner-content {
        width: 100%;
    }

    .menu-side ul li {
        padding: 10px 0;
        border-bottom: 1px solid #f9e4e4;
    }

    .menu-side {
        position: absolute;
        width: 100%;
        background: #fff;
        top: 110px;
        z-index: 999;
    }

    .toggle-btn{
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--red);
        color: #fff;
    }

    ul.footer-menu {
        padding-bottom: 30px;
    }

    .footer-logo , .footer-info{
        text-align: center;
    }

    .footer-info{
        padding-bottom: 20px;
    }
}

@media only screen and (max-width:767px) {
	.banner-content h1, h1{
        font-size: 34px;
        line-height: 40px;
    }

    .home-banner img {
        height: 350px;
        object-fit: cover;
    }

    .product-thumb-img img{
        height: 90px;
    }
	
}

.mega-menu {
    width: 600px;
    left: 0;
    right: auto;
}

.dropdown:hover > .mega-menu {
    display: block;
    position: absolute;
    top: 100%;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dropdown-menu {
    display: none;
}

.weight-list label{
    display: inline-block;
    padding:5px 12px;
    color:var(--pink);
    border: 1px solid var(--pink);
    border-radius: 5px;
    font-size: 14px;
}

.weight-list input:checked ~ label{
    background: var(--pink);
    color: #fff;
}
