/* ==========================================================================
   Home CSS - Custom styles for ShopeeCashback Homepage
   Theme Color: var(--color-3) (Orange)
   Design constraints: No :root / CSS variables used.
   ========================================================================== */

/* Two-column layout */
.bv-home-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    /* margin-bottom: 50px; */
}

.bv-home-left {
    flex: 0 0 calc(75% - 15px);
    max-width: calc(75% - 15px);
    width: 100%;
}

.bv-home-right {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    width: 100%;
}

/* Box Section base styles */
.box-section {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    margin-bottom: 30px;
}

/* Banner Component */
.bv-banner {
    margin-bottom: 30px;
}

.bv-banner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.bv-banner-content {
    flex: 1;
}

.bv-banner-graphic {
    flex: 0 0 38%;
    max-width: 38%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bv-banner-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Banner Texts */
.bv-banner-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 16px 0;
}

.bv-title-line-1 {
    display: block;
    color: #0f172a;
    /* Dark Navy */
}

.bv-title-line-2 {
    display: block;
    color: var(--color-3);
    /* Primary Orange */
    margin-top: 4px;
}

.bv-banner-subtitle {
    font-size: 15px;
    color: #4b5563;
    /* Cool Gray */
    line-height: 1.6;
    margin: 0 0 28px 0;
    font-weight: 400;
}

/* Conversion form */
.bv-convert-form {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    width: 100%;
}

.bv-guide-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    /* Pull it slightly closer to the form */
}

.bv-guide-link:hover {
    color: var(--color-3, #FF4D00);
    text-decoration: underline;
}

.bv-guide-link .material-icons-outlined {
    font-size: 18px;
    color: inherit;
}

.bv-input-group {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 80px 12px 18px;
    flex: 1;
    transition: all 0.25s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.bv-input-group:focus-within,
.bv-input-group:hover {
    border-color: var(--color-3);
    box-shadow: 0 0 0 4px rgba(253, 47, 1, 0.12), inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.bv-input-icon {
    color: #94a3b8;
    margin-right: 12px;
    font-size: 22px !important;
    font-weight: bold;
    transform: rotate(-45deg);
}

.bv-convert-input {
    border: none !important;
    background: transparent !important;
    font-size: 15px;
    color: #1e293b;
    width: 100%;
    font-weight: 500;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 16px;
}

.bv-convert-input::placeholder {
    color: #94a3b8;
}

/* Conversion button */
.bv-btn-convert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-3);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 26px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(253, 47, 1, 0.15);
}

.bv-btn-convert:hover {
    background-color: #d92500;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(253, 47, 1, 0.25);
}

.bv-btn-convert:active {
    transform: scale(0.98);
}

.bv-btn-icon {
    font-size: 20px !important;
    font-weight: bold;
    transform: rotate(-45deg);
}

/* Bottom features row */
.bv-banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    margin-top: 8px;
}

.bv-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bv-feat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px !important;
    color: var(--color-3);
    background-color: #fff5f3;
    flex-shrink: 0;
}

.bv-feat-text {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

/* Results Section Component */

.bv-results-header {
    margin-bottom: 24px;
}

.bv-results-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.bv-results-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.bv-badge-status {
    font-size: 12px;
    font-weight: 700;
    color: #e47b4e;
    background-color: #fdf7f0;
    border: 1px solid rgb(246 235 211);
    padding: 4px 12px;
    border-radius: 20px;
}

.bv-results-subtitle {
    font-size: 14px;
    color: #4b5563;
    font-weight: 600;
    margin: 0;
}

.bv-results-list {
    display: flex;
    flex-direction: column;
}

.bv-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 20px;
}

.bv-result-item:first-child {
    padding-top: 0;
}

.bv-result-item:last-child {
    border-bottom: none;
    padding-bottom: 8px;
}

.bv-result-item-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.bv-result-img-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    flex-shrink: 0;
}

.bv-result-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.bv-result-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.bv-result-product-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bv-result-link {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
    word-break: break-all;
    font-weight: 500;
    width: fit-content;
}

.bv-result-link:hover {
    color: var(--color-3);
    text-decoration: underline;
}

