/* 
 * Styles for Kaiho 2026 Frontend
 * Design: Premium, Modern, Responsive
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #f03d25;
    --primary-hover: #d1301a;
    --secondary-color: #2a2a72;
    --accent-color: #28a745;
    --bg-light: #f1f6fb;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --text-light: #ffffff;
    --header-bg: #ffffff;
    --header-blur: 10px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --badge-new: #28a745;
    --badge-rent: #dc3545;
    --badge-sale: #ffc107;
    --badge-used: #6c757d;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

/* --- Top Bar --- */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-right: 15px;
    transition: var(--transition);
}

.top-bar-links a:hover {
    color: var(--primary-color);
}

/* --- Navigation Header --- */
header.main-header {
    background: var(--header-bg);
    backdrop-filter: blur(var(--header-blur));
    -webkit-backdrop-filter: blur(var(--header-blur));
    position: absolute;
    top: 0;
    /* Flush with top */
    width: 100%;
    z-index: 1000;
    padding: 5px 0 0 0;
    transition: var(--transition);
}

header.main-header.sticky {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 105px;
    width: auto;
}

.header-jetco-logo {
    height: 105px;
    width: auto;
}

.header-first-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}

.header-search {
    flex: 1;
    max-width: 400px;
    margin: 0 30px;
}

.search-input-group {
    display: flex;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 5px;
    overflow: hidden;
}

.search-input-group input {
    border: none;
    padding: 8px 20px;
    flex-grow: 1;
    outline: none;
    font-size: 14px;
}

.search-input-group .btn-search-header {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-input-group .btn-search-header:hover {
    background: var(--primary-hover);
}

.header-social-icons {
    display: flex;
    gap: 12px;
    margin-right: 30px;
}

.social-icon-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 16px;
    transition: var(--transition);
}

.social-icon-circle:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.si-youtube {
    background-color: #FF0000;
}

.si-tiktok {
    background-color: #000000;
}

.si-instagram {
    background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.si-facebook {
    background-color: #1877F2;
}

.nav-link {
    color: #000 !important;
    font-weight: 600;
    padding: 5px 20px !important;
    text-transform: uppercase;
    font-size: 13px;
    transition: var(--transition);
}

.navbar.navbar-expand-lg {
    background-color: #fff !important;
    border-radius: 8px;
    margin-bottom: 5px;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 15px;
    min-width: 220px;
    background: #fff;
    margin-top: 20px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateY(10px);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.btn-sell {
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-sell:hover {
    background-color: #218838;
    color: #fff;
    transform: translateY(-2px);
}

/* --- Hero Slider --- */
.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-light);
}

.hero-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 61, 37, 0.3) 0%, rgba(42, 42, 114, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0;
    margin-bottom: 40px;
}

.active .hero-title {
    animation: slideUp 0.8s ease forwards 0.3s;
}

.active .hero-subtitle {
    animation: slideUp 0.8s ease forwards 0.5s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-search {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-search:hover {
    background-color: var(--primary-hover);
}

/* --- Brands Carousel --- */
.brands-section {
    padding: 1px 0 100px;
    position: relative;
    z-index: 20;
    background-color: var(--bg-light);
}

.brands-carousel {
    position: relative;
    margin-top: -60px;
    /* Overlap the slider slider */
}

.brand-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.brand-logo {
    max-height: 80px;
    width: auto !important;
    margin: 0 auto 20px;
    object-fit: contain;
}

.brand-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.brand-count {
    font-size: 14px;
    color: #fff;
    background: var(--primary-color);
    padding: 2px 10px;
    border-radius: 50px;
}

.ads-text {
    font-size: 13px;
    color: var(--secondary-color);
    margin-left: 5px;
}

.brands-carousel .owl-nav button,
.products-carousel .owl-nav button,
.featured-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    color: var(--primary-color) !important;
    font-size: 18px !important;
    transition: var(--transition);
    z-index: 100;
}

.brands-carousel .owl-nav button.owl-prev,
.products-carousel .owl-nav button.owl-prev,
.featured-carousel .owl-nav button.owl-prev {
    left: -22px;
}

.brands-carousel .owl-nav button.owl-next,
.products-carousel .owl-nav button.owl-next,
.featured-carousel .owl-nav button.owl-next {
    right: -22px;
}

.brands-carousel .owl-nav button:hover,
.products-carousel .owl-nav button:hover,
.featured-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* --- Latest Ads Section --- */
.latest-ads-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
}

.product-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: #fff;
}

.product-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 5px;
}

.badge-item {
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.badge-new {
    background-color: var(--badge-new);
}

.badge-rent {
    background-color: var(--badge-rent);
}

.badge-sale {
    background-color: var(--badge-sale);
}

.badge-used {
    background-color: var(--badge-used);
}

.product-top-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 8px;
    color: #fff;
    z-index: 5;
}

.product-top-badge i {
    font-size: 16px;
    transform: rotate(-45deg);
}

.product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-wishlist:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-content {
    padding: 20px;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1rem;
}

.product-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.rating-score {
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.rating-stars {
    color: #ffc107;
    font-size: 12px;
}

.rating-text {
    font-size: 12px;
    color: var(--text-muted);
}

.product-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 500;
}

