

:root {
    --gold-main: #cfa85f;
    --gold-light: #f0cd84;
    --gold-deep: #a88443;
    --text-dark: #161616;
    --text-soft: #666666;
    --card-bg: #ffffff;
    --card-bg-bottom: #f7f7f7;
    --image-bg-top: #f2f2f2;
    --image-bg-bottom: #dfdfdf;
    --section-bg-top: #f5f5f5;
    --section-bg-bottom: #e9e9e9;
    --border-soft: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(207, 168, 95, 0.4);
    --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.16);
}

body {
    background-color: #f7f7f7;
}

.container-lg {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.home-page-shell {
    background-color: #f7f7f7;
}

.section-divider {
    width: 79px;
    margin: 15px auto;
    border-top: 0.8px solid #000;
}

.product-main-list--reset {
    width: 100%;
    margin: 0;
}

#productDetail {
    padding: 0 10%;
}

.product-detail__image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
}

@media (max-width: 1024px) {
    #productDetail {
        padding: 0 5%;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
}

.hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    min-height: 100vh;
    margin: auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__content {
    max-width: 560px;
}

.eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b9ffcb;
    opacity: 0.95;
}

.visuallyhidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

.hero-main-title {
    margin: 0 0 18px;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.sub {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 700;
}

.sub-brand {
    color: #ff4b4b;
}

.sub-divider {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.45);
}

.sub-text {
    color: #7dff9a;
}

.slogan {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.2s ease;
}

.btn--primary {
    background: linear-gradient(180deg, #1ed760, #0f8f2f);
    color: #fff;
    box-shadow: 0 10px 24px rgba(30, 215, 96, 0.25);
}

.btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        background: #000;
    }

    .hero__media {
        position: relative;
        inset: auto;
        height: 54svh;
        min-height: 360px;
        background: #000;
        overflow: hidden;
    }

    .hero__video {
        object-position: center center;
    }

    .hero__media::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        z-index: 2;
        height: 120px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
        pointer-events: none;
    }

    .hero__shade {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.06) 34%, rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.58) 76%, rgba(0, 0, 0, 0.88) 90%, rgba(0, 0, 0, 1) 100%);
    }

    .hero__inner {
        min-height: auto;
        margin-top: -72px;
        padding: 0 16px 28px;
        background: transparent;
    }

    .hero__content {
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 0.14em;
        color: #caffd6;
    }

    .hero__content h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .sub {
        font-size: 20px;
    }

    .slogan {
        font-size: 20px;
        line-height: 1.5;
    }

    .actions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }
}

/* Brand story */
.brand-story {
    padding: 50px 0;
    background: linear-gradient(180deg, #f5f5f5 0%, #eeeeee 100%);
}

.brand-story__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-story__label {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #b38b3c;
}

.brand-story__title {
    margin-bottom: 24px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.4;
    color: #111;
}

.brand-story__desc {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 2;
    color: #555;
}

.brand-story__cta,
.info-section__cta,
.knowledge-card__link,
.product-card__link {
    position: relative;
    text-decoration: none;
}

.brand-story__cta,
.info-section__cta {
    font-size: 16px;
    font-weight: 700;
    color: #b38b3c;
}

    .brand-story__cta::after,
    .info-section__cta::after,
    .knowledge-card__link::after,
    .product-card__link::after {
        content: "";
        position: absolute;
        left: 0;
        width: 0;
        transition: width 0.28s ease;
    }

    .brand-story__cta::after,
    .info-section__cta::after {
        bottom: -4px;
        height: 2px;
        background: linear-gradient(90deg, #cfa85f, #f0cd84);
    }

    .brand-story__cta:hover::after,
    .info-section__cta:hover::after,
    .knowledge-card:hover .knowledge-card__link::after,
    .product-card:hover .product-card__link::after {
        width: 100%;
    }

.brand-story__visual {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

    .brand-story__visual::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 65% 35%, rgba(207, 168, 95, 0.18), transparent 60%);
    }

    .brand-story__visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.5) 100%);
    }

    .brand-story__visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: contrast(1.08) brightness(0.88);
    }

