.goldColor {
    border: 2px solid gold;
    background-color: #FFCC3D;
}
.silverColor {
    border: 2px solid silver;
    background-color: #A9A9A9;
}

/* Animated Watch Girls Online Button - Desktop Header */
header .online-btn {
    background: linear-gradient(135deg, #ff375c 0%, #ff5a7a 50%, #ff7b95 100%) !important;
    position: relative;
    overflow: hidden;
    animation: header-pulse-glow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

header .online-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: rotate(45deg);
    animation: header-shine 2.5s ease-in-out infinite;
}

header .online-btn:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 6px 25px rgba(255, 55, 92, 0.6) !important;
}

/* Mobile girl-btn animation */
a.girl-btn {
    position: relative;
    overflow: hidden;
    animation: header-pulse-glow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

a.girl-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: rotate(45deg);
    animation: header-shine 2.5s ease-in-out infinite;
}

@keyframes header-pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 55, 92, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 55, 92, 0.7), 0 0 35px rgba(255, 90, 122, 0.4);
    }
}

@keyframes header-shine {
    0% {
        left: -50%;
    }
    50%, 100% {
        left: 150%;
    }
}

/* (Styles unchanged, keeping for context) */
.top-pick-box {
    padding: 20px;
    border: 1px solid;
    border-radius: 10px;
}
.picks-content h3 {
    color: #212529;
    font-size: 24px;
    font-weight: 700;
}
.picks-content ul.list-items {
    margin: 0;
    padding: 0;
    margin-top: 20px;
    display: grid;
    gap: 15px;
}
.visit-btn a {
    display: inline-block;
    padding: 12px 15px;
    width: 100%;
    text-align: center;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.visit-box {
    display: grid;
    gap: 15px;
}
.price-text h4 {
    color: #212529;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.visit-box .price-text {
    margin: 0;
}
.star-icon {
    color: #f1c348;
    font-size: 20px;
}
.yellow-box a {
    background: #f1c348;
}
.yellow-box {
    border-color: #f1c348;
    background: #f1c34824;
}
.small-text-box span {
    display: inline-block;
    padding: 10px 45px;
    color: #fff;
    border-radius: 4px 4px 0px 0px;
}
.bg-yellow span{
    background: #f1c348;
}
.small-text-box {
    margin-left: 30px;
}

.grey-box a {
    background: #979797;
}
.grey-box {
    border-color: #979797;
    background: #9797970d;
}
.bg-grey span{
    background: #979797;
}

/* BongaCams dark podium box */
.dark-box {
    border-color: #333;
    background: #1a1a1a;
}
.dark-box a.visit-link {
    background: #4a4a4a;
}
.dark-box .visit-btn a {
    background: #555;
}
.dark-box .picks-content h3 {
    color: #fff;
}
.dark-box .picks-content ul.list-items li {
    color: #ddd;
}
.dark-box .price-text h4 {
    color: #fff;
}
.dark-box .gift-text p {
    color: #ccc;
}
.dark-box .img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.dark-box .img-wrapper img {
    width: 100%;
    max-width: 220px;
    height: auto;
}
.bg-dark span {
    background: #333;
}
.pink-box a {
    background: #ff385d;
}
.pink-box {
    border-color: #ff385d;
    background: #ff385d14;
}
.bg-pink span{
    background: #ff385d;
}

/* 01-10-2025 css start*/
.footer-content-items p {
    margin-bottom: 6px;
    color: #6E7072;
    font-size: 13px;
}

a.btn-header {
    color: #fff;
    background: linear-gradient(90deg, #FED765 18%, #C98007 100%);
    padding: 12px 15px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
}
.header-btns {
    display: flex;
    gap: 20px;
}

@media(max-width:1680){
    .country-flag-btn {
        font-size: 13px;
    }
}

@media(max-width:767px){
    .picks-content {
        margin: 20px 0px;
    }
    .footer-bottom {
        margin-bottom: 0;
    }
    .mobile-links a {
        font-size: 11px;
    }
    a.btn-header {
        width: 63%;
    }
}

/* Homepage Mobile Sticky Navigation Footer */
.sticky-nav-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #FF5171;
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.3);
    padding: 8px 6px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 6px;
}