.product-footer span i {
    margin-right: 5px;
    color: var(--secondary-color);
    opacity: 0.7;
}

/* --- Featured Ads Section --- */
.featured-ads-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.featured-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.featured-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1rem;
    z-index: 10;
}

.featured-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.featured-meta-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-meta-info i {
    color: var(--secondary-color);
    opacity: 0.6;
}

/* --- Testimonials Section --- */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    color: #fff;
    background-image: url('../imagenes/prism.png');
    background-repeat: repeat;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.85) 0%, rgba(102, 16, 242, 0.85) 100%);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: #fff !important;
}

.testimonial-item {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.testimonial-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 15px;
    font-size: 1.5rem;
    opacity: 0.8;
}

.testimonial-author {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 40px;
}

.testimonial-rating .far {
    color: rgba(255, 255, 255, 0.3);
}

.testimonial-avatars {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.guest-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    transition: var(--transition);
}

.guest-avatar.active {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.btn-view-all {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: capitalize;
    transition: var(--transition);
    border: none;
}

.btn-view-all:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonials-carousel .owl-nav button {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.testimonials-carousel .owl-nav button:hover {
    background: #fff !important;
    color: var(--primary-color) !important;
}

.sold-out-ribbon {
    position: absolute;
    top: 20px;
    left: -35px;
    background: var(--badge-rent);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(-45deg);
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

/* --- Site Footer --- */
.site-footer {
    background-color: #0c0c0c;
    color: #cecece;
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-widget .footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cecece;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.subscribe-form .form-control {
    background-color: #fff;
    border: none;
    border-radius: 4px 0 0 4px;
    padding: 12px 20px;
    font-size: 14px;
}

.subscribe-form .btn {
    border-radius: 0 4px 4px 0;
    padding: 10px 20px;
    font-weight: 700;
}

.footer-bottom {
    padding: 30px 0;
    font-size: 13px;
    background-color: #080808;
}

.footer-bottom .copyright span {
    color: #fff;
    font-weight: 600;
}

/* --- Product Detail Page --- */
.breadcrumb-container {
    padding: 20px 0 0px 0;
    background-color: #f4f4f4;
    /* Contratante gris */
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
    margin-top: 165px;
    /* Aligned with header bottom */
}

.breadcrumb-item,
.breadcrumb-item a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.products-carousel.owl-theme .owl-dots {
    margin-top: 30px !important;
}

.products-carousel.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 6px;
    margin: 5px 4px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    /* Rectangulos redondeados */
}

.products-carousel.owl-theme .owl-dots .owl-dot.active span,
.products-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.characteristics-table tr:first-child td {
    border-top: none;
}

.characteristics-table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.characteristics-table tr:last-child td {
    border-bottom: none;
}

/* --- Mobile Fixes --- */
@media (max-width: 991px) {
    header.main-header {
        position: fixed !important;
        top: 0 !important;
        background: #fff !important;
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-first-row {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

    .navbar-toggler {
        border: none;
        color: var(--text-dark);
        font-size: 1.5rem;
        padding: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .header-social-icons {
        gap: 8px;
    }

    .social-icon-circle {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .navbar-brand img {
        height: 50px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .nav-link {
        color: var(--text-dark) !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .breadcrumb-container {
        margin-top: 85px;
        /* Aligned with mobile header bottom */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .search-form-inner {
        flex-direction: column;
    }

    .search-group {
        width: 100%;
    }
}

/* --- WhatsApp Floating Widget --- */
.wa-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    /* Asegurar que flote encima de todo */
}

.wa-floating-btn {
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
    z-index: 10001;
    position: relative;
    border: none;
}

.wa-floating-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-advisors-panel {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
}

.wa-advisors-panel.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.wa-panel-header {
    background: #25D366;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.wa-panel-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.wa-panel-header p {
    margin: 5px 0 0;
    font-size: 13px;
    opacity: 0.9;
}

.wa-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10002;
}

.wa-close-btn:hover {
    transform: scale(1.1);
    background: #333;
}

.wa-advisors-list {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.wa-advisor-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    transition: background 0.2s ease;
    text-decoration: none !important;
    margin-bottom: 8px;
    border: 1px solid #f1f1f1;
}

.wa-advisor-item:hover {
    background: #f9f9f9;
    border-color: #25D366;
}

.wa-advisor-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #25D366;
}

.wa-advisor-info {
    flex-grow: 1;
}

.wa-advisor-name {
    display: block;
    color: #333 !important;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.wa-advisor-link {
    display: flex;
    align-items: center;
    color: #25D366;
    font-size: 13px;
    font-weight: 600;
    gap: 5px;
}

.wa-advisor-link i {
    font-size: 14px;
}

/* --- Scroll to Top --- */
.scroll-to-top {
    position: fixed;
    bottom: 135px;
    right: 35px;
    width: 55px;
    height: 55px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(240, 61, 37, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    border: none;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #d6331d;
    transform: translateY(-5px);
    color: #fff;
}

@media (max-width: 991px) {
    .scroll-to-top {
        bottom: 125px;
        right: 25px;
        width: 45px;
        height: 45px;
    }
}