.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;
    position: absolute;
    left: 0;
    top: 0;
}

.pc-carousel-item {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    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;
    margin: 0 auto;
}

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

.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 {
    order: 1;
}

.pc-carousel-next {
    order: 3;
}

.pc-carousel-thumbnails-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    width: 100%;
}

.pc-carousel-thumbnails {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    order: 2;
    max-width: 100%;
    scroll-behavior: smooth;
    cursor: grab;
}

.pc-carousel-thumbnails:active {
    cursor: grabbing;
}

.pc-carousel-thumbnails::-webkit-scrollbar {
    display: none;
}

.pc-thumbnail-item {
    position: relative;
    flex-shrink: 0;
    width: 150px;
    height: 84px;
    background: #F9F9F9;
    padding: 10px;
    cursor: pointer;
    border: 1px solid #EEE;
    border-radius: 2px;
    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-main-tags {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    z-index: 10;
}

.pc-main-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;
}

.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-carousel-thumbnails-wrapper {
        gap: 0;
    }
    
    .pc-thumbnail-item {
        width: 120px;
        height: 70px;
    }
}

@media screen and (max-width: 768px) {
    .pc-carousel-container {
        height: 204px;
    }
    
    .pc-carousel-item {
        padding: 40px 80px;
    }
    
    .pc-main-tags {
        gap: 4px;
    }
    
    .pc-main-tag {
        padding: 2px 3px;
        color: var(--dc-color-text-brand-primary, #170057);
        font-size: 6.211px;
        font-style: normal;
        font-weight: var(--font-weight-normal, 400);
        line-height: 8.873px;
    }
    
    .pc-carousel-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .pc-carousel-thumbnails-wrapper {
        gap: 2px;
    }
    
    .pc-carousel-thumbnails {
        gap: 2px;
    }
    
    .pc-thumbnail-item {
        width: 67px;
        height: 37px;
        padding: 4px;
    }
    
    .pc-thumbnail-tags {
        bottom: 8px;
        right: 8px;
        gap: 4px;
    }
    
    .pc-tag {
        font-size: 12px;
        padding: 2px 4px;
        line-height: 16px;
    }
}