.bv-result-item-meta {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.bv-result-commission {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}

.bv-comm-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    justify-content: flex-end;
}

.bv-comm-icon {
    color: #ff2a74;
    font-size: 16px !important;
}

.bv-comm-values {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.bv-comm-amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-3);
}

.bv-comm-badge {
    font-size: 12px;
    font-weight: 700;
    color: #16a34a;
    background-color: #f0fdf4;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.bv-btn-login-to-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--color-3);
    color: var(--color-3);
    background-color: transparent;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.bv-btn-login-to-buy span {
    font-size: 16px !important;
}

.bv-btn-login-to-buy:hover {
    background-color: rgba(253, 47, 1, 0.05);
    color: var(--color-3);
    box-shadow: 0 4px 12px rgba(253, 47, 1, 0.08);
}

.bv-btn-login-to-buy:active {
    transform: scale(0.98);
}

.bv-result-buttons {
    display: flex;
    gap: 8px;
}

.bv-btn-buy {
    background-color: #0068ff;
    color: #fff;
    border: none;
}

.bv-btn-buy:hover {
    background-color: #0056d6;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 104, 255, 0.2);
}

.bv-btn-copy {
    border: none;
    padding: 0 16px;
    background-color: transparent;
    color: var(--color-3);
}

.bv-btn-copy:hover {
    background-color: rgba(253, 47, 1, 0.05);
}

.bv-results-more {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.bv-btn-more-results {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #2b6cb0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.bv-btn-more-results span {
    font-size: 18px !important;
}

.bv-btn-more-results:hover {
    background-color: #f8fafc;
    border-color: #cbd5e0;
    color: #1a365d;
}

/* Steps Guide Component */

.bv-steps-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-3);
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 24px 0;
    letter-spacing: 0.5px;
}

.bv-steps-container {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 15px;
}

.bv-step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.bv-step-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bv-step-1-bg {
    background-color: #eff6ff !important;
}

.bv-step-2-bg {
    background-color: #fff1f2 !important;
}

.bv-step-3-bg {
    background-color: #f0fdf4 !important;
}

.bv-step-4-bg {
    background-color: #fff7ed !important;
}

.bv-step-badge {
    display: none;
}

.bv-step-icon-blue {
    color: #2563eb;
    font-size: 24px !important;
}

.bv-step-icon-red {
    color: #dc2626;
    font-size: 24px !important;
}

.bv-step-icon-orange {
    color: #ea580c;
    font-size: 24px !important;
}

.bv-step-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.bv-step-title-text {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
}

.bv-step-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.bv-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    flex-shrink: 0;
}

.bv-step-arrow span {
    font-size: 20px !important;
    font-weight: bold;
}

/* Benefits Section Component */
.bv-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bv-benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bv-benefit-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bv-benefit-blue {
    background-color: #eff6ff;
    color: #2563eb;
}

.bv-benefit-blue span {
    color: #2563eb;
    font-size: 22px !important;
}

.bv-benefit-orange {
    background-color: #fff5f2;
    color: #ea580c;
}

.bv-benefit-orange span {
    color: #ea580c;
    font-size: 22px !important;
}

.bv-benefit-green {
    background-color: #f0fdf4;
    color: #16a34a;
}

.bv-benefit-green span {
    color: #16a34a;
    font-size: 22px !important;
}

.bv-benefit-purple {
    background-color: #faf5ff;
    color: #7c3aed;
}

.bv-benefit-purple span {
    color: #7c3aed;
    font-size: 22px !important;
}

.bv-benefit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.bv-benefit-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.bv-benefit-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

/* Quick Guide Sidebar Widget */
.bv-guide-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 24px 0;
}

.bv-guide-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bv-guide-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bv-guide-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff5f2;
    color: var(--color-3);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.bv-guide-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bv-guide-step-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.bv-guide-step-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.bv-btn-guide-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1.5px solid var(--color-3);
    color: var(--color-3);
    background-color: transparent;
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.bv-btn-guide-detail:hover {
    background-color: rgba(253, 47, 1, 0.05);
    color: var(--color-3);
    box-shadow: 0 4px 12px rgba(253, 47, 1, 0.06);
}

.bv-btn-guide-detail:active {
    transform: scale(0.98);
}

