/* VFX Comparison Widget Styles */
.vc-wrapper {
    width: 100%;
    margin: 0 auto;
    color: #111;
}

/* TOP LAYOUT */
.vc-top-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.vc-heading h2 {
    font-size: 80px;
    line-height: 0.9;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.vc-heading-amber {
    color: #E87722;
}

.vc-line-decor {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 30px 0;
    width: 50px;
}

.vc-line-decor .vc-line-main {
    width: 25px;
    height: 1.5px;
    background: #E87722;
}

.vc-line-decor .vc-line-dot {
    width: 6px;
    height: 1.5px;
    background: #E87722;
    opacity: 0.6;
}

.vc-accent-word {
    color: #E87722;
    font-weight: 800;
}

.vc-desc-main {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.vc-line-small {
    width: 50px;
    height: 1.2px;
    background: #E87722;
    margin: 25px 0;
}

.vc-desc-sub {
    font-size: 14.5px;
    line-height: 1.6;
    color: #555;
    max-width: 380px;
}

/* MAIN SLIDER */
.vc-main-slider {
    width: 100%;
}

.vc-comparison-container {
    position: relative;
    width: 100%;
    aspect-ratio: 23 / 9;
    border-radius: 12px;
    overflow: hidden;
    user-select: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.vc-img-before,
.vc-img-after {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.vc-img-before {
    z-index: 2;
    /* This will be width-clipped by JS */
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.vc-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: ew-resize;
}

.vc-handle::before {
    content: '';
    width: 42px;
    height: 42px;
    background: #E87722;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.vc-handle-arrows {
    position: relative;
    z-index: 11;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 2px;
}

.vc-label {
    position: absolute;
    top: 30px;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 800;
    border-radius: 4px;
    z-index: 5;
    letter-spacing: 1px;
}

.vc-label-before {
    left: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    backdrop-filter: blur(5px);
}

.vc-label-after {
    right: 30px;
    background: #E87722;
    color: #fff;
}

/* BOTTOM LAYOUT GRID */
.vc-bottom-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    margin-top: 80px;
}

.vc-dir-title {
    font-size: 11px;
    font-weight: 800;
    color: #E87722;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.vc-dir-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    height: 1.5px;
    background: #E87722;
}

.vc-dir-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vc-dir-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 3px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vc-dir-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #E87722;
}

.vc-dir-icon img {

    object-fit: contain;
}

.vc-dir-text {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111;
}

/* BOTTOM GRID */
.vc-bottom-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.vc-card-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vc-card-comparison {
    position: relative;
    width: 100%;
    aspect-ratio: 10 / 12;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mini-handle::before {
    width: 30px;
    height: 30px;
}

.vc-card-title {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #111;
    margin: 0;
    max-width: 120px;
    line-height: 1.4;
}

/* Entrance Animations */
.vc-info-side,
.vc-main-slider,
.vc-card-wrap {
    opacity: 0;
    transform: translateY(30px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .vc-top-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vc-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vc-heading h2 {
        font-size: 50px;
    }

    .vc-bottom-grid {
        grid-template-columns: 1fr 1fr;
    }
}