/* ==========================================================================
   Mobile Sticky Action Bar - Global Marketplace Standard
   ========================================================================== */

/* Container - Fixed at bottom, mobile only */
.mobile-sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 992px) {
    .mobile-sticky-action-bar {
        display: none !important;
    }
}

/* Wishlist/Favorite Button Wrapper */
.sticky-fav-wrapper {
    flex-shrink: 0;
}

.sticky-fav-wrapper .btn,
.sticky-fav-wrapper button {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    border-radius: 10px;
    color: #666666;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.sticky-fav-wrapper .btn:hover,
.sticky-fav-wrapper button:hover {
    border-color: #ff4757;
    color: #ff4757;
    background: #fff5f6;
}

.sticky-fav-wrapper .btn.active,
.sticky-fav-wrapper button.active,
.sticky-fav-wrapper .btn i.fas,
.sticky-fav-wrapper button i.fas {
    color: #ff4757;
    border-color: #ff4757;
}

/* Sticky Actions Container */
.sticky-actions {
    display: flex;
    flex: 1;
    gap: 10px;
    align-items: stretch;
}

.btn-sticky-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 48px;
    padding: 0 16px;
    border: 2px solid #333333;
    background: #ffffff;
    color: #333333;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-sticky-cart:hover {
    background: #333333;
    color: #ffffff;
}

.btn-sticky-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-sticky-cart i {
    font-size: 1.1rem;
}

.btn-sticky-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 20px;
    border: none;
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: #ffffff;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.35);
}

.btn-sticky-buy:hover {
    background: linear-gradient(135deg, #00a085 0%, #009074 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.45);
}

.btn-sticky-buy:active {
    transform: translateY(0);
}

.btn-sticky-buy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-sticky-buy i {
    font-size: 1rem;
}

.btn-sticky-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    height: 48px;
    padding: 0 20px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
    text-decoration: none;
}

