.testimonials-wrapper {
    margin-bottom: 2rem;
}

.testimonial-cards {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    padding: 0rem 0 1rem 0;
    align-items: center;
    justify-content: center;
}

.testimonial-cards h2 {
    margin-left: 8px;
    margin-bottom: 0px;
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px 18px 16px 24px;
    max-width: 450px;
    /*margin: 0 auto;*/
    box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgba(0, 0, 0, .1), 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', sans-serif;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 430px;
}

.testimonial-card-slim {
    max-width: 350px !important;
    min-height: 200px !important;
}

.testimonial-card:hover {
    /*transform: translateY(-8px);*/
    box-shadow:
            0 40px 80px -12px rgba(0, 0, 0, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);


}


@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

/* Header Section */
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.profile-image-container {
    position: relative;
}

.profile-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.12),
            0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow:
            0 12px 40px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: initial !important;
    margin: initial !important;
}

.profile-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: initial !important;
    margin: initial !important;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.user-info {
    flex: 1;
    min-width: 0;
}

.star-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.star-icon {
    width: 14px;
    height: 14px;
    fill: #fbbf24;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.user-name-container {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.username {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.verified-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.user-stats {
    display: flex;
    gap: 16px;
    margin-left: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Section */
.testimonial-content {
    margin-bottom: 8px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 48px;
    height: 48px;
    opacity: 0.1;
    z-index: 1;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    fill: #667eea;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.4;
    color: #374151;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-wrap-mode: wrap;
    text-align: left;
}

.testimonial-highlight {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.2s ease;
}

.highlight-item:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.highlight-text {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    text-align: center;
}

/* Actions Section */
.testimonial-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    color: var(--primary);
}

.action-link:hover {
    color: #2563eb;
}

.tiktok-link {
    color: var(--primary);
}

.tiktok-link:hover {
    color: #2563eb;
}

.video-link {
    color: #1f2937;
}

.video-link:hover {
    color: #374151;
}

.link-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Footer Section */
.testimonial-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-indicators {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.trust-icon {
    width: 16px;
    height: 16px;
    fill: #10b981;
}

.timestamp {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 480px) {
    .testimonial-card {
        width: 100%;
        max-width: 440px;
        height: auto;
        min-height: 160px;
        padding: 16px;
        margin: 0 18px;
    }

    .profile-image {
        width: 40px;
        height: 40px;
    }

    .username {
        font-size: 14px;
    }

    .stat-number {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 13px;
        text-align: left;
    }

    .action-link {
        font-size: 13px;
    }

    .testimonial-actions {
        gap: 16px;
    }
}

svg.instagram {
    fill: rgb(0, 149, 246) !important;
}

svg.twitter {
    fill: #1d9bf0 !important;
}

svg.linkedin {
    fill: #1d9bf0 !important;
}



.channel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark-grey);
}

.channel-item:hover .channel-name {
    color: var(--text-secondary);
}

.see-all-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.2;
}

.channels-section {
     max-width: 1000px;
     margin: 80px auto;
     padding: 0 20px;
     text-align: center;
 }

.channels-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 20px;
    padding: 40px 0;
}

.channel-item {
    background: var(--surface);
    border-radius: 12px;
    padding: 24px;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.channel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(93, 95, 239, 0.15);
    background: var(--background);
}

.channel-item.empty {
    background: transparent;
    border: none;
}

.channel-item.see-all {
    background: var(--background);
    border: 2px dashed var(--border);
    cursor: pointer;
}

.channel-item.see-all:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.see-all-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.2;
}

.channel-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Channel Icons - Using your existing icon classes */
.svg-icon-channel-instagram,
.svg-icon-channel-x,
.svg-icon-channel-facebook,
.svg-icon-channel-linkedin,
.svg-icon-channel-tiktok,
.svg-icon-channel-youtube,
.svg-icon-channel-threads,
.svg-icon-channel-pinterest,
.svg-icon-channel-google,
.svg-icon-channel-bluesky {
    width: 32px !important;
    height: 32px !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
}

.channel-item:hover .svg-icon-channel-instagram,
.channel-item:hover .svg-icon-channel-x,
.channel-item:hover .svg-icon-channel-facebook,
.channel-item:hover .svg-icon-channel-linkedin,
.channel-item:hover .svg-icon-channel-tiktok,
.channel-item:hover .svg-icon-channel-youtube,
.channel-item:hover .svg-icon-channel-threads,
.channel-item:hover .svg-icon-channel-pinterest,
.channel-item:hover .svg-icon-channel-google,
.channel-item:hover .svg-icon-channel-bluesky {
    transform: scale(1.1);
}