@media (max-width: 767px) {
    .brand-story__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brand-story__title {
        font-size: 26px;
    }
}

/* Product cards */
.home-product-section {
    position: relative;
    padding: 60px 0 40px;
}

.product-main-list {
    row-gap: 28px;
}

.product-col {
    margin-bottom: 24px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--card-bg-bottom) 100%);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-6px);
        border-color: var(--border-hover);
        box-shadow: var(--shadow-hover);
    }

    .product-card a,
    .product-card a:hover,
    .product-card a:focus,
    .product-card a:active {
        text-decoration: none;
    }

.product-card__image-link {
    display: block;
}

.product-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: linear-gradient(180deg, var(--image-bg-top) 0%, var(--image-bg-bottom) 100%);
}

    .product-card__image-wrap::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 54%), linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 40%);
        pointer-events: none;
    }

    .product-card__image-wrap img {
        position: relative;
        z-index: 2;
        display: block;
        width: 100%;
        height: 100%;
        padding: 18px;
        object-fit: contain;
        filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.14));
        transition: transform 0.35s ease;
    }

.product-card:hover .product-card__image-wrap img {
    transform: scale(1.025);
}

.product-card__body {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
}

    .product-card__body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 22px;
        right: 22px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(207, 168, 95, 0.65), transparent);
    }

.product-card__title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--text-dark);
}

.product-card__tagline {
    min-height: 54px;
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: 0.02em;
    color: var(--text-soft);
}

.product-card__link {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--gold-main);
    transition: color 0.25s ease, transform 0.25s ease;
}

    .product-card__link::after {
        bottom: -5px;
        height: 2px;
        background: linear-gradient(90deg, var(--gold-main), var(--gold-light));
    }

.product-card:hover .product-card__link {
    color: var(--gold-deep);
    transform: translateX(2px);
}

.product-card__desc,
.product-card__sub {
    display: none;
}

@media (max-width: 1199px) {
    .product-card__title {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .home-product-section {
        padding: 42px 0 24px;
    }

    .product-main-list {
        row-gap: 20px;
    }

    .product-col {
        margin-bottom: 20px;
    }

    .product-card__body {
        padding: 20px 18px;
    }

        .product-card__body::before {
            left: 18px;
            right: 18px;
        }

    .product-card__title {
        margin-bottom: 8px;
        font-size: 20px;
    }

    .product-card__tagline {
        min-height: 48px;
        margin-bottom: 18px;
        font-size: 13px;
        line-height: 1.8;
    }
}

@media (max-width: 767px) {
    .home-product-section {
        padding: 28px 0 12px;
    }

    .product-main-list {
        row-gap: 16px;
    }

    .product-col {
        margin-bottom: 16px;
    }

    .product-card {
        border-radius: 16px;
    }

    .product-card__image-wrap img {
        padding: 12px;
    }

    .product-card__body {
        padding: 16px 14px;
    }

        .product-card__body::before {
            left: 14px;
            right: 14px;
        }

    .product-card__title {
        margin-bottom: 6px;
        font-size: 17px;
    }

    .product-card__tagline {
        min-height: 42px;
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 1.7;
    }

    .product-card__link {
        font-size: 14px;
    }
}

/* Info sections */
.info-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #eceae6 0%, #e3e0db 100%);
}

.info-section__container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-section__label,
.knowledge-section__label {
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #b38b3c;
}

.info-section__title {
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 800;
    color: #111;
}

.info-section__desc {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 2;
    color: #555;
}

    .info-section__desc + .info-section__desc {
        margin-top: 8px;
    }

.info-section__visual {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: 14px;
    background: #ddd;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.info-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.info-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

    .info-slide.is-active {
        z-index: 2;
        opacity: 1;
        visibility: visible;
    }

    .info-slide img,
    .info-section__visual > img,
    .info-section__visual > picture,
    .info-section__visual > picture img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
    }

.info-section:nth-of-type(even) .info-section__content {
    order: 2;
}

.info-section:nth-of-type(even) .info-section__visual {
    order: 1;
}