/* FAQ Sidebar Widget */
.bv-faq-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.bv-faq-list {
    list-style-type: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bv-faq-list li {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.45;
    font-weight: 500;
}

.bv-link-faq-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2b6cb0;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bv-link-faq-detail span {
    font-size: 16px !important;
    transition: transform 0.2s ease;
}

.bv-link-faq-detail:hover {
    color: #1a365d;
}

.bv-link-faq-detail:hover span {
    transform: translateX(3px);
}

/* Cashback Wallet Sidebar Widget */
.bv-wallet-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
    text-align: center;
}

.bv-wallet-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.bv-wallet-lock-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fff5f2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bv-wallet-lock-icon {
    color: var(--color-3);
    font-size: 32px !important;
}

.bv-wallet-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: 100%;
}

.bv-wallet-desc {
    font-size: 13.5px;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.bv-btn-wallet-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--color-3);
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.bv-btn-wallet-login:hover {
    background-color: #e02800;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(253, 47, 1, 0.2);
}

.bv-btn-wallet-login:active {
    transform: scale(0.98);
}

.bv-wallet-footer {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.bv-link-register {
    color: #2b6cb0;
    font-weight: 700;
    text-decoration: none;
}

.bv-link-register:hover {
    text-decoration: underline;
    color: #1a365d;
}

/* Zalo Support Sidebar Widget */
.bv-support-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.bv-support-desc {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.bv-support-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bv-btn-zalo-join {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: #0068ff;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
    cursor: pointer;
}

.bv-btn-zalo-join:hover {
    background-color: #0056d6;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 104, 255, 0.2);
}

.bv-btn-zalo-join:active {
    transform: scale(0.98);
}

.bv-zalo-logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.bv-zalo-logo:hover {
    transform: rotate(8deg) scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .box-section {
        padding: 20px 16px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .bv-home-left,
    .bv-home-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .bv-home-layout {
        gap: 0px;
        margin-top: 15px;
    }

    /* Side-by-side title and graphic on mobile (matching Image 3) */
    .bv-banner-row {
        flex-direction: row;
        gap: 16px;
        align-items: center;
        justify-content: space-between;
        /* margin-bottom: 20px; */
    }

    .bv-banner-content {
        flex: 0 0 65%;
        max-width: 65%;
    }

    .bv-banner-graphic {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .bv-banner-img {
        max-height: 100px;
        width: auto;
        max-width: 100%;
        margin: 0 0 0 auto;
    }

    .bv-banner-title {
        font-size: 24px;
        text-align: left;
        margin: 0;
        line-height: 1.35;
        margin-bottom: 15px;
    }

    .bv-banner-subtitle {
        display: none;
        /* hidden on mobile matching mockup */
    }

    .bv-convert-form {
        flex-direction: column;
        gap: 12px;
    }

    /* .bv-input-group {
        padding: 10px 14px;
    } */

    .bv-btn-convert {
        width: 100%;
        padding: 12px;
    }

    /* 4-column horizontal features grid with icon on top and text on bottom */
    .bv-banner-features {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        justify-content: stretch;
        width: 100%;
        margin-top: 16px;
    }

    .bv-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .bv-feat-icon {
        margin-bottom: 2px;
    }

    .bv-feat-text {
        font-weight: 700;
        color: #1e293b;
        line-height: 1.3;
        text-align: center;
    }

    /* Results mobile adjustments */
    .bv-result-item {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        grid-template-rows: auto auto !important;
        column-gap: 12px !important;
        row-gap: 6px !important;
        align-items: center !important;
        padding: 16px 0 !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }

    .bv-result-item:first-child {
        padding-top: 0 !important;
    }

    .bv-result-item:last-child {
        border-bottom: none !important;
        padding-bottom: 8px !important;
    }

    .bv-result-item-main,
    .bv-result-item-meta {
        display: contents !important;
    }

    .bv-result-img-wrapper {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        width: 64px !important;
        height: 64px !important;
        border-radius: 8px !important;
        border: 1px solid #f1f5f9 !important;
        margin: 0 !important;
        background-color: #f8fafc !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .bv-result-img {
        max-width: 90% !important;
        max-height: 90% !important;
        object-fit: contain !important;
    }

    .bv-result-info {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        align-self: end !important;
    }

    .bv-result-product-title {
        font-size: 13.5px !important;
        font-weight: 600 !important;
        color: #1e293b !important;
        margin: 0 !important;
        line-height: 1.35 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    .bv-result-link {
        display: none !important;
    }

    .bv-result-commission {
        grid-column: 2 !important;
        grid-row: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2px !important;
        align-self: start !important;
        text-align: left !important;
        width: auto !important;
    }

    .bv-comm-label {
        font-size: 12px !important;
        color: #64748b !important;
        font-weight: 500 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .bv-comm-icon {
        display: none !important;
    }

    .bv-comm-values {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        justify-content: flex-start !important;
    }

    .bv-comm-amount {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #ff4e2a !important;
    }

    .bv-comm-badge {
        font-size: 11px !important;
        font-weight: 600 !important;
        color: #16a34a !important;
        background-color: #e6fbf0 !important;
        padding: 1px 6px !important;
        border-radius: 4px !important;
        border: none !important;
    }

    .bv-result-buttons {
        grid-column: 3 !important;
        grid-row: 1 / span 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        justify-self: end !important;
    }

    .bv-btn-login-to-buy {
        width: 84px !important;
        height: 32px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
        box-shadow: none !important;
    }

    .bv-btn-buy {
        background-color: #0068ff !important;
        color: #ffffff !important;
        border: none !important;
    }

    .bv-btn-buy-icon {
        display: none !important;
    }

    .bv-btn-copy {
        background-color: transparent !important;
        color: #ff4e2a !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        height: auto !important;
        width: auto !important;
        display: inline-flex !important;
        gap: 4px !important;
        align-items: center !important;
    }

    .bv-btn-copy:hover {
        background-color: transparent !important;
        color: #e03b18 !important;
    }

    .bv-btn-copy-icon {
        display: inline-block !important;
        font-size: 16px !important;
        color: #ff4e2a !important;
    }

    /* Steps Mobile styles (matching Image 7) */
    .bv-steps-container {
        gap: 8px;
    }

    .bv-step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .bv-step-icon-wrap {
        width: 50px;
        height: 50px;
    }

    .bv-step-icon-wrap span {
        font-size: 20px !important;
    }

    .bv-step-text-wrap {
        align-items: center;
    }

    .bv-step-title-text {
        font-size: 12px;
        font-weight: 700;
        text-align: center;
    }

    .bv-step-desc {
        display: none;
        /* hidden on mobile matching mockup */
    }

    .bv-desktop-only {
        display: none !important;
    }

    .bv-step-arrow {
        align-self: flex-start;
        margin-top: 17px;
    }

    .bv-step-arrow span {
        font-size: 16px !important;
    }

    /* Step badges on mobile */
    .bv-step-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        margin-top: -2px;
        margin-bottom: 2px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    }

    .bv-step-1-badge {
        background-color: #2563eb !important;
    }

    .bv-step-2-badge {
        background-color: #ef4444 !important;
    }

    .bv-step-3-badge {
        background-color: #28a745 !important;
    }

    .bv-step-4-badge {
        background-color: #f97316 !important;
    }

    /* Benefits mobile adjustments */
    .bv-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Wallet mobile adjustments (matching Image 12) */
    .bv-wallet-title {
        text-align: left;
        margin-bottom: 16px;
    }

    .bv-wallet-body {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .bv-wallet-lock-wrap {
        width: auto;
        height: auto;
        background-color: transparent;
        border-radius: 0;
        margin-top: 4px;
    }

    .bv-wallet-lock-icon {
        font-size: 28px !important;
    }

    .bv-wallet-content {
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }

    .bv-wallet-desc {
        /* font-size: 13px; */
        line-height: 1.4;
    }

    .bv-btn-wallet-login {
        width: auto;
        padding: 10px 20px;
        font-size: 13.5px;
    }

    .bv-wallet-footer {
        font-size: 12.5px;
    }
}

@media (max-width: 768px) {
    .bv-banner-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .bv-banner-graphic {
        display: none;
    }
}

@media (max-width: 576px) {
    .bv-banner-title {
        font-size: 19px;
    }

    .bv-banner-img {
        max-height: 80px;
    }

    .bv-banner-features {
        gap: 12px;
    }

    /* Benefits mobile adjustments */
    .bv-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bv-feat-text {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .box-section {
        padding: 20px 12px;
    }

    .bv-feat-text {
        font-size: 10px;
    }
}

.bv-wallet-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px 15px;
}

.bv-wallet-widget-header .bv-wallet-title {
    margin-bottom: 0;
}

.bv-wallet-widget-header .bv-link-detail {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
}

.bv-wallet-logged-in-body {
    display: block;
}

.bv-wallet-logged-in-body .wallet-balance-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.bv-wallet-logged-in-body .wallet-balance-amount {
    font-size: 24px;
    font-weight: bold;
    color: #ee4d2d;
    margin-bottom: 16px;
}

.bv-wallet-logged-in-body .wallet-actions {
    display: flex;
    gap: 8px;
}

.bv-wallet-logged-in-body .bv-btn-withdraw {
    /* flex: 1; */
    text-align: center;
    background-color: #ee4d2d;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #ee4d2d;
}

.bv-wallet-logged-in-body .bv-btn-history {
    flex: 1;
    text-align: center;
    background-color: #fff;
    color: #374151;
    padding: 8px 10px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #d1d5db;
}

/* ==========================================================================
   Login Modal Styles
   ========================================================================== */
.bv-login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bv-login-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.bv-login-modal-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 30px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.bv-login-modal-scroll-area {
    flex: 1 1 auto;
}

.bv-login-modal-scroll-area::-webkit-scrollbar {
    width: 6px;
}

.bv-login-modal-scroll-area::-webkit-scrollbar-track {
    background: transparent;
}

.bv-login-modal-scroll-area::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 9999px;
}

.bv-login-modal-scroll-area::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

.bv-login-modal-overlay.open .bv-login-modal-card {
    transform: scale(1);
    opacity: 1;
}

.bv-login-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bv-login-modal-close:hover {
    color: #111827;
    background-color: #f3f4f6;
    transform: rotate(90deg);
}

.bv-login-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.bv-login-modal-subtitle {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin: 0 0 10px 0;
    line-height: 1.5;
    padding: 0 10px;
}

/* Warning alert box */
.bv-login-modal-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #FFF5F1;
    border: 1px solid #FFDACF;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 15px;
    text-align: left;
}

.bv-login-modal-warning .warning-icon {
    color: #EE4D2D;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.bv-login-modal-warning .warning-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bv-login-modal-warning .warning-title {
    font-weight: 700;
    color: #D33A1C;
    font-size: 13px;
    line-height: 1.4;
}

.bv-login-modal-warning .warning-desc {
    color: #E0533C;
    font-size: 12px;
    line-height: 1.4;
}

/* Benefit columns */
.bv-login-modal-benefits {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 20px;
}

.bv-benefit-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 6px;
    position: relative;
}

.bv-benefit-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #e5e7eb;
}

.bv-benefit-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFF5F1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.bv-benefit-icon-wrap .material-symbols-outlined {
    color: #EE4D2D;
    font-size: 22px;
}

.bv-benefit-text {
    font-size: 11px;
    color: #4b5563;
    line-height: 1.4;
    font-weight: 500;
}

/* Shopee standard note */
.bv-login-modal-shopee-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    margin-top: 16px;
    margin-bottom: 12px;
}

.bv-login-modal-shopee-note .material-symbols-outlined {
    font-size: 18px;
    color: #9ca3af;
    flex-shrink: 0;
}

.bv-login-modal-fast-title {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    margin-bottom: 16px;
}

.bv-login-modal-social-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.bv-login-modal-zalo-wrapper {
    position: relative;
    flex: 1.2;
}

.bv-login-modal-zalo-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4d00;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(255, 77, 0, 0.2);
}

