﻿/* =========================================================
   COMMON SLIDERS
========================================================= */

.promo-slider,
.prd-slider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-slider-main,
.prd-slider-main {
    flex: 1 1 auto;
    min-width: 0;
}

.promo-slider-wrap,
.prd-slider-wrap {
    width: 100%;
    overflow: hidden;
}

.promo-slider-track,
.prd-slider-track {
    display: flex;
    gap: 18px;
    transition: transform .45s ease;
    will-change: transform;
}

.promo-card,
.prd-card {
    flex: 0 0 calc((100% - 54px) / 4);
    min-width: calc((100% - 54px) / 4);
    background: #fff;
    border-radius: 18px;
}

.promo-card {
    position: relative;
    overflow: visible;
}

.prd-card {
    position: relative;
    overflow: hidden;
}

.promo-nav,
.prd-nav {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    font-size: 24px;
    transition: box-shadow .2s ease;
}

    .promo-nav:hover,
    .prd-nav:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    }

.promo-dots,
.prd-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.promo-dot,
.prd-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d6cec6;
    cursor: pointer;
    opacity: .9;
    transition: transform .2s ease, background-color .2s ease;
}

    .promo-dot:hover,
    .prd-dot:hover {
        transform: scale(1.15);
    }

    .promo-dot.active,
    .prd-dot.active {
        background: var(--primary);
        transform: scale(1.2);
    }

.promo-dots.is-hidden,
.prd-dots.is-hidden {
    display: none;
}


/* =========================================================
   PROMO / PRODUCT IMAGE
========================================================= */

.blk-banner-carousel {
    padding-top: 22px;
}

.promo-image,
.prd-image {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f6f6f6;
}

    .promo-image img,
    .prd-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
    }

.promo-card:hover .promo-image img,
.prd-card:hover .prd-image img {
    transform: scale(1.04);
}


/* =========================================================
   PROMO CARD
========================================================= */

.promo-body {
    position: relative;
    padding: 12px 4px 0;
    overflow: visible;
}

.promo-title-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.promo-title {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    color: var(--text);
}

.promo-subtitle {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    color: var(--text-soft);
}


/* =========================================================
   PROMO INFO TOOLTIP
========================================================= */

.promo-info-wrap {
    position: static;
    flex-shrink: 0;
}

.promo-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f4d35e;
    color: #4a3b15;
    font-size: 14px;
    font-weight: 800;
    cursor: help;
    transition: all .2s ease;
}

    .promo-info-icon:hover {
        background: #e9c84f;
        transform: scale(1.05);
    }

.promo-info-tooltip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + 12px);
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    padding: 16px 18px;
    border: 1px solid #f0cf67;
    border-radius: 16px;
    background: #fff8dc;
    color: #5b4636;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
    white-space: normal;
    word-break: break-word;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    z-index: 9999;
}

.promo-info-wrap:hover .promo-info-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.promo-info-tooltip::-webkit-scrollbar {
    width: 8px;
}

.promo-info-tooltip::-webkit-scrollbar-thumb {
    background: #d6bf73;
    border-radius: 20px;
}

.promo-info-tooltip::-webkit-scrollbar-track {
    background: transparent;
}


/* =========================================================
   COUNTDOWN - PROMO + HERO SAME SIZE
========================================================= */

.promo-countdown,
.hero-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.promo-countdown {
    margin-top: 12px;
}

.hero-countdown {
    flex: 0 0 auto;
    margin: 0;
}

.promo-countdown-box {
    min-width: 54px;
    padding: 7px 8px;
    border: 1px solid #f5d76e;
    border-radius: 12px;
    background: #fff8dc;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

    .promo-countdown-box span {
        display: block;
        color: #5b4636;
        font-size: 17px;
        font-weight: 900;
        line-height: 1;
    }

    .promo-countdown-box small {
        display: block;
        margin-top: 4px;
        color: #7a5d3a;
        font-size: 10px;
        font-weight: 700;
    }

.promo-countdown.expired,
.hero-countdown.expired {
    opacity: .55;
}


/* =========================================================
   PRODUCT SLIDER CARD
========================================================= */

.prd-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
}

.prd-body {
    padding: 12px 8px 2px;
    text-align: center;
}