@media (max-width: 767px) {
    .info-section__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-section__title {
        font-size: 26px;
    }

    .info-section__visual,
    .info-slider,
    .info-slide img {
        min-height: 220px;
    }

    .info-section:nth-of-type(even) .info-section__content,
    .info-section:nth-of-type(even) .info-section__visual {
        order: initial;
    }
}

/* Knowledge */
.knowledge-section {
    padding: 90px 0 80px;
    background: linear-gradient(180deg, #eceae6 0%, #e3e0db 100%);
}

.knowledge-section__header {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.knowledge-section__title {
    margin: 0 0 16px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.35;
    color: #111;
}

.knowledge-section__intro {
    margin: 0;
    font-size: 18px;
    line-height: 2;
    color: #555;
}

.knowledge-list {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.knowledge-card {
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .knowledge-card:hover {
        transform: translateY(-6px);
        border-color: rgba(207, 168, 95, 0.4);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    }

.knowledge-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 26px 26px;
}

    .knowledge-card__body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 26px;
        right: 26px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(207, 168, 95, 0.65), transparent);
    }

.knowledge-card__title {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.45;
    color: #161616;
}

.knowledge-card__summary {
    display: -webkit-box;
    margin: 0 0 20px;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.95;
    color: #5f5f5f;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.knowledge-card__link {
    align-self: flex-start;
    margin-top: auto;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #b38b3c;
    transition: color 0.25s ease, transform 0.25s ease;
}

    .knowledge-card__link::after {
        bottom: -4px;
        height: 2px;
        background: linear-gradient(90deg, #cfa85f, #f0cd84);
    }

.knowledge-card:hover .knowledge-card__link {
    color: #9f7c3e;
    transform: translateX(2px);
}

@media (max-width: 991px) {
    .knowledge-section {
        padding: 70px 0 60px;
    }

    .knowledge-section__title {
        font-size: 30px;
    }

    .knowledge-list {
        gap: 20px;
    }

    .knowledge-card__title {
        font-size: 21px;
    }

    .knowledge-card__summary {
        font-size: 14px;
        line-height: 1.85;
    }
}

@media (max-width: 767px) {
    .knowledge-section {
        padding: 52px 0 44px;
    }

    .knowledge-section__header {
        margin-bottom: 30px;
    }

    .knowledge-section__title {
        font-size: 26px;
    }

    .knowledge-section__intro {
        font-size: 14px;
        line-height: 1.85;
    }

    .knowledge-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .knowledge-card {
        border-radius: 14px;
    }

    .knowledge-card__body {
        padding: 20px 16px 18px;
    }

        .knowledge-card__body::before {
            left: 16px;
            right: 16px;
        }

    .knowledge-card__title {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 1.5;
    }

    .knowledge-card__summary {
        margin-bottom: 16px;
        font-size: 13px;
        line-height: 1.75;
        -webkit-line-clamp: 5;
    }

    .knowledge-card__link {
        font-size: 14px;
    }
}

/* Community */
.community {
    position: relative;
    padding: 56px 20px 48px;
    background: #3e3a39;
}

.community_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.community_social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
    margin-bottom: 28px;
}

.community_icon_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

    .community_icon_link:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(255, 255, 255, 0.24);
    }

.community_icon {
    display: block;
    width: auto;
    max-width: 43px;
    max-height: 43px;
    height: auto;
}