.bv-login-modal-btn-zalo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #0068ff;
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    height: 48px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    width: 100%;
}

.bv-login-modal-btn-zalo:hover {
    background-color: #0056d6;
    transform: translateY(-1px);
}

.bv-login-modal-btn-zalo:active {
    transform: translateY(0);
}

.bv-login-modal-btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffffff;
    color: #374151 !important;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    /* Pill/Capsule shape as in screenshot */
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, transform 0.1s;
}

.bv-login-modal-btn-social:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.bv-login-modal-btn-social:active {
    transform: translateY(0);
}

.bv-login-modal-social-icon-svg {
    width: 20px;
    height: 20px;
    display: block;
}

.bv-login-modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 15px;
}

.bv-login-modal-divider::before,
.bv-login-modal-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.bv-login-modal-divider span {
    padding: 0 12px;
    font-weight: 500;
}

.bv-login-modal-form-group {
    margin-bottom: 16px;
}

.bv-login-modal-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #ffffff;
    padding: 0 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    padding: 8px 12px;
}

.bv-login-modal-input-wrap:focus-within {
    border-color: #ff4d00;
    box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.1);
}

.bv-login-modal-input-wrap .material-symbols-outlined {
    color: #9ca3af;
    font-size: 20px;
    margin-right: 10px;
    user-select: none;
}

