.dp-pc {
    display: block;
    margin: auto;
}

.dp-sp {
    display: none;
    margin: auto;
}

.product-hero {
    padding-bottom: 5px;
}

.list-review {
    height: 181px;
}

.list-review .slick-initialized .slick-slide {
    margin: 5px;
    height: 181px;
    width: 100%;
}

.list-review .l-column--equal-height>.we-customer-review {
    max-height: 181px;
    width: 100%;
}

.list-info {
    margin-bottom: 5px;
    height: 90px;
    display: flex;
}

.list-info img {
    width: auto !important;
    height: 90px;
    cursor: pointer;
    padding: 15px 18px;
    display: block;
}

.list-info li {
    position: relative;
}

.list-info li::before {
    content: "";
    display: block;
    width: 0;
    height: 50px;
    background: #ADADAD;
    border-right: 1px solid #ADADAD;
    position: absolute;
    right: 0;
    top: 20px;
}

.slick-initialized .slick-slide {
    display: block;
    margin: 5px;
    cursor: pointer;
    border: none;
    outline: none;
}

.slider-list.slick-initialized .slick-slide {
    margin: 30px;
}

.list-info.slick-initialized .slick-slide {
    display: block;
    margin: 0px;
    width: 100px !important;
}

.slider-list .slick-track {
    background-image: url(./../images/bg-all-step-new.png);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    width: 100%;
}

.responsive-image {
    max-height: 520px;
}

.we-artwork--ios-app-icon .we-artwork__image,
.we-artwork--ios-app-icon::after,
.we-artwork--ios-app-icon::before {
    border-radius: 0px;
}

#openVideoGuide {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Modal Video Styles - Cải tiến chuyên nghiệp */
.modal__bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
}

.modal__bg.active {
	opacity: 1;
	visibility: visible;
}

.modal__align {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: relative;
}

.modal__content {
	position: relative;
	width: 100%;
	max-width: 90vw;
	max-height: 90vh;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
	transition: transform 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
}

.modal__bg.active .modal__content {
	transform: scale(1);
}

.modal__content.modal-home {
	max-width: 1200px;
	aspect-ratio: 16 / 9;
}

.modal__close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	cursor: pointer;
	z-index: 10000;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal__close:hover {
	background-color: #fff;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal__close:active {
	transform: scale(0.95);
}

.modal__close svg {
	width: 20px;
	height: 20px;
	color: #000;
	stroke: #000;
}

.modal__video-align {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
}

.modal__spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	z-index: 10;
	display: none;
}

.modal__spinner.active {
	display: block;
}

@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

#videoWrapper {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

#videoWrapper video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.modal__content {
		max-width: 95vw;
		max-height: 85vh;
		border-radius: 8px;
	}

	.modal__content.modal-home {
		max-width: 95vw;
		aspect-ratio: 16 / 9;
	}

	.modal__close {
		top: 10px;
		right: 10px;
		width: 36px;
		height: 36px;
	}

	.modal__close svg {
		width: 18px;
		height: 18px;
	}

	.modal__bg {
		padding: 10px;
	}
}

@media screen and (max-width: 480px) {
	.modal__content {
		max-width: 100vw;
		max-height: 80vh;
		border-radius: 0;
	}

	.modal__content.modal-home {
		max-width: 100vw;
	}

	.modal__close {
		top: 8px;
		right: 8px;
		width: 32px;
		height: 32px;
		background-color: rgba(255, 255, 255, 0.95);
	}

	.modal__close svg {
		width: 16px;
		height: 16px;
	}

	.modal__bg {
		padding: 0;
	}
}


@media screen and (max-width: 768px) {
    .dp-pc {
        display: none;
    }

    .dp-sp {
        display: block;
    }

    .list-info img {
        height: 87px;
    }

    .slick-initialized .slick-slide {
        display: block;
        margin: 5px;
    }

    .slider-list.slick-initialized .slick-slide {
        margin: 15px;
    }

    .slider-list .responsive-image.slick-slide {
        padding: 0;
    }

    .responsive-image {
        height: 80vw !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }
}

@media screen and (max-width: 600px) {
    .list-info {
        overflow: hidden;
        height: 70px;
    }

    .list-info img {
        width: auto !important;
        height: 70px;
        cursor: pointer;
        padding: 10px;
        display: block;
    }

    .list-info.slick-initialized .slick-slide {
        width: 76px !important;
    }
}

@media screen and (max-width: 475px) {
    #openVideoGuide {
      gap: 5px !important;
    }
  
    #openVideoGuide svg {
      width: 25px;
      height: 25px;
    }
  
    a.btn-download {
      padding: 6px 10px;
      font-size: 11px;
      font-weight: 500;
    }
  }
  
  @media screen and (max-width: 353px) {
    a.btn-download {
      padding: 4px 7px !important;
      font-size: 9px;
      border-radius: 8px;
    }
  
    #openVideoGuide svg {
      width: 20px;
      height: 20px;
    }
  }
  
  #openVideoGuide {
    display: flex;
    align-items: center;
    gap: 10px;
  }

/* Promotion Images Styles - Slider với ảnh PC 750x400px */
#promotion-list {
    margin: 0;
    padding: 0;
    list-style: none;
    height: fit-content;
}

#promotion-list li {
    padding: 0 10px;
    outline: none;
}

#promotion-list picture {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

#promotion-list img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

/* Desktop: Ảnh PC 750x400px - Slider hiển thị 3 ảnh */
@media screen and (min-width: 769px) {
    #promotion-list li {
        padding: 0 15px;
    }
    
    #promotion-list picture {
        max-width: 750px;
        margin: 0 auto;
    }
    
    #promotion-list img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Tablet: Slider hiển thị 2 ảnh - Giữ tỷ lệ PC */
@media screen and (max-width: 768px) and (min-width: 481px) {
    #promotion-list li {
        padding: 0 10px;
    }
    
}

/* Mobile: Slider hiển thị 1 ảnh - Kích thước 588x210px */
@media screen and (max-width: 480px) {
    #promotion-list li {
        padding: 0 5px;
    }
    
    #promotion-list picture {
        max-width: 588px;
        margin: 0 auto;
    }
    
    #promotion-list img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Slick slider custom styles cho promotion */
#promotion-list.slick-initialized .slick-slide {
    display: block;
    margin: 0;
    outline: none;
}

#promotion-list.slick-initialized .slick-slide picture {
    margin: 0 auto;
}

/* Ẩn arrows và dots cho promotion slider */
#promotion-list.slick-initialized {
    position: relative;
    padding: 0;
}

#promotion-list .slick-prev,
#promotion-list .slick-next {
    display: none !important;
}

#promotion-list .slick-dots {
    display: none !important;
}
  