.prd-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.prd-price {
    margin-top: 6px;
    font-size: 14px;
    color: var(--text-soft);
}


/* =========================================================
   HERO 3 COLUMN - DESKTOP FIRST
========================================================= */

.blk-hero {
    position: relative;
    z-index: 1;
    display: block;
    clear: both;
    margin-bottom: 10px;
}

    .blk-hero .container-fluid {
        overflow: visible;
    }

.hero-layout-3col {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 210px;
    gap: 16px;
    align-items: stretch;
    height: 660px;
    min-height: 660px;
}

.hero-main {
    order: 2;
    min-width: 0;
    height: 100%;
}

.hero-side-left {
    order: 1;
}

.hero-side-right {
    order: 3;
}

.hero-main,
.hero-side-left,
.hero-side-right {
    min-height: 0;
}

.heroSwiper,
.hero-card,
.hero-side {
    height: 660px;
    min-height: 660px;
    max-height: 660px;
}

.heroSwiper,
.hero-card {
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
}

.hero-card {
    display: flex;
    flex-direction: column;
    background: #fff;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 560px;
    min-height: 560px;
    max-height: 560px;
    flex: 0 0 560px;
    overflow: hidden;
    border-radius: 22px;
    background: #f7f7f7;
}

.hero-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    flex: 0 0 auto;
    padding: 10px 4px 0;
    background: transparent;
}

.hero-bottom-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 14px;
}

.hero-text-block {
    flex: 1 1 auto;
    min-width: 260px;
    text-align: left;
}

.hero-title {
    margin: 0;
    font-size: clamp(1.25rem, 1.8vw, 1.85rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--text);
    text-align: left;
}

.hero-subtitle {
    max-width: 680px;
    margin: 4px 0 0;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-soft);
    text-align: left;
}