.bv-login-modal-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0;
    font-size: 14px;
    color: #111827;
    background: transparent;
    height: 100%;
    width: 100%;
}

.bv-login-modal-input-wrap input::placeholder {
    color: #9ca3af;
}

.bv-login-modal-toggle-password {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: color 0.2s;
}

.bv-login-modal-toggle-password:hover {
    color: #4b5563;
}

.bv-login-modal-toggle-password .material-icons-outlined {
    margin-right: 0;
}

.bv-login-modal-remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.bv-login-modal-remember-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
}

.bv-login-modal-remember-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom premium orange checkbox */
.bv-login-modal-custom-checkbox {
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.bv-login-modal-remember-label:hover input~.bv-login-modal-custom-checkbox {
    border-color: #EE4D2D;
}

.bv-login-modal-remember-label input:checked~.bv-login-modal-custom-checkbox {
    background-color: #EE4D2D;
    border-color: #EE4D2D;
}

.bv-login-modal-custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bv-login-modal-remember-label input:checked~.bv-login-modal-custom-checkbox::after {
    display: block;
}

.bv-login-modal-forgot-link {
    font-size: 13px;
    color: #0068ff;
    text-decoration: none;
    font-weight: 600;
}

.bv-login-modal-forgot-link:hover {
    text-decoration: underline;
}

.bv-login-modal-btn-submit {
    width: 100%;
    background-color: #EE4D2D;
    /* Shopee-like vibrant orange-red color */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(238, 77, 45, 0.15);
}

.bv-login-modal-btn-submit:hover {
    background-color: #e03c1a;
}

.bv-login-modal-btn-submit:active {
    transform: scale(0.99);
}

.bv-login-modal-btn-submit:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

.bv-login-modal-register-prompt {
    font-size: 14px;
    text-align: center;
    color: #4b5563;
    margin-top: 20px;
}

.bv-login-modal-register-prompt a {
    color: #0068ff;
    text-decoration: none;
    font-weight: 600;
}

.bv-login-modal-register-prompt a:hover {
    text-decoration: underline;
}

.bv-login-modal-secure-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    margin-top: 15px;
    border-top: 1px solid #f3f4f6;
    padding-top: 12px;
}

