/* Customize cho Customer Meta Info Table */
.lp-customer-meta-info {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
	line-height: 1.0;
}
.lp-review-info {
    flex: 1;
    min-width: 0;
}
/* Finish */


.lp-testimonial-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
	border-radius: 25px 25px 25px 25px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	background: #ffffff;
}

.lp-slide-content {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.lp-left-column,
.lp-right-column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    box-sizing: border-box;
}

.lp-left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-right-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lp-testimonial-title {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.lp-customer-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 0 15px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lp-customer-name {
    color: #2c3e50;
    font-size: 20px;
    margin: 10px 0 5px 0;
}

.lp-customer-description {
    color: #7f8c8d;
    font-size: 18px;
    margin: 5px 0 15px 0;
}

.lp-customer-problem {
    color: #818181;
    font-size: 16px;
    margin: 15px 0;
    padding: 10px;
    background: #f5f5f5;
    border-left: 3px solid #006c84;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.lp-rating {
    margin: 15px 0;
}

.lp-stars {
    font-size: 24px;
}

.lp-star {
    color: #ddd;
}

.lp-star.active {
    color: #f39c12;
}

/* Before/After Styles */
.lp-before-after-container {
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.lp-before-after {
    position: relative;
    width: 100%;
    height: 400px;
    cursor: col-resize;
}

.lp-before-image,
.lp-after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-after-image {
    width: 50%;
    overflow: hidden;
}

.lp-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #fff;
    cursor: col-resize;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.lp-slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #ffa213;
}

.lp-single-image {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.lp-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-action-button {
    margin-top: 20px;
}

.lp-button {
    display: inline-block;
    padding: 12px 30px;
    background: #006e85;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lp-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Navigation */
.lp-slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    gap: 10px;
}

.lp-nav-dot {
    width: 60px;
    height: 60px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.lp-nav-dot.active {
    background: #006e85;
    transform: scale(1.1);
}

.lp-nav-avatar {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.lp-nav-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-slide {
    display: none;
}

.lp-slide.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .lp-slide-content {
        flex-direction: column;
    }
    
    .lp-left-column,
    .lp-right-column {
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .lp-before-after {
        height: 300px;
    }
}