.channels-content {
    max-width: 800px;
    margin: 0 auto;
}

.channels-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.channels-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 400;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #4d4fd4; /* Darker shade for 4.5:1 contrast on primary-light background */
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--primary-light);
}

.explore-link:hover {
    color: var(--primary-dark);
    background: var(--primary-light-2);
    transform: translateY(-2px);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.2s ease;
}

.explore-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .channels-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .channels-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .channel-item {
        height: 100px;
        padding: 12px;
    }

    .channel-logo {
        width: 28px;
        height: 28px;
    }

    .svg-icon-channel-instagram,
    .svg-icon-channel-x,
    .svg-icon-channel-facebook,
    .svg-icon-channel-linkedin,
    .svg-icon-channel-tiktok,
    .svg-icon-channel-youtube,
    .svg-icon-channel-threads,
    .svg-icon-channel-pinterest,
    .svg-icon-channel-google,
    .svg-icon-channel-bluesky {
        width: 28px;
        height: 28px;
    }

    .channel-name {
        font-size: 11px;
    }

    .channels-content h2 {
        font-size: 32px;
    }

    .channels-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .channel-item {
        height: 90px;
        padding: 10px;
    }

    .channel-logo {
        width: 24px;
        height: 24px;
    }

    .svg-icon-channel-instagram,
    .svg-icon-channel-x,
    .svg-icon-channel-facebook,
    .svg-icon-channel-linkedin,
    .svg-icon-channel-tiktok,
    .svg-icon-channel-youtube,
    .svg-icon-channel-threads,
    .svg-icon-channel-pinterest,
    .svg-icon-channel-google,
    .svg-icon-channel-bluesky {
        width: 24px;
        height: 24px;
    }

    .channel-name {
        font-size: 10px;
    }

    .channels-content h2 {
        font-size: 28px;
    }

    .channels-content p {
        font-size: 16px;
    }
}


/* Channels Header Dropdown Styles */
.channels-drop {
    min-width: 300px !important;
    max-width: 350px !important;
    padding: 16px 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid var(--border) !important;
    background: var(--background) !important;
}

.channels-drop li {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: none !important;
}

.channels-drop .header-link {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 20px !important;
    text-decoration: none !important;
    color: var(--text-primary) !important;
    transition: all 0.2s ease !important;
    border-radius: 0 !important;
}

.channels-drop .header-link:hover {
    background: var(--primary-light) !important;
    color: var(--text-primary) !important;
    transform: none !important;
}

/* Channel Icons in Header */
.channels-drop .svg-icon-channel-instagram,
.channels-drop .svg-icon-channel-x,
.channels-drop .svg-icon-channel-facebook,
.channels-drop .svg-icon-channel-linkedin,
.channels-drop .svg-icon-channel-tiktok,
.channels-drop .svg-icon-channel-youtube,
.channels-drop .svg-icon-channel-threads,
.channels-drop .svg-icon-channel-pinterest,
.channels-drop .svg-icon-channel-google,
.channels-drop .svg-icon-channel-bluesky {
    width: 24px !important;
    height: 24px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    flex-shrink: 0 !important;
}

.channels-drop .header-top {
    flex: 1 !important;
    margin: 0 !important;
}

.channels-drop .linkTextTitle {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text-primary) !important;
    margin: 0 0 2px 0 !important;
    line-height: 1.2 !important;
}

.channels-drop .linkTextDescription {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

/* See All Channels Special Styling */
.channels-drop .see-all-channels .header-link {
    /*border-top: 1px solid var(--border) !important;*/
    /*margin-top: 8px !important;*/
    /*padding-top: 16px !important;*/
    /*background: var(--surface) !important;*/
}

.channels-drop .see-all-channels .header-link:hover {
    /*background: var(--primary-light) !important;*/
}

.channels-drop .plus-icon {
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--primary) !important;
    color: white !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
}

/* Dropdown Arrow Animation */
.list-of-channels .arrow-up {
    transition: transform 0.2s ease !important;
}

