.figma-wrap {
    width: 100%;
    /* min-height: 100vh; */
    color: #222326;
    font-family: 'SVN-Gilroy', sans-serif;
}

.figma-wrap-home {
    background: #fff;
}

.figma-wrap-product {
    background: #f8f8f8;
}

.figma-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.figma-header {
    position: sticky;
    z-index: 80;
    background: #0a4f2c;
    padding-top: 20px;
    top: 0;
}

.figma-header-nav {
    padding-bottom: 18px;
}

.figma-header-row {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.figma-brand {
    position: relative;
    background-image: linear-gradient(105deg, #cba869 0%, #f8efba 25%, #fff8d6 36%, #ffffff 42%, #e8d28d 50%, #c3942e 72%, #f8efba 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: figmaTextSweep 5.6s ease-in-out infinite;
    text-shadow: 0 0 18px rgba(248, 239, 186, .18);
    transition: filter .25s ease, transform .25s ease;
}

.figma-brand {
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    text-transform: lowercase;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.figma-brand:hover {
    filter: brightness(1.12) saturate(1.12);
    transform: translateY(-1px);
}

.figma-brand::before {
    content: "";
    position: absolute;
    right: -24px;
    top: -8px;
    width: 34px;
    height: 20px;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 65%, rgba(255, 246, 190, .95) 0 2px, transparent 3px),
        radial-gradient(circle at 72% 28%, rgba(255, 255, 255, .9) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 88% 76%, rgba(232, 210, 141, .8) 0 1.5px, transparent 2.5px);
    filter: drop-shadow(0 0 6px rgba(248, 239, 186, .6));
    animation: figmaTextStars 2.8s ease-in-out infinite;
}

.figma-brand-logo {
    background: transparent;
    color: inherit;
}

.figma-brand-logo img {
    display: block;
    height: 30px;
    width: auto;
    object-fit: contain;
}

.figma-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    width: 100%;
}

.figma-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 31px;
}

.figma-nav > li > a {
    font-size: 17px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
    text-transform: lowercase;
    background: none;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.figma-nav > li > a.active {
    background-image: linear-gradient(135deg, #cba869 0%, #f8efba 30%, #e8d28d 80%, #c3942e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: saturate(130%);
}

.figma-nav > li > a.has-child {
    position: relative;
    padding-right: 18px;
}

.figma-nav > li > a.has-child:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid rgb(233 214 147);
    border-bottom: 1.5px solid rgb(236 220 155);
    transform: translateY(-65%) rotate(45deg);
    transition: transform .25s ease;
}

.figma-nav > li:hover > a.has-child:after,
.figma-nav > li:focus-within > a.has-child:after {
    transform: translateY(-35%) rotate(225deg);
}

.figma-nav > li.figma-service-menu-item {
    position: relative;
}

.figma-service-menu-item:after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    top: 100%;
    height: 18px;
    display: none;
}

.figma-service-mega {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    width: min(920px, calc(100vw - 40px));
    z-index: 85;
    background: #0a4728;
    border-right: 5px solid #ead657;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 24px 46px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.figma-service-menu-item:hover:after,
.figma-service-menu-item:focus-within:after {
    display: block;
}

.figma-service-menu-item:hover > .figma-service-mega,
.figma-service-menu-item:focus-within > .figma-service-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.figma-service-mega-inner {
    width: 100%;
    max-height: calc(100vh - 130px);
    margin: 0 auto;
    padding: 28px 34px 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px 42px;
    overflow-y: auto;
}

.figma-service-mega-inner::-webkit-scrollbar {
    width: 6px;
}

.figma-service-mega-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .12);
}

.figma-service-mega-inner::-webkit-scrollbar-thumb {
    background: rgba(246, 223, 147, .68);
    border-radius: 999px;
}

.figma-service-mega-group {
    min-width: 0;
}

.figma-service-mega-title {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding-bottom: 10px;
    margin-bottom: 16px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 3px solid #ead657;
}

.figma-service-mega-title:hover {
    color: #f8efba;
    -webkit-text-fill-color: #f8efba;
}

.figma-service-mega-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
    gap: 12px 24px;
}

.figma-service-mega-links li + li {
    margin-top: 0;
}

.figma-service-mega-links a {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding-left: 17px;
    color: rgba(255, 255, 255, .94);
    -webkit-text-fill-color: rgba(255, 255, 255, .94);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.figma-service-mega-links a:before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}

.figma-service-mega-links a:hover {
    color: #f8efba;
    -webkit-text-fill-color: #f8efba;
    transform: translateX(4px);
}

.figma-mobile-service-menu {
    display: none;
}

.figma-lang {
    display: flex;
    align-items: center;
    gap: 8px;
}

.figma-lang a {
    display: inline-flex;
    align-items: center;
}

.figma-lang a img {
    width: 30px;
    height: 20px;
    object-fit: cover;
}

.figma-lang #google_language_translator {
    display: none;
}

.figma-header-search-wrap {
    padding-bottom: 20px;
}

.figma-header-search {
    position: relative;
    height: 48px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    box-shadow: 0 0 0 rgba(248, 239, 186, 0);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.figma-header-search:hover,
.figma-header-search:focus-within {
    background: #fff;
    border-color: rgba(232, 210, 141, .7);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08), 0 0 0 4px rgba(248, 239, 186, .18);
    transform: translateY(-1px);
}

.figma-search-label,
.figma-search-input {
    font-size: 16px;
    line-height: 1;
    color: #555;
    font-weight: 400;
}

.figma-search-field {
    position: relative;
    flex: 1;
    height: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
}

.figma-search-input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
}

.figma-search-input::placeholder {
    color: transparent;
}

.figma-search-placeholder-effect {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    pointer-events: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    background-image: linear-gradient(105deg, #555 0%, #555 34%, #d7b96c 45%, #fff2ac 50%, #0a4f2c 56%, #555 68%, #555 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: figmaTextSweep 5.8s ease-in-out infinite;
    transition: opacity .22s ease, transform .22s ease;
}

.figma-search-placeholder-effect::after {
    content: "";
    width: 18px;
    height: 12px;
    margin-left: 8px;
    flex: 0 0 auto;
    background:
        radial-gradient(circle at 30% 45%, rgba(232, 210, 141, .9) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 78% 70%, rgba(255, 255, 255, .9) 0 1px, transparent 2px);
    filter: drop-shadow(0 0 5px rgba(248, 239, 186, .55));
    animation: figmaTextStars 2.6s ease-in-out infinite reverse;
}

.figma-search-input:focus + .figma-search-placeholder-effect,
.figma-search-input:not(:placeholder-shown) + .figma-search-placeholder-effect {
    opacity: 0;
    transform: translateX(6px);
}

.figma-search-btn {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #046330;
    font-size: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color .25s ease, transform .25s ease, filter .25s ease;
}

.figma-header-search:hover .figma-search-btn,
.figma-header-search:focus-within .figma-search-btn {
    color: #0a4f2c;
    filter: drop-shadow(0 4px 7px rgba(10, 79, 44, .22));
    transform: scale(1.08) rotate(-8deg);
}

@keyframes figmaTextSweep {
    0%, 100% {
        background-position: 0% 50%;
        text-shadow: 0 0 14px rgba(248, 239, 186, .14);
    }

    50% {
        background-position: 100% 50%;
        text-shadow: 0 0 24px rgba(248, 239, 186, .28);
    }
}

@keyframes figmaTextStars {
    0%, 100% {
        opacity: .35;
        transform: translateY(1px) scale(.82);
    }

    50% {
        opacity: 1;
        transform: translateY(-1px) scale(1.08);
    }
}

.figma-home-page {
    padding-top: 16px;
}

.figma-hero {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: url('../../upload/product/figma-hero-main.png') center/cover no-repeat;
}

.figma-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .08);
}

.figma-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(234, 255, 218, 0) 0%, rgba(6, 147, 76, .95) 100%);
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
}

.figma-hero-content {
    position: relative;
    z-index: 2;
    width: 470px;
    padding: 52px 0 0 64px;
}

.figma-hero-content h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    text-transform: lowercase;
    background-image: linear-gradient(135deg, #cba869 0%, #f8efba 30%, #e8d28d 80%, #c3942e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    color: #fff;
}