.bv-login-modal-secure-footer .material-symbols-outlined {
    font-size: 16px;
    color: #9ca3af;
}

.bv-login-modal-error-alert {
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.5;
}

body.stop-scroll {
    overflow: hidden;
}

@media (max-width: 576px) {
    .bv-login-modal-card {
        padding: 30px 24px;
    }

    .bv-login-modal-social-row {
        flex-direction: column;
        gap: 8px;
    }

    .bv-login-modal-zalo-wrapper {
        flex: auto;
    }
}

/* Important Note Accordion */
.bv-important-note-accordion {
    background-color: #FFF9F3;
    border: 1px solid #FFE4D6;
    border-radius: 12px;
    padding: 16px;
    /* margin-top: 15px; */
    margin-bottom: 15px;
    width: 100%;
}

.bv-note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.bv-note-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bv-note-header-left .note-warning-icon {
    color: #FF9E00;
    font-size: 20px;
}

.bv-note-header-left .note-title {
    font-weight: 700;
    color: #A04000;
    font-size: 14px;
}

.bv-note-header .note-caret-icon {
    color: #85929E;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.bv-note-content {
    margin-top: 14px;
    border-top: 1px dashed #FFE4D6;
    padding-top: 14px;
}

.bv-note-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bv-note-content p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.bv-note-content p:not(:last-child) {
    margin-bottom: 10px;
}

