.hps-e27156b1-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: transparent;
    padding: 1rem 0 3rem 0;
}
.hps-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
.hps-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    gap: 2rem;
    align-items: stretch;
}
.hps-main-product {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #fff;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.hps-main-info {
    flex: 1;
}
.hps-main-title {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    color: #1a1a1a;
}
.hps-main-desc {
    color: #6b7280;
    font-size: 1.125rem;
    margin: 0 0 1.5rem 0;
}
.hps-main-price {
    font-size: 2rem;
    font-weight: bold;
    color: #ef4444;
    margin: 0 0 2rem 0;
}
.hps-btn {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}
.hps-btn:hover {
    opacity: 0.9;
    color: #fff;
}
.hps-main-img {
    flex: 1;
    text-align: center;
}
.hps-main-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
}
.hps-side-products {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.hps-side-product {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.hps-sp-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hps-sp-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.hps-sp-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: #1a1a1a;
}
.hps-sp-price {
    font-weight: 600;
    font-size: 1.25rem;
    color: #ef4444;
}
.hps-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-size: 1.2rem;
    color: #1a1a1a;
    transition: background 0.3s;
}
.hps-nav:hover {
    background: #f3f4f6;
}
.hps-nav-prev {
    left: 2rem;
}
.hps-nav-next {
    right: 2rem;
}
.hps-dots {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}
.hps-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s;
}
.hps-dot.active {
    background: #ef4444;
}

@media (max-width: 1024px) {
    .hps-slide {
        flex-direction: column;
    }
    .hps-side-products {
        flex-direction: row;
    }
}
@media (max-width: 767px) {
    .hps-main-product {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .hps-side-products {
        flex-direction: column;
    }
    .hps-nav-prev { left: 0.5rem; }
    .hps-nav-next { right: 0.5rem; }
}