.figma-hero-content p {
    margin: 28px 0 0;
    font-size: 48px;
    line-height: 1.3;
    font-weight: 800;
    text-transform: lowercase;
    background-image: linear-gradient(135deg, #cba869 0%, #f8efba 30%, #e8d28d 80%, #c3942e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.figma-zalo-chip {
    margin-top: 34px;
    width: 293px;
    border-radius: 16px;
    background: #0a4f2c;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    padding: 8px 14px;
    text-transform: lowercase;
}

.figma-hero-badges {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.figma-hero-badges span {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.figma-home-intro {
    padding-top: 33px;
    text-align: center;
}

.figma-location-card {
    width: 147px;
    height: 122px;
    margin: 0 auto;
}

.figma-location-card img {
    width: 147px;
    height: 96px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.figma-location-card span {
    display: block;
    margin-top: 14px;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    text-transform: capitalize;
    background-image: linear-gradient(135deg, #cba869 0%, #f8efba 30%, #e8d28d 80%, #c3942e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.figma-home-intro-title {
    width: 100%;
    max-width: 920px;
    margin: 74px auto 0;
    text-align: center;
}

.figma-home-intro-title h2 {
    margin: 0;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 700;
    color: #0a4f2c;
    text-transform: lowercase;
}

.figma-home-intro-title p {
    margin: 12px 0 0;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
    color: #0a4f2c;
    /* text-transform: lowercase; */
}

.figma-districts {
    /* width: 1199px; */
    margin: 56px auto 0;
}

.figma-districts h3 {
    margin: 0;
    font-size: 36px;
    line-height: 1.05;
    font-weight: 700;
    color: #0a4f2c;
    text-transform: lowercase;
    text-align: center;
}

.figma-districts p {
    margin: 14px 0 0;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
    color: #333;
    text-transform: lowercase;
    text-align: center;
}

.figma-location-tabs {
    margin: 0 auto 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
}

.figma-location-tab {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: #111;
}

.figma-location-tab img {
    width: 147px;
    height: 96px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.figma-location-tab span {
    display: block;
    margin-top: 14px;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

.figma-location-tab.active span {
    background-image: linear-gradient(135deg, #cba869 0%, #f8efba 30%, #e8d28d 80%, #c3942e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.figma-district-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.figma-district-panel {
    display: none;
}

.figma-district-panel.active {
    display: grid;
}

.figma-district-grid > a,
.figma-district-row a {
    min-height: 48px;
    border-radius: 8px;
    background: #0a4f2c;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    text-transform: lowercase;
}

.figma-ticket-block {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: min(1860px, calc(100vw - 60px));
    height: 581px;
    border-radius: 20px;
    margin-top: 39px;
    padding: 60px 20px 64px;
    background: linear-gradient(135deg, #eaffda 0%, #5bb789 100%);
}

.figma-ticket-block-alt {
    background: linear-gradient(135deg, #fbffe6 0%, #e6ff84 100%);
    margin-top: 0;
}

.figma-ticket-divider {
    height: 30px;
}

.figma-ticket-head {
    width: min(1199px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.figma-ticket-head-icon {
    width: 30px;
    height: 30px;
    color: #0a4f2c;
    font-size: 30px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.figma-ticket-head h3 {
    margin: 0;
    font-size: 36px;
    line-height: 1;
    font-weight: 500;
    text-transform: lowercase;
    color: #0a4f2c;
}

.figma-ticket-grid {
    width: min(1199px, 100%);
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    gap: 24px;
}

.figma-ticket-card {
    /* width: 317px; */
    /* height: 403px; */
    border-radius: 16px;
    background: #fff;
    padding: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, .04);
    width: 100%;
}

.figma-ticket-top {
    /* height: 91px; */
    border-radius: 10px;
    background: linear-gradient(135deg, #eaffda 0%, #5bb789 100%);
    position: relative;
    padding: 10px 16px 0;
}

.figma-ticket-name {
    height: 29px;
    padding: 0 16px;
    border-radius: 50px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: #0a4f2c;
    text-transform: lowercase;
    display: inline-flex;
    align-items: center;
    background: #fff;
}

.figma-ticket-time {
    display: block;
    margin-top: 15px;
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    color: #0a4f2c;
    text-transform: lowercase;
}

.figma-ticket-thumb {
    margin-top: 8px;
    border-radius: 10px;
    overflow: hidden;
    /* height: 164px; */
}

.figma-ticket-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.figma-ticket-content {
    margin-top: 9px;
    padding: 0 23px;
}

.figma-ticket-price {
    margin: 0;
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
    background-image: linear-gradient(135deg, #cba869 0%, #f8efba 30%, #e8d28d 80%, #c3942e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.figma-ticket-desc {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #0a4f2c;
}

.figma-ticket-desc ul,
.figma-ticket-feature,
.figma-ticket-feature ul {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.figma-ticket-desc ul {
    margin-top: 10px;
}

.figma-ticket-desc li,
.figma-ticket-feature li {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    color: #222326;
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
}

.figma-ticket-desc li::before,
.figma-ticket-feature li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-size: 11px;
    font-weight: 400;
    color: #a1a8b0;
    line-height: 1.25;
    flex: 0 0 auto;
}

.figma-ticket-feature i {
    font-size: 11px;
    color: #0a4f2c;
    line-height: 1.25;
}

.figma-ticket-actions {
    margin-top: auto;
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.figma-ticket-actions a {
    width: 100%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    text-transform: none;
}

.figma-ticket-actions a i {
    font-size: 20px;
    line-height: 1;
}

.figma-action-zalo-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden;
}

.figma-action-zalo-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.figma-ticket-actions .book {
    height: 43px;
    border-radius: 21.5px;
    background: #fff395;
    border: 1px solid #fff395;
    color: #0a4f2c;
}

.figma-ticket-actions .zalo {
    height: 44px;
    border-radius: 22px;
    background: #0a4f2c;
    color: #ffffff;
}

.figma-ticket-card.is-featured {
    /* border: 2px solid #f8c9d5; */
}

.figma-ticket-card.is-featured .figma-ticket-top {
    background: linear-gradient(135deg, #fff3f5 0%, #ffc7d0 100%);
}

.figma-ticket-card.is-featured .figma-ticket-name,
.figma-ticket-card.is-featured .figma-ticket-time,
.figma-ticket-card.is-featured .figma-ticket-price {
    color: #c9182b;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.figma-ticket-card.is-featured .figma-ticket-actions .book {
    background: #fff0f2;
    border-color: #f6b9c3;
    color: #c9182b;
}

.figma-chat-cta {
    padding: 30px 0 60px;
}

.figma-chat-card {
    height: 341px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #040804;
}

.figma-chat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .95;
}

.figma-chat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .58);
}

.figma-chat-content {
    position: relative;
    z-index: 2;
    width: 830px;
    margin: 78px auto 0;
}

.figma-chat-content h3 {
    margin: 0;
    font-size: 38px;
    line-height: 1;
    font-weight: 700;
    color: #f6df93;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .28);
}

.figma-chat-content p {
    margin: 26px 0 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .22);
}

.figma-chat-actions {
    margin-top: 39px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.figma-chat-actions a {
    height: 77px;
    border-radius: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: lowercase;
}

.figma-chat-actions .zalo {
    background: #0a4f2c;
}

.figma-chat-actions .call {
    background: #ca0e0e;
}

.figma-service-list-page,
.figma-service-detail-page {
    padding-top: 0;
    padding-bottom: 2rem;
}

.figma-ticket-list-page {
    padding: 0 0 70px;
}

.figma-ticket-list-page .figma-ticket-block {
    height: auto;
    min-height: 581px;
    margin-bottom: 40px;
}

.figma-ticket-list-page .figma-ticket-grid {
    align-items: stretch;
}

.figma-breadcrumb-row {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 4px 14px rgba(0,0,0,.03);
    display: flex;
    align-items: center;
    padding: 10px 0px;
}

.breadcrumb-container {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}

.figma-breadcrumb-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.figma-breadcrumb-wrap .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}

.figma-breadcrumb-wrap .breadcrumb .breadcrumb-item {
    margin: 0;
    padding: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.figma-breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-left: 12px;
}

.figma-breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    float: none;
    padding-right: 12px;
    color: #9da2a9;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.figma-breadcrumb-wrap .breadcrumb .breadcrumb-item a,
.figma-breadcrumb-wrap .breadcrumb .breadcrumb-item span {
    color: #6b7280;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.figma-breadcrumb-wrap .breadcrumb .breadcrumb-item.active span,
.figma-breadcrumb-wrap .breadcrumb .breadcrumb-item.active a span {
    font-weight: 600;
    color: #0a4f2c;
}

.figma-page-tab {
    margin: 16px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    overflow: hidden;
}

.figma-page-tab-list {
    height: 10px;
    margin: 16px 0;
}

.figma-page-tab a,
.figma-page-tab span {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #222326;
    text-decoration: none;
}

.figma-page-tab a::after {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
    margin-left: 12px;
}

.figma-page-title {
    margin: 36px 0 24px;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;
    color: #0a4f2c;
    text-transform: none;
}

.figma-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.figma-specialist-card {
    height: 461px;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.figma-specialist-thumb {
    position: relative;
    /* width: 100%; */
    /* height: 310px; */
    display: block;
    overflow: hidden;
}

.figma-specialist-thumb img {
    /* width: 100%; */
    /* height: 100%; */
    /* object-fit: cover; */
    /* display: block; */
}

.figma-specialist-code {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 47px;
    height: 27px;
    border-radius: 7.5px;
    border: 1px solid transparent;
    background-image: linear-gradient(#0a4f2c, #0a4f2c), linear-gradient(135deg, #eaffda 0%, #5bb788 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: inset 0 0 0 1px #000;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.figma-specialist-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 172px;
    background: linear-gradient(180deg, rgba(234, 255, 218, 0) 0%, rgba(6, 147, 76, .95) 100%);
    padding: 112px 25px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.figma-specialist-overlay strong {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.figma-specialist-overlay em {
    font-style: normal;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 800;
    color: #0a4f2c;
    text-transform: capitalize;
}

.figma-specialist-body {
    width: 184px;
    margin: 20px auto 0;
}

.figma-specialist-body h3 {
    margin: 0;
}

.figma-specialist-body h3 a {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #222326;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.figma-specialist-price {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    color: #0a4f2c;
}

.figma-specialist-detail {
    width: 216px;
    height: 39px;
    border-radius: 8px;
    margin: auto auto 8px;
    background: linear-gradient(135deg, #eaffda 0%, #5bb789 100%);
    color: #0a4f2c;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: lowercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.figma-paging {
    margin-top: 24px;
}

.figma-detail-main {
    margin-top: 26px;
    height: 744px;
    border-radius: 20px;
    background: #fff;
    padding: 36px;
    display: grid;
    grid-template-columns: 464px 1fr;
    column-gap: 36px;
}

.figma-detail-photo {
    width: 464px;
    height: 620px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.figma-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.figma-detail-photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 344px;
    background: linear-gradient(180deg, rgba(234, 255, 218, 0) 0%, rgba(6, 147, 76, .95) 100%);
}

.figma-detail-code {
    position: absolute;
    left: 13px;
    top: 13px;
    width: 70px;
    height: 39px;
    border-radius: 15px;
    border: 2px solid transparent;
    background-image: linear-gradient(#0a4f2c, #0a4f2c), linear-gradient(135deg, #eaffda 0%, #5bb788 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: inset 0 0 0 2px #000;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.figma-detail-photo-overlay {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.figma-detail-photo-overlay span:first-child {
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.figma-detail-photo-overlay span:last-child {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 800;
    color: #0a4f2c;
}

.figma-detail-info h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;
    color: #0a4f2c;
}

.figma-detail-row {
    margin-top: 27px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.figma-time-group p,
.figma-qty-group p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #0a4f2c;
}

.figma-time-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.figma-time-option {
    min-width: 97px;
    flex: 0 0 auto;
    height: 39px;
    border: 1px solid #0a4f2c;
    border-radius: 19.5px;
    background: #fff;
    color: #0a4f2c;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    cursor: pointer;
}

.figma-time-option.is-active {
    background: linear-gradient(135deg, #eaffda 0%, #5bb788 100%);
    border-color: transparent;
    color: #0a4f2c;
    border: none;
}

.figma-time-option-static {
    cursor: default;
}

.figma-qty-options {
    width: 116px;
    height: 40px;
    border: 1px solid #0a4f2c;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 40px 36px 40px;
    gap: 0;
}

.figma-qty-btn,
.figma-qty-value {
    /* height: 40px; */
    border: 0;
    background: #fff;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.figma-qty-value {
    color: #0a4f2c;
}

.figma-qty-btn {
    font-size: 24px;
    color: #52545c;
    cursor: pointer;
}

.figma-qty-btn[data-action="minus"] {
    /* border-right: 1px solid #0a4f2c; */
}

.figma-qty-btn[data-action="plus"] {
    /* border-left: 1px solid #0a4f2c; */
}

.figma-detail-desc {
    margin: 40px 0 0;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    color: #0a4f2c;
    text-transform: lowercase;
}

.figma-detail-price {
    margin: 12px 0 0;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    color: #ca0e0e;
}

.figma-detail-zalo {
    margin-top: 28px;
    width: 428px;
    height: 56px;
    border-radius: 16px;
    background: #0a4f2c;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    text-transform: lowercase;
}

.figma-detail-meta {
    margin-top: 24px;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}

.figma-detail-meta-head {
    height: 72px;
    padding: 0 50px;
    background: linear-gradient(135deg, #eaffda 0%, #5bb789 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.figma-detail-meta-head h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    color: #0a4f2c;
    text-transform: lowercase;
}

.figma-detail-meta-head i {
    font-size: 35px;
    color: #f7f7f7;
}

.figma-detail-meta-grid {
    padding: 36px 50px 46px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 0;
}

.figma-detail-meta-grid > div {
    min-height: 37px;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.figma-detail-meta-grid span {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #555;
}

.figma-detail-meta-grid strong {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    color: #222326;
    text-align: right;
}

.figma-detail-related {
    margin-top: 56px;
}

.figma-detail-related h3 {
    margin: 0 0 28px;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;
    color: #0a4f2c;
    text-transform: lowercase;
}

@media (max-width: 1380px) {
    .figma-ticket-block {
        width: min(1860px, calc(100vw - 20px));
    }
}

@media (max-width: 1199px) {
    .figma-home-intro-title,
    .figma-districts {
        width: 100%;
    }

    .figma-service-mega {
        width: min(760px, calc(100vw - 32px));
    }

    .figma-service-mega-inner {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .figma-service-mega-title {
        font-size: 21px;
    }

    .figma-service-mega-links a {
        font-size: 18px;
    }

    .figma-brand {
        font-size: 24px;
    }

    .figma-nav {
        gap: 20px;
    }

    .figma-home-intro-title h2 {
        font-size: 34px;
    }

    .figma-ticket-head h3 {
        font-size: 30px;
    }

    .figma-ticket-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .figma-ticket-block {
        height: auto;
    }

    .figma-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .figma-detail-main {
        height: auto;
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .figma-detail-photo {
        width: 100%;
        max-width: 464px;
    }

    .figma-detail-zalo {
        width: 100%;
        max-width: 428px;
    }
}

@media (max-width: 991px) {
    .figma-header .figma-menu {
        display: none;
    }

    .figma-header {
        padding-top: 12px;
        overflow: hidden;
    }

    .figma-header-row {
        height: 24px;
    }

    .figma-header-search-wrap {
        padding-bottom: 12px;
    }

    .figma-hero-content {
        width: 100%;
        max-width: 470px;
        padding: 36px 18px 0;
    }

    .figma-hero-content p {
        font-size: 36px;
    }

    .figma-home-intro-title h2 {
        font-size: 30px;
    }

    .figma-ticket-head h3 {
        font-size: 26px;
    }

    .figma-district-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .figma-ticket-grid,
    .figma-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .figma-chat-content {
        width: calc(100% - 32px);
    }

    .figma-chat-content h3 {
        font-size: 32px;
    }

    .figma-chat-actions {
        grid-template-columns: 1fr;
    }

    .figma-chat-actions a {
        height: 56px;
        font-size: 18px;
    }

    .figma-detail-meta-grid {
        grid-template-columns: 1fr;
        padding: 20px 20px 28px;
    }
}

@media (max-width: 767px) {
    .figma-brand {
        font-size: 22px;
    }

    .figma-lang a img {
        width: 30px !important;
        height: 22px !important;
    }

    .figma-search-label {
        font-size: 14px;
    }

    .figma-hero {
        height: 360px;
    }

    .figma-hero-content h1 {
        font-size: 24px;
    }

    .figma-hero-content p {
        font-size: 30px;
    }

    .figma-zalo-chip {
        width: 100%;
        max-width: 293px;
        min-height: 50px;
        font-size: 16px;
    }

    .figma-hero-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .figma-home-intro-title h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .figma-ticket-head h3 {
        font-size: 24px;
    }

    .figma-home-intro-title p {
        font-size: 18px;
    }

    .figma-district-grid,
    .figma-ticket-grid,
    .figma-service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .figma-ticket-block {
        padding: 30px 12px 20px;
    }

    .figma-page-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .figma-detail-info h1,
    .figma-detail-related h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .figma-detail-desc {
        font-size: 20px;
    }

    .figma-detail-meta-head {
        padding: 0 20px;
    }

    .figma-detail-meta-head h2 {
        font-size: 20px;
    }

}

/* Figma 1200px layout overrides */
.figma-container,
.wrap-content {
    width: min(1200px, calc(100% - 30px));
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.figma-header {
    padding-top: 13px;
}

.figma-header-nav {
    padding-bottom: 10px;
}

.figma-header-row {
    height: 24px;
}

.figma-brand {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.figma-nav {
    gap: 26px;
}

.figma-nav > li > a {
    font-size: 10px;
    text-transform: uppercase;
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
}

.figma-nav > li > a.active {
    background-image: linear-gradient(135deg, #cba869 0%, #f8efba 30%, #e8d28d 80%, #c3942e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.figma-lang a img {
    width: 18px;
    height: 12px;
}

.figma-header-search-wrap {
    padding-bottom: 10px;
}

.figma-header-search {
    width: 690px;
    max-width: 100%;
    height: 40px;
    margin: 0 auto;
    border-radius: 7px;
    background: #fff;
}

.figma-search-label,
.figma-search-input {
    font-size: 10px;
    color: #8a8a8a;
}

.mobile-brand {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.menu_mobi {
    background: #0a4f2c;
    box-shadow: 0 8px 22px rgba(10, 79, 44, .2);
}

.menu_mobi .menu-bar-res {
    height: 40px;
}

.menu_mobi_add ul li a:hover,
.menu_mobi_add ul li a.active2 {
    color: #0a4f2c;
}

.menu_mobi .search-res {
    position: relative;
}

.menu_mobi .search-grid {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    width: 260px;
    background: #fff;
    border: 1px solid #dce9e5;
    border-radius: 6px;
    padding: 8px;
    box-shadow: 0 6px 20px rgba(10,79,44,.15);
    z-index: 20;
}

.menu_mobi .search-grid p {
    color: #0a4f2c;
}

.menu_mobi .search-grid input {
    color: #111827;
}

.menu_mobi .search-res:hover .search-grid,
.menu_mobi .search-res:focus-within .search-grid {
    display: flex;
}

.figma-search-btn {
    font-size: 13px;
}

.figma-home-page {
    padding-top: 14px;
}

.figma-hero {
    width: min(100%, 720px);
    height: 209px;
    margin: 0 auto;
    border-radius: 7px;
}

.figma-hero-content {
    width: 380px;
    padding: 25px 0 0 38px;
}

.figma-hero-content h1 {
    font-size: 16px;
    text-transform: uppercase;
}

.figma-hero-content p {
    margin-top: 9px;
    font-size: 31px;
    line-height: 1.12;
    text-transform: uppercase;
}

.figma-hero-badges {
    margin-top: 13px;
    gap: 18px;
}

.figma-hero-badges span {
    font-size: 10px;
    gap: 5px;
}

.figma-zalo-chip {
    margin-top: 20px;
    /* width: 158px; */
    min-height: 34px;
    border-radius: 6px;
    font-size: 9px;
    text-transform: uppercase;
}

.figma-home-intro {
    padding-top: 16px;
}

.figma-location-card {
    /* width: 62px; */
    height: auto;
}

.figma-location-card img {
    /* width: 62px; */
    /* height: 46px; */
    border-radius: 4px;
}

.figma-location-card span {
    margin-top: 9px;
    /* font-size: 8px; */
    color: #0b4f2c;
    background: none;
}

.figma-districts {
    /* width: min(100%, 720px); */
    margin-top: 22px;
}

.figma-districts h3,
.figma-home-intro-title h2 {
    font-size: 18px;
    line-height: 1.15;
    text-transform: uppercase;
}

.figma-districts p,
.figma-home-intro-title p {
    margin-top: 6px;
    font-size: 18px;
}

.figma-location-tabs {
    margin: 0 auto 34px;
}

.figma-location-tab img {
    width: 62px;
    height: 46px;
    border-radius: 4px;
}

.figma-location-tab span {
    margin-top: 9px;
    font-size: 8px;
}

.figma-district-panel.active {
    display: grid;
}

.figma-district-grid {
    margin-top: 16px;
    gap: 8px;
}

.figma-district-grid > a,
.figma-district-row a {
    min-height: 40px;
    border-radius: 4px;
    font-size: 16px;
    text-transform: capitalize;
}

.figma-home-intro-title {
    margin-top: 32px;
    margin-bottom: 18px;
}

.figma-ticket-block {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    left: auto;
    transform: none;
    height: auto;
    min-height: 300px;
    margin-top: 18px;
    border-radius: 0;
    padding: 34px 0 44px;
    overflow: hidden;
}

.figma-ticket-block-alt {
    min-height: 300px;
    margin-top: 0;
}

.figma-ticket-divider {
    height: 18px;
}

.figma-ticket-head,
.figma-ticket-grid {
    width: 720px;
    max-width: calc(100% - 30px);
}

.figma-ticket-head h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}

.figma-ticket-grid {
    margin-top: 16px;
    gap: 28px;
    justify-items: center;
    align-items: start;
}

.figma-ticket-card {
    /* width: 220px; */
    /* height: 250px; */
    border-radius: 8px;
    padding: 6px;
    overflow: hidden;
}

.figma-ticket-top {
    /* height: 66px; */
    border-radius: 6px;
    padding: 8px 10px 10px;
}

.figma-ticket-name {
    max-width: 100%;
    /* height: 18px; */
    padding: 0 8px;
    /* font-size: 7px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #fff !important;
}

.figma-ticket-time {
    margin-top: 8px;
    font-size: 15px;
}

.figma-ticket-thumb {
    display: none;
}

.figma-ticket-content {
    margin-top: 10px;
    padding: 0 13px;
    /* max-height: 118px; */
    overflow: hidden;
}

.figma-ticket-price {
    font-size: 16px;
    color: #0a4f2c;
    background: none;
}

.figma-ticket-desc,
.figma-ticket-feature,
.figma-ticket-desc li,
.figma-ticket-feature li {
    font-size: 12px;
    line-height: 1.35;
}

.figma-ticket-feature {
    margin-top: 10px;
    gap: 6px;
}

.figma-ticket-actions a {
    font-size: 14px;
    gap: 5px;
}

.figma-ticket-actions a i {
    font-size: 12px;
}

.figma-ticket-actions .figma-zalo-icon,
.figma-ticket-actions .figma-ticket-action-icon {
    width: 16px;
    height: 16px;
}

.figma-action-zalo-icon {
    width: 16px;
    height: 16px;
}

.figma-action-zalo-icon img {
    width: 14px;
    height: 14px;
}

.figma-ticket-actions .zalo {
    height: 30px;
    border-radius: 11px;
}

.figma-ticket-actions .book {
    height: 30px;
    border-radius: 11px;
}

.figma-ticket-actions {
    padding: 0;
}

.figma-chat-card {
    width: min(100%, 720px);
    height: auto;
    margin: 0 auto;
    border-radius: 7px;
    padding-bottom: 30px;
}

.figma-chat-card::after {
    background: rgba(0,0,0,.58);
}

.figma-chat-content {
    width: 430px;
    max-width: calc(100% - 30px);
    margin-top: 48px;
}

.figma-chat-content h3 {
    font-size: 20px;
    color: #f6df93;
    text-transform: uppercase;
}

.figma-chat-content p {
    margin-top: 10px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
}

.figma-chat-actions {
    margin-top: 22px;
    gap: 14px;
}

.figma-chat-actions a {
    height: 40px;
    border-radius: 7px;
    font-size: 11px;
    text-transform: uppercase;
}

.figma-page-title {
    margin: 30px 0 20px;
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
}

.figma-service-grid {
    gap: 18px;
}

.figma-specialist-card {
    /* height: 322px; */
    border-radius: 7px;
}

.figma-specialist-thumb {
    /* height: 222px; */
}

.figma-specialist-code {
    left: 7px;
    top: 7px;
    /* width: 32px; */
    /* height: 18px; */
    border-radius: 5px;
    font-size: 12px;
}

.figma-specialist-overlay {
    height: 118px;
    padding: 74px 18px 12px;
    gap: 4px;
    text-align: center;
}

.figma-specialist-overlay strong {
    font-size: 12px;
}

.figma-specialist-overlay em {
    font-size: 18px;
    color: #f6df93;
    text-transform: uppercase;
}

.figma-specialist-body {
    width: auto;
    margin: 12px;
}

.figma-specialist-body h3 a {
    font-size: 16px;
    line-height: 1.35;
    text-transform: uppercase;
}

.figma-specialist-price {
    margin-top: 9px;
    font-size: 18px;
}

.figma-specialist-detail {
    width: calc(100% - 14px);
    height: 39px;
    border-radius: 5px;
    margin-bottom: 7px;
    font-size: 16px;
    text-transform: uppercase;
}

.figma-detail-main {
    margin-top: 18px;
    height: auto;
    min-height: 420px;
    border-radius: 10px;
    padding: 24px;
    grid-template-columns: 360px 1fr;
    column-gap: 36px;
}

.figma-detail-photo {
    width: 360px;
    height: 360px;
    border-radius: 9px;
}

.figma-detail-photo::after {
    height: 190px;
}

.figma-detail-code {
    left: 12px;
    top: 12px;
    width: 42px;
    height: 24px;
    border-radius: 7px;
    font-size: 10px;
}

.figma-detail-photo-overlay span:first-child {
    font-size: 12px;
}

.figma-detail-photo-overlay span:last-child {
    font-size: 26px;
    color: #f6df93;
    text-transform: uppercase;
}

.figma-detail-info h1 {
    font-size: 26px;
    line-height: 1.32;
    text-transform: uppercase;
}

.figma-detail-desc {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.55;
    text-transform: uppercase;
}

.figma-detail-price {
    margin-top: 12px;
    font-size: 28px;
}

.figma-detail-row {
    margin-top: 22px;
    gap: 14px;
}

.figma-time-group p,
.figma-qty-group p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #0a4f2c;
}

.figma-time-option {
    min-width: 78px;
    height: 34px;
    border-radius: 17px;
    padding: 0 14px;
    font-size: 14px;
}

.figma-qty-options {
    /* width: 96px; */
    /* height: 34px; */
    border-radius: 17px;
    grid-template-columns: 34px 28px 34px;
}

.figma-qty-btn,
.figma-qty-value {
    /* height: 34px; */
    font-size: 16px;
}

.figma-detail-zalo {
    margin-top: 34px;
    width: 360px;
    max-width: 100%;
    height: 48px;
    border-radius: 10px;
    font-size: 16px;
    text-transform: uppercase;
}

.figma-detail-meta {
    margin-top: 16px;
    border-radius: 0 0 10px 10px;
}

.figma-detail-meta-head {
    height: 44px;
    padding: 0 32px;
}

.figma-detail-meta-head h2 {
    font-size: 18px;
    text-transform: uppercase;
}

.figma-detail-meta-grid {
    padding: 22px 32px 26px;
    grid-template-columns: 1fr;
}

.figma-detail-meta-grid > div {
    width: 430px;
    max-width: 100%;
    min-height: 26px;
    border: 0;
    justify-content: flex-start;
    gap: 110px;
}

.figma-detail-meta-grid span,
.figma-detail-meta-grid strong {
    font-size: 14px;
    text-align: left;
}

.figma-detail-related {
    margin-top: 32px;
}

.figma-detail-related h3 {
    margin-bottom: 14px;
    font-size: 24px;
    text-transform: uppercase;
}

.figma-wrap .title-main,
.wrap-content .title-main {
    margin: 38px 0 28px;
    text-align: center;
}

.figma-wrap .title-main span,
.wrap-content .title-main span {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #222326;
    text-transform: uppercase;
}

.wrap-content .row {
    margin-left: -15px;
    margin-right: -15px;
}

.widget-one {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.widget-one .widget-title {
    margin: 0;
    padding: 13px 16px;
    background: #0a4f2c;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.widget-one .widget-title span {
    color: inherit;
}

.widget-one .menu_all_site,
.widget-one .nav-left,
.widget-one .newshome-widget {
    border: 0 !important;
    padding: 0;
    margin: 0;
}

.widget-one .nav-left {
    list-style: none;
}

.widget-one .nav-left .nav-item.lv1 a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.widget-one .nav-left .nav-item.lv1 a:hover,
.widget-one .nav-left .nav-item.lv1 a.active {
    color: #0a4f2c !important;
    background: #f2fbf5;
}

.widget-one .newshome-widget {
    padding: 12px;
}

.widget-one .news-widget {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.widget-one .img-news-widget {
    display: block;
    height: 58px;
    border-radius: 8px;
    overflow: hidden;
}

.widget-one .img-news-widget img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-one .name-news-widget {
    color: #0f172a !important;
    font-size: 13px !important;
    line-height: 1.35;
    font-weight: 700;
}

.widget-one .desc-news-widget {
    display: none;
}

.wrapper-sidebar .title-sidebar,
.wrapper-sidebar .title-menu,
.wrapper-sidebar .title-widget {
    background: #0a4f2c;
    color: #fff;
    text-transform: uppercase;
}

.btn-zalo.btn-frame,
.btn-phone.btn-frame {
    /* display: none; */
}

.figma-zalo-chip,
.figma-chat-actions a,
.figma-ticket-actions a,
.figma-detail-zalo {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.figma-zalo-chip:hover,
.figma-chat-actions a:hover,
.figma-ticket-actions a:hover,
.figma-detail-zalo:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.015);
    filter: saturate(1.16);
    box-shadow: 0 16px 30px rgba(10, 79, 44, .22);
}

.figma-chat-actions .call:hover {
    box-shadow: 0 14px 28px rgba(202, 14, 14, .2);
}

.figma-ticket-actions .book:hover {
    color: #0a4f2c;
}

.figma-zalo-chip i,
.figma-chat-actions a i,
.figma-ticket-actions a i,
.figma-detail-zalo i {
    width: 1.28em;
    height: 1.28em;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 1;
    transform-origin: center;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
    transition: filter .18s ease;
}

.figma-zalo-icon,
.figma-ticket-action-icon {
    width: 1.34em;
    height: 1.34em;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 1;
    transform-origin: center;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
    transition: filter .18s ease;
}

.figma-zalo-icon img,
.figma-ticket-action-icon img,
.figma-ticket-head-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.figma-zalo-chip .figma-zalo-icon {
    width: 1.42em;
    height: 1.42em;
}

.figma-chat-actions .figma-zalo-icon,
.figma-detail-zalo .figma-zalo-icon {
    width: 1.28em;
    height: 1.28em;
}

.figma-zalo-chip i,
.figma-chat-actions .zalo i,
.figma-ticket-actions .zalo i,
.figma-detail-zalo i,
.figma-zalo-chip .figma-zalo-icon,
.figma-chat-actions .zalo .figma-zalo-icon,
.figma-ticket-actions .zalo .figma-zalo-icon,
.figma-detail-zalo .figma-zalo-icon {
    animation: figmaIconChat 1.25s cubic-bezier(.47, 0, .23, 1.38) infinite;
}

.figma-chat-actions .call i {
    animation: figmaIconPhone 1.05s ease-in-out infinite;
}

.figma-ticket-actions .book i,
.figma-ticket-actions .book .figma-ticket-action-icon {
    animation: figmaIconBook 1.15s cubic-bezier(.47, 0, .23, 1.38) infinite;
}

.figma-zalo-chip i::after,
.figma-chat-actions a i::after,
.figma-ticket-actions .zalo i::after,
.figma-ticket-actions .book i::after,
.figma-detail-zalo i::after,
.figma-zalo-icon::after,
.figma-ticket-action-icon::after {
    content: "";
    position: absolute;
    inset: -9px;
    border: 1px solid currentColor;
    border-radius: 1199px;
    opacity: 0;
    transform: scale(.55);
    animation: figmaIconPulse 1.25s ease-out infinite;
    pointer-events: none;
}

.figma-chat-actions .call i::after {
    animation-duration: 1.05s;
}

.figma-action-zalo-icon {
    position: relative;
    overflow: visible;
    animation: figmaIconChat 1.25s cubic-bezier(.47, 0, .23, 1.38) infinite;
    will-change: transform;
}

.figma-action-zalo-icon::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 1199px;
    opacity: 0;
    transform: scale(.6);
    animation: figmaIconPulse 1.25s ease-out infinite;
    pointer-events: none;
}

.figma-zalo-chip:hover i,
.figma-chat-actions a:hover i,
.figma-ticket-actions a:hover i,
.figma-detail-zalo:hover i,
.figma-ticket-actions a:hover .figma-action-zalo-icon,
.figma-zalo-chip:hover .figma-zalo-icon,
.figma-chat-actions a:hover .figma-zalo-icon,
.figma-ticket-actions a:hover .figma-zalo-icon,
.figma-ticket-actions a:hover .figma-ticket-action-icon,
.figma-detail-zalo:hover .figma-zalo-icon {
    animation-duration: .48s;
    animation-timing-function: cubic-bezier(.34, 1.56, .64, 1);
    filter: drop-shadow(0 5px 8px rgba(10, 79, 44, .22)) drop-shadow(0 0 8px rgba(255, 255, 255, .38));
}

.figma-zalo-chip:hover i::after,
.figma-chat-actions a:hover i::after,
.figma-ticket-actions a:hover i::after,
.figma-detail-zalo:hover i::after,
.figma-ticket-actions a:hover .figma-action-zalo-icon::after,
.figma-zalo-chip:hover .figma-zalo-icon::after,
.figma-chat-actions a:hover .figma-zalo-icon::after,
.figma-ticket-actions a:hover .figma-zalo-icon::after,
.figma-ticket-actions a:hover .figma-ticket-action-icon::after,
.figma-detail-zalo:hover .figma-zalo-icon::after {
    animation-duration: .58s;
    border-width: 2px;
}

.figma-hero-badges i,
.contact-hero-badges i,
.figma-ticket-head-icon i,
.figma-ticket-head-icon img,
.figma-district-grid > a i,
.figma-district-row a i,
.figma-location-tab i,
.figma-specialist-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform-origin: center;
    will-change: transform, filter;
}

.figma-ticket-head-icon i,
.figma-ticket-head-icon img {
    animation: figmaIconSpark 1.15s ease-in-out infinite;
}

.figma-hero-badges span:hover i,
.contact-hero-badges span:hover i,
.figma-district-grid > a:hover i,
.figma-district-row a:hover i,
.figma-location-tab:hover i,
.figma-specialist-card:hover i {
    animation: figmaIconTapBuzz .54s cubic-bezier(.34, 1.56, .64, 1) infinite;
    filter: drop-shadow(0 5px 9px rgba(10, 79, 44, .24));
}

@keyframes figmaIconChat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    18% {
        transform: translateY(-3px) rotate(-10deg) scale(1.12);
    }

    36% {
        transform: translateY(1px) rotate(8deg) scale(.98);
    }

    56% {
        transform: translateY(-2px) rotate(-6deg) scale(1.08);
    }

    76% {
        transform: translateY(0) rotate(4deg) scale(1.02);
    }
}

@keyframes figmaIconPhone {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    8%, 24%, 40% {
        transform: rotate(-18deg) scale(1.08);
    }

    16%, 32%, 48% {
        transform: rotate(18deg) scale(1.08);
    }

    66% {
        transform: rotate(0deg) scale(1.02);
    }
}

@keyframes figmaIconBook {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    24% {
        transform: translateY(-4px) rotate(-6deg) scale(1.12);
    }

    48% {
        transform: translateY(1px) rotate(5deg) scale(.98);
    }

    68% {
        transform: translateY(-2px) rotate(0deg) scale(1.06);
    }
}

@keyframes figmaIconPulse {
    0% {
        opacity: .52;
        transform: scale(.58);
    }

    78%, 100% {
        opacity: 0;
        transform: scale(1.52);
    }
}

@keyframes figmaIconSpark {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        filter: drop-shadow(0 0 0 rgba(246, 223, 147, 0));
    }

    32% {
        transform: translateY(-2px) rotate(-8deg) scale(1.12);
        filter: drop-shadow(0 5px 8px rgba(246, 223, 147, .34));
    }

    64% {
        transform: translateY(0) rotate(6deg) scale(1.02);
    }
}

@keyframes figmaIconTapBuzz {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-3px) rotate(-9deg) scale(1.15);
    }

    50% {
        transform: translateY(1px) rotate(8deg) scale(.98);
    }

    75% {
        transform: translateY(-1px) rotate(-5deg) scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .figma-zalo-chip,
    .figma-brand,
    .figma-brand::before,
    .figma-search-placeholder-effect,
    .figma-search-placeholder-effect::after,
    .figma-chat-actions a,
    .figma-ticket-actions a,
    .figma-detail-zalo,
    .figma-zalo-chip i,
    .figma-chat-actions a i,
    .figma-ticket-actions a i,
    .figma-detail-zalo i,
    .figma-zalo-icon,
    .figma-ticket-action-icon,
    .figma-hero-badges i,
    .contact-hero-badges i,
    .figma-ticket-head-icon i,
    .figma-ticket-head-icon img,
    .figma-district-grid > a i,
    .figma-district-row a i,
    .figma-location-tab i,
    .figma-specialist-card i,
    .figma-action-zalo-icon,
    .figma-zalo-chip i::after,
    .figma-chat-actions a i::after,
    .figma-ticket-actions a i::after,
    .figma-detail-zalo i::after,
    .figma-zalo-icon::after,
    .figma-ticket-action-icon::after,
    .figma-action-zalo-icon::after {
        animation: none;
        transition: none;
    }
}

.figma-ticket-card,
.figma-specialist-card,
.figma-location-tab,
.figma-district-grid > a,
.figma-district-row a {
    position: relative;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease, filter .28s ease;
    will-change: transform;
}

.figma-ticket-card::before,
.figma-specialist-card::before,
.figma-location-tab::before,
.figma-district-grid > a::before,
.figma-district-row a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 243, 149, .18), rgba(10, 79, 44, .08));
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
    z-index: 0;
}

.figma-ticket-card > *,
.figma-specialist-card > *,
.figma-location-tab > *,
.figma-district-grid > a > *,
.figma-district-row a > * {
    position: relative;
    z-index: 1;
}

.figma-ticket-card:hover,
.figma-specialist-card:hover,
.figma-location-tab:hover,
.figma-district-grid > a:hover,
.figma-district-row a:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 38px rgba(10, 79, 44, .16);
}

.figma-ticket-card:hover::before,
.figma-specialist-card:hover::before,
.figma-location-tab:hover::before,
.figma-district-grid > a:hover::before,
.figma-district-row a:hover::before {
    opacity: 1;
}

.figma-ticket-card {
    border: 1px solid rgba(10, 79, 44, .05);
}

.figma-ticket-card:hover {
    border-color: rgba(10, 79, 44, .22);
}

.figma-ticket-card.is-featured:hover {
    border-color: #ef9cad;
    box-shadow: 0 18px 38px rgba(202, 14, 14, .13);
}

.figma-ticket-top,
.figma-ticket-name,
.figma-ticket-time,
.figma-ticket-price,
.figma-ticket-desc,
.figma-ticket-feature li,
.figma-ticket-thumb img,
.figma-specialist-thumb img,
.figma-specialist-code,
.figma-specialist-overlay,
.figma-specialist-detail,
.figma-location-tab img,
.figma-location-tab span,
.figma-district-grid > a i,
.figma-district-grid > a span,
.figma-district-row a i,
.figma-district-row a span {
    transition: transform .28s ease, color .28s ease, background .28s ease, box-shadow .28s ease, opacity .28s ease, filter .28s ease;
}

.figma-ticket-card:hover .figma-ticket-top {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 79, 44, .13);
}

.figma-ticket-card:hover .figma-ticket-name {
    background: rgba(255, 255, 255, .88);
    transform: translateX(4px);
}

.figma-ticket-card:hover .figma-ticket-time,
.figma-ticket-card:hover .figma-ticket-price {
    transform: translateX(4px);
}

.figma-ticket-card:hover .figma-ticket-feature li,
.figma-ticket-card:hover .figma-ticket-desc {
    transform: translateX(3px);
}

.figma-ticket-card:hover .figma-ticket-feature li::before,
.figma-ticket-card:hover .figma-ticket-desc li::before {
    color: #0a4f2c;
}

.figma-ticket-card:hover .figma-ticket-thumb img,
.figma-specialist-card:hover .figma-specialist-thumb img {
    transform: scale(1.05);
    filter: saturate(1.08);
}

.figma-specialist-card:hover {
    box-shadow: 0 18px 38px rgba(10, 79, 44, .15);
}

.figma-specialist-card:hover .figma-specialist-code {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 18px rgba(10, 79, 44, .2);
}

.figma-specialist-card:hover .figma-specialist-overlay {
    transform: translateY(0px);
}

.figma-specialist-card:hover .figma-specialist-detail {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(10, 79, 44, .16);
}

.figma-location-tab:hover,
.figma-location-tab.active {
    box-shadow: 0 14px 30px rgba(10, 79, 44, .14);
}

.figma-location-tab:hover img {
    transform: scale(1.04);
}

.figma-location-tab:hover span,
.figma-district-grid > a:hover span,
.figma-district-row a:hover span {
    transform: translateX(2px);
}

.figma-district-grid > a:hover i,
.figma-district-row a:hover i {
    transform: translateY(-2px) scale(1.08);
}

.figma-ticket-actions a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .36) 45%, transparent 70%);
    opacity: 0;
    transform: translateX(-120%);
    transition: transform .45s ease, opacity .25s ease;
    pointer-events: none;
    z-index: 0;
}

.figma-ticket-actions a:hover::before {
    opacity: 1;
    transform: translateX(120%);
}

.figma-ticket-actions a > * {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .figma-brand,
    .figma-brand::before,
    .figma-header-search,
    .figma-search-btn,
    .figma-search-placeholder-effect,
    .figma-search-placeholder-effect::after,
    .figma-ticket-card,
    .figma-specialist-card,
    .figma-location-tab,
    .figma-district-grid > a,
    .figma-district-row a,
    .figma-ticket-card::before,
    .figma-specialist-card::before,
    .figma-location-tab::before,
    .figma-district-grid > a::before,
    .figma-district-row a::before,
    .figma-ticket-top,
    .figma-ticket-name,
    .figma-ticket-time,
    .figma-ticket-price,
    .figma-ticket-desc,
    .figma-ticket-feature li,
    .figma-ticket-thumb img,
    .figma-specialist-thumb img,
    .figma-specialist-code,
    .figma-specialist-overlay,
    .figma-specialist-detail,
    .figma-location-tab img,
    .figma-location-tab span,
    .figma-district-grid > a i,
    .figma-district-grid > a span,
    .figma-district-row a i,
    .figma-district-row a span,
    .figma-ticket-actions a::before {
        transform: none !important;
        transition: none;
    }
}

@media (min-width: 992px) {
    .figma-header {
        padding-top: 20px;
    }

    .figma-header .figma-container,
    .figma-wrap-home .figma-container {
        width: min(1200px, calc(100% - 32px));
        max-width: 1200px;
    }

    .figma-header-nav {
        padding-bottom: 18px;
    }

    .figma-header-row {
        height: 20px;
    }

    .figma-brand {
        font-size: 28px;
        line-height: 1;
        font-weight: 700;
        text-transform: uppercase;
    }

    .figma-nav {
        gap: 31px;
    }

    .figma-nav > li > a {
        font-size: 14px;
        line-height: 1;
        font-weight: 500;
        text-transform: uppercase;
        background: none;
        color: #fff;
        -webkit-text-fill-color: #fff;
        padding-top: 4px;
    }

    .figma-nav > li > a.active {
        background-image: linear-gradient(135deg, #cba869 0%, #f8efba 30%, #e8d28d 80%, #c3942e 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    .figma-lang a img {
        width: 30px;
        height: 20px;
    }

    .figma-header-search-wrap {
        padding-bottom: 20px;
    }

    .figma-header-search {
        width: 100%;
        height: 48px;
        border-radius: 12px;
        padding: 0 16px;
    }

    .figma-search-label,
    .figma-search-input {
        font-size: 16px;
    }

    .figma-search-btn {
        font-size: 19px;
    }

    .figma-home-page {
        padding-top: 16px;
    }

    .figma-hero {
        width: 100%;
        height: 400px;
        border-radius: 16px;
    }

    .figma-hero-content {
        width: 690px;
        padding: 52px 0 0 64px;
    }

    .figma-hero-content h1 {
        font-size: 28px;
        text-transform: uppercase;
    }

    .figma-hero-content p {
        /* margin-top: 28px; */
        font-size: 48px;
        line-height: 1.3;
        text-transform: uppercase;
    }

    .figma-hero-badges {
        /* margin-top: 24px; */
        gap: 24px;
    }

    .figma-hero-badges span {
        font-size: 18px;
        gap: 10px;
        white-space: nowrap;
    }

    .figma-zalo-chip {
        /* margin-top: 34px; */
        /* width: 330px; */
        border-radius: 16px;
        font-size: 16px;
        text-transform: uppercase;
        white-space: nowrap;
        padding: 17px 0px;
    }

    .figma-home-intro {
        padding-top: 33px;
    }

    .figma-location-card {
        width: 147px;
        height: 122px;
    }

    .figma-location-card img {
        width: 147px;
        height: 96px;
        border-radius: 12px;
    }

    .figma-location-card span {
        margin-top: 14px;
        font-size: 18px;
        /* background-image: linear-gradient(135deg, #cba869 0%, #f8efba 30%, #e8d28d 80%, #c3942e 100%); */
        -webkit-background-clip: text;
        background-clip: text;
        color: var(--color-main);
        font-weight: bold;
    }

    .figma-districts {
        /* width: 1199px; */
        margin-top: 50px;
    }

    .figma-districts h3 {
        font-size: 20px;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .figma-districts p {
        margin-top: 8px;
        font-size: 15px;
        line-height: 1.3;
    }

    .figma-location-tabs {
        margin: 0 auto 34px;
    }

    .figma-location-tab img {
        width: 147px;
        height: 96px;
        border-radius: 12px;
    }

    .figma-location-tab span {
        margin-top: 14px;
        font-size: 18px;
    }

    .figma-home-intro-title h2 {
        font-size: 36px;
        line-height: 1.1;
        text-transform: uppercase;
    }

    .figma-home-intro-title p {
        margin-top: 12px;
        font-size: 20px;
        line-height: 1.1;
    }

    .figma-district-grid {
        margin-top: 20px;
        gap: 16px;
    }

    .figma-district-grid > a,
    .figma-district-row a {
        min-height: 48px;
        border-radius: 8px;
        font-size: 18px;
        text-transform: capitalize;
    }

    .figma-home-intro-title {
        max-width: 920px;
        margin-top: 74px;
        margin-bottom: 0;
    }

    .figma-ticket-block {
        left: 50%;
        transform: translateX(-50%);
        width: min(1860px, calc(100vw - 60px));
        height: 581px;
        min-height: 0;
        margin-left: 0;
        margin-top: 39px;
        border-radius: 20px;
        padding: 60px 20px 64px;
        overflow: visible;
    }

    .figma-ticket-block-alt {
        min-height: 0;
        margin-top: 0;
    }

    .figma-ticket-divider {
        height: 30px;
    }

    .figma-ticket-head,
    .figma-ticket-grid {
        width: min(1199px, 100%);
        max-width: 100%;
    }

    .figma-ticket-head-icon {
        width: 30px;
        height: 30px;
        font-size: 30px;
    }

    .figma-ticket-head h3 {
        font-size: 24px;
        font-weight: 700;
        text-transform: capitalize;
    }

    .figma-ticket-grid {
        margin-top: 18px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .figma-ticket-card {
        /* width: 317px; */
        height: 403px;
        border-radius: 16px;
        padding: 8px;
    }

    .figma-ticket-top {
        height: 91px;
        border-radius: 10px;
        padding: 10px 16px 0;
    }

    .figma-ticket-name {
        height: 29px;
        padding: 0 16px;
        border-radius: 50px;
        font-size: 14px;
        background: #fff !important;
    }

    .figma-ticket-time {
        margin-top: 15px;
        font-size: 22px;
    }

    .figma-ticket-thumb {
        display: none;
    }

    .figma-ticket-content {
        margin-top: 9px;
        padding: 15px;
        max-height: none;
        overflow: visible;
    }

    .figma-ticket-price {
        font-size: 28px;
        background: none;
        -webkit-text-fill-color: currentColor;
        color: #0a4f2c;
        font-weight: bold;
    }

    .figma-ticket-desc {
        margin-top: 8px;
        font-size: 15px;
    }

    .figma-ticket-feature {
        margin-top: 12px;
        gap: 6px;
    }

    .figma-ticket-feature,
    .figma-ticket-desc li,
    .figma-ticket-feature li {
        font-size: 14px;
        line-height: 1.2;
    }

    .figma-ticket-actions {
        padding: 0;
    }

    .figma-ticket-actions a {
        font-size: 18px;
        gap: 10px;
    }

    .figma-ticket-actions a i {
        font-size: 20px;
    }

    .figma-ticket-actions .figma-zalo-icon,
    .figma-ticket-actions .figma-ticket-action-icon {
        width: 24px;
        height: 24px;
    }

    .figma-action-zalo-icon {
        width: 24px;
        height: 24px;
    }

    .figma-action-zalo-icon img {
        width: 20px;
        height: 20px;
    }

    .figma-ticket-actions .zalo {
        height: 44px;
        border-radius: 22px;
    }

    .figma-ticket-actions .book {
        height: 43px;
        border-radius: 21.5px;
    }
    .figma-ticket-actions .book svg{fill:#0A4F2C}
    .figma-ticket-card.is-featured .figma-ticket-actions .book svg{fill:#CA0E0E}
    .figma-ticket-card.is-featured .figma-ticket-name,
    .figma-ticket-card.is-featured .figma-ticket-time,
    .figma-ticket-card.is-featured .figma-ticket-price {
        color: #c9182b;
        /* background: none; */
        -webkit-text-fill-color: currentColor;
    }

    .figma-chat-card {
        width: 100%;
        height: 341px;
        border-radius: 16px;
    }

    .figma-chat-card::after {
        background: rgba(0, 0, 0, .58);
    }

    .figma-chat-content {
        width: 830px;
        max-width: calc(100% - 32px);
        margin-top: 78px;
    }

    .figma-chat-content h3 {
        font-size: 38px;
        color: #f6df93;
        text-transform: uppercase;
    }

    .figma-chat-content p {
        margin-top: 26px;
        font-size: 24px;
        color: #fff;
        text-transform: uppercase;
    }

    .figma-chat-actions {
        margin-top: 39px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .figma-chat-actions a {
        height: 77px;
        border-radius: 16px;
        font-size: 24px;
        text-transform: uppercase;
    }
}

.figma-news-page,
.figma-news-detail-page {
    padding: 2rem 0px;
    background: #fff;
}

.figma-news-layout {
    width: min(1200px, calc(100% - 30px));
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.figma-news-main,
.figma-news-article {
    min-width: 0;
}

.figma-news-sidebar {
    position: sticky;
    top: 24px;
}

.figma-news-hero,
.figma-news-detail-head {
    padding: 34px 38px;
    border: 1px solid #e3ece9;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .05);
}

.figma-news-hero {
    margin-bottom: 24px;
}

.figma-news-kicker {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0f766e;
    font-weight: 800;
}

.figma-news-title,
.figma-news-detail-title {
    margin: 0;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
    text-transform: none;
    text-align: left;
    margin-bottom: 1rem;
}

.figma-news-intro {
    margin-top: 14px;
    max-width: 860px;
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
}

.figma-news-grid {
    display: grid;
    gap: 18px;
}

.figma-news-card {
    min-height: 226px;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 22px;
    padding: 18px;
    border: 1px solid #d8e7e3;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.figma-news-card.is-featured {
    border-color: #b9d7d0;
    box-shadow: 0 18px 42px rgba(10, 79, 44, .10);
}

.figma-news-thumb {
    display: block;
    height: 100%;
    min-height: 190px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f4f6;
}

.figma-news-thumb img,
.figma-news-detail-photo img,
.figma-news-related-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.figma-news-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.figma-news-info h2 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}

.figma-news-info h2 a {
    color: #0f172a;
    text-decoration: none;
}

.figma-news-info h2 a:hover,
.figma-news-readmore:hover {
    color: #0a4f2c;
}

.figma-news-meta,
.figma-news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.4;
    color: #667085;
}

.figma-news-info p,
.figma-news-lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #374151;
}

.figma-news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #0f766e;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.figma-news-detail-layout {
    grid-template-columns: minmax(0, 820px) 328px;
}

.figma-news-detail-layout.is-single {
    grid-template-columns: minmax(0, 940px);
    justify-content: center;
}

.figma-news-detail-head {
    margin-bottom: 24px;
}

.figma-news-detail-title {
    font-size: 44px;
}

.figma-news-detail-photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 0 24px;
    border-radius: 18px;
    overflow: hidden;
    background: #f3f4f6;
}

.figma-news-lead {
    padding: 18px 22px;
    border-left: 4px solid #0f766e;
    border-radius: 14px;
    background: #f0fdfa;
    font-weight: 600;
}

.figma-news-content {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.85;
    color: #111827;
}

.figma-news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.figma-news-content h2,
.figma-news-content h3 {
    margin: 28px 0 14px;
    color: #0a4f2c;
    font-weight: 800;
}

.figma-news-share {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.figma-news-related {
    align-self: start;
    position: sticky;
    top: 150px;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.figma-news-related h2 {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.3;
    color: #0a4f2c;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.figma-news-related-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
    color: #111827;
    text-decoration: none;
}

.figma-news-related-item:last-child {
    border-bottom: 0;
}

.figma-news-related-item img {
    height: 64px;
    border-radius: 10px;
}

.figma-news-related-item span {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

.figma-news-shell {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.figma-news-page .figma-news-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
    padding: 38px 42px;
    border: 0;
    border-radius: 22px;
    background:
        radial-gradient(circle at 85% 20%, rgba(246, 223, 147, .26), transparent 34%),
        linear-gradient(135deg, #073f25 0%, #0a5a34 55%, #147a4b 100%);
    box-shadow: 0 22px 55px rgba(10, 79, 44, .16);
    overflow: hidden;
}

.figma-news-page .figma-news-kicker {
    color: #f6df93;
}

.figma-news-page .figma-news-title {
    max-width: 760px;
    color: #fff;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: 0;
}

.figma-news-page .figma-news-intro {
    max-width: 760px;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
    line-height: 1.7;
}

.figma-news-hero-panel {
    display: grid;
    gap: 12px;
}

.figma-news-hero-panel span {
    min-height: 46px;
    border-radius: 12px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
}

.figma-news-hero-panel i {
    color: #f6df93;
    font-size: 16px;
}

.figma-contact-page .figma-news-hero {
    margin-bottom: 0;
}

.figma-news-feature-card {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #dce9e5;
    box-shadow: 0 20px 48px rgba(15, 23, 42, .08);
    margin-bottom: 24px;
}

.figma-news-feature-thumb {
    min-height: 410px;
    display: block;
    overflow: hidden;
    background: #edf2ef;
}

.figma-news-feature-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.figma-news-feature-info {
    min-width: 0;
    padding: 42px 42px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.figma-news-feature-info h2,
.figma-news-card h2 {
    margin: 0;
}

.figma-news-feature-info h2 a {
    color: #111827;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 800;
    text-decoration: none;
}

.figma-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.figma-news-card {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #e1ebe8;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.figma-news-thumb {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 0;
}

.figma-news-info {
    flex: 1 1 auto;
    justify-content: flex-start;
    padding: 20px 20px 22px;
}

.figma-news-info h2 {
    margin: 0;
}

.figma-news-info h2 a {
    display: block;
    color: #111827;
    font-size: 20px;
    line-height: 1.32;
    font-weight: 800;
    text-decoration: none;
}

.figma-news-meta {
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 14px;
    color: #667085;
}

.figma-news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.figma-news-desc {
    margin-top: 12px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.65;
}

.figma-news-desc p {
    margin: 0;
}

.figma-news-desc ul,
.figma-news-lead ul,
.figma-news-content ul {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.figma-news-desc li,
.figma-news-lead li,
.figma-news-content li {
    position: relative;
    margin: 8px 0;
    padding-left: 28px;
}

.figma-news-desc li::before,
.figma-news-lead li::before,
.figma-news-content li::before {
    content: "";
    position: absolute;
    top: .55em;
    left: 2px;
    width: 7px;
    height: 12px;
    border: solid #9ca3af;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.figma-news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.figma-news-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 1199px;
    background: #f4fbf7;
    border: 1px solid #dbeee5;
    color: #0a4f2c;
    font-size: 13px;
    font-weight: 700;
}

.figma-news-tags i {
    color: #d8a83f;
}

.figma-news-readmore {
    margin-top: auto;
    padding-top: 18px;
}

.figma-news-feature-info .figma-news-readmore {
    margin-top: 22px;
    padding-top: 0;
}

.figma-news-card:hover,
.figma-news-feature-card:hover {
    border-color: #b9d7d0;
    box-shadow: 0 22px 48px rgba(10, 79, 44, .12);
}

.figma-news-card:hover img,
.figma-news-feature-card:hover img {
    transform: scale(1.035);
}

.figma-news-thumb img,
.figma-news-feature-thumb img {
    transition: transform .35s ease;
}

.figma-news-page.is-recruitment .figma-news-hero {
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 243, 149, .28), transparent 34%),
        linear-gradient(135deg, #073f25 0%, #0a4f2c 52%, #d8a83f 140%);
}

@media (max-width: 991px) {
    .figma-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .figma-news-layout {
        grid-template-columns: 1fr;
    }

    .figma-news-page .figma-news-hero,
    .figma-news-feature-card {
        grid-template-columns: 1fr;
    }

    .figma-news-hero-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .figma-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .figma-news-sidebar {
        order: 2;
    }

    .figma-detail-main {
        grid-template-columns: 1fr;
    }

    .figma-detail-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        max-width: 420px;
    }
}

@media (max-width: 767px) {
    .figma-container,
    .wrap-content,
    .figma-districts,
    .figma-ticket-head,
    .figma-ticket-grid,
    .figma-chat-card,
    .figma-hero {
        width: calc(100% - 15px);
    }

    .figma-ticket-block {
        padding-left: 0;
        padding-right: 0;
    }

    .figma-header .figma-menu {
        display: none;
    }

    .figma-ticket-grid,
    .figma-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .figma-ticket-card {
        width: 100%;
    }

    .figma-news-card {
        grid-template-columns: 1fr;
    }

    .figma-news-shell {
        width: calc(100% - 24px);
    }

    .figma-news-page .figma-news-hero {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .figma-news-page .figma-news-title {
        font-size: 32px;
    }

    .figma-news-page .figma-news-intro {
        font-size: 15px;
    }

    .figma-news-hero-panel {
        grid-template-columns: 1fr;
    }

    .figma-news-feature-thumb {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .figma-news-feature-info {
        padding: 24px 22px 26px;
    }

    .figma-news-feature-info h2 a {
        font-size: 25px;
    }

    .figma-news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .figma-news-thumb,
    .figma-news-detail-photo {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .figma-news-title,
    .figma-news-detail-title {
        font-size: 26px;
    }
}

/* Detail page: align with the Figma SVG reference */
.figma-service-detail-page .figma-detail-main {
    height: 744px;
    min-height: 0;
    padding: 30px 36px 36px;
    border-radius: 20px;
    grid-template-columns: 464px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "title title"
        "photo info";
    column-gap: 36px;
    row-gap: 24px;
    align-items: start;
}

.figma-detail-title {
    grid-area: title;
    margin: 0;
    color: #0a4f2c;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.figma-service-detail-page .figma-detail-photo {
    grid-area: photo;
    width: 464px;
    height: 620px;
    border-radius: 16px;
}

.figma-service-detail-page .figma-detail-code {
    left: 13px;
    top: 13px;
    width: 70px;
    height: 39px;
    border-radius: 15px;
    font-size: 16px;
}

.figma-service-detail-page .figma-detail-photo-overlay {
    left: 25px;
    right: 25px;
    bottom: 22px;
    text-align: center;
}

.figma-service-detail-page .figma-detail-photo-overlay span:first-child {
    font-size: 28px;
    line-height: 1.12;
}

.figma-service-detail-page .figma-detail-photo-overlay span:last-child {
    font-size: 48px;
    line-height: 1.08;
    color: #f6df93;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #0a4f2c;
    text-shadow: 0 2px 0 rgba(10, 79, 44, .75);
}

.figma-service-detail-page .figma-detail-info {
    grid-area: info;
    align-self: stretch;
    min-width: 0;
    padding-top: 54px;
    display: flex;
    flex-direction: column;
}

.figma-service-detail-page .figma-detail-desc {
    max-width: 430px;
    margin: 0;
    color: #0a4f2c;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 700;
    text-transform: uppercase;
}

.figma-service-detail-page .figma-detail-price {
    margin: 22px 0 0;
    color: #ca0e0e;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.figma-service-detail-page .figma-detail-row {
    margin-top: 34px;
    gap: 20px;
}

.figma-service-detail-page .figma-time-group p,
.figma-service-detail-page .figma-qty-group p {
    margin: 0 0 10px;
    color: #222326;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
}

.figma-service-detail-page .figma-time-options {
    gap: 12px;
}

.figma-service-detail-page .figma-time-option {
    min-width: 95px;
    height: 40px;
    border-radius: 28px;
    padding: 0 16px;
    color: #0a4f2c;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.figma-service-detail-page .figma-time-option:hover,
.figma-service-detail-page .figma-time-option.is-active {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(10, 79, 44, .12);
}

.figma-service-detail-page .figma-qty-options {
    /* width: 164px; */
    /* height: 56px; */
    border-radius: 28px;
    grid-template-columns: 33px 45px 30px;
}

.figma-service-detail-page .figma-qty-btn,
.figma-service-detail-page .figma-qty-value {
    /* height: 56px; */
    /* font-size: 22px; */
}

.figma-service-detail-page .figma-qty-btn {
    color: #0a4f2c;
    transition: background .18s ease, color .18s ease;
    width: 40px;
}

.figma-service-detail-page .figma-qty-btn:hover {
    background: #eaffda;
}

.figma-service-detail-page .figma-qty-value {
    font-size: 18px;
    font-weight: 500;
}

.figma-service-detail-page .figma-detail-zalo {
    width: 428px;
    max-width: 100%;
    height: 56px;
    margin-top: auto;
    border-radius: 16px;
    font-size: 18px;
}

.figma-service-detail-page .figma-detail-meta {
    margin-top: 24px;
    border-radius: 20px;
}

.figma-service-detail-page .figma-detail-meta-head {
    height: 72px;
    padding: 0 64px;
    justify-content: flex-start;
}

.figma-service-detail-page .figma-detail-meta-head h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.figma-service-detail-page .figma-detail-meta-head .figma-zalo-icon {
    display: none;
}

.figma-service-detail-page .figma-detail-meta-grid {
    padding: 36px 64px 44px;
    grid-template-columns: 1fr;
    row-gap: 19px;
}

.figma-service-detail-page .figma-detail-meta-grid > div {
    width: 100%;
    max-width: 660px;
    min-height: 26px;
    border: 0;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 35px;
    align-items: start;
    justify-content: stretch;
}

.figma-service-detail-page .figma-detail-meta-grid span,
.figma-service-detail-page .figma-detail-meta-grid strong {
    font-size: 20px;
    line-height: 1.35;
}

.figma-service-detail-page .figma-detail-meta-grid span {
    color: #0a4f2c;
    font-weight: 500;
}

.figma-service-detail-page .figma-detail-meta-grid strong {
    color: #222326;
    font-weight: 500;
    text-align: left;
}

.figma-service-detail-page .figma-detail-related h3 {
    font-size: 30px;
    line-height: 1.25;
}

@media (max-width: 1199px) {
    .figma-service-detail-page .figma-detail-main {
        height: auto;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        grid-template-areas:
            "title"
            "photo"
            "info";
    }

    .figma-service-detail-page .figma-detail-photo {
        width: 100%;
        max-width: 464px;
        height: auto;
        aspect-ratio: 464 / 620;
    }

    .figma-service-detail-page .figma-detail-info {
        min-height: 0;
        padding-top: 0;
    }

    .figma-service-detail-page .figma-detail-zalo {
        margin-top: 28px;
    }
}

@media (max-width: 767px) {
    .figma-service-detail-page .figma-detail-main {
        padding: 18px;
        border-radius: 12px;
        row-gap: 18px;
    }

    .figma-detail-title {
        font-size: 24px;
        line-height: 1.28;
    }

    .figma-service-detail-page .figma-detail-photo-overlay span:first-child {
        font-size: 16px;
    }

    .figma-service-detail-page .figma-detail-photo-overlay span:last-child {
        font-size: 30px;
    }

    .figma-service-detail-page .figma-detail-desc {
        font-size: 17px;
        line-height: 1.5;
    }

    .figma-service-detail-page .figma-detail-price {
        font-size: 28px;
    }

    .figma-service-detail-page .figma-time-options {
        gap: 10px;
    }

    .figma-service-detail-page .figma-time-option {
        min-width: 102px;
        height: 44px;
        padding: 0 16px;
        font-size: 17px;
    }

    .figma-service-detail-page .figma-detail-zalo {
        width: 100%;
        height: 48px;
        font-size: 15px;
    }

    .figma-service-detail-page .figma-detail-meta-head {
        height: auto;
        min-height: 64px;
        padding: 12px 18px;
    }

    .figma-service-detail-page .figma-detail-meta-head h2 {
        font-size: 20px;
    }

    .figma-service-detail-page .figma-detail-meta-grid {
        padding: 18px;
    }

    .figma-service-detail-page .figma-detail-meta-grid > div {
        max-width: none;
        gap: 20px;
        justify-content: space-between;
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .figma-service-detail-page .figma-detail-meta-grid span,
    .figma-service-detail-page .figma-detail-meta-grid strong {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .figma-hero {
        width: 100%;
        height: auto;
        min-height: 328px;
        border-radius: 8px;
        display: flex;
        align-items: flex-start;
    }

    .figma-hero-content {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
        padding: 24px 18px 26px;
    }

    .figma-hero-content h1 {
        display: block;
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        line-height: 1.18;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .figma-hero-content p {
        display: block;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
        font-size: 22px;
        line-height: 1.13;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .figma-hero-badges {
        margin-top: 12px;
        flex-wrap: wrap;
        gap: 8px 10px;
    }

    .figma-hero-badges span {
        font-size: 12px;
        line-height: 1.35;
        white-space: normal;
    }

    .figma-zalo-chip {
        width: 100%;
        max-width: 260px;
        min-height: 44px;
        margin-top: 16px;
        padding: 8px 12px;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.25;
        white-space: normal;
    }

    .figma-detail-main {
        min-height: 0;
        padding: 18px;
        gap: 18px;
    }

    .figma-detail-info h1 {
        font-size: 24px;
        line-height: 1.28;
    }

    .figma-detail-desc {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .figma-detail-price {
        font-size: 26px;
    }

    .figma-time-group p,
    .figma-qty-group p {
        font-size: 13px;
    }

    .figma-time-option {
        min-width: 72px;
        height: 32px;
        font-size: 13px;
    }

    .figma-detail-zalo {
        width: 100%;
        height: 46px;
        margin-top: 24px;
        font-size: 15px;
    }

    .figma-detail-meta-head {
        height: auto;
        min-height: 54px;
        padding: 12px 18px;
        gap: 12px;
    }

    .figma-detail-meta-head h2 {
        font-size: 17px;
        line-height: 1.35;
    }

    .figma-detail-meta-grid {
        padding: 18px;
    }

    .figma-detail-meta-grid > div {
        width: 100%;
        min-height: 36px;
        gap: 16px;
        justify-content: space-between;
    }

    .figma-detail-meta-grid span,
    .figma-detail-meta-grid strong {
        font-size: 13px;
        line-height: 1.45;
    }
}

@media (max-width: 380px) {
    .figma-hero {
        min-height: 348px;
    }

    .figma-hero-content p {
        font-size: 21px;
    }
}

.figma-brand:hover{color:transparent;}

.figma-hero-swiper {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #0a4f2c;
    isolation: isolate;
}

.figma-hero-swiper::before,
.figma-hero-swiper::after {
    content: none;
}

.figma-hero-swiper .swiper-wrapper,
.figma-hero-swiper .swiper-slide {
    height: 100%;
}

.figma-hero-slide {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: #0a4f2c;
}

.figma-hero-slide:hover {
    color: #fff;
    text-decoration: none;
}

.figma-hero-slide-picture {
    position: absolute;
    inset: 0;
    display: block;
}

.figma-hero-slide-picture img {
    display: block;
    transform: scale(1.03);
    transition: transform 6.4s ease;
}

.figma-hero-swiper .swiper-slide-active .figma-hero-slide-picture img {
    transform: scale(1.1);
}

.figma-hero-slide::before,
.figma-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.figma-hero-slide::before {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 34, 18, .72) 0%, rgba(3, 34, 18, .44) 38%, rgba(3, 34, 18, .08) 72%),
        rgba(0, 0, 0, .04);
}

.figma-hero-slide::after {
    z-index: 1;
    top: 45%;
    background: linear-gradient(180deg, rgba(234, 255, 218, 0) 0%, rgba(6, 147, 76, .88) 100%);
}

.figma-hero-swiper .figma-hero-content {
    position: relative;
    z-index: 2;
}

.figma-hero-swiper .figma-hero-content h1 {
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 3px 16px rgba(0, 0, 0, .34);
}

.figma-hero-swiper .figma-hero-content p {
    max-width: 620px;
    background: none;
    color: #f8efba;
    -webkit-text-fill-color: #f8efba;
    text-shadow: 0 5px 22px rgba(0, 0, 0, .45);
}

.figma-hero-swiper .figma-hero-content h1,
.figma-hero-swiper .figma-hero-content p,
.figma-hero-swiper .figma-hero-badges,
.figma-hero-swiper .figma-zalo-chip {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .72s ease, transform .72s ease;
}

.figma-hero-swiper .swiper-slide-active .figma-hero-content h1,
.figma-hero-swiper .swiper-slide-active .figma-hero-content p,
.figma-hero-swiper .swiper-slide-active .figma-hero-badges,
.figma-hero-swiper .swiper-slide-active .figma-zalo-chip {
    opacity: 1;
    transform: translateY(0);
}

.figma-hero-swiper .swiper-slide-active .figma-hero-content p {
    transition-delay: .12s;
}

.figma-hero-swiper .swiper-slide-active .figma-hero-badges {
    transition-delay: .22s;
}

.figma-hero-swiper .swiper-slide-active .figma-zalo-chip {
    transition-delay: .3s;
}

.figma-hero-pagination {
    position: absolute;
    left: 64px;
    bottom: 24px;
    z-index: 4;
    width: auto !important;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.figma-hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .38);
    opacity: 1;
    transition: width .28s ease, background .28s ease, border-color .28s ease;
}

.figma-hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    border-color: #f8efba;
    background: #f8efba;
}

.figma-hero-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: rgba(10, 79, 44, .56);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: translateY(-50%);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background .25s ease, border-color .25s ease, transform .25s ease, opacity .25s ease;
}

.figma-hero-nav:hover {
    background: rgba(10, 79, 44, .86);
    border-color: rgba(248, 239, 186, .8);
    transform: translateY(-50%) scale(1.06);
}

.figma-hero-prev {
    left: 18px;
}

.figma-hero-next {
    right: 18px;
}

.figma-hero-nav.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 767px) {
    .figma-hero-swiper {
        height: 328px;
        min-height: 0;
        display: block;
        border-radius: 8px;
    }

    .figma-hero-swiper .figma-hero-content {
        padding: 24px 18px 58px;
    }

    .figma-hero-slide::before {
        background:
            linear-gradient(90deg, rgba(3, 34, 18, .78) 0%, rgba(3, 34, 18, .52) 56%, rgba(3, 34, 18, .18) 100%),
            rgba(0, 0, 0, .08);
    }

    .figma-hero-nav {
        width: 34px;
        height: 34px;
        top: auto;
        bottom: 14px;
        transform: none;
    }

    .figma-hero-nav:hover {
        transform: none;
    }

    .figma-hero-prev {
        left: auto;
        right: 58px;
    }

    .figma-hero-next {
        right: 18px;
    }

    .figma-hero-pagination {
        left: 18px;
        bottom: 25px;
    }
}

@media (max-width: 380px) {
    .figma-hero-swiper {
        height: 348px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .figma-hero-slide-picture img,
    .figma-hero-swiper .figma-hero-content h1,
    .figma-hero-swiper .figma-hero-content p,
    .figma-hero-swiper .figma-hero-badges,
    .figma-hero-swiper .figma-zalo-chip {
        transition: none;
        transform: none;
    }
}