.sticky-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-decoration: none;
    color: #fff;
    padding: 8px 4px;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.sticky-nav-item:hover,
.sticky-nav-item:active {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: scale(1.02);
}

.sticky-nav-icon {
    font-size: 22px;
    margin-bottom: 3px;
    line-height: 1;
}

.sticky-nav-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.2;
}

/* Watch Live button - Special animated style */
.sticky-nav-item.live-btn {
    background: linear-gradient(135deg, #00c853 0%, #00e676 50%, #00c853 100%);
    background-size: 200% 200%;
    animation: liveGradient 2s ease infinite, livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.sticky-nav-item.live-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: liveShine 3s ease-in-out infinite;
}

.sticky-nav-item.live-btn:hover {
    background: linear-gradient(135deg, #00e676 0%, #69f0ae 50%, #00e676 100%);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.7);
    transform: scale(1.05);
}

.sticky-nav-item.live-btn .sticky-nav-icon {
    position: relative;
    z-index: 1;
}

.sticky-nav-item.live-btn .sticky-nav-label {
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.sticky-nav-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin-right: 4px;
    animation: liveDotBlink 0.8s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@keyframes liveGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes liveShine {
    0% { left: -50%; }
    50%, 100% { left: 150%; }
}

@keyframes liveDotBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Location Popup Modal */
.sticky-nav-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: flex-end;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.sticky-nav-modal-overlay.active {
    display: flex;
}

.sticky-nav-modal {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.sticky-nav-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sticky-nav-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-nav-modal-close {
    background: #f0f0f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sticky-nav-modal-close:hover {
    background: #e0e0e0;
}

.sticky-nav-modal-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-nav-modal-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    color: #333;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: all 0.2s ease;
}

.sticky-nav-modal-select:focus {
    outline: none;
    border-color: #FF5171;
    box-shadow: 0 0 0 3px rgba(255, 81, 113, 0.15);
}

.sticky-nav-modal-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #FF5171;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-nav-modal-btn:hover {
    background: #e84563;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 81, 113, 0.4);
}

.sticky-nav-modal-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.sticky-nav-modal-skip {
    text-align: center;
    margin-top: 8px;
}

.sticky-nav-modal-skip a {
    color: #666;
    font-size: 13px;
    text-decoration: none;
}

.sticky-nav-modal-skip a:hover {
    color: #FF5171;
    text-decoration: underline;
}

/* Add bottom padding to body when sticky nav is visible (homepage & near-me) */
body.is-homepage {
    padding-bottom: 85px;
}

@media (min-width: 992px) {
    .sticky-nav-footer,
    .sticky-nav-modal-overlay {
        display: none !important;
    }
    body.is-homepage {
        padding-bottom: 0;
    }
}

/* Sticky Contact Button for Premium Listings (Gold/Silver) */
.sticky-contact-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 10px 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(9, 10, 17, 0) 0%, rgba(9, 10, 17, 0.94) 22%, #0f1118 100%);
}

.sticky-contact-shell {
    max-width: 560px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, #1a1d2b 0%, #10131d 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
}

.sticky-contact-footer.is-gold .sticky-contact-shell {
    border-color: rgba(255, 215, 0, 0.34);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.08) inset;
}

.sticky-contact-footer.is-silver .sticky-contact-shell {
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(224, 224, 224, 0.08) inset;
}

.sticky-contact-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.sticky-contact-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
}