.community_language {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.community_language_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: transparent;
    color: #d7d5d4;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.8px;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

    .community_language_btn:hover {
        background: #ffffff;
        color: #3e3a39;
        border-color: #ffffff;
    }

.community_info {
    text-align: center;
    color: #c8c6c5;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.95;
}

    .community_info p {
        margin: 0;
    }

@media (max-width: 991px) {
    .community {
        padding: 52px 18px 44px;
    }

    .community_social {
        gap: 12px;
        margin-bottom: 24px;
    }

    .community_icon_link {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .community_icon {
        max-width: 32px;
        max-height: 32px;
    }
}

@media (max-width: 767px) {
    .community {
        padding: 44px 16px 38px;
    }

    .community_social {
        gap: 10px;
        margin-bottom: 22px;
    }

    .community_icon_link {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }

    .community_icon {
        max-width: 30px;
        max-height: 30px;
    }

    .community_language {
        width: 100%;
        margin-bottom: 24px;
    }

    .community_language_btn {
        width: 100%;
        max-width: 260px;
        height: 44px;
        font-size: 14px;
    }

    .community_info {
        font-size: 16px;
        line-height: 1.85;
    }
}

.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    transition: opacity .28s ease, transform .28s ease;
}

.floating-contact__item {
    width: 190px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    text-decoration: none;
    background: linear-gradient(180deg, #f7f5f1 0%, #efebe4 100%);
    border: 1px solid rgba(179, 139, 60, 0.18);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
    transition: opacity .28s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .floating-contact__item:hover {
        transform: translateX(-4px);
        border-color: rgba(179, 139, 60, 0.32);
        box-shadow: 0 14px 32px rgba(0,0,0,0.16);
        text-decoration: none;
    }

.floating-contact__icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
}

.floating-contact__item:nth-child(2) .floating-contact__icon {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
}

.floating-contact__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.floating-contact__label {
    color: #111;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap;
}

.floating-contact__item--shopee {
    position: relative;
}

.floating-contact__tip {
    position: absolute;
    z-index: 3;
    padding: 11px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #f1d27a 100%);
    color: #111;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .05em;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.20);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

    .floating-contact__tip.is-show {
        opacity: 1;
        visibility: visible;
    }

.floating-contact__tip--desktop {
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(8px) scale(.95);
}

    .floating-contact__tip--desktop.is-show {
        transform: translateY(-50%) translateX(0) scale(1);
    }

.floating-contact__tip--mobile {
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px) scale(.95);
}

    .floating-contact__tip--mobile.is-show {
        transform: translateX(-50%) translateY(0) scale(1);
    }

.floating-contact__tip--desktop.is-bounce {
    animation: tipBounceDesktop .45s ease;
}

.floating-contact__tip--mobile.is-bounce {
    animation: tipBounceMobile .45s ease;
}

@keyframes tipBounceDesktop {
    0% {
        transform: translateY(-50%) translateX(0) scale(1);
    }

    30% {
        transform: translateY(calc(-50% - 10px)) translateX(0) scale(1.06);
    }

    55% {
        transform: translateY(-50%) translateX(0) scale(1);
    }

    75% {
        transform: translateY(calc(-50% - 4px)) translateX(0) scale(1.02);
    }

    100% {
        transform: translateY(-50%) translateX(0) scale(1);
    }
}

@keyframes tipBounceMobile {
    0% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    30% {
        transform: translateX(-50%) translateY(-10px) scale(1.06);
    }

    55% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    75% {
        transform: translateX(-50%) translateY(-4px) scale(1.02);
    }

    100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.floating-contact {
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}

    .floating-contact.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .floating-contact.is-hidden {
        opacity: 0;
        visibility: hidden;
        transform: translateY(16px);
        pointer-events: none;
    }

@media (max-width: 767px) {
    .floating-contact__tip--desktop {
        display: none;
    }

    .floating-contact {
        right: 50%;
        bottom: 14px;
        flex-direction: row;
        gap: 10px;
        background: rgba(247,245,241,0.96);
        padding: 3px 15px;
        border-radius: 999px;
        box-shadow: 0 10px 24px rgba(0,0,0,0.12);
        transform: translateX(50%) translateY(16px);
    }

        .floating-contact.is-visible {
            transform: translateX(50%) translateY(0);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .25), inset 0 -1px 0 rgba(255, 255, 255, .08);
            background: linear-gradient(135deg, rgba(215, 181, 109, 0.12), rgba(255, 255, 255, 0.04)), rgba(255, 255, 255, 0.06);
        }

        .floating-contact.is-hidden {
            transform: translateX(50%) translateY(16px);
        }

    .floating-contact__item {
        width: auto;
        padding: 10px;
        border-radius: 999px;
        box-shadow: none;
        background: transparent;
        border: 1px solid #d9d9d9;
    }

    .floating-contact__icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .floating-contact__label {
        display: none;
    }

    .floating-contact__item:nth-child(2) {
        border: 1.5px solid #d4af37;
    }
}

@media (min-width: 768px) {
    .floating-contact__tip--mobile {
        display: none;
    }
}


