/* Payment Showcase Widget Styles */
.zsf_content3 {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--inventory-bg, #ffffff);
    /* Break out of Elementor Boxed limits */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
}

.zsf_content3.dark_sec {
    background-color: #000000;
}

.zsf_content3.dark_sec .zf_side_wrap.content_wrap h3 {
    color: #ffffff;
}

/* Dual Container Layout */
.zf_container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 40px !important;
    position: relative;
    z-index: 2;
}

.dual_container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.zf_side_wrap.content_wrap {
    flex: 0 0 35%;
    position: sticky;
    top: 150px;
    text-align: left;
}

.zf_side_wrap.content_wrap h3 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.zf_side_box_container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Specific Grid Spans for Side Layout */
.zf_side_box_container .empty_box {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    min-height: auto !important;
    overflow: visible !important;
}

.zf_side_box_container .empty_box .zf_inr_box {
    flex: 1;
    min-height: 280px;
    width: 100%;
}

.fl_side_box {
    grid-column: span 1;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

/* Pay Background Style */
.pay_sec {
    position: relative;
    overflow: hidden;
    background-color: #f7f8f9;
}

.dark_sec .pay_sec {
    background-color: #111111;
}

.pay_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.zohowebstatic.com/sites/oweb/images/pos/images/zakya-feature-upi-payment.svg');
    background-size: 150%;
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.zf_inr_box:hover .pay_bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.dark_sec .pay_bg {
    filter: invert(1) brightness(1.5);
    opacity: 0.08;
}

/* Animation Delays for payment features */
.zf_anim7 {
    transition-delay: 0.1s;
}

.zf_anim8 {
    transition-delay: 0.2s;
}

.zf_anim9 {
    transition-delay: 0.3s;
}

.zf_anim10 {
    transition-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .dual_container {
        flex-direction: column;
        gap: 40px;
    }

    .zf_side_wrap.content_wrap {
        flex: 1;
        width: 100%;
        position: static;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .zf_side_box_container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .zf_side_box_container {
        grid-template-columns: 1fr;
    }
}