﻿/* Source: public\\asset_bookle\\css\\home-showcase.css */
.home-showcase-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fbfaf7;
}

.home-showcase-main {
    flex: 1 0 auto;
}

.showcase-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(18, 32, 56, 0.08);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.showcase-header-main {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 104px;
}

.showcase-header-logo img,
.showcase-panel-logo img {
    width: 182px;
    max-width: 100%;
    display: block;
}

.showcase-header-search {
    display: flex;
    align-items: center;
    min-width: 0;
}

.showcase-search-form {
    position: relative;
    width: 100%;
}

.showcase-search-input {
    width: 100%;
    height: 64px;
    padding: 0 92px 0 28px;
    border-radius: 24px;
    border: 1px solid rgba(18, 32, 56, 0.12);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    font-size: 17px;
    font-weight: 600;
    color: #18243c;
}

.showcase-search-input::placeholder {
    color: #9aa4b5;
}

.showcase-search-submit {
    position: absolute;
    inset: 0 0 0 auto;
    width: 88px;
    border: 0;
    border-radius: 0 24px 24px 0;
    background: var(--theme);
    color: #fff;
    font-size: 22px;
}

.showcase-search-submit:hover {
    filter: brightness(0.96);
}

.showcase-search-back {
    width: 44px;
    height: 44px;
    margin-right: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(18, 32, 56, 0.06);
    color: #24314d;
}

.showcase-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.showcase-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 8px 0 18px;
    border: 1px solid rgba(18, 32, 56, 0.1);
    border-radius: 999px;
    background: #fff;
    color: #31415f;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    font-weight: 700;
}

.showcase-support-icon,
.showcase-icon-btn,
.showcase-cart-slot .cart-icon,
.showcase-cart-slot .search-icon,
.showcase-cart-slot .header-humbager .bar-icon-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(18, 32, 56, 0.12);
    background: #fff;
    color: #21314d;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.showcase-icon-btn {
    padding: 0;
}

.showcase-icon-btn img {
    width: 18px;
    height: 18px;
}

.showcase-support-menu {
    min-width: 250px;
    padding: 10px;
    border: 1px solid rgba(18, 32, 56, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.showcase-support-menu .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 600;
}

.showcase-cart-slot {
    display: flex;
    align-items: center;
}

.showcase-cart-slot .menu-cart {
    display: flex;
    align-items: center;
    gap: 12px;
}

.showcase-cart-slot .header-humbager {
    margin-left: 0 !important;
}

.showcase-cart-slot #cart_items {
    display: flex;
    align-items: center;
}

.showcase-header-nav {
    border-top: 1px solid rgba(18, 32, 56, 0.06);
    background: linear-gradient(90deg, color-mix(in srgb, var(--theme) 96%, white) 0%, color-mix(in srgb, var(--theme) 84%, #081321) 100%);
}

.showcase-nav-track {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.showcase-nav-track::-webkit-scrollbar {
    display: none;
}

.showcase-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.showcase-nav-link.active,
.showcase-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.showcase-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 120;
}

.showcase-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 92vw);
    height: 100vh;
    padding: 28px 24px 24px;
    background: #fff;
    box-shadow: -14px 0 40px rgba(15, 23, 42, 0.14);
    transform: translateX(110%);
    transition: transform 0.28s ease;
    z-index: 130;
    overflow-y: auto;
}

.showcase-panel.is-open {
    transform: translateX(0);
}

.showcase-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.showcase-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.showcase-panel-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(18, 32, 56, 0.06);
    color: #24314d;
}

.showcase-panel-nav,
.showcase-panel-section {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.showcase-panel-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7b879c;
}

.showcase-panel-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(18, 32, 56, 0.08);
    border-radius: 14px;
    font-weight: 600;
    color: #1f2d46;
    background: #fff;
}

.showcase-panel-actions {
    display: grid;
    gap: 12px;
}

.showcase-panel-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border: 0;
    border-radius: 16px;
    background: var(--theme);
    color: #fff;
    font-weight: 700;
}

.showcase-panel-cta-secondary {
    background: rgba(18, 32, 56, 0.06);
    color: #24314d;
}

.showcase-footer-intro {
    padding: 42px 0 0;
}

.showcase-footer-intro .container {
    padding-top: 28px;
    padding-bottom: 28px;
    border-top: 1px solid rgba(18, 32, 56, 0.08);
    border-bottom: 1px solid rgba(18, 32, 56, 0.08);
}

.showcase-footer-intro h4 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #22314c;
}

.showcase-footer-intro p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #64748b;
}

.showcase-footer-trust {
    padding: 28px 0 0;
}

.showcase-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.showcase-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 0 18px;
    border: 1px solid rgba(18, 32, 56, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.04);
    color: #21314d;
    font-weight: 700;
}

.showcase-trust-item i {
    color: var(--theme2);
}

.showcase-footer {
    margin-top: 28px;
    padding: 42px 0 24px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--footerbg) 96%, white) 0%, color-mix(in srgb, var(--footerbg) 88%, black) 100%);
    color: rgba(255, 255, 255, 0.88);
}

.showcase-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
}

.showcase-footer-logo img {
    width: 190px;
    max-width: 100%;
}

.showcase-footer-copy {
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.75;
}

.showcase-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.showcase-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.showcase-footer-links-panel h3,
.showcase-footer-contact h3 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.showcase-footer-links-panel ul,
.showcase-footer-contact ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.showcase-footer-links-panel a,
.showcase-footer-contact a,
.showcase-footer-contact strong {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.showcase-footer-contact span {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.showcase-footer-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.showcase-footer-payments img {
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 8px;
}

.showcase-footer-bottom {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.showcase-backtop {
    z-index: 88;
}

body.showcase-menu-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .showcase-header-main {
        grid-template-columns: minmax(140px, 180px) auto;
        gap: 16px;
        min-height: 86px;
    }

    .showcase-header-search {
        position: fixed;
        inset: 0 auto auto 0;
        width: 100%;
        padding: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
        transform: translateY(-120%);
        transition: transform 0.28s ease;
        z-index: 105;
    }

    .showcase-header-search.is-open {
        transform: translateY(0);
    }

    .showcase-search-form {
        width: 100%;
    }

    .showcase-header-nav {
        display: none;
    }

    .showcase-trust-grid,
    .showcase-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .showcase-header-main {
        grid-template-columns: minmax(124px, 160px) auto;
    }

    .showcase-header-actions {
        gap: 8px;
    }

    .showcase-support-btn {
        display: none;
    }

    .showcase-icon-btn,
    .showcase-cart-slot .cart-icon,
    .showcase-cart-slot .search-icon,
    .showcase-cart-slot .header-humbager .bar-icon-2 {
        width: 42px;
        height: 42px;
    }

    .showcase-trust-grid,
    .showcase-footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


