/* Layout Toggles */
@media (min-width: 768px) {
    .desktop-layout-only {
        display: block !important;
    }
    .mobile-layout-only {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .desktop-layout-only {
        display: none !important;
    }
    .mobile-layout-only {
        display: block !important;
    }
}

/* Header Login Mobile */
.btn-login-mobile {
    background: #fd3a69 !important;
    color: #ffffff !important;
    padding: 6px 18px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(253, 58, 105, 0.2) !important;
    text-decoration: none !important;
}

/* Mobile Hero Layout */
.mobile-hero-container {
    padding: 25px 15px 35px;
    background: #ffffff;
    font-family: 'Outfit', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}
.mobile-hero-tag {
    color: #fd3a69;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
}
.mobile-hero-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 12px;
}
.mobile-hero-title span {
    color: #fd3a69 !important;
}
.mobile-hero-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 280px;
}

/* Collage styling */
.mobile-hero-collage-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
}
.model-pic {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.model-pic-top {
    width: 120px;
    height: 120px;
    top: 10px;
    left: 45%;
    transform: translateX(-50%);
    z-index: 2;
    border-color: #ffffff;
}
.model-pic-right {
    width: 110px;
    height: 110px;
    top: 50px;
    right: 15px;
    z-index: 3;
    border-color: #ffffff;
}
.model-pic-bottom {
    width: 100px;
    height: 100px;
    top: 110px;
    left: 35%;
    transform: translateX(-50%);
    z-index: 1;
    border-color: #ffffff;
}
.model-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.model-placeholder svg {
    width: 60%;
    height: 60%;
    opacity: 0.85;
}

/* Social float icons */
.social-icon-float {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    font-size: 13px;
}
.icon-instagram {
    top: 70px;
    left: 60%;
    color: #e1306c;
}
.icon-youtube {
    top: 35px;
    right: 125px;
    color: #ff0000;
}
.icon-tiktok {
    top: 140px;
    left: 20%;
    color: #000000;
}

/* Trust badge */
.trust-badge-float {
    position: absolute;
    bottom: 30px;
    right: 25px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    z-index: 15;
    border: 1px solid rgba(0,0,0,0.03);
    text-align: left;
}
.trust-badge-title {
    font-size: 13px;
    font-weight: 800;
    color: #fd3a69;
    line-height: 1.1;
}
.trust-badge-text {
    font-size: 9px;
    color: #6b7280;
    font-weight: 600;
}

/* Mobile search bar */
.mobile-search-container {
    width: 100%;
    padding: 0 5px;
}
.search-input-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}
.search-input-box i {
    color: #9ca3af;
    font-size: 18px;
    margin-left: 12px;
}
.search-field {
    border: none;
    outline: none;
    flex: 1;
    padding: 6px 8px;
    font-size: 13px;
    color: #1f2937;
    background: transparent;
}
.search-submit-btn {
    background: #fd3a69;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(253, 58, 105, 0.15);
}