.ps-slider-container {
    position: relative;
    width: 100%;
    background-color: #0A0A0C;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    color: #fff;
    box-sizing: border-box;
    display: flex;
}
.ps-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}
.ps-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
    box-sizing: border-box;
    padding: 40px;
}
.ps-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 50%;
}
.ps-image-col {
    flex: 1;
    position: relative;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    max-width: 50%;
}
.ps-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.ps-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.ps-main-icon svg {
    width: 48px;
    height: 48px;
    fill: #FFB800;
}
.ps-main-icon i {
    font-size: 48px;
    color: #FFB800;
}
.ps-header-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FFB800;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}
.ps-title {
    font-size: 36px;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}
.ps-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #bbb;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 24px;
}
.ps-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 24px;
}
.ps-highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ps-highlight-icon svg {
    width: 24px;
    height: 24px;
    fill: #FFB800;
}
.ps-highlight-icon i {
    font-size: 24px;
    color: #FFB800;
}
.ps-highlight-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-transform: uppercase;
}
.ps-highlight-desc {
    font-size: 14px;
    color: #bbb;
    margin: 0;
    line-height: 1.4;
}
.ps-purchase-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}
.ps-price {
    font-size: 32px;
    font-weight: 800;
    color: #FFB800;
}
.ps-price del {
    font-size: 18px;
    color: #888;
    margin-right: 8px;
}
.ps-price ins {
    text-decoration: none;
}
.ps-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFB800;
    color: #000;
    font-weight: 800;
    padding: 16px 24px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    max-width: 280px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.ps-button:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}
.ps-button-icon {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
}
.ps-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(10, 10, 12, 0.9);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    align-items: center;
    backdrop-filter: blur(4px);
    max-width: 240px;
}
.ps-badge-icon svg {
    width: 32px;
    height: 32px;
    fill: #FFB800;
}
.ps-badge-text {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.ps-badge-desc {
    font-size: 12px;
    color: #aaa;
    line-height: 1.3;
}
.ps-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}
.ps-nav-arrow:hover {
    background: rgba(255,255,255,0.15);
}
.ps-nav-arrow svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.ps-prev { left: 16px; }
.ps-next { right: 16px; }
.ps-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.ps-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}
.ps-dot.active {
    background: #FFB800;
}

@media (max-width: 768px) {
    .ps-slide {
        flex-direction: column;
        max-width: 100%;
        padding: 24px;
    }
    .ps-content-col {
        max-width: 100%;
    }
    .ps-image-col {
        width: 100%;
        max-width: 100%;
        min-height: 300px;
    }
    .ps-prev, .ps-next { display: none; }
}