/* _content/RentBoat/Components/Layout/Header.razor.rz.scp.css */
/* Global Sticky Header */
.app-header[b-jmwa3qvk1o] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.05);
}

.app-header-inner[b-jmwa3qvk1o] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
}

.app-logo[b-jmwa3qvk1o] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: #0EA5E9;
    color: #FFDE59;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    line-height: 1;
    text-decoration: none;
}

.app-nav[b-jmwa3qvk1o] {
    display: flex;
    align-items: center;
    gap: 24px;
}

.app-nav-link[b-jmwa3qvk1o] {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
}

.app-nav-link:hover[b-jmwa3qvk1o] {
    color: var(--primary-color);
}

.app-profile[b-jmwa3qvk1o] {
    background: var(--primary-color);
    color: white;
}

.app-profile:hover[b-jmwa3qvk1o] {
    background: var(--primary-hover);
    color: white;
}

/* Language Modal */
.lang-modal-backdrop[b-jmwa3qvk1o] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-jmwa3qvk1o 0.2s ease-out;
}

.lang-modal[b-jmwa3qvk1o] {
    background: white;
    padding: 24px;
    border-radius: 24px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
    animation: slideUp-b-jmwa3qvk1o 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.lang-search-wrapper[b-jmwa3qvk1o] {
    margin-bottom: 20px;
}

.lang-search[b-jmwa3qvk1o] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.lang-search:focus[b-jmwa3qvk1o] {
    border-color: var(--primary-color);
}

.lang-modal-header[b-jmwa3qvk1o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.lang-modal-header h3[b-jmwa3qvk1o] {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.close-btn[b-jmwa3qvk1o] {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-light);
    padding: 4px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-btn:hover[b-jmwa3qvk1o] {
    background: #f1f5f9;
    color: var(--text-dark);
}

.lang-grid[b-jmwa3qvk1o] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.lang-card[b-jmwa3qvk1o] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.lang-card:hover[b-jmwa3qvk1o] {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.lang-card.active[b-jmwa3qvk1o] {
    border-color: var(--primary-color);
    background: #f0f9ff;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.lang-flag-img[b-jmwa3qvk1o] {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    background-color: #f1f5f9;
    /* Placeholder color before load */
    display: block;
}

.lang-info[b-jmwa3qvk1o] {
    display: flex;
    flex-direction: column;
}

.lang-native[b-jmwa3qvk1o] {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.lang-code[b-jmwa3qvk1o] {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 500;
}

.check-icon[b-jmwa3qvk1o] {
    margin-left: auto;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 14px;
}

@keyframes fadeIn-b-jmwa3qvk1o {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-jmwa3qvk1o {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hamburger Menu Button */
.hamburger-btn[b-jmwa3qvk1o] {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.hamburger-line[b-jmwa3qvk1o] {
    width: 100%;
    height: 3px;
    background-color: #0EA5E9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover .hamburger-line[b-jmwa3qvk1o] {
    background-color: #0284c7;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop[b-jmwa3qvk1o] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    animation: fadeIn-b-jmwa3qvk1o 0.3s ease-out;
}

/* Mobile Menu Slide-in Panel */
.mobile-menu[b-jmwa3qvk1o] {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-menu.show[b-jmwa3qvk1o] {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header[b-jmwa3qvk1o] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 2px solid rgba(14, 165, 233, 0.1);
    background: #FFFFFF;
}

.mobile-logo[b-jmwa3qvk1o] {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background-color: #0EA5E9 !important;
    padding: 8px 16px !important;
    border: none !important;
    font-size: 18px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
}

.mobile-logo img[b-jmwa3qvk1o] {
    height: 32px;
    width: auto;
}

.mobile-logo span[b-jmwa3qvk1o] {
    color: #FFDE59 !important;
    display: block !important;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.mobile-menu-close[b-jmwa3qvk1o] {
    background: #f1f5f9;
    border: none;
    color: #475569;
    font-size: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mobile-menu-close:hover[b-jmwa3qvk1o] {
    background: #e2e8f0;
    color: #0f172a;
}

/* Mobile Navigation Links */
.mobile-menu-nav[b-jmwa3qvk1o] {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.mobile-nav-link[b-jmwa3qvk1o] {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    color: #334155;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    border: none;
    transition: all 0.2s;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link:hover[b-jmwa3qvk1o] {
    background: #f8fafc;
    color: #0EA5E9;
}

.mobile-menu-footer[b-jmwa3qvk1o] {
    padding: 24px;
    margin-top: auto;
}

.mobile-nav-button[b-jmwa3qvk1o] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #0EA5E9;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.mobile-nav-button:hover[b-jmwa3qvk1o] {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .app-header-inner[b-jmwa3qvk1o] {
        padding: 12px 16px;
    }

    .app-logo[b-jmwa3qvk1o] {
        font-size: 18px;
        padding: 8px 16px;
    }

    .app-logo span[b-jmwa3qvk1o] {
        display: none;
    }
}
/* _content/RentBoat/Components/Layout/MainLayout.razor.rz.scp.css */
.rb-root-layout[b-09h3dlxf6s] {
    min-height: 100vh;
    background-color: #F7F9FC;
}

#blazor-error-ui[b-09h3dlxf6s] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-09h3dlxf6s] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/RentBoat/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-b6b7xswa8g] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-b6b7xswa8g] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-b6b7xswa8g] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-b6b7xswa8g] {
    font-size: 1.1rem;
}

.bi[b-b6b7xswa8g] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-b6b7xswa8g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-b6b7xswa8g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-b6b7xswa8g] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-b6b7xswa8g] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-b6b7xswa8g] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-b6b7xswa8g] {
        padding-bottom: 1rem;
    }

    .nav-item[b-b6b7xswa8g]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-b6b7xswa8g]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-b6b7xswa8g]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-b6b7xswa8g] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-b6b7xswa8g] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-b6b7xswa8g] {
        display: none;
    }

    .nav-scrollable[b-b6b7xswa8g] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/RentBoat/Components/Pages/BoatCard.razor.rz.scp.css */
/* Vertical Card Container */
.lp-boat-card[b-qou6gapupy] {
    display: flex;
    flex-direction: column;
    /* Glass Effect Base matching Search Bar */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 2px solid rgba(14, 165, 233, 0.15);
    /* Thicker, subtle blue border */
    border-radius: var(--radius-lg);
    /* More rounded corners */

    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08);
    height: 100%;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

/* Subtle corner accent - kept but softened */
.lp-boat-card[b-qou6gapupy]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right,
            rgba(14, 165, 233, 0.1) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.lp-boat-card:hover[b-qou6gapupy]::before {
    opacity: 1;
}

.lp-boat-card:hover[b-qou6gapupy] {
    box-shadow: 0 20px 48px rgba(14, 165, 233, 0.25);
    /* Dreamy lift */
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(14, 165, 233, 0.4);
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
}

/* Media Section */
.lp-boat-media[b-qou6gapupy] {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    background: #e2e8f0;
}

.lp-boat-media-img[b-qou6gapupy] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lp-boat-card:hover .lp-boat-media-img[b-qou6gapupy] {
    transform: scale(1.05);
}

.lp-badge-discount[b-qou6gapupy] {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-yellow);
    color: #5D4037;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.lp-fav-button[b-qou6gapupy] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.lp-fav-button svg[b-qou6gapupy] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.lp-boat-media-dots[b-qou6gapupy] {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.lp-boat-dot[b-qou6gapupy] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

.lp-boat-dot.active[b-qou6gapupy] {
    background: #fff;
    transform: scale(1.2);
}

/* Body Section */
.lp-boat-body[b-qou6gapupy] {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Pushes footer down */
    gap: 12px;
}

.lp-boat-header-row[b-qou6gapupy] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-boat-title-group h3[b-qou6gapupy] {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    user-select: none;
    cursor: pointer;
}

.lp-boat-location[b-qou6gapupy] {
    font-size: 13px;
    color: var(--text-medium);
    user-select: none;
    cursor: pointer;
}

.lp-boat-rating[b-qou6gapupy] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    margin-top: 4px;
}