.btn-sticky-download:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46a1 100%);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    body.has-sticky-bar {
        padding-bottom: 80px;
    }

    .footer {
        margin-bottom: 70px;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-sticky-action-bar {
    animation: slideUp 0.3s ease-out;
}


/* ==========================================================================
   MOBILE ITEM DETAIL PAGE — Premium Marketplace Experience
   Matches mockup: Image → Title → Author → Category → License → Quality
   Only ≤ 991px. DESKTOP IS COMPLETELY UNTOUCHED.
   ========================================================================== */

@media (max-width: 991.98px) {

    /* ----- LAYOUT: Section & Container ----- */
    #itemDetailSection {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    #itemDetailSection>.container {
        padding-left: 0;
        padding-right: 0;
    }

    /* ----- FLEX REORDERING ----- */
    .mobile-item-row {
        display: flex !important;
        flex-direction: column !important;
    }

    .mobile-order-preview {
        order: 1 !important;
    }

    .mobile-order-sidebar {
        order: 2 !important;
    }

    .mobile-order-tabs {
        order: 3 !important;
    }

    /* ----- IMAGE PREVIEW — Full bleed immersive ----- */
    .mobile-order-preview>.card-v.border.p-4.mb-4 {
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
        background: #000 !important;
    }

    .mobile-order-preview .item-single-img img {
        border-radius: 0;
        width: 100%;
        height: auto;
        display: block;
    }

    /* Badge overlay on image */
    .mobile-order-preview .item-badge {
        position: absolute;
        top: 14px;
        left: 14px;
        z-index: 5;
        border-radius: 22px;
        padding: 7px 16px;
        font-size: 0.82rem;
        font-weight: 700;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .mobile-order-preview .item-single-preview {
        position: relative;
    }

    /* Screenshot swiper */
    .mobile-order-preview .item-swiper {
        padding: 8px 16px 0;
        margin-top: 0 !important;
        background: #fff;
    }

    /* ----- MOBILE TITLE BLOCK (after image) ----- */
    .mobile-title-block {
        padding: 18px 16px 8px;
        background: #ffffff;
    }

    .mobile-breadcrumb-nav {
        margin-bottom: 8px;
    }

    .mobile-breadcrumb-nav .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 0;
        flex-wrap: wrap;
        gap: 2px;
    }

    .mobile-breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
        padding: 0 4px;
        font-size: 0.7rem;
    }

    .mobile-item-title {
        font-size: 1.4rem !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        color: #1a1a2e;
        margin-bottom: 6px;
        letter-spacing: -0.02em;
    }

    .mobile-author-line {
        font-size: 0.88rem;
        color: #6b7280;
        margin-bottom: 12px;
    }

    .mobile-author-line a {
        color: #20c997;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-author-line a:hover {
        text-decoration: underline;
    }

    /* ----- CATEGORY PILLS ----- */
    .mobile-category-pills {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 12px;
    }

    .mobile-cat-pill {
        display: inline-block;
        background: rgba(32, 201, 151, 0.08);
        color: #0d9668;
        border: 1px solid rgba(32, 201, 151, 0.2);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.76rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .mobile-cat-pill:hover {
        background: rgba(32, 201, 151, 0.15);
        color: #0d9668;
        text-decoration: none;
    }

    .mobile-cat-separator {
        color: #9ca3af;
        font-size: 1rem;
        font-weight: 300;
    }

    /* ----- META ROW (reviews/sales) ----- */
    .mobile-meta-row {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 4px;
        padding-bottom: 4px;
    }

    .mobile-meta-item {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 0.82rem;
        color: #6b7280;
        text-decoration: none;
    }

    .mobile-meta-item:hover {
        color: #4b5563;
        text-decoration: none;
    }

    .mobile-meta-item i {
        font-size: 0.78rem;
    }


    /* =====================================================
       SIDEBAR — License Card (Matching Mockup)
       ===================================================== */
    .mobile-order-sidebar {
        padding: 0 16px !important;
    }

    /* --- License card: dark card matching mockup --- */
    .mobile-license-card {
        background: #1b2130 !important;
        border: 1px solid rgba(32, 201, 151, 0.15) !important;
        border-top: 2px solid rgba(32, 201, 151, 0.3) !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        box-shadow: 0 -2px 20px rgba(32, 201, 151, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    }

    /* HIDE License Option header on mobile */
    .mobile-license-card .card-v-header {
        display: none !important;
    }

    /* Body */
    .mobile-license-card .card-v-body {
        padding: 18px 20px 22px !important;
    }

    /* --- Radio options: compact single-line like mockup --- */
    .mobile-license-card .form-check.form-check-lg {
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 10px 0 10px 32px !important;
        margin-bottom: 2px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .mobile-license-card .form-check.form-check-lg:last-of-type {
        border-bottom: none !important;
    }

    .mobile-license-card .form-check.form-check-lg:has(input:checked) {
        background: transparent !important;
        box-shadow: none !important;
    }

    .mobile-license-card .form-check-input {
        border-color: rgba(255, 255, 255, 0.3) !important;
        background-color: transparent !important;
        width: 18px !important;
        height: 18px !important;
        margin-top: 0 !important;
    }

    .mobile-license-card .form-check-input:checked {
        background-color: #20c997 !important;
        border-color: #20c997 !important;
        box-shadow: 0 0 6px rgba(32, 201, 151, 0.25) !important;
    }

    /* HIDE subtitle text "For one project" / "For unlimited projects" */
    .mobile-license-card .form-check-label .small,
    .mobile-license-card .form-check-label .text-muted,
    .mobile-license-card .card-v-body .mb-4 p.small,
    .mobile-license-card .card-v-body .mb-4 .text-muted {
        display: none !important;
    }

    /* License name — compact inline */
    .mobile-license-card .form-check-label h6,
    .mobile-license-card .form-check-label .h6 {
        color: #ffffff !important;
        font-size: 0.88rem !important;
        font-weight: 600 !important;
        margin-bottom: 0 !important;
    }

    /* Label flex alignment — single line */
    .mobile-license-card .form-check-label {
        align-items: center !important;
    }

    .mobile-license-card .form-check-label>div:first-child {
        flex: 1;
    }

    /* Price */
    .mobile-license-card .item-price {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .mobile-license-card .item-price-number {
        color: #ffffff !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        white-space: nowrap;
    }

    .mobile-license-card .item-price-through {
        color: rgba(255, 255, 255, 0.3) !important;
        font-size: 0.8rem;
        text-decoration: line-through;
    }

    /* Discount badge */
    .mobile-license-card .badge {
        background: #ef4444 !important;
        color: #fff !important;
        border-radius: 6px !important;
        font-size: 0.72rem !important;
        padding: 3px 8px !important;
    }

    /* Single price mode */
    .mobile-license-card .card-v-body>.add-to-cart-form>.mb-4 {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .mobile-license-card .card-v-body>.add-to-cart-form>.mb-4 .h6 {
        color: #ffffff !important;
    }

    /* Support section */
    .mobile-license-card .bg-light {
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 12px !important;
    }

    .mobile-license-card .bg-light .form-check-label {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .mobile-license-card .bg-light strong {
        color: #20c997 !important;
    }

    .mobile-license-card .bg-light .form-check-input {
        border-color: rgba(255, 255, 255, 0.2) !important;
    }

    /* --- Button Row: Lihat Demo + Beli Sekarang side-by-side --- */
    .mobile-btn-row {
        display: flex !important;
        gap: 10px !important;
        align-items: stretch !important;
        margin-top: 6px;
    }

    .mobile-btn-row .btn-outline-demo {
        flex: 0.45 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 46px !important;
        border-radius: 10px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        padding: 0 14px !important;
        color: #20c997 !important;
        border: 2px solid rgba(32, 201, 151, 0.4) !important;
        background: transparent !important;
        text-decoration: none !important;
    }

    .mobile-btn-row .btn-outline-demo:hover {
        background: rgba(32, 201, 151, 0.08) !important;
    }

    .mobile-btn-row .buy-now-form {
        flex: 0.55 !important;
    }

    .mobile-btn-row .btn-buy-now {
        height: 46px !important;
        border-radius: 10px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        padding: 0 14px !important;
        background: linear-gradient(135deg, #20c997 0%, #17a880 100%) !important;
        color: #fff !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Desktop: Add to Cart + Buy Now buttons */
    .mobile-license-card .btn-primary {
        background: linear-gradient(135deg, #20c997 0%, #17a880 100%) !important;
        border: none !important;
        border-radius: 12px !important;
        height: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        box-shadow: 0 6px 20px rgba(32, 201, 151, 0.3);
        color: #fff !important;
    }

    .mobile-license-card .btn-outline-primary {
        color: #20c997 !important;
        border: 2px solid rgba(32, 201, 151, 0.35) !important;
        background: transparent !important;
        border-radius: 12px !important;
        height: 50px;
        font-weight: 700;
        font-size: 0.95rem;
    }

    .mobile-license-card .btn-outline-primary:hover {
        background: rgba(32, 201, 151, 0.08) !important;
    }

    /* --- TRENDING Badge: top-left of image --- */
    .mobile-order-preview .item-badge-trending {
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
        color: #ffffff !important;
        top: 14px !important;
        left: 14px !important;
        padding: 8px 18px !important;
        border-radius: 24px !important;
        font-size: 0.82rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.02em;
        box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35) !important;
    }

    .mobile-order-preview .item-badge-sale {
        background: linear-gradient(135deg, #ef4444, #dc2626) !important;
        color: #fff !important;
    }

    .mobile-order-preview .item-badge-free {
        background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
        color: #fff !important;
    }

    /* --- Image: compact, not too big --- */
    .mobile-order-preview .item-single-img {
        max-height: 280px !important;
        overflow: hidden !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-order-preview .item-single-img img {
        object-fit: cover !important;
        max-height: 280px !important;
    }

    /* --- Compact row gap --- */
    .mobile-item-row {
        gap: 0.5rem !important;
    }


    /* =====================================================
       QUALITY CHECKS — 2-Column Grid
       ===================================================== */
    .mobile-quality-list {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 4px 16px;
        margin-top: 14px !important;
        padding: 0;
    }

    .mobile-quality-list .list-item {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        padding: 5px 0;
        color: rgba(255, 255, 255, 0.65) !important;
        font-size: 0.76rem !important;
        line-height: 1.35;
    }

    .mobile-quality-list .list-item i.fa-check {
        color: #20c997 !important;
        flex-shrink: 0;
        margin-top: 2px;
        font-size: 0.68rem;
    }

    .mobile-quality-list .list-item i.fa-times {
        color: #ef4444 !important;
        flex-shrink: 0;
        margin-top: 2px;
        font-size: 0.68rem;
    }


    /* =====================================================
       ITEM DETAILS CARD
       ===================================================== */
    .mobile-item-details {
        border-radius: 14px !important;
        padding: 18px !important;
        margin-top: 16px !important;
    }

    .mobile-item-details .small>div {
        padding-bottom: 10px !important;
        margin-bottom: 10px !important;
    }

    /* Category breadcrumb as pills */
    .mobile-item-details .breadcrumb-item a {
        display: inline-block;
        background: rgba(32, 201, 151, 0.08);
        color: #0d9668;
        border: 1px solid rgba(32, 201, 151, 0.2);
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-item-details .breadcrumb-item+.breadcrumb-item::before {
        display: none;
    }


    /* =====================================================
       SHARE CARD
       ===================================================== */
    .mobile-share-card {
        border-radius: 14px !important;
        padding: 16px !important;
        margin-top: 16px !important;
    }


    /* =====================================================
       PREMIUM / FREE CARDS — Match dark card style
       ===================================================== */
    .mobile-order-sidebar .card-v.border-premium {
        border-radius: 18px !important;
        background: linear-gradient(160deg, #1a2332, #0f1923) !important;
        border-color: rgba(255, 193, 7, 0.2) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .mobile-order-sidebar .card-v.border-premium h3,
    .mobile-order-sidebar .card-v.border-premium p {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .mobile-order-sidebar .card-v.border-premium .text-premium {
        color: #ffc107 !important;
    }

    .mobile-order-sidebar .card-v.border-primary {
        border-radius: 18px !important;
        background: linear-gradient(160deg, #1a2332, #0f1923) !important;
        border-color: rgba(32, 201, 151, 0.3) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .mobile-order-sidebar .card-v.border-primary h3 {
        color: #ffffff !important;
    }

    .mobile-order-sidebar .card-v.border-primary p {
        color: rgba(255, 255, 255, 0.7) !important;
    }


    /* =====================================================
       TABS / DESCRIPTION — Clean mobile
       ===================================================== */
    .mobile-order-tabs {
        padding: 0 16px;
    }

    .mobile-order-tabs .card-v {
        border-radius: 14px !important;
        padding: 18px !important;
    }

    /* Tab buttons: horizontal scroll */
    .mobile-order-tabs .row.row-cols-1.row-cols-lg-2 {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 8px !important;
        padding-bottom: 8px;
        margin: 0 !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .mobile-order-tabs .row.row-cols-1.row-cols-lg-2::-webkit-scrollbar {
        display: none;
    }

    .mobile-order-tabs .row.row-cols-1.row-cols-lg-2>.col {
        flex: 0 0 auto !important;
        width: auto !important;
        padding: 0 !important;
    }

    .mobile-order-tabs .row.row-cols-1.row-cols-lg-2 .btn {
        white-space: nowrap;
        padding: 8px 18px !important;
        font-size: 0.82rem !important;
        border-radius: 22px !important;
    }


    /* =====================================================
       AUTHOR / SIMILAR ITEMS SECTIONS
       ===================================================== */
    .section.section-start {
        padding: 0 16px;
    }
}


/* ==========================================================================
   EXTRA SMALL SCREENS (≤ 400px)
   ========================================================================== */
@media (max-width: 400px) {
    .btn-sticky-cart span {
        display: none;
    }

    .btn-sticky-cart {
        padding: 0 14px;
        min-width: 48px;
    }

    .btn-sticky-buy span {
        font-size: 0.9rem;
    }

    .mobile-item-title {
        font-size: 1.2rem !important;
    }

    .mobile-quality-list .list-item {
        font-size: 0.7rem !important;
    }

    .mobile-license-card .item-price-number {
        font-size: 1rem;
    }

    .mobile-cat-pill {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}


/* ==========================================================================
   TABLET OPTIMIZATIONS (768px - 991px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 991.98px) {
    .mobile-license-card .form-check.form-check-lg {
        padding: 18px 20px 18px 50px;
    }

    .mobile-quality-list {
        gap: 6px 24px;
    }

    .mobile-quality-list .list-item {
        font-size: 0.82rem !important;
    }

    .mobile-item-title {
        font-size: 1.6rem !important;
    }

    .mobile-cat-pill {
        font-size: 0.82rem;
        padding: 5px 14px;
    }
}


/* ==========================================================================
   WHATSAPP ICON BUTTON — Mobile Sticky Bar (replaces Favorite)
   Same box shape as the old Favorite button
   ========================================================================== */
.sticky-wa-wrapper {
    flex-shrink: 0;
}

.btn-sticky-whatsapp-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #25D366;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.4rem;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
}

.btn-sticky-whatsapp-icon:hover {
    background: linear-gradient(135deg, #20bd5a 0%, #0f7a6d 100%);
    border-color: #20bd5a;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(37, 211, 102, 0.45);
}

.btn-sticky-whatsapp-icon:active {
    transform: translateY(0);
}


/* ==========================================================================
   WHATSAPP FLOATING BUTTON — Desktop Only
   ========================================================================== */
.desktop-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px 14px 18px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45), 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: waFloat 3s ease-in-out infinite;
}

.desktop-whatsapp-float:hover {
    background: linear-gradient(135deg, #20bd5a 0%, #0f7a6d 100%);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55), 0 4px 15px rgba(0, 0, 0, 0.15);
}

.desktop-whatsapp-float i {
    font-size: 1.5rem;
}

.desktop-whatsapp-float .wa-float-label {
    white-space: nowrap;
    letter-spacing: 0.01em;
}

/* Subtle floating animation */
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}