.pc-carousel-wrapper {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.pc-carousel-container {
    position: relative;
    width: 100%;
    height: 459px;
    background: #F9F9F9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
    padding: 10px;
    box-sizing: border-box;
}

.pc-carousel-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
}

.pc-carousel-item img {
    max-width: 600px;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.pc-carousel-btn {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
    color: #707070;
}

.pc-carousel-btn:hover:not(:disabled) {
    color: #707070;
}

.pc-carousel-btn:disabled {
    cursor: not-allowed;
    color: #BBBBBB;
}

.pc-carousel-btn svg {
    width: 16px;
    height: 16px;
}

.pc-carousel-prev {
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.pc-carousel-next {
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.pc-carousel-thumbnails {
    position: relative;
    display: flex;
    gap: 10px;
    margin-top: 10px;
    padding: 0 50px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: center;
    flex-wrap: nowrap;
    scrollbar-width: thin;
}

.pc-carousel-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.pc-carousel-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.pc-carousel-thumbnails::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.pc-carousel-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.pc-thumbnail-item {
    position: relative;
    flex-shrink: 0;
    width: 150px;
    height: 84px;
    background: #F9F9F9;
    padding: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-thumbnail-item:hover {
    border-color: #170057;
    background: #ECEBF2;
}

.pc-thumbnail-item.active {
    border-color: #170057;
    background: #ECEBF2;
}

.pc-thumbnail-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.pc-thumbnail-tags {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pc-tag {
    display: inline-block;
    padding: 4px 6px;
    background: #ECEBF2;
    border-radius: 4px;
    color: #170057;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
}

@media screen and (max-width: 1023px) {
    .pc-carousel-container {
        height: 350px;
    }
    
    .pc-thumbnail-item {
        width: 120px;
        height: 70px;
    }
}

@media screen and (max-width: 767px) {
    .pc-carousel-container {
        height: 204px;
    }
    
    .pc-carousel-track {
        padding: 10px;
    }
    
    .pc-carousel-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .pc-carousel-thumbnails {
        padding: 0 30px;
    }
    
    .pc-thumbnail-item {
        width: 100px;
        height: 60px;
    }
    
    .pc-thumbnail-tags {
        bottom: 8px;
        right: 8px;
        gap: 4px;
    }
    
    .pc-tag {
        font-size: 12px;
        padding: 2px 4px;
        line-height: 16px;
    }
}

@media screen and (max-width: 480px) {
    .pc-carousel-container {
        height: 180px;
    }
    
    .pc-carousel-thumbnails {
        padding: 0 25px;
    }
    
    .pc-thumbnail-item {
        width: 80px;
        height: 50px;
    }
}