.bv-note-content p img {
    width: 18px !important;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.bv-note-list li .note-item-icon.cart-icon {
    color: #FF5A2B;
}

.bv-note-list li .note-item-icon.live-icon {
    color: #FF5A2B;
}

.bv-note-list li .note-item-icon.video-icon {
    color: #FF5A2B;
}

.bv-note-list li .note-item-icon.check-icon {
    color: #27AE60;
}

.bv-note-list li .note-item-text {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
    font-weight: 500;
}

/* ==========================================================================
   Video Guide Modal Styles
   ========================================================================== */
.bv-video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bv-video-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.bv-video-modal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 90%;
    max-width: 500px;
    box-sizing: border-box;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.bv-video-modal-overlay.open .bv-video-modal-container {
    transform: translateY(0);
}

.bv-video-modal-close {
    position: absolute;
    top: 40px;
    right: 40px;
    /* background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15); */
    color: #ffffff;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 100000;
}

.bv-video-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
    color: #ee4d2d;
    border-color: #ee4d2d;
}

.bv-video-modal-close span {
    font-size: 24px;
}

.bv-video-modal-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.bv-video-modal-subtitle {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 24px;
    font-weight: 400;
}

/* iPhone Smartphone Mockup Container */
.bv-phone-mockup {
    position: relative;
    width: 303px;
    height: 665px;
    background-color: #000000;
    border-radius: 40px;
    border: 2px solid #1e1e24;
    /* Space gray phone body */
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9),
        0 0 0 2px rgba(255, 255, 255, 0.08),
        inset 0 0 8px rgba(255, 255, 255, 0.15);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Dynamic Island */
.bv-phone-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 25px;
    background-color: #000000;
    border-radius: 12px;
    z-index: 10;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
    display: none;
}

.bv-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background-color: #000000;
}

