@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');  /** Poppins Font **/


/** gobal layout */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root{
    --primary-color: #5344db;
    --accent-color: #5344db;
    --grey:#484848;
    --bg-grey: #efefef;
    --shadow: #949494;
}

.navbar{
  background-color: #148e00!important;
}

.navbar .nav-logo{
    width: 50%;
    margin-left: 80px;
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(255 255 255);
    padding-right: 50px;
    font-size: 18px;
}

/* WA button pulse */
.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.btn-whatsapp-pulse {
	background: #25d366;
    color: white;
    position: fixed;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 28px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border {
    animation-play-state: paused;
}

.btn-whatsapp-pulse a:hover{
	color: white;
    text-decoration: none;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

.floating_btn .text_icon {
	margin-top: 100px;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* WA button pulse end */

#main-content {
	position: relative;
}

#main-content .container{
    display: flex;
    align-items: center;
    justify-content: center;
	padding-bottom:100px;
	padding-top:100px;
}

#main-content::before{
    content:'';
    background-image: url(img/leaf-b.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
	height: -webkit-fill-available;
    bottom:0px;
    left: 0px;
    width:100%;
    z-index:-1;
    opacity: 0.25;
}

#main-content::after{
    content:'';
    background-image: url(img/leaf-t.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
	height: -webkit-fill-available;
    top:0px;
    left: 0px;
    width:100%;
    z-index:-1;
    opacity: 0.25;
}

.row{
    display: flex;
}

.col-6{
    width: 50%;
}

.single-product{
    width: 1080px;
    position: relative;
}
/** Breadcrumb **/

.single-product .breadcrumb{
    background: #48484810;
    padding: 8px 4px;
    border-radius: 8px;
    font-size: 15px;
}

.breadcrumb span{
    display: inline-flex;
    flex-direction: row;
    gap: 8px;
    margin-left: 8px;
}
.breadcrumb span:not(:last-child)::after{
    content: '/';
}

.breadcrumb span a{
    text-decoration: none;
    color: var(--primary-color);
}

/** product image **/

.single-product .product-image{
    width: 100%;
}

.product-image .product-image-main{
    position: relative;
    display: block;
    border: 5px solid #ced9c5;
    margin: 25px 0px;
}

.product-image-main img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image-slider{
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.product-image-slider img{
    width: 90px;
    height: 90px;
    background: var(--bg-grey);
    padding: 5px;
    cursor: pointer;
}

/** product title **/

.product-title{
    margin-top: 20px;

}
.product-title h2{
    font-size: 32px;
    line-height: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02rem;
}

/** product rating **/
.product-rating{
    display: flex;
    margin-top: 4px;
    margin-bottom: 10px;
    align-items: center;
}

.product-rating span:not(:last-child){
    color: #ffc600;
}
.product-rating .review{
    color: var(--grey);
    font-size: 12px;
    font-weight: 500;
}

/** Product Details **/
.product-details{
    margin: 10px 0;
}
.product-details h3{
    font-size: 18px;
    font-weight: 500;
}
.product-details p{
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.2rem;
}

/** divider **/
.divider{
    display: block;
    height: 1px;
    width: 100%;
    background: #48484830;
    margin: 20px 0;
}

/** product Button Group **/

.product{
    margin:30px;
}

.product-btn-group{
    display: flex;
    gap: 15px;
}
.product-btn-group .button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
}
.product-btn-group .wa-now{
	background-color: #25D366;
    color: #fff;
    border: 1px solid #25d366;
    border-radius: 4px;
    cursor: pointer;
	text-decoration: none;
}

.product-btn-group .wa-now i{
    font-size: 20px;
}
.product-btn-group .wa-now:hover{
    box-shadow: 0 3px 6px var(--shadow);
}

.product-btn-group .comment{
    background-color: #03a522;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
	margin-top: 15px;
}
.product-btn-group .comment i{
    font-size: 20px;
}
.product-btn-group .comment:hover{
    box-shadow: 0 3px 6px var(--shadow);
    background: var(--grey);
    color: #fff;
}

.review{
	width:100%;
}
.review textarea {
  width: 100%;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 2px;
  background-color: #dfdfdf;
  font-size: 16px;
  resize: none;
  height: 100px;
}
.product-review{
    display: flex;
    margin-top: 4px;
    margin-bottom: 10px;
    align-items: center;
	font-size:30px;
	color: #b7b7b7;
}
.product-review .review{
    color: var(--grey);
    font-size: 12px;
    font-weight: 500;
}
.product-review:hover > span:before {
    opacity:0.3;
}

.product-review > span:hover ~ span:before {
    opacity:0.3;
}

#footer .custom-justify{
	justify-content: end;
}

#footer ul .ms-3{
	font-size:20px;
	margin:5px;
}


/** Responsive Mobile **/
@media screen and (max-width:520px) {
    .navbar .nav-logo{
        margin-left: 15px;
    }

    #main-content .container{
        padding: 20px;
        height: auto;
		padding-bottom:50px;
		padding-top:20px;
    }
    .row{
        display: block;
    }

    .col-6{
        width: 100%;
        display: block;
    }
    .single-product{
        width: 100%;
        position: relative;
    }

    .product-image .product-image-main{
        width: 100%;
        height: 280px;
    }
    .product-image-slider{
        gap: 5px;
    }

    .breadcrumb{
        display: none;
    }

    .product-title h2{
        font-size: 24px;
        line-height: 1.6rem;
    }
    .product-size{
        display: block;
    }
    .product-size .size-layout{
        display: block;
        margin: 10px 0;

    }
    .product-size .size-layout .size{
        padding: 6px 10px;
    }
    .product-btn-group{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
	
	/** Desclaimer Details **/
	.desclaimer .product-details{
		margin:30px;
	}
	
	#footer .menu{
		border-top: 1px solid #c3c3c37a;
		width: 74%;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	#footer .custom-justify{
		justify-content: start;
	}
	
	.floating_btn {
		position: fixed;
		bottom: 35px;
		right: 35px;
		width: 50px;
		height: 32px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		z-index: 1000;
	}
	
	.btn-whatsapp-pulse{
		font-size: 40px;
	}
	
	.floating_btn .text_icon {
		margin-top: 85px;
		color: #707070;
		font-size: 7px;
	}
}

/** Responsive Tablet **/
@media  (min-width: 520px ) and (max-width: 1080px) {
   #main-content .container{
		height: auto;
		padding: 20px;
		padding-top: 70px;
		padding-bottom: 70px;
   }
	
	.floating_btn {
		position: fixed;
		bottom: 35px;
		right: 35px;
		width: 25px;
		height: 32px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		z-index: 1000;
	}
}