.hero-btn {
    flex: 0 0 auto;
    margin-left: auto;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-side {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-side-title {
    flex: 0 0 auto;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
}

.hero-side-scroll {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.hero-side-track {
    display: flex;
    flex-direction: column;
    gap: 9px;
    animation: heroSideScroll 26s linear infinite;
}

.hero-side:hover .hero-side-track {
    animation-play-state: paused;
}

.hero-side-left .hero-side-track {
    animation-duration: 24s;
}

.hero-side-right .hero-side-track {
    animation-duration: 30s;
}

@keyframes heroSideScroll {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.hero-brand-item,
.hero-category-item {
    min-height: 56px;
    padding: 8px 9px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: .2s ease;
}

.hero-brand-item {
    justify-content: center;
}

.hero-category-item {
    justify-content: flex-start;
}

.hero-brand-item img {
    max-width: 110px;
    max-height: 34px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-category-item img {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 10px;
    object-fit: cover;
    background: #f6f6f6;
}

.hero-brand-item span,
.hero-category-item span {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.heroSwiper .swiper-pagination {
    bottom: 108px !important;
    z-index: 5;
}

.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
    color: var(--primary);
}


/* =========================================================
   LISTING / PLP
========================================================= */

.listing-shell {
    padding: 24px 0 40px;
}

.listing-hero {
    margin-bottom: 20px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.listing-hero-tech {
    background: #fff;
}

.listing-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.listing-subtitle {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-soft);
}

.listing-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.listing-toolbar-left {
    font-size: 15px;
    color: var(--text);
}

.listing-toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .listing-toolbar-right label {
        font-size: 14px;
        color: var(--text-soft);
    }

.listing-sort {
    min-width: 180px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
}

.listing-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.listing-products {
    min-width: 0;
}

.listing-products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}


/* =========================================================
   PLP PRODUCT CARD
========================================================= */

.plp-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

    .plp-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
        border-color: rgba(0, 0, 0, .08);
        text-decoration: none;
    }

.plp-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f8f8f8;
    overflow: hidden;
    display: block;
}

    .plp-card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        transition: transform .28s ease;
    }

.plp-card:hover .plp-card-image img {
    transform: scale(1.04);
}

.plp-card-body {
    flex: 1 1 auto;
    padding: 16px 16px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.plp-badge {
    min-height: 28px;
    padding: 0 10px;
    margin-bottom: 4px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.plp-stock-code {
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
    color: #8f8f8f;
    letter-spacing: .4px;
}

.plp-brand-logo {
    width: 100%;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .plp-brand-logo img {
        max-width: 120px;
        max-height: 28px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .plp-brand-logo span {
        font-size: 13px;
        font-weight: 700;
        color: var(--text-soft);
    }

.plp-main-group {
    margin: 2px 0 0;
    font-size: 15px;
    line-height: 1.35;
    color: var(--text-soft);
    font-weight: 600;
}

.plp-name {
    min-height: 40px;
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .plp-name:hover {
        color: var(--text);
        text-decoration: none;
    }

.plp-unit-price {
    margin: 2px 0 0;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text);
    text-decoration: line-through;
    opacity: .7;
}

.plp-discount {
    margin: 2px 0 0;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    color: #ff9800;
    animation: plpDiscountBlink 1.2s infinite;
}

@keyframes plpDiscountBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .15;
    }
}

.plp-net-price {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #d60000;
}

.plp-actions {
    position: relative;
    width: 100%;
    margin-top: auto;
    padding-top: 10px;
}

.plp-add-cart-btn {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all .22s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .10);
}

    .plp-add-cart-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
    }

    .plp-add-cart-btn:active {
        transform: translateY(0);
    }

    .plp-add-cart-btn svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

.plp-cart-qty-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 3;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.plp-social {
    width: 100%;
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.plp-social-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.plp-social-sep {
    opacity: .45;
}


/* =========================================================
   FOOTER
========================================================= */

.ftr-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.ftr-contact {
    max-width: 320px;
    font-size: 14px;
    color: #666;
}

.ftr-contact-title {
    margin-bottom: 10px;
    font-weight: 600;
}

.ftr-links {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

    .ftr-links a {
        color: #333;
        font-size: 14px;
        text-decoration: none;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1400px) {
    .listing-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .promo-card,
    .prd-card {
        flex-basis: calc((100% - 36px) / 3);
        min-width: calc((100% - 36px) / 3);
    }

    .hero-layout-3col {
        grid-template-columns: 145px minmax(0, 1fr) 185px;
        gap: 12px;
        height: 460px;
        min-height: 460px;
    }

    .heroSwiper,
    .hero-card,
    .hero-side {
        height: 460px;
        min-height: 460px;
        max-height: 460px;
    }

    .hero-image-wrap {
        height: 365px;
        min-height: 365px;
        max-height: 365px;
        flex-basis: 365px;
    }

    .hero-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 1100px) {
    .listing-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 18px;
    }

    .listing-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 991.98px) {
    .hero-layout-3col {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .hero-main {
        order: 1;
        height: auto;
    }

    .hero-side-left {
        order: 2;
    }

    .hero-side-right {
        order: 3;
    }

    .heroSwiper,
    .hero-card {
        height: auto;
        min-height: 0;
        max-height: none;
        border-radius: 16px;
    }

    .hero-image-wrap {
        height: auto;
        min-height: 0;
        max-height: none;
        flex-basis: auto;
        aspect-ratio: 16 / 9;
        border-radius: 16px;
    }

    .hero-bottom-row {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .hero-text-block {
        min-width: 0;
        flex: 1 1 100%;
    }

    .hero-countdown {
        justify-content: flex-start;
    }

    .hero-btn {
        margin-left: auto;
    }

    .hero-side {
        height: auto;
        min-height: 0;
        max-height: 150px;
    }

    .hero-side-scroll {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .hero-side-track {
        flex-direction: row;
        animation: none;
    }

    .hero-brand-item,
    .hero-category-item {
        min-width: 145px;
    }

    .listing-layout {
        grid-template-columns: 1fr;
    }

    .listing-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 767.98px) {
    .promo-slider,
    .prd-slider {
        gap: 8px;
    }

    .promo-slider-track,
    .prd-slider-track {
        gap: 12px;
    }

    .promo-card,
    .prd-card {
        flex-basis: calc((100% - 12px) / 2);
        min-width: calc((100% - 12px) / 2);
    }

    .promo-nav,
    .prd-nav {
        display: none;
    }

    .listing-shell {
        padding: 16px 0 28px;
    }

    .listing-hero {
        padding: 16px;
        margin-bottom: 14px;
        border-radius: 14px;
    }

    .listing-title {
        font-size: 22px;
    }

    .listing-subtitle {
        font-size: 14px;
        line-height: 1.45;
    }

    .listing-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 14px;
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .listing-toolbar-left {
        font-size: 14px;
    }

    .listing-toolbar-right {
        width: 100%;
        justify-content: space-between;
    }

    .listing-sort {
        width: 100%;
        min-width: 0;
    }

    .listing-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .plp-card {
        border-radius: 16px;
    }

    .plp-card-body {
        padding: 14px 12px 16px;
        gap: 5px;
    }

    .plp-badge {
        min-height: 26px;
        padding: 0 9px;
        font-size: 11px;
    }

    .plp-stock-code {
        font-size: 10px;
    }

    .plp-brand-logo {
        min-height: 30px;
    }

        .plp-brand-logo img {
            max-width: 100px;
            max-height: 24px;
        }

    .plp-main-group,
    .plp-name {
        font-size: 18px;
    }

    .plp-name {
        min-height: auto;
        line-height: 1.3;
    }

    .plp-unit-price {
        font-size: 14px;
    }

    .plp-discount {
        font-size: 12px;
    }

    .plp-net-price {
        font-size: 17px;
    }

    .plp-add-cart-btn {
        min-height: 40px;
        border-radius: 12px;
        font-size: 13px;
        gap: 6px;
    }

        .plp-add-cart-btn svg {
            width: 16px;
            height: 16px;
            flex-basis: 16px;
        }

    .plp-social {
        margin-top: 8px;
        font-size: 14px;
        gap: 6px;
    }

    .ftr-grid,
    .ftr-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 575.98px) {
    .hero-image-wrap,
    .hero-card,
    .heroSwiper {
        border-radius: 14px;
    }

    .hero-title {
        font-size: 1.28rem;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-bottom-row {
        gap: 10px;
    }

    .hero-countdown {
        width: 100%;
        justify-content: center;
    }

    .hero-btn {
        width: 100%;
        margin-left: 0;
    }

    .promo-card,
    .prd-card {
        flex-basis: 100%;
        min-width: 100%;
    }

    .listing-products-grid {
        grid-template-columns: 1fr;
    }
}

.hero-image-wrap,
.promo-image {
    position: relative;
    overflow: hidden;
}

.banner-ribbon {
    position: absolute;
    top: 0;
    z-index: 30;
    object-fit: contain;
    pointer-events: none;
}

.banner-ribbon-left {
    left: 0;
}

.banner-ribbon-right {
    right: 0;
}

.hero-image-wrap .banner-ribbon {
    width: 120px;
    height: 120px;
}

.promo-image .banner-ribbon {
    width: 90px;
    height: 90px;
}


.hero-title-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hero-info-wrap {
    position: relative;
    flex-shrink: 0;
}

.hero-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f4d35e;
    color: #4a3b15;
    font-size: 13px;
    font-weight: 800;
    cursor: help;
}

.hero-info-tooltip {
    position: absolute;
    left: 50%;
    bottom: 32px;
    width: 320px;
    max-width: 70vw;
    max-height: 180px;
    overflow-y: auto;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff8dc;
    border: 1px solid #f5d76e;
    color: #5b4636;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    text-align: left;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.hero-info-wrap:hover .hero-info-tooltip {
    opacity: 1;
    visibility: visible;
}

.hdr-top-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hdr-top-menu-item {
    position: relative;
}

.hdr-top-menu-title {
    display: inline-flex;
    align-items: center;
    height: 28px;
    font-size: 13px;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.hdr-top-menu-title:hover {
    color: inherit;
    text-decoration: none;
}

.hdr-top-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 190px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    border-radius: 10px;
    padding: 8px;
    z-index: 9999;
    display: none;
}

.hdr-top-menu-item:hover .hdr-top-menu-dropdown {
    display: block;
}

.hdr-top-menu-dropdown a {
    display: block;
    padding: 8px 10px;
    font-size: 13px !important;
    color: #222 !important;
    text-decoration: none !important;
    border-radius: 7px;
    white-space: nowrap;
}

    .hdr-top-menu-dropdown a:visited {
        color: #222 !important;
    }

    .hdr-top-menu-dropdown a:hover {
        background: #f5f5f5;
        color: #000 !important;
    }