/* Move rating to be visible */
.lp-boat-title-group[b-qou6gapupy] {
    display: flex;
    flex-direction: column;
}

.lp-boat-specs[b-qou6gapupy] {
    font-size: 13px;
    color: var(--text-medium);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    /* Push towards bottom of body if needed */
}

.lp-boat-sep[b-qou6gapupy] {
    color: var(--border-color);
}


/* Price & CTA Row */
.lp-boat-price-row[b-qou6gapupy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.lp-price-group[b-qou6gapupy] {
    display: flex;
    flex-direction: column;
}

.lp-price-main[b-qou6gapupy] {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.lp-price-unit[b-qou6gapupy] {
    font-size: 13px;
    color: var(--text-medium);
}

.lp-btn-cta[b-qou6gapupy] {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 6px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    width: auto;
    /* Auto width for grid card */
}

.lp-btn-cta:hover[b-qou6gapupy] {
    background-color: var(--accent-yellow);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.4);
}

.lp-boat-tags[b-qou6gapupy] {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.lp-tag[b-qou6gapupy] {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: var(--bg-body);
    color: var(--text-medium);
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.lp-tag-gold[b-qou6gapupy] {
    background-color: #FFFBE6;
    /* Light yellow bg for Super Owner */
    color: #B78505;
    border-color: #FFE58F;
}

.lp-price-note[b-qou6gapupy] {
    font-size: 11px;
    color: #10B981;
    /* Green for discount note */
    background: #ECFDF5;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
}
/* _content/RentBoat/Components/Pages/BoatDetail.razor.rz.scp.css */
/* Scoped styles for Boat Detail, matching Listing Page theme */

.bd-shell[b-7f4b9vzsuw] {
    padding: 40px;
    max-width: 1800px;
    /* Match Listing Page Width */
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

/* Hero Image Grid */
.bd-image-hero[b-7f4b9vzsuw] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15);
    border: 2px solid rgba(14, 165, 233, 0.1);
    position: relative;
}

/* Decorative corner accent */
.bd-image-hero[b-7f4b9vzsuw]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top left,
            rgba(14, 165, 233, 0.15) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.bd-hero-main[b-7f4b9vzsuw] {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s;
}

/* Blue gradient overlay for visual interest */
.bd-hero-main[b-7f4b9vzsuw]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(14, 165, 233, 0.15) 0%,
            transparent 40%,
            transparent 60%,
            rgba(56, 189, 248, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Decorative wave pattern */
.bd-hero-main[b-7f4b9vzsuw]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top,
            rgba(14, 165, 233, 0.2) 0%,
            rgba(14, 165, 233, 0.1) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.bd-hero-main:hover[b-7f4b9vzsuw] {
    filter: brightness(0.95);
}

.bd-hero-cta[b-7f4b9vzsuw] {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 999px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    z-index: 2;
}

.bd-hero-cta:hover[b-7f4b9vzsuw] {
    transform: scale(1.05);
    background: #fff;
}

.bd-hero-grid[b-7f4b9vzsuw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.bd-hero-grid img[b-7f4b9vzsuw] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: filter 0.2s;
}

.bd-hero-grid img:hover[b-7f4b9vzsuw] {
    filter: brightness(0.9);
}

/* Layout Grid */
.bd-main-grid[b-7f4b9vzsuw] {
    display: grid;
    grid-template-columns: 1fr 420px;
    /* Slightly wider sidebar */
    gap: 60px;
    /* More breathing room */
    align-items: start;
}

.bd-col-left[b-7f4b9vzsuw] {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bd-col-right[b-7f4b9vzsuw] {
    position: sticky;
    top: 100px;
    /* Account for fixed header */
    z-index: 10;
}

/* Header Info */
.bd-header-info[b-7f4b9vzsuw] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bd-title-row[b-7f4b9vzsuw] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bd-title-row h1[b-7f4b9vzsuw] {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.bd-actions[b-7f4b9vzsuw] {
    display: flex;
    gap: 16px;
}

.btn-action[b-7f4b9vzsuw] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    color: #374151;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-action:hover[b-7f4b9vzsuw] {
    background: #e5e7eb;
}

.btn-action .icon[b-7f4b9vzsuw] {
    width: 18px;
    height: 18px;
}

.bd-meta-row[b-7f4b9vzsuw] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
}

.bd-dot[b-7f4b9vzsuw] {
    color: #9ca3af;
    font-size: 8px;
    /* small bullet */
}

.bd-rating[b-7f4b9vzsuw] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.bd-rating-star[b-7f4b9vzsuw] {
    color: var(--accent-yellow);
    /* Corporate Yellow */
}

.bd-rating-score[b-7f4b9vzsuw] {
    color: #111;
}

.bd-rating-count[b-7f4b9vzsuw] {
    color: #6b7280;
    text-decoration: underline;
    font-weight: 400;
}

.bd-location[b-7f4b9vzsuw] {
    font-weight: 500;
    text-decoration: underline;
    color: #111;
}

.bd-tag-text[b-7f4b9vzsuw] {
    color: #111;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bd-tag-text[b-7f4b9vzsuw]::before {
    content: '🏆';
    font-size: 14px;
}

/* Specs Row */
.bd-specs-row[b-7f4b9vzsuw] {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.bd-spec-item[b-7f4b9vzsuw] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
    background: #FAFAFA;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: border-color 0.2s;
}

.bd-spec-item:hover[b-7f4b9vzsuw] {
    border-color: var(--primary-color);
}

.spec-val[b-7f4b9vzsuw] {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    display: inline-block;
    margin-bottom: 4px;
}

.spec-label[b-7f4b9vzsuw] {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.bd-divider[b-7f4b9vzsuw] {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0;
}

/* Content & Tabs */
.bd-content[b-7f4b9vzsuw] {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bd-tabs[b-7f4b9vzsuw] {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 16px 40px 12px 40px;
    margin: 0 -40px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 80px;
    background: #fff;
    z-index: 100;
}

.bd-tab[b-7f4b9vzsuw] {
    padding: 12px 0;
    margin-right: 24px;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.bd-tab:hover[b-7f4b9vzsuw] {
    color: #111;
}

/* Active state simulation or need JS usually, but styling a specific one if possible */
.bd-tab.active-tab[b-7f4b9vzsuw] {
    color: #ffffff;
    background-color: #0EA5E9;
    /* Samavi / Sky Blue */
    border-bottom-color: transparent;
    border-radius: 999px;
    /* Pill shape for active state */
    padding: 12px 20px;
    /* Adjust padding for button look */
    margin-right: 12px;
}

.bd-section h2[b-7f4b9vzsuw] {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.bd-section p[b-7f4b9vzsuw] {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 16px;
}

.bd-list[b-7f4b9vzsuw] {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.bd-list li[b-7f4b9vzsuw] {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    color: #374151;
}

.bd-list li[b-7f4b9vzsuw]::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Amenities */
.bd-amenities-list[b-7f4b9vzsuw] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.bd-amenities-list li[b-7f4b9vzsuw] {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 16px;
}

.bd-amenity-icon[b-7f4b9vzsuw] {
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bd-more-link[b-7f4b9vzsuw] {
    border: 1px solid #111;
    background: #fff;
    color: #111;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.bd-more-link:hover[b-7f4b9vzsuw] {
    background: #f9fafb;
}

/* Services */
.bd-services-list[b-7f4b9vzsuw] {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.bd-services-list li[b-7f4b9vzsuw] {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.bd-service-name[b-7f4b9vzsuw] {
    font-weight: 500;
    color: #111;
}

.bd-service-meta[b-7f4b9vzsuw] {
    color: #16a34a;
    font-weight: 600;
    font-size: 14px;
}

/* Reviews - Redesigned */
.bd-review-card[b-7f4b9vzsuw] {
    background: white;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s, box-shadow 0.2s;
}

.bd-review-card:hover[b-7f4b9vzsuw] {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
}

.bd-review-top[b-7f4b9vzsuw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.bd-reviewer-info[b-7f4b9vzsuw] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bd-reviewer-avatar[b-7f4b9vzsuw] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0369a1;
    /* Sky 700 */
    font-size: 16px;
}

.bd-reviewer-name[b-7f4b9vzsuw] {
    font-weight: 600;
    color: #0f172a;
    font-size: 15px;
}

.bd-review-rating[b-7f4b9vzsuw] {
    display: flex;
    gap: 2px;
    font-size: 14px;
}

.star-filled[b-7f4b9vzsuw] {
    color: #fbbf24;
}

.star-empty[b-7f4b9vzsuw] {
    color: #e2e8f0;
}

.bd-review-text[b-7f4b9vzsuw] {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.bd-review-footer[b-7f4b9vzsuw] {
    display: flex;
    justify-content: flex-end;
}

.bd-review-date[b-7f4b9vzsuw] {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

/* Booking Card */
.bd-booking-card[b-7f4b9vzsuw] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bd-booking-price[b-7f4b9vzsuw] {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.bd-booking-amount[b-7f4b9vzsuw] {
    font-size: 28px;
    font-weight: 800;
    color: #111;
}

.bd-booking-unit[b-7f4b9vzsuw] {
    font-size: 16px;
    color: #6b7280;
}

.bd-booking-sub[b-7f4b9vzsuw] {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.bd-booking-fields[b-7f4b9vzsuw] {
    display: flex;
    flex-direction: column;
    /* Ensure vertical stacking for inputs */
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.bd-field[b-7f4b9vzsuw] {
    padding: 12px;
    border-bottom: 1px solid #d1d5db;
}

.bd-field:last-child[b-7f4b9vzsuw] {
    border-bottom: none;
}

.bd-field label[b-7f4b9vzsuw] {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 4px;
}

.bd-field input[b-7f4b9vzsuw] {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: #374151;
    background: transparent;
}

.bd-booking-btn[b-7f4b9vzsuw] {
    width: 100%;
    background-color: var(--primary-color);
    /* Corporate Blue */
    color: #ffffff;
    /* If the primary color is yellow, use text-dark. Here it's blue, so white text */
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 16px;
}

.bd-booking-btn:hover[b-7f4b9vzsuw] {
    background-color: var(--primary-hover);
}

.bd-booking-note[b-7f4b9vzsuw] {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
}

.bd-booking-perks[b-7f4b9vzsuw] {
    list-style: none;
    padding: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.bd-booking-perks li[b-7f4b9vzsuw] {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.bd-booking-perks li[b-7f4b9vzsuw]::before {
    content: "•";
    /* OR a check */
    position: absolute;
    left: 4px;
    color: #6b7280;
}

/* Responsive */
/* Responsive */
/* ========================================
   RESPONSIVE DESIGN - Mobile First
   ======================================== */

/* Global word break fix */
*[b-7f4b9vzsuw] {
    word-break: normal;
    overflow-wrap: break-word;
}

@media (max-width: 1200px) {
    .bd-shell[b-7f4b9vzsuw] {
        padding: 24px;
    }

    .bd-main-grid[b-7f4b9vzsuw] {
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }

    .bd-col-right[b-7f4b9vzsuw] {
        position: sticky;
        top: 100px;
        order: 1;
        /* Changed from default to maintain consistency */
        margin-bottom: 0;
    }
}

@media (max-width: 992px) {
    .bd-shell[b-7f4b9vzsuw] {
        padding: 16px;
    }

    .bd-image-hero[b-7f4b9vzsuw] {
        height: 280px;
        grid-template-columns: 1fr;
        border-radius: 16px;
        margin-bottom: 24px;
    }

    /* Stack layout */
    .bd-main-grid[b-7f4b9vzsuw] {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /*
       Order Logic:
       - Photos (Hero) are outside grid, always top.
       - Title/Specs are in LeftCol (order 0 default).
       - Booking Card is RightCol.
       User wants Booking Card BETWEEN Photos and Strip (Specs/Tabs).
       Strip is INSIDE LeftCol.
       So we need Booking Card BEFORE LeftCol.
       order: -1 accomplishes this.
    */
    .bd-col-right[b-7f4b9vzsuw] {
        order: 1;
        /* Move to end on mobile */
        width: 100%;
        margin-bottom: 24px;
        position: static;
        /* Disable sticky on mobile stack */
        top: auto;
    }

    .bd-col-left[b-7f4b9vzsuw] {
        order: 0;
    }

    .bd-image-hero[b-7f4b9vzsuw] {
        height: 280px;
        grid-template-columns: 1fr;
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .bd-hero-grid[b-7f4b9vzsuw] {
        display: none;
    }

    .bd-header-info[b-7f4b9vzsuw] {
        gap: 16px;
    }

    .bd-title-row[b-7f4b9vzsuw] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .bd-title-row h1[b-7f4b9vzsuw] {
        font-size: 24px;
        line-height: 1.3;
    }

    .bd-specs-row[b-7f4b9vzsuw] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Ensure tabs are clearly scrollable */
    .bd-tabs[b-7f4b9vzsuw] {
        padding: 12px 16px;
        margin: 0 -16px 20px -16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        border-bottom: 2px solid rgba(14, 165, 233, 0.15);
        /* Stronger indicator */
    }

    /* Ensure tabs are clearly scrollable */
    .bd-tab[b-7f4b9vzsuw] {
        flex-shrink: 0;
    }

    .bd-tabs[b-7f4b9vzsuw]::-webkit-scrollbar {
        display: none;
    }
}

.bd-tab[b-7f4b9vzsuw] {
    font-size: 14px;
    padding: 10px 0;
    margin-right: 20px;
    white-space: nowrap;
}

/* Restore borders for mobile Cards specifically */
.bd-booking-card[b-7f4b9vzsuw],
.bd-spec-item[b-7f4b9vzsuw],
.bd-section[b-7f4b9vzsuw] {
    border: 1px solid rgba(14, 165, 233, 0.25) !important;
    /* Clearly visible border override */
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.08) !important;
}

.bd-booking-card[b-7f4b9vzsuw] {
    border-radius: 16px;
    padding: 20px;
}

@media (max-width: 640px) {
    .bd-shell[b-7f4b9vzsuw] {
        padding: 12px;
    }

    .bd-image-hero[b-7f4b9vzsuw] {
        height: 220px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .bd-title-row h1[b-7f4b9vzsuw] {
        font-size: 20px;
        line-height: 1.3;
    }

    .bd-meta-row[b-7f4b9vzsuw] {
        flex-wrap: wrap;
        font-size: 14px;
    }

    .bd-specs-row[b-7f4b9vzsuw] {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .bd-spec-item[b-7f4b9vzsuw] {
        padding: 12px;
    }

    .spec-val[b-7f4b9vzsuw] {
        font-size: 20px;
    }

    .spec-label[b-7f4b9vzsuw] {
        font-size: 12px;
    }

    .bd-booking-price[b-7f4b9vzsuw] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .bd-booking-amount[b-7f4b9vzsuw] {
        font-size: 24px;
        /* Slightly smaller for mobile */
    }

    /* Even stronger borders for very small screens */
    .bd-booking-card[b-7f4b9vzsuw],
    .bd-spec-item[b-7f4b9vzsuw] {
        border: 1px solid rgba(14, 165, 233, 0.35) !important;
    }
}

.bd-section h2[b-7f4b9vzsuw] {
    font-size: 18px;
}

.bd-section p[b-7f4b9vzsuw],
.bd-list li[b-7f4b9vzsuw] {
    font-size: 14px;
}

/* Mobile Booking Bar only on very small screens */
.bd-mobile-booking-bar[b-7f4b9vzsuw] {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.m-booking-info[b-7f4b9vzsuw] {
    display: flex;
    flex-direction: column;
}

.m-booking-price[b-7f4b9vzsuw] {
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

.m-booking-unit[b-7f4b9vzsuw] {
    font-size: 12px;
    color: #64748b;
}

.m-booking-btn[b-7f4b9vzsuw] {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    border: none;
}

/* Hide mobile bar on desktop */
@media (min-width: 993px) {
    .bd-mobile-booking-bar[b-7f4b9vzsuw] {
        display: none;
    }
}

/* ========================================
   CORPORATE DESIGN ENHANCEMENTS
   ======================================== */

/* Premium card styling with backdrop blur */
.bd-booking-card[b-7f4b9vzsuw] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.bd-spec-item[b-7f4b9vzsuw] {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(14, 165, 233, 0.08);
    transition: all 0.3s ease;
}

.bd-spec-item:hover[b-7f4b9vzsuw] {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.15);
}

/* Section cards with subtle elevation */
.bd-section[b-7f4b9vzsuw] {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(14, 165, 233, 0.08);
}

/* Review card enhancement */
.bd-review-card[b-7f4b9vzsuw] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(14, 165, 233, 0.1);
}

/* Improved button styling */
.bd-booking-btn[b-7f4b9vzsuw] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
}

.bd-booking-btn:hover[b-7f4b9vzsuw] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.btn-action[b-7f4b9vzsuw] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(14, 165, 233, 0.15);
    transition: all 0.2s ease;
}

.btn-action:hover[b-7f4b9vzsuw] {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Divider enhancement */
.bd-divider[b-7f4b9vzsuw] {
    background: linear-gradient(90deg, transparent 0%, rgba(14, 165, 233, 0.2) 50%, transparent 100%);
}

/* Share Modal Styles */

/* Share Modal Styles */
.bd-share-modal-backdrop[b-7f4b9vzsuw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn-b-7f4b9vzsuw 0.2s ease-out;
}

.bd-share-container[b-7f4b9vzsuw] {
    background: white;
    padding: 32px;
    border-radius: 24px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: slideUp-b-7f4b9vzsuw 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bd-share-header[b-7f4b9vzsuw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bd-share-header h3[b-7f4b9vzsuw] {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.bd-close-btn[b-7f4b9vzsuw] {
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: all 0.2s;
}

.bd-close-btn:hover[b-7f4b9vzsuw] {
    background: #e5e7eb;
    color: #111;
}

.bd-share-grid[b-7f4b9vzsuw] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.bd-share-tile[b-7f4b9vzsuw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.bd-share-tile svg[b-7f4b9vzsuw] {
    width: 28px;
    height: 28px;
}

/* Specific Colors */
.bd-share-tile.facebook[b-7f4b9vzsuw] {
    background: #ecf3ff;
    color: #1877F2;
}

.bd-share-tile.facebook:hover[b-7f4b9vzsuw] {
    background: #e1ebff;
    transform: translateY(-2px);
}

.bd-share-tile.twitter[b-7f4b9vzsuw] {
    background: #f0f3f5;
    color: #000;
}

.bd-share-tile.twitter:hover[b-7f4b9vzsuw] {
    background: #e6e9ec;
    transform: translateY(-2px);
}

.bd-share-tile.whatsapp[b-7f4b9vzsuw] {
    background: #ecf9f2;
    color: #25D366;
}

.bd-share-tile.whatsapp:hover[b-7f4b9vzsuw] {
    background: #def7e9;
    transform: translateY(-2px);
}

.bd-share-tile.email[b-7f4b9vzsuw] {
    background: #fff0f0;
    color: #EA4335;
}

.bd-share-tile.email:hover[b-7f4b9vzsuw] {
    background: #ffe3e3;
    transform: translateY(-2px);
}

/* Copy Link Section */
.bd-share-copy[b-7f4b9vzsuw] {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px;
    gap: 8px;
}

.bd-copy-field[b-7f4b9vzsuw] {
    flex: 1;
    font-size: 13px;
    color: #6b7280;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 8px;
}

.bd-copy-btn[b-7f4b9vzsuw] {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bd-copy-btn:hover[b-7f4b9vzsuw] {
    border-color: #d1d5db;
    background: #f3f4f6;
}

/* Share Trigger Button */
.bd-share-trigger[b-7f4b9vzsuw] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.bd-share-trigger:hover[b-7f4b9vzsuw] {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@keyframes slideUp-b-7f4b9vzsuw {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeIn-b-7f4b9vzsuw {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Review Section Styles */
.bd-reviews-header[b-7f4b9vzsuw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.btn-secondary[b-7f4b9vzsuw] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #d1d5db;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover[b-7f4b9vzsuw] {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f9fafb;
}

/* Review Form Modal Styles */
.bd-review-form[b-7f4b9vzsuw] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bd-form-group[b-7f4b9vzsuw] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bd-star-rating-input[b-7f4b9vzsuw] {
    display: flex;
    gap: 4px;
}

.star-input[b-7f4b9vzsuw] {
    font-size: 32px;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.2s;
}

.star-input.filled[b-7f4b9vzsuw] {
    color: var(--accent-yellow);
}

.star-input:hover[b-7f4b9vzsuw] {
    color: #fbbf24;
}

.bd-review-form textarea[b-7f4b9vzsuw] {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
}

/* Thank You Message */
.bd-review-thank-you[b-7f4b9vzsuw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 0;
    animation: fadeIn-b-7f4b9vzsuw 0.3s ease-out;
}

.bd-thank-you-icon[b-7f4b9vzsuw] {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    color: #16a34a;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 16px;
    font-weight: bold;
}

.bd-review-thank-you h3[b-7f4b9vzsuw] {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.bd-review-thank-you p[b-7f4b9vzsuw] {
    color: #6b7280;
    font-size: 16px;
}
/* _content/RentBoat/Components/Pages/Campaigns.razor.rz.scp.css */
/* Campaigns Page Styling */

.cp-shell[b-w95ki7l1pz] {
    min-height: 100vh;
    background: transparent;
}

.cp-main[b-w95ki7l1pz] {
    padding: 0 0 60px 0;
    max-width: 100%;
    margin: 0;
}

/* Hero Section */
/* Hero Section */
.cp-hero[b-w95ki7l1pz] {
    position: relative;
    padding: 120px 20px 100px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-color: #020617;
    /* Dark slate base */
}

/* Background Image with Parallax-like feel */
.cp-hero[b-w95ki7l1pz]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    opacity: 0.4;
    transition: transform 0.8s ease-out;
}

/* Premium Gradient Overlay */
.cp-hero[b-w95ki7l1pz]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.4) 0%,
            rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.cp-hero-content[b-w95ki7l1pz] {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cp-hero-label[b-w95ki7l1pz] {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #38bdf8;
    /* Sky 400 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cp-hero-content h1[b-w95ki7l1pz] {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cp-hero-content p[b-w95ki7l1pz] {
    font-size: 20px;
    line-height: 1.6;
    color: #cbd5e1;
    /* Slate 300 */
    font-weight: 400;
    max-width: 600px;
    margin: 0;
}

/* Campaign Stats */
.cp-stats[b-w95ki7l1pz] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: -40px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cp-stat-item[b-w95ki7l1pz] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
    border: 2px solid rgba(14, 165, 233, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Decorative corner accent */
.cp-stat-item[b-w95ki7l1pz]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at top right,
            rgba(14, 165, 233, 0.1) 0%,
            transparent 70%);
    pointer-events: none;
}

.cp-stat-item:hover[b-w95ki7l1pz] {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.25);
    border-color: var(--primary-color);
}

.cp-stat-value[b-w95ki7l1pz] {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.cp-stat-label[b-w95ki7l1pz] {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Boat Grid */
.cp-grid[b-w95ki7l1pz] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 0 40px;
    max-width: 1800px;
    margin: 0 auto;
}

@media (min-width: 1400px) {
    .cp-grid[b-w95ki7l1pz] {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .cp-hero-content h1[b-w95ki7l1pz] {
        font-size: 42px;
    }

    .cp-hero-content p[b-w95ki7l1pz] {
        font-size: 18px;
    }

    .cp-stats[b-w95ki7l1pz] {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: -30px auto 40px;
    }

    .cp-grid[b-w95ki7l1pz] {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .cp-hero[b-w95ki7l1pz] {
        padding: 80px 16px 60px;
    }

    .cp-hero-content h1[b-w95ki7l1pz] {
        font-size: 32px;
    }

    .cp-hero-content p[b-w95ki7l1pz] {
        font-size: 16px;
    }

    .cp-stat-item[b-w95ki7l1pz] {
        padding: 24px 20px;
    }

    .cp-stat-value[b-w95ki7l1pz] {
        font-size: 36px;
    }

    .cp-stat-label[b-w95ki7l1pz] {
        font-size: 12px;
    }

    .cp-grid[b-w95ki7l1pz] {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
}
/* _content/RentBoat/Components/Pages/FilterPanel.razor.rz.scp.css */
/* Corporate & Professional Filter Panel - Glass Theme */
.lp-filter-card[b-2djbzdsm3u] {
    background: rgba(255, 255, 255, 0.85);
    /* More transparent */
    backdrop-filter: blur(16px);
    /* Strong glass blur */
    -webkit-backdrop-filter: blur(16px);

    padding: 40px;
    border-radius: var(--radius-lg);
    /* 32px - very rounded */
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.15);
    /* Deep smooth shadow */
    border: 2px solid rgba(14, 165, 233, 0.2);
    /* Clear blue border */

    display: flex;
    flex-direction: column;
    gap: 48px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: auto;
    overflow-y: visible;
}

/* Top corner decorative accent */
.lp-filter-card[b-2djbzdsm3u]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right,
            rgba(14, 165, 233, 0.08) 0%,
            transparent 70%);
    pointer-events: none;
    border-radius: 0 var(--radius-md) 0 0;
}

/* Bottom corner decorative accent */
.lp-filter-card[b-2djbzdsm3u]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at bottom left,
            rgba(56, 189, 248, 0.06) 0%,
            transparent 70%);
    pointer-events: none;
    border-radius: 0 0 0 var(--radius-md);
}


/* Header */
.lp-filter-header[b-2djbzdsm3u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.lp-filter-header h3[b-2djbzdsm3u] {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* Sections */
.lp-filter-section h4[b-2djbzdsm3u] {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Boat Type Grid - Cards */
.lp-boat-type-container[b-2djbzdsm3u] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.lp-boat-item[b-2djbzdsm3u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    /* Larger tap targets */
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid var(--border-color);
    /* Thicker borders */
}

.lp-boat-item:hover[b-2djbzdsm3u] {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.1);
}

.lp-boat-item.is-active[b-2djbzdsm3u] {
    background-color: #F0F9FF;
    /* Very light blue bg */
    border-color: var(--primary-color);
    /* VIBRANT BLUE Active State */
    color: var(--primary-color);
}

.lp-boat-icon[b-2djbzdsm3u] {
    font-size: 28px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.2s;
}

.lp-boat-item:hover .lp-boat-icon[b-2djbzdsm3u],
.lp-boat-item.is-active .lp-boat-icon[b-2djbzdsm3u] {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

.lp-boat-name[b-2djbzdsm3u] {
    font-size: 14px;
    font-weight: 600;
}


/* Price Inputs */
.lp-price-inputs[b-2djbzdsm3u] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.lp-price-box[b-2djbzdsm3u] {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    /* Slightly softer radius */
    padding: 12px 16px;
    transition: 0.2s;
    background: #FAFAFA;
}

.lp-price-box:focus-within[b-2djbzdsm3u] {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.lp-currency[b-2djbzdsm3u] {
    color: var(--text-light);
    font-weight: 500;
    margin-right: 8px;
}

.lp-price-input[b-2djbzdsm3u] {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.lp-price-sep[b-2djbzdsm3u] {
    color: var(--text-light);
}

/* Range Slider Customization */
input[type=range][b-2djbzdsm3u] {
    accent-color: var(--primary-color);
    /* Blue Slider */
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 5px;
    cursor: pointer;
}


/* Counter Controls */
.lp-counter-row[b-2djbzdsm3u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.lp-counter-title[b-2djbzdsm3u] {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.lp-counter-subtitle[b-2djbzdsm3u] {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.lp-counter-controls[b-2djbzdsm3u] {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FAFAFA;
    border-radius: 99px;
    /* Pill shape container */
    padding: 4px;
    border: 1px solid var(--border-color);
}

.lp-counter-btn[b-2djbzdsm3u] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-dark);
    transition: 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.lp-counter-btn:hover[b-2djbzdsm3u] {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.lp-counter-val[b-2djbzdsm3u] {
    font-weight: 600;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.lp-divider[b-2djbzdsm3u] {
    height: 1px;
    background: var(--border-color);
    margin: 16px 0;
    opacity: 0.6;
}


/* Rental Options - Custom Checks */
.lp-rental-options[b-2djbzdsm3u] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.lp-checkbox-item[b-2djbzdsm3u] {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-dark);
    width: 100%;
}

.lp-checkbox-text[b-2djbzdsm3u] {
    flex: 1;
}

.lp-checkbox-count[b-2djbzdsm3u] {
    color: var(--text-light);
    font-size: 13px;
}

.lp-checkbox-item:hover[b-2djbzdsm3u] {
    color: var(--text-dark);
}

.lp-checkbox-item input[type="checkbox"][b-2djbzdsm3u] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
    background: #fff;
}

.lp-checkbox-item input[type="checkbox"]:checked[b-2djbzdsm3u] {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.lp-checkbox-item input[type="checkbox"]:checked[b-2djbzdsm3u]::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 16px;
    font-weight: 800;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/* _content/RentBoat/Components/Pages/Home.razor.rz.scp.css */
/* HeroSection */
.rb-hero[b-52hue9ahv7] {
    position: relative;
    background: radial-gradient(circle at top left, #2a2a2f 0, #111114 40%, #050509 80%);
    color: #f9fafb;
    padding: 4rem 0 3rem;
    overflow: hidden;
}

.rb-hero-overlay[b-52hue9ahv7] {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.18) 0, transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.12) 0, transparent 55%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.rb-hero-inner[b-52hue9ahv7] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1120px;
}

.rb-hero-text h1[b-52hue9ahv7] {
    font-size: 2.6rem;
    font-weight: 750;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.rb-hero-text p[b-52hue9ahv7] {
    font-size: 1rem;
    opacity: 0.88;
    margin-bottom: 1.75rem;
}

.rb-search-card[b-52hue9ahv7] {
    background: #f9fafb;
    color: #020617;
    border-radius: 999px;
    padding: 0.9rem 1.75rem;
    box-shadow:
        0 32px 80px rgba(15, 23, 42, 0.55),
        0 0 0 1px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: 1040px;
}

.rb-search-row[b-52hue9ahv7] {
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.4fr) minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 1.25rem;
    align-items: center;
}

.rb-search-field label[b-52hue9ahv7] {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.rb-search-input[b-52hue9ahv7] {
    border-radius: 999px;
    border: 1px solid #d4d4d8;
    padding: 0.65rem 1.1rem;
    background-color: #f9fafb;
    transition: box-shadow 0.18s ease-out, border-color 0.18s ease-out, background-color 0.18s ease-out;
}

.rb-search-label[b-52hue9ahv7] {
    font-weight: 600;
    color: #020617;
}

.rb-search-button-wrap[b-52hue9ahv7] {
    display: flex;
    align-items: flex-end;
}

.rb-search-sub[b-52hue9ahv7] {
    font-size: 0.8rem;
    color: #6b7280;
    padding: 0 0.5rem;
}

.rb-btn-primary[b-52hue9ahv7] {
    background: linear-gradient(135deg, #ff8a3c 0%, #ff6a2a 45%, #ff5a1f 100%);
    border: none;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.5);
    transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, filter 0.16s ease-out;
}

.rb-btn-primary:hover[b-52hue9ahv7] {
    filter: brightness(1.03);
    transform: scale(1.05);
    box-shadow: 0 10px 26px rgba(249, 115, 22, 0.7);
}

.rb-input-focusable:focus-within[b-52hue9ahv7],
.rb-input-focusable:focus[b-52hue9ahv7] {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.8), 0 0 0 8px rgba(249, 115, 22, 0.18);
    background-color: #ffffff;
}

/* Trust & benefits */
.rb-trust[b-52hue9ahv7] {
    margin-top: -0.75rem;
    padding: 0 1.5rem 1.75rem;
}

.rb-trust-grid[b-52hue9ahv7] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.rb-trust-item[b-52hue9ahv7] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.rb-trust-icon[b-52hue9ahv7] {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #ffffff 0, #f97316 40%, #7c2d12 100%);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.7);
}

.rb-trust-title[b-52hue9ahv7] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f9fafb;
}

.rb-trust-sub[b-52hue9ahv7] {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Sayfa gövdesi */
/* İç gövde alanı (siyah zemin üzerine açık paneller) */
.rb-page[b-52hue9ahv7] {
    padding: 2.75rem 1.5rem 3.25rem;
    margin-top: -1.25rem;
    border-radius: 2.5rem 2.5rem 0 0;
    background: radial-gradient(circle at top, #111114 0, #050509 55%, #050509 100%);
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.rb-page-header[b-52hue9ahv7] {
    margin-bottom: 1.5rem;
}

.rb-page-header h2[b-52hue9ahv7] {
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0.25rem 0;
}

.rb-page-header p[b-52hue9ahv7] {
    color: #9ca3af;
    margin: 0;
}

.rb-badge[b-52hue9ahv7] {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Filtre kartı */
.rb-filter-card[b-52hue9ahv7] {
    border-radius: 1.5rem;
    border: 1px solid #27272f;
    padding: 1.25rem 1.25rem 1.15rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
    background: #111114;
    position: sticky;
    top: 5rem;
    color: #e5e7eb;
}

.rb-page-toolbar[b-52hue9ahv7] {
    margin-bottom: 1rem;
}

.rb-filter-toggle[b-52hue9ahv7] {
    border-radius: 999px;
    border: 1px solid #27272f;
    background: #111114;
    color: #e5e7eb;
    font-size: 0.88rem;
    padding-inline: 1.4rem;
}

.rb-filter-toggle:hover[b-52hue9ahv7] {
    background: #18181f;
}

.rb-filter-shell[b-52hue9ahv7] {
    position: relative;
}

.rb-range-row .form-range[b-52hue9ahv7] {
    accent-color: #f97316;
}

.rb-filter-actions .btn-outline-light[b-52hue9ahv7] {
    border-radius: 999px;
}

.rb-filter-card .form-check-label[b-52hue9ahv7],
.rb-filter-card .rb-filter-header h3[b-52hue9ahv7],
.rb-filter-card .rb-filter-group h4[b-52hue9ahv7] {
    color: #e5e7eb;
}

.rb-filter-card .btn-link[b-52hue9ahv7] {
    color: #e5e7eb;
}

.rb-filter-card .btn-link:hover[b-52hue9ahv7] {
    color: #f97316;
}

.rb-filter-header[b-52hue9ahv7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.rb-filter-header h3[b-52hue9ahv7] {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.rb-filter-group[b-52hue9ahv7] {
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
}

.rb-filter-group:first-of-type[b-52hue9ahv7] {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.rb-filter-group h4[b-52hue9ahv7] {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rb-filter-group .form-check[b-52hue9ahv7] {
    font-size: 0.88rem;
    margin-bottom: 0.25rem;
}

/* Liste üst bar */
.rb-list-header[b-52hue9ahv7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.65rem 0.75rem;
    border-radius: 999px;
    border: 1px solid #27272f;
    background: radial-gradient(circle at top, rgba(24, 24, 32, 0.95), #050509 100%);
    position: sticky;
    top: 1rem;
    z-index: 10;
}

.rb-list-header-left[b-52hue9ahv7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.rb-list-label[b-52hue9ahv7] {
    font-weight: 600;
}

.rb-list-header-right[b-52hue9ahv7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rb-sort-label[b-52hue9ahv7] {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Kart grid / kartlar */
.rb-card-grid[b-52hue9ahv7] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rb-chip-toggle[b-52hue9ahv7] {
    border-radius: 999px;
    border-color: #27272f;
    background: transparent;
    color: #e5e7eb;
    font-size: 0.78rem;
    padding-inline: 0.9rem;
}

.rb-chip-toggle:hover[b-52hue9ahv7] {
    border-color: #f97316;
    color: #f97316;
}

.rb-boat-card[b-52hue9ahv7] {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.35rem;
    border-radius: 1.8rem;
    border: 1px solid #27272f;
    background: #111114;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    color: #e5e7eb;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.rb-boat-card:hover[b-52hue9ahv7] {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.95);
    border-color: #f97316;
}

.rb-boat-image[b-52hue9ahv7] {
    position: relative;
    min-height: 190px;
    background-image: linear-gradient(145deg, #020202 0%, #050509 40%, #111114 100%);
}

.rb-boat-tag[b-52hue9ahv7] {
    position: absolute;
    left: 0.9rem;
    top: 0.9rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #f9fafb;
    font-size: 0.75rem;
    font-weight: 600;
}

.rb-boat-badge-list[b-52hue9ahv7] {
    position: absolute;
    left: 0.9rem;
    bottom: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.rb-chip[b-52hue9ahv7] {
    font-size: 0.7rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    color: #f9fafb;
    border: 1px solid rgba(248, 250, 252, 0.35);
}

.rb-chip-gold[b-52hue9ahv7] {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    border-color: transparent;
    color: #111827;
}

.rb-boat-body[b-52hue9ahv7] {
    display: flex;
    padding: 1rem 1.5rem 1.1rem;
    gap: 1.25rem;
}

.rb-boat-main[b-52hue9ahv7] {
    flex: 1;
}

.rb-boat-main h3[b-52hue9ahv7] {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.rb-boat-meta[b-52hue9ahv7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    font-size: 0.86rem;
    color: #6b7280;
}

.rb-boat-meta span[b-52hue9ahv7]::before {
    content: "•";
    margin: 0 0.35rem 0 0;
    color: #d1d5db;
}

.rb-boat-meta span:first-child[b-52hue9ahv7]::before {
    content: "";
    margin: 0;
}

.rb-boat-rating[b-52hue9ahv7] {
    margin-top: 0.55rem;
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
}

.rb-rating-score[b-52hue9ahv7] {
    font-weight: 700;
    font-size: 0.95rem;
}

.rb-rating-count[b-52hue9ahv7] {
    font-size: 0.8rem;
    color: #6b7280;
}

.rb-boat-price[b-52hue9ahv7] {
    width: 210px;
    text-align: right;
    font-size: 0.87rem;
}

.rb-price-label[b-52hue9ahv7] {
    display: block;
    color: #6b7280;
    margin-bottom: 0.15rem;
}

.rb-price-value[b-52hue9ahv7] {
    font-weight: 700;
    font-size: 1.05rem;
}

.rb-price-unit[b-52hue9ahv7] {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.rb-price-extra[b-52hue9ahv7] {
    font-size: 0.78rem;
    color: #16a34a;
    margin-top: 0.15rem;
}

/* Responsive */
@media (max-width: 992px) {
    .rb-hero[b-52hue9ahv7] {
        padding: 2.5rem 0 1.8rem;
    }

    .rb-search-card[b-52hue9ahv7] {
        border-radius: 1.5rem;
    }

    .rb-search-row[b-52hue9ahv7] {
        grid-template-columns: 1fr 1fr;
        row-gap: 0.75rem;
    }

    .rb-boat-card[b-52hue9ahv7] {
        grid-template-columns: minmax(0, 1fr);
    }

    .rb-boat-image[b-52hue9ahv7] {
        min-height: 180px;
    }

    .rb-boat-body[b-52hue9ahv7] {
        flex-direction: column;
    }

    .rb-boat-price[b-52hue9ahv7] {
        width: 100%;
        text-align: left;
        border-top: 1px solid #f3f4f6;
        margin-top: 0.75rem;
        padding-top: 0.6rem;
    }

    .rb-trust-grid[b-52hue9ahv7] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rb-filter-shell[b-52hue9ahv7] {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(320px, 100%);
        transform: translateX(100%);
        transition: transform 0.22s ease-out;
        z-index: 40;
        padding: 1rem;
    }

    .rb-filter-shell.is-open[b-52hue9ahv7] {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .rb-search-row[b-52hue9ahv7] {
        grid-template-columns: 1fr;
    }

    .rb-filter-card[b-52hue9ahv7] {
        position: static;
        margin-bottom: 1.25rem;
    }

    .rb-page[b-52hue9ahv7] {
        padding-top: 1.5rem;
    }

    .rb-list-header[b-52hue9ahv7] {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .rb-hero-text h1[b-52hue9ahv7] {
        font-size: 1.7rem;
    }

    .rb-hero-text p[b-52hue9ahv7] {
        font-size: 0.9rem;
    }
}

/* _content/RentBoat/Components/Pages/ListingPage.razor.rz.scp.css */
*[b-5odrg4qgd1],
*[b-5odrg4qgd1]::before,
*[b-5odrg4qgd1]::after {
    box-sizing: border-box;
}

.lp-shell[b-5odrg4qgd1] {
    min-height: 100vh;
    background: transparent;
}

.lp-header[b-5odrg4qgd1] {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.05);
}

.lp-header-inner[b-5odrg4qgd1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.lp-logo[b-5odrg4qgd1] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: #0EA5E9;
    /* Corporate Blue Background */
    color: #FFDE59;
    /* Yellow Text */
    padding: 12px 24px;
    border-radius: 8px;
    /* Rounded corners for the logo box */
    cursor: pointer;
    line-height: 1;
}

.lp-logo-icon path[b-5odrg4qgd1] {
    stroke: #FFDE59 !important;
    /* Force icon lines to yellow */
}

.lp-nav[b-5odrg4qgd1] {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
}

.lp-nav-link[b-5odrg4qgd1] {
    font-size: 0.9rem;
    color: #111827;
    background: none;
    border: none;
    padding: 0;
    font-weight: 500;
}

.lp-lang[b-5odrg4qgd1] {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    padding: 0.3rem 0.75rem;
    font-size: 0.8rem;
}

.lp-profile[b-5odrg4qgd1] {
    border-radius: 999px;
    border: 1px solid #111827;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
}

/* Main Layout */
.lp-main[b-5odrg4qgd1] {
    padding: 0 0 60px 0;
    max-width: 100%;
    /* Ensure main takes full width */
    margin: 0;
}

/* Updated Hero Section to span full width */
/* Updated Hero Section with Blur & Overlay */
.lp-hero[b-5odrg4qgd1] {
    position: relative;
    padding: 100px 20px 120px;
    margin-bottom: 40px;
    border-radius: 0 0 0 0;
    /* Flat bottom for full screen feel? Or keep rounded? User said "wider". Let's keep rounded but less drastic */
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
    overflow: hidden;
    z-index: 1;
    background-color: #0EA5E9;
}

/* 1. Background Image Layer (Blurred & Faded) */
/* 1. Background Image Layer (Sharp & Vivid) */
/* 1. Background Image Layer (Blurred for Readability) */
.lp-hero[b-5odrg4qgd1]::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Using a similar top-down boat image */
    background: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    /* Blur and slight darken */
    filter: blur(6px) brightness(0.85);
    opacity: 1;
    z-index: -2;
    transform: scale(1.05);
    /* Prevent blur edges */
}

/* 2. Gradient Overlay Layer (Stronger Contrast) */
.lp-hero[b-5odrg4qgd1]::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Stronger gradient for text pop */
    background: linear-gradient(to bottom,
            rgba(14, 165, 233, 0.4),
            rgba(2, 132, 199, 0.7));
    z-index: -1;
}

.lp-hero-text h1[b-5odrg4qgd1] {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    /* text-shadow removed */
    margin-bottom: 12px;
}

.lp-hero-text p[b-5odrg4qgd1] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 32px;
}

.lp-layout[b-5odrg4qgd1] {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.lp-layout-left[b-5odrg4qgd1] {
    position: relative;
}

.lp-filter-toggle[b-5odrg4qgd1] {
    width: 100%;
    border-radius: 999px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.lp-filter-drawer[b-5odrg4qgd1] {
    position: sticky;
    top: 5rem;
}

.lp-layout-right[b-5odrg4qgd1] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Results Header */
.lp-results-header[b-5odrg4qgd1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.lp-results-count[b-5odrg4qgd1] {
    font-weight: 600;
    color: var(--text-dark);
}

.lp-results-sort[b-5odrg4qgd1] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Responsive grid: min 300px, but on wide screens it fits 4 */
.lp-card-list[b-5odrg4qgd1] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

@media (min-width: 1600px) {
    .lp-card-list[b-5odrg4qgd1] {
        grid-template-columns: repeat(4, 1fr);
        /* Exactly 4 columns on large screens */
    }
}

@media (max-width: 992px) {
    .lp-layout[b-5odrg4qgd1] {
        grid-template-columns: 1fr;
    }

    .lp-layout-left[b-5odrg4qgd1] {
        display: block;
        /* Show container on mobile now that it's just the drawer wrapper */
        position: static;
    }

    .lp-top-actions[b-5odrg4qgd1] {
        margin-bottom: 20px;
    }

    .lp-filter-toggle[b-5odrg4qgd1] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 20px;
        background: white;
        border: 1px solid rgba(14, 165, 233, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        font-weight: 600;
        color: var(--text-dark);
        width: fit-content;
    }

    .lp-filter-drawer[b-5odrg4qgd1] {
        position: fixed;
        inset: 0;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        z-index: 2000;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
    }

    .lp-drawer-header[b-5odrg4qgd1] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid #f1f5f9;
    }

    .lp-drawer-header h3[b-5odrg4qgd1] {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 700;
    }

    .lp-filter-drawer .lp-filter-card[b-5odrg4qgd1] {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
        border: none;
        box-shadow: none;
    }

    .lp-filter-drawer.is-open[b-5odrg4qgd1] {
        transform: translateX(0);
    }

    .lp-card-list[b-5odrg4qgd1] {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 576px) {
    .lp-main[b-5odrg4qgd1] {
        padding-inline: 1rem;
    }
}
/* _content/RentBoat/Components/Pages/SearchBar.razor.rz.scp.css */
.lp-search[b-sll9il61r8] {
    width: 100%;
    margin-bottom: 24px;
    position: relative;
}

/* Solid & Clean Search Bar (No Blur/Anim) */
.lp-search-inner[b-sll9il61r8] {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    /* Solid White */
    border: 2px solid rgba(14, 165, 233, 0.2);
    /* Static blue border */
    border-radius: 999px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    /* Static shadow */
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.lp-search-field[b-sll9il61r8] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    border-right: 1px solid var(--border-color);
    position: relative;
    height: 48px;
    /* Fixed height for consistency */
    cursor: pointer;
}

.lp-search-field:last-of-type[b-sll9il61r8] {
    border-right: none;
}

.lp-search-field label[b-sll9il61r8] {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-dark);
    cursor: pointer;
}

.lp-search-field input[b-sll9il61r8],
.lp-search-field select[b-sll9il61r8] {
    border: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--text-medium);
    outline: none;
    width: 100%;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.lp-search-field input:focus[b-sll9il61r8],
.lp-search-field select:focus[b-sll9il61r8] {
    color: var(--text-dark);
}

/* Custom indicator for select since we use appearance: none */
.lp-search-field select[b-sll9il61r8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 16px;
    padding-right: 24px;
}

.lp-search-action[b-sll9il61r8] {
    padding-left: 12px;
}

.lp-search-action button[b-sll9il61r8] {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    cursor: pointer;
    /* Static button, no animation */
}

.lp-search-action button:hover[b-sll9il61r8] {
    background-color: var(--primary-hover);
    /* Only color change, no movement */
}

@media (max-width: 768px) {
    .lp-search-inner[b-sll9il61r8] {
        flex-direction: column;
        border-radius: 20px;
        gap: 12px;
        padding: 16px;
        align-items: stretch;
    }

    .lp-search-field[b-sll9il61r8] {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 12px 0;
        height: auto;
    }

    .lp-search-field:last-of-type[b-sll9il61r8] {
        border-bottom: none;
    }

    .lp-search-field label[b-sll9il61r8] {
        font-size: 11px;
        color: var(--primary-color);
        margin-bottom: 4px;
    }

    .lp-search-action[b-sll9il61r8] {
        width: 100%;
        padding: 0;
        margin-top: 8px;
    }

    .lp-search-action button[b-sll9il61r8] {
        width: 100%;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        /* Reset from 50% */
    }
}
