/* ==========================================
   STICKY SCROLL HEADER
   ========================================== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-bottom: 1px solid #e5e5e5;
}

.sticky-header.visible {
    transform: translateY(0);
}

.sticky-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    /* Reduced height as requested */
}

/* Left Navigation */
.sticky-nav {
    display: flex;
    gap: 44px;
    height: 100%;
    margin-left: 20px;
    /* Important for height of links */
}

.sticky-nav a {
    color: #2D2F29;
    font-family: "Trustpilot Sans", Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    padding: 0;
    /* Removing padding, using flex align */
    display: flex;
    align-items: center;
    height: 100%;
    border-bottom: 3px solid transparent;
    /* Prepare for active border */
    transition: color 0.1s, border-color 0.1s;
}

.sticky-nav a.active {
    font-weight: 600;
    border-bottom: 3px solid #1c1c1c;
    /* Black bar for active state */
}

.sticky-nav a:hover {
    color: #454545;
}

.sticky-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-sticky-visit,
.btn-sticky-review {
    box-sizing: border-box;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    line-height: 1;
}

.btn-sticky-visit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid #3C57BC;
    border-radius: 24px;
    background: #fff;
    color: #3C57BC;
    font-family: "Trustpilot Sans", Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.btn-sticky-visit:hover {
    background: #f0f4ff;
    border-color: #2d4599;
    color: #2d4599;
}

.btn-sticky-review {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    border: 1px solid #3C57BC;
    border-radius: 24px;
    background: #3C57BC;
    color: #fff;
    font-family: "Trustpilot Sans", Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-sticky-review:hover {
    background: #2d4599;
    border-color: #2d4599;
}

.btn-sticky-review svg,
.btn-sticky-visit svg {
    width: 16px;
    height: 16px;
}

/* ==========================================
   MOBILE STICKY HEADER STYLES
   ========================================== */

/* Hide circle buttons on desktop */
.btn-sticky-circle {
    display: none;
}

@media (max-width: 768px) {
    .sticky-header-container {
        padding: 0 16px;
        height: 56px;
    }

    .sticky-nav {
        gap: 18px;
        margin-left: 24px;
    }

    .sticky-nav a {
        font-size: 13px;
        font-weight: 500;
    }

    /* Hide text buttons on mobile */
    .btn-sticky-visit,
    .btn-sticky-review {
        display: none !important;
    }

    /* Show circle buttons on mobile */
    .btn-sticky-circle {
        display: flex !important;
    }

    .sticky-actions {
        gap: 12px;
    }
}