.list-of-channels:hover .arrow-up {
    transform: rotate(180deg) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .channels-drop {
        min-width: 280px !important;
        max-width: 300px !important;
    }

    .channels-drop .header-link {
        padding: 10px 16px !important;
        gap: 10px !important;
    }

    .channels-drop .svg-icon-channel-instagram,
    .channels-drop .svg-icon-channel-x,
    .channels-drop .svg-icon-channel-facebook,
    .channels-drop .svg-icon-channel-linkedin,
    .channels-drop .svg-icon-channel-tiktok,
    .channels-drop .svg-icon-channel-youtube,
    .channels-drop .svg-icon-channel-threads,
    .channels-drop .svg-icon-channel-pinterest,
    .channels-drop .svg-icon-channel-google,
    .channels-drop .svg-icon-channel-bluesky {
        width: 20px !important;
        height: 20px !important;
    }

    .channels-drop .linkTextTitle {
        font-size: 13px !important;
    }

    .channels-drop .linkTextDescription {
        font-size: 11px !important;
    }

    .channels-drop .plus-icon {
        width: 20px !important;
        height: 20px !important;
        font-size: 14px !important;
    }
}

/* Integration with existing header styles */
.list-of-channels {
    position: relative !important;
}

.list-of-channels > a {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: var(--text-primary) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.list-of-channels:hover > a {
    color: var(--primary) !important;
}

/* Ensure dropdown positioning */
.dropdown_menu-channels {
    top: 100% !important;
    left: 0 !important;
    z-index: 9999 !important;
}

/* Onboarding Subscription Page Styles */
.onboarding-header {
    margin-bottom: 0px;
    margin-bottom: 10px;
    padding: 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.onboarding-header-left {
    flex: 1;
    text-align: left;
    min-width: 300px;
}

.onboarding-header h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    line-height: 1.2;
    font-weight: 800;
    margin-top: 0 !important;
}

.onboarding-header .offer-description {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 550px;
}

.onboarding-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 320px;
}

.onboarding-features .feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.onboarding-features .profile-images {
    display: flex;
    align-items: center;
}

.onboarding-features .profile-images img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px !important;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 2px 8px 12px 0 rgba(192, 198, 217, .5);
}

.onboarding-features .profile-images img:first-child {
    margin-left: 0;
}

.onboarding-features .stars {
    color: #FFC107;
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Responsive styles for onboarding */
@media (max-width: 768px) {
    .onboarding-header {
        gap: 30px;
        padding: 30px 15px;
    }

    .onboarding-header h1 {
        font-size: 2rem;
    }

    .onboarding-header .offer-description {
        font-size: 1rem;
    }

    .onboarding-features {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .onboarding-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .onboarding-header-left {
        min-width: auto;
    }

    .onboarding-header h1 {
        font-size: 1.75rem;
    }

    .onboarding-features .profile-images img {
        width: 32px;
        height: 32px;
    }
}

/* Horizontal Channels Component */
.channels-horizontal-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.channels-horizontal-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 30px 40px;
    background: var(--background, #ffffff);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
}

.channels-horizontal-heading {
    flex-shrink: 0;
}

.channels-horizontal-heading h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
}

.channels-horizontal-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.channel-icon-item {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.channel-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--surface, #f9fafb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.channel-icon-item:hover .channel-icon-wrapper {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

/* Icon sizes for horizontal layout */
.channel-icon-wrapper .svg-icon-channel-x,
.channel-icon-wrapper .svg-icon-channel-instagram,
.channel-icon-wrapper .svg-icon-channel-tiktok,
.channel-icon-wrapper .svg-icon-channel-youtube,
.channel-icon-wrapper .svg-icon-channel-linkedin,
.channel-icon-wrapper .svg-icon-channel-threads {
    width: 28px !important;
    height: 28px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .channels-horizontal-container {
        justify-content: center;
    }

    .channels-horizontal-heading h3 {
        text-align: center;
        white-space: normal;
    }

    .channels-horizontal-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .channels-horizontal-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 24px 20px;
    }

    .channels-horizontal-icons {
        gap: 12px;
    }

    .channel-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .channel-icon-wrapper .svg-icon-channel-x,
    .channel-icon-wrapper .svg-icon-channel-instagram,
    .channel-icon-wrapper .svg-icon-channel-tiktok,
    .channel-icon-wrapper .svg-icon-channel-youtube,
    .channel-icon-wrapper .svg-icon-channel-linkedin,
    .channel-icon-wrapper .svg-icon-channel-threads {
        width: 24px !important;
        height: 24px !important;
    }
}

@media (max-width: 480px) {
    .channels-horizontal-heading h3 {
        font-size: 16px;
    }

    .channels-horizontal-icons {
        gap: 10px;
    }

    .channel-icon-wrapper {
        width: 44px;
        height: 44px;
    }
}