.sticky-contact-footer.is-silver .sticky-contact-badge {
    background: linear-gradient(135deg, #ededed 0%, #bdbdbd 100%);
    box-shadow: 0 4px 12px rgba(189, 189, 189, 0.18);
}

.sticky-contact-top-note {
    flex: 1;
    text-align: right;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.sticky-contact-actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.sticky-website-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 108px;
    padding: 0 14px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    background: linear-gradient(135deg, #ffd700, #c9a227);
    box-shadow: 0 8px 18px rgba(201, 162, 39, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-contact-footer.is-silver .sticky-website-btn {
    background: linear-gradient(135deg, #ececec, #a9a9a9);
}

.sticky-website-btn:hover,
.sticky-website-btn:focus {
    color: #1a1a1a;
    transform: translateY(-1px);
}

.sticky-website-btn svg {
    width: 18px;
    height: 18px;
}

.sticky-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 58px;
    padding: 12px 16px;
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.sticky-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.sticky-contact-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.sticky-contact-btn.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
}

.sticky-contact-btn.phone-btn {
    background: linear-gradient(135deg, #FF375C 0%, #e91e63 100%);
}

.sticky-contact-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.sticky-contact-btn svg {
    width: 24px;
    height: 24px;
}

.sticky-contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.sticky-contact-label {
    font-size: 11px;
    opacity: 0.88;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sticky-contact-value {
    font-size: 14px;
    font-weight: 700;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 991px) {
    body.listing-detail-premium {
        padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    }

    .sticky-contact-top {
        display: none;
    }

    .sticky-contact-shell {
        padding: 8px;
        border-radius: 16px;
    }

    .sticky-contact-actions {
        gap: 8px;
    }

    .sticky-website-btn {
        min-width: 96px;
        border-radius: 12px;
    }

    .sticky-contact-btn {
        min-height: 52px;
        border-radius: 14px;
    }

    .sticky-contact-label {
        font-size: 10px;
    }
}

@media (max-width: 420px) {
    .sticky-contact-footer {
        padding-left: 10px;
        padding-right: 10px;
    }

    .sticky-contact-shell {
        padding: 9px;
        border-radius: 18px;
    }

    .sticky-contact-actions {
        gap: 8px;
    }

    .sticky-website-btn {
        min-width: 92px;
        padding: 0 12px;
        font-size: 12px;
    }

    .sticky-contact-btn {
        min-height: 54px;
        padding: 11px 14px;
    }

    .sticky-contact-value {
        font-size: 13px;
    }
}

/* Hide sticky contact on desktop */
@media (min-width: 992px) {
    .sticky-contact-footer {
        display: none;
    }
}

/* Premium Sticky Contact (Desktop) - Gold/Silver Premium Look */
.sticky-contact-footer-desktop {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-top: 2px solid #c9a227;
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(201, 162, 39, 0.3);
    display: none;
}

.sticky-contact-footer-desktop.is-gold {
    border-top-color: #ffd700;
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 215, 0, 0.4);
}

.sticky-contact-footer-desktop.is-silver {
    border-top-color: #c0c0c0;
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(192, 192, 192, 0.4);
}

.sticky-contact-footer-desktop .scd-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-contact-footer-desktop .scd-left {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.sticky-contact-footer-desktop .scd-title {
    color: #ffd700;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.sticky-contact-footer-desktop.is-silver .scd-title {
    color: #e0e0e0;
}

.sticky-contact-footer-desktop .scd-sub {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 13px;
    margin-top: 3px;
}

.sticky-contact-footer-desktop .scd-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

.sticky-contact-footer-desktop .scd-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #1a1a1a;
}

.sticky-contact-footer-desktop .scd-badge.silver {
    background: linear-gradient(135deg, #e0e0e0, #b0b0b0);
    color: #1a1a1a;
}

.sticky-contact-footer-desktop .scd-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.sticky-contact-footer-desktop .scd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sticky-contact-footer-desktop .scd-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.sticky-contact-footer-desktop .scd-btn img,
.sticky-contact-footer-desktop .scd-btn svg {
    width: 20px;
    height: 20px;
}

/* Contact button styles */
.sticky-contact-footer-desktop .scd-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.sticky-contact-footer-desktop .scd-btn.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.sticky-contact-footer-desktop .scd-btn.phone-btn {
    background: linear-gradient(135deg, #FF738D, #e84368);
}

/* Website button - Gold style */
.sticky-contact-footer-desktop .scd-btn.website-btn {
    background: linear-gradient(135deg, #ffd700, #c9a227);
    color: #1a1a1a;
}

.sticky-contact-footer-desktop .scd-btn.website-btn:hover {
    color: #1a1a1a;
}

.sticky-contact-footer-desktop.is-silver .scd-btn.website-btn {
    background: linear-gradient(135deg, #e0e0e0, #a0a0a0);
}

/* Live cam button */
.sticky-contact-footer-desktop .scd-btn.live-btn {
    background: linear-gradient(135deg, #ff4757, #c0392b);
}

.sticky-contact-footer-desktop .scd-btn .live-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@media (min-width: 992px) {
    body.listing-detail-premium {
        padding-bottom: 84px;
    }
}

/* Non-premium Listing Detail Sticky Footer (mobile only) */
.sticky-nonpremium-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: #FF738D;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
}

.sticky-nonpremium-footer .np-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
}

.sticky-nonpremium-footer .np-row.np-row--single {
    grid-template-columns: 1fr;
}

.sticky-nonpremium-footer .np-back {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    text-decoration: none;
    min-width: 0;
}

.sticky-nonpremium-footer .np-back .flag {
    width: 28px;
    height: 19px;
    border-radius: 3px;
    object-fit: cover;
    flex: 0 0 auto;
}

.sticky-nonpremium-footer .np-back .text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.sticky-nonpremium-footer .np-back .title {
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-nonpremium-footer .np-back .sub {
    font-size: 10px;
    font-weight: 700;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-nonpremium-footer .np-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    border: 1px solid rgba(255, 55, 92, 0.35);
    background: rgba(255,255,255,0.96);
    color: #ff2f57;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.sticky-nonpremium-footer .np-btn .live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00c853;
    animation: live-blink 1s infinite;
    box-shadow: 0 0 10px rgba(0, 200, 83, 0.55);
}

.sticky-nonpremium-footer .np-btn .contact-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #111827;
    opacity: 0.25;
}

.sticky-nonpremium-footer .np-btn .np-contact-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 auto;
}

/* Make room so content isn't hidden behind footer (mobile listing detail only) */
@media (max-width: 991px) {
    body.listing-detail-nonpremium {
        padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    }
}

/* Desktop version of non-premium sticky footer */
/* Default: hidden on mobile */
.sticky-nonpremium-footer-desktop {
    display: none !important;
}

/* Show on desktop (992px+) */
@media (min-width: 992px) {
    .sticky-nonpremium-footer-desktop {
        display: block !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: linear-gradient(135deg, #FF738D 0%, #FF5A7A 100%);
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
        padding: 0;
    }

    .sticky-nonpremium-footer-desktop .npd-inner {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 40px;
        gap: 24px;
    }

    /* Back to city - left side */
    .sticky-nonpremium-footer-desktop .npd-left {
        flex: 0 0 auto;
    }

    .sticky-nonpremium-footer-desktop .np-back {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        text-decoration: none;
        color: #fff;
        transition: all 0.2s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .sticky-nonpremium-footer-desktop .np-back:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }

    .sticky-nonpremium-footer-desktop .np-back .flag {
        width: 32px;
        height: 22px;
        border-radius: 4px;
        object-fit: cover;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .sticky-nonpremium-footer-desktop .np-back .text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .sticky-nonpremium-footer-desktop .np-back .title {
        font-size: 14px;
        font-weight: 700;
    }

    .sticky-nonpremium-footer-desktop .np-back .sub {
        font-size: 12px;
        opacity: 0.85;
    }

    /* Actions - right side */
    .sticky-nonpremium-footer-desktop .npd-actions {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    /* Contact button */
    .sticky-nonpremium-footer-desktop .npd-contact-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        background: #fff;
        color: #FF738D;
        border-radius: 50px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
        transition: all 0.2s ease;
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

    .sticky-nonpremium-footer-desktop .npd-contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(0,0,0,0.2);
        color: #e0506a;
    }

    .sticky-nonpremium-footer-desktop .npd-contact-btn .np-contact-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    /* Watch Girls Live button */
    .sticky-nonpremium-footer-desktop .npd-live-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 32px;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        color: #fff;
        border-radius: 50px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(255, 115, 141, 0.4), 0 0 40px rgba(255, 115, 141, 0.2);
        border: 2px solid rgba(255, 115, 141, 0.5);
    }

    .sticky-nonpremium-footer-desktop .npd-live-btn:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 30px rgba(255, 115, 141, 0.5), 0 0 60px rgba(255, 115, 141, 0.3);
        border-color: rgba(255, 115, 141, 0.8);
    }

    .sticky-nonpremium-footer-desktop .npd-live-btn .live-dot {
        width: 10px;
        height: 10px;
        background: #00c853;
        border-radius: 50%;
        animation: blink 1s ease-in-out infinite;
        box-shadow: 0 0 10px #00c853;
    }

    body.listing-detail-nonpremium {
        padding-bottom: 90px;
    }
}
