.poc-carousel-wrapper{margin:50px 5px;
}
.poc-carousel-header{display:flex;justify-content:space-between;align-items:center;padding-left:10px;}
.poc-title{font-size:20px;font-weight:bold;margin:0px; padding-left:20px;}
.poc-arrows { padding:20px ;
    display: flex;
    gap: 8px;
    align-items: center;
}

.poc-prev,
.poc-next {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #278086;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* линии стрелки */
.poc-prev::before,
.poc-prev::after,
.poc-next::before,
.poc-next::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* стрелка влево */
.poc-prev::before {
    transform: rotate(45deg) translate(-2px, -4px);
}
.poc-prev::after {
    transform: rotate(-45deg) translate(-2px, 4px);
}

/* стрелка вправо */
.poc-next::before {
    transform: rotate(-45deg) translate(2px, -4px);
}
.poc-next::after {
    transform: rotate(45deg) translate(2px, 4px);
}

/* hover эффект */
.poc-prev:hover,
.poc-next:hover,.poc-prev:active,
.poc-next:active {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    background: #278086;
}



.poc-carousel{display:flex;overflow-x:auto;gap:15px; margin:0 10px;}
.poc-slide{flex:0 0 auto;width:200px;border:1px solid #ddd;border-radius:10px;padding:5px;background:#fff;box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;}
.poc-product{display:block;text-decoration:none;color:#333;}
.poc-img-wrap{position:relative;}
.poc-img-wrap img{width:100%;height:200px;object-fit:cover;border-radius:10px;}
.poc-discount{position:absolute;top:5px;left:5px;background:red;color:#fff;border-radius:50%;width:35px;height:35px;line-height:35px;text-align:center;font-weight:bold;font-size:12px;border:1px solid #fff;}
.poc-title-text {
    font-size: 14px;
    line-height: 20px; 
    height: 40px;     
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word; 
}

.poc-price {
    display: flex;
    gap: 5px; 
    align-items: center;
    font-size: 14px;
}

.poc-sale {
    color: #e53935; 
    font-weight: bold;
}

.poc-regular {
    color: #888; 
    text-decoration: line-through;
}

.poc-saved{font-size:12px;color:green;}
.poc-meta{display:flex;justify-content:space-between;font-size:12px;color:#555;margin-top:5px;}
.poc-panel-inner {
    max-height: 300px;
    overflow-y: auto; 
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
}

.poc-panel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px;
    transition: transform 0.2s ease;
    background: #fff;
}

.poc-panel-item:hover {
    transform: scale(1.05);
    border-color: #aaa;
}

.poc-panel-item img {
    width: 120px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 6px;
}

.poc-badges {
    text-align: center;
}

.poc-badge-discount {
    display: block;
    font-weight: bold;
    color: #e53935;
    
}

.poc-badge-saved {border:1px solid #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg,#fab4a8 0%,#cc0000 100%);
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 2;
}

.poc-save-btn {
    
    padding: 8px 14px;
    border: none;
    background: #1976d2;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}
.poc-save-btn:hover { background: #125aa0; }
.poc-ghost {
    opacity: 0.6;
    background: #eee;
    border: 1px dashed #278086;
}