.bv-phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Scaling for heights and mobile screens */
@media (max-width: 576px) {
    .bv-video-modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .bv-video-modal-title {
        font-size: 20px;
        padding: 0 15px;
    }

    .bv-video-modal-subtitle {
        font-size: 13px;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    /* .bv-phone-mockup {
        width: 227px;
        height: 480px;
        border-width: 10px;
        border-radius: 36px;
    } */

    .bv-phone-screen {
        border-radius: 26px;
    }

    .bv-phone-island {
        width: 80px;
        height: 20px;
        top: 8px;
    }
}

@media (max-height: 720px) {
    .bv-phone-mockup {
        width: 206px;
        height: 440px;
        border-width: 8px;
        border-radius: 30px;
    }

    .bv-phone-screen {
        border-radius: 22px;
    }

    .bv-phone-island {
        width: 70px;
        height: 18px;
        top: 6px;
    }

    .bv-video-modal-title {
        /* font-size: 18px; */
        margin-bottom: 4px;
    }

    .bv-video-modal-subtitle {
        font-size: 12px;
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   Steps Notice Tip Styles
   ========================================================================== */
.bv-steps-tip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background-color: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 12px;
    margin-top: 24px;
    text-align: left;
}

.bv-steps-tip .tip-icon {
    color: #eab308;
    font-size: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bv-steps-tip .tip-content {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 576px) {
    .bv-steps-tip {
        padding: 12px 16px;
        gap: 10px;
        margin-top: 18px;
        align-items: flex-start;
    }

    .bv-steps-tip .tip-content {
        font-size: 13px;
    }

    .bv-steps-tip .tip-icon {
        font-size: 20px;
        margin-top: 2px;
    }
}

/* ==========================================================================
   Conversion Result Card Styles
   ========================================================================== */
#bvResultSection {
    scroll-margin-top: 200px;
}

.bv-result-card {
    background-color: #ffffff;
    border: 1.5px solid #28a745;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.03),
        0 8px 16px -6px rgba(0, 0, 0, 0.01);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.bv-result-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.bv-result-header .success-icon {
    color: #28a745;
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
}

.bv-result-header .success-title {
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.bv-result-header .success-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Product Info Box */
.bv-result-product {
    display: flex;
    gap: 18px;
    border: 1.5px solid #edf2f7;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    background-color: #ffffff;
    text-align: left;
}

.bv-result-product .product-thumb {
    width: 110px;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #edf2f7;
}

.bv-result-product .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bv-result-product .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.bv-result-product .product-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bv-result-product .product-commission-row {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    margin-bottom: 4px;
}

.bv-result-product .coin-icon {
    color: #ec4899;
    font-size: 18px;
    flex-shrink: 0;
}

.bv-result-product .commission-text {
    font-size: 13px;
    font-weight: 500;
}

.bv-result-product .product-payout-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bv-result-product .payout-amount {
    font-size: 18px;
    font-weight: 700;
    color: #ef4444;
}

.bv-result-product .payout-rate {
    font-size: 12px;
    font-weight: 600;
    color: #28a745;
    background-color: #ecfdf5;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.bv-action-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Actions Row */
.bv-result-actions {
    display: flex;
    gap: 12px;
    /* margin-bottom: 16px; */
}

.bv-result-actions .result-link-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f8fafc;
    border: 1.5px solid #edf2f7;
    border-radius: 8px;
    padding: 10px 14px;
    flex: 1;
    min-width: 0;
    transition: all 0.2s ease;
}

.bv-result-actions .result-link-wrapper:focus-within {
    border-color: var(--color-3, #ff4e2a);
    background-color: #ffffff;
}

.bv-result-actions .link-icon {
    color: #94a3b8;
    font-size: 18px;
    flex-shrink: 0;
}

.bv-result-actions .result-link-input {
    border: none;
    background: transparent;
    color: #475569;
    font-size: 14px;
    width: 100%;
    font-weight: 500;
    padding: 0;
    outline: none;
}

.bv-result-actions .btn-copy-result {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1.5px solid var(--color-3, #ff4e2a);
    color: var(--color-3, #ff4e2a);
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.bv-result-actions .btn-copy-result:hover {
    background-color: #fff5f0;
}

.bv-result-actions .btn-copy-result .copy-icon {
    font-size: 16px;
}

/* Big Shopee Button */
.bv-result-card .btn-buy-shopee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: #0068ff;
    color: #ffffff;
    border-radius: 8px;
    padding: 14px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.bv-result-card .btn-buy-shopee:hover {
    background-color: #0056d6;
    color: #ffffff;
    text-decoration: none;
}

.bv-result-card .btn-buy-shopee .cart-icon,
.bv-result-card .btn-buy-shopee .external-icon {
    font-size: 18px;
}

.bv-result-card .btn-buy-shopee .external-icon {
    margin-left: auto;
}

/* Mobile responsive styles */
@media (max-width: 576px) {
    .bv-result-card {
        padding: 16px;
        margin-bottom: 24px;
    }

    .bv-result-header .success-icon {
        font-size: 28px;
    }

    .bv-result-header .success-subtitle {
        font-size: 13px;
    }

    .bv-result-product {
        gap: 12px;
        padding: 12px;
    }

    .bv-result-product .product-thumb {
        width: 85px;
        height: 85px;
    }

    .bv-result-product .product-name {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .bv-result-product .payout-amount {
        font-size: 16px;
    }

    .bv-result-product .commission-text {
        font-size: 12px;
    }

    .bv-result-actions {
        gap: 8px;
    }

    .bv-result-actions .result-link-wrapper {
        padding: 8px 10px;
    }

    .bv-result-actions .btn-copy-result {
        padding: 8px 16px;
        font-size: 13px;
    }

    .bv-result-card .btn-buy-shopee {
        padding: 12px;
        font-size: 14px;
    }

    .bv-action-wrap {
        grid-template-columns: 1fr;
    }

    #bvResultSection {
        scroll-margin-top: 165px;
    }
}

/* Spinner Animation */
.bv-spin {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}