:root {
    --yc-primary: #1a365d;
    --yc-muted: #6b7280;
    --yc-border: #e5e7eb;
    --yc-soft: #f8f9fa;
    --yc-text: #111827
}

.product-card .yc-tabs-wrap {
    position: relative !important;
    padding-top: 4px !important;
    padding-bottom: 0px !important;
}

.product-card .yc-tabs {
    display: flex !important;
    gap: 42px !important;
    border-bottom: 1px solid var(--yc-border) !important;
}

.product-card .yc-tab {
    position: relative !important;
    display: inline-block !important;
    flex: 0 0 auto !important;
    background: transparent !important;
    border: none !important;
    color: var(--yc-muted) !important;
    font-weight: 100 !important;
    letter-spacing: .05em !important;
    padding: 6px 0 !important;
    line-height: 1 !important;
    border-radius: 0 !important;
}

.product-card .yc-tab.active {
    color: #003399 !important;
}

.product-card .yc-tab.active::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    width: 100% !important;
    bottom: -4px !important;
    height: 3px !important;
    background: #0d6efd !important;
    border-radius: 2px 2px 0 0 !important;
}

.product-card .yc-arrow {
    position: absolute !important;
    top: 43px !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 15px solid transparent !important;
    border-right: 15px solid transparent !important;
    border-bottom: 15px solid #d9dbe4 !important;
    transition: left .35s cubic-bezier(.4, 0, .2, 1) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

.product-card .yc-arrow::after {
    content: "" !important;
    position: absolute !important;
    top: 1px !important;
    left: -18px !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 18px solid transparent !important;
    border-right: 18px solid transparent !important;
    border-bottom: 20px solid #f8f9fa !important;
}

.product-card .yc-variants {
    background: #f8f9fa !important;
    border-radius: 999px !important;
    padding: 5px 5px !important;
    margin-top: 25px !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    align-items: center !important;
    border: 1px solid #d9dbe4;
}

.product-card .yc-variants .col-md-4 {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.product-card .yc-variant {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    color: var(--yc-text) !important;
    border-radius: 999px !important;
    border: 1.5px solid var(--yc-border) !important;
    padding: 10px 13px !important;
    font-weight: 400 !important;
    font-size: .75rem !important;
    line-height: 1 !important;
    min-height: 20px !important;
    min-width: 72px !important;
    box-shadow: none !important;
    transition: box-shadow .15s ease, border-color .15s ease, background .15s ease !important;
}

.product-card .yc-variant:hover {
    border-color: #d1d5db !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06) !important;
}

.product-card .yc-variant.active {
    border-color: var(--yc-primary) !important;
    color: var(--yc-primary) !important;
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(26, 54, 93, .12) !important;
}

.product-card .yc-variant:disabled {
    opacity: .55 !important;
    pointer-events: none !important;
}

@media (max-width:576px) {
    .product-card .yc-tabs {
        gap: 22px !important;
    }
    .product-card .yc-variant {
        padding: 9px 14px !important;
        font-size: .9rem !important;
        min-width: 64px !important;
    }
}
.carusel-img{
    transition:transform .25s ease-in-out;
}

.carusel-link:hover .carusel-img{
    transform:scale(1.06);
}

.carusel-caption{
    position:absolute;
    top:.65rem;
    right:.65rem;
    padding:.25rem .6rem;
    background:rgba(255,255,255,.85);
    color:#0d0d0d;
    font-weight:600;
    font-size:1.25rem;
    border-radius:.35rem;
    opacity:0;
    transform:translateY(-10px);
    transition:opacity .25s ease-in-out, transform .25s ease-in-out;
    max-width:80%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.carusel-link:hover .carusel-caption{
    opacity:1;
    transform:translateY(0);
}

