
body{
	margin: 0;
	padding: 0;	
}

/* Benefits */
.benefits__container{
	width: 100%;
	background-color:#ffffff;
	padding:13px 0;
}
.benefits__container.header__benefits{
	background-color:#F0F2F5;
}
.benefits__box{
	display:grid;
	grid-template-columns: 394px 349px 1fr;
	width:100%;
}
.benefits__box-item{
	width:100%;
	border-right:solid 1px #dddddd;
	padding-right:10px;
	display: grid;
	align-items: center;
}
.benefits__box-item:last-child{
	border-right:none;
}
.benefits__free-delivery{
	display:flex;
	align-items:center;
	gap:10px;
}
.benefits__free-delivery svg{
	width:18px;
	height:15px;
}
.benefits__free-delivery-text{
	color: #232F3E;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
}
.benefits__free-delivery-progress{
	width: 100px;
	height:10px;
	position:relative;
	border-radius: 10px;
	background: #E1E3E6;
	overflow:hidden;
}
.benefits__free-delivery-progress span{
	width:50%;
	height:100%;
	position:absolute;
	background-color:#F9BF3B;
}
.benefits__buy-two-or-more{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
}
.benefits__buy-two-or-more svg{
	width:16px;
	height:16px;
}
.benefits__buy-two-or-more span{
	color: #232F3E;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
}

.benefits__guarantee{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
}
.benefits__guarantee img{
	width:21px;
	height:21px;
}
.benefits__guarantee span{
	color: #232F3E;
	font-size: 14px;
	font-weight: 700;
	line-height: 24px;
}

@media screen and (max-width: 71.5rem) {
	.benefits__box{
		grid-template-columns:1fr 1fr;
		padding-left:14px;
		padding-right:14px;
	}
	.benefits__box-item{
		justify-content: center;
		padding:5px 0;
		border:none;
	}
}

.product__content-reviews .reviews__total-count{
	display:flex;
	width:100%;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.landing-page-reviews-count{
	gap:6px;
}
.landing-page-reviews-count .reviews_product-name{
	color: #3DBD00!important;
	font-size: 18px;
	font-weight: 600;
	line-height: 25px;
}
.landing-page-reviews-count .reviews__stars-count{
	color: #1D6EC1!important;
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
}
.reviews__stars{
	color: #5F6061;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
}
.reviews__stars .star--on svg{
	width:15px;
}

/* Landing page add to cart button */
.landing-product-buttons{
	display: flex;
	gap:20px;
	width:100%;	
	margin-bottom:20px;
}
.landing-product-button{
	display: flex;
	gap:4px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: fit-content!important;
    padding: 10px 40px;
    background: linear-gradient(0deg, #00AC00 0%, #3EC000 100%);
    box-shadow: 0px 2px 0px 0px #090, 0px 3px 13px 0px rgba(0, 153, 0, 0.36);
    border: none;
	border-radius:5px;
    color: #ffffff!important;
	text-decoration: none;
}
.landing-product-button:hover{
	opacity: 0.8;
}
.landing-product-button span{
	color: #FFF!important;
	text-decoration: none!important;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 30px;
}
.landing-product-button svg{
	margin-left:5px;
}

.landing-product-video-button{
	display: flex;
	gap:6px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: fit-content;
    padding: 10px 34px;
    border-radius: 5px;
	background: linear-gradient(180deg, #F0F2F5 0%, #E3E6E8 100%);
    border: none;
	text-decoration: none;
}
.landing-product-video-button span{
	color: #232F3E;
	font-size: 18px;
	font-weight: 700;	
	line-height: 30px;
}

/* Popup Overlay */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show overlay */
.video-popup-overlay.show {
    display: flex;
    opacity: 1;
}

/* Popup Container */
.video-popup-container {
    padding: 0;
	width:100%;
    max-width: 98%;
	height:100%;
    z-index: 10;
    border-radius: 5px;
}

/* Show popup animation */
.video-popup-overlay.show .video-popup-container {
    transform: scale(1);
}

.video-popup-loader{
	display:none;
}

/* Close Button */
.video-popup-close {
	position: absolute;
    right: 40px;
    top: 40px;
    background: transparent !important;
    border: 0;
    cursor: pointer;
    width: 16px;
    height: 16px;
    padding: 0;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.video-popup-close:hover {
    background-color: transparent;
    color: #ffffff;
}
.video-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%, -50%);
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
	aspect-ratio: 16 / 9;
}


/* Responsive Design */
@media (max-width: 768px) {
    .video-popup-container {
        width: 95%;
        margin: 20px;
    }
    
    .video-popup-content {
        padding: 20px;
    }
        
        
}

/* Animation for fade in/out */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

.landing-product-hurryup{
	display:flex;
	flex-direction:column;
	gap:4px;
}
.landing-product-hurryup-content{
	display:flex;
	gap:10px;
	align-items:center;
	justify-content:start;
}
.landing-product-hurryup-content svg{
	width:17px;
}
.landing-product-hurryup-text{
	color: #CA232C!important;
	font-size: 14px;
	font-weight: 700;
	line-height: 30px;
}
.landing-product-hurryup-progress{
	display:flex;
	position:relative;
}
.landing-product-hurryup-progress-bar-red{
	position:absolute;
	left:0;
	top:0;
	width:30%;
	height:10px;
	background-color:#CA232C;
	border-bottom-left-radius: 10px;
	border-top-left-radius: 10px;
}
.landing-product-hurryup-progress-bar{
	width:100%;
	height:10px;
	border-radius: 10px;
	background: #E1E3E6;
}

.gray-triangle::before,
.gray-triangle .product__content-cta::before {
    content: "";
    position: absolute;
    top: -21px;
    left: 50%;
    width: 42.43px;
    height: 42.43px;
    background: #f0f2f5;
    transform: translateX(-50%) rotate(45deg);
}
.orange-triangle::before {
	content: "";
    position: absolute;
    top: -21px;
    left: 50%;
    width: 42.43px;
    height: 42.43px;
    background: #F6E8C6;
    transform: translateX(-50%) rotate(45deg);
}
.orange-triangle.small-triangle::before {
	content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 21.21px;
    height: 21.21px;
    background: #F6E8C6;
    transform: translateX(-50%) rotate(45deg);
}
