﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap');

:root {
    --f-main: 'BT Beau Sans', sans-serif;
    --f-baloo: "Baloo 2", sans-serif;
    --f-bonus: "1K Reey", sans-serif;
    --txt: #000;
    --mcolor: #053357;
    --s-color: #E4BA79;
    --s-bg: #FEFCEC;
    --blue: #0171CC;
    --bg-gray: #8E8E8E;
    --bd-gray: #C9C9C9;
    --txt-red: #D70000;
    --white: #fff;
    --txt-black: #121212;
    --color-gold: #e4ba79;
    --color-dark-blue: #0d2c4a;
    --color-white: #ffffff;
    --color-light-gray-text: #cccccc;
    --color-input-icon: #a0a0a0;
    --color-input-placeholder: #a8b4bf;
    --color-input-name-bg: #5a6156;
    --color-input-other-bg: #3c4f60;
    --color-input-border: #6f7b87;
    --color-button-text-dark: #333333;
    --font-vogue: "1FTV VIP Vogue", serif;
    --font-reey: "1K Reey", cursive;
    --font-beausans: "BT Beau Sans", sans-serif;
    --font-default: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 16px;
    -webkit-text-size-adjust: none;
}

h2, h3 {
    font-family: 'VIP Vogue', serif;
}

header, section, footer, aside, nav, main, article, figure {
    display: block;
}

img {
    vertical-align: bottom;
}

a {
    color: var(--mcolor);
    text-decoration: none;
}

    a:hover, a:active {
        text-decoration: none;
    }

table {
    width: 100%
}

p {
    margin: 0 0 1.5em;
}

.section {
    padding: 0 0 30px;
}

p, dd, td, th, li {
    line-height: 1.3em;
}

#totop {
    position: fixed;
    bottom: 60px;
    left: 50px;
    z-index: 10;
    margin-bottom: 0;
    width: 60px;
}

    #totop a {
        display: block;
        transition: all 0.5s;
        -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
        animation: slide-top 0.8s linear infinite alternate-reverse;
    }

        #totop a:hover {
            opacity: 0.7;
        }

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.bold {
    font-weight: bold;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

*, *:before, *:after {
    box-sizing: border-box;
    outline: none;
}

/*==========================================================================*/
/*                            Header                                     */
/*==========================================================================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background-color: #fff;
}

h1 {
    display: none;
}

.h_main {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    background: #fff;
}

    .h_main .container {
        flex-wrap: nowrap;
        max-width: 1760px;
        min-width: 1200px;
    }

.gnavi {
    display: flex;
    list-style: none;
    align-items: center;
}

    .gnavi > li {
        margin: 0 10px;
    }

    .gnavi li {
        position: relative;
        text-decoration: none;
    }

    .gnavi > li > a {
        display: block;
        text-decoration: none;
        padding: 26px 17px 24px 20px;
        border-radius: 10px;
        font-size: 19px;
        transition: all 0.3s;
        text-align: center;
        position: relative;
        z-index: 0;
        color: #002440;
    }

.menu-actions {
    display: flex;
    align-items: center;
    gap: 23px;
    position: relative;
}
.cart-icon {
    position:relative;
}
/*.list_cart*/
.cart_main {
    position: absolute;
    background: #FEFCEC;
    padding: 20px;
    width: 270px;
    left: -70%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    /*transition: all.3s;*/
    display: none;
}
.cart-icon:hover .list_cart{
}
.cart_more_msg{
	color: grey;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    display: block;
    padding: 5px 0 10px;
}
.cart_itm {
    display: flex;
    align-items: flex-end;
    padding-bottom: 15px;
}
.cart_itm_main {
    margin-left: 10px;
}

.cart_itm p {
    margin: 0;
    font-size: 15px;
}
.cart_itm_price {
    color: var(--s-color);
}
.cart_itm_img {
    width: 50px;
    height: 50px;
    overflow: hidden;
}
.cart_itm_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.cart_total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #8e8e8e80;
    padding: 10px 0 15px;
    font-size: 13px;
}
.cart_total_ttl {
    color: var(--s-color);
    font-weight: 500;
}
.cart_btn {
    padding: 10px 20px;
    font-size: 1em;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    background: var(--mcolor);
    color: #fff;
    display: block;
    text-transform: uppercase;
}
    }
.cart-icon {
    font-size: 16px;
    margin: 0 13px;
    position: relative;
}
.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
}
.gift-card-btn {
    padding: 5px;
    border: 1px solid #002440;
    background-color: transparent;
    color: #002440;
    font-size: 14px;
    font-size: 0;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.gift-card-btn img {
	width:60px;
}
.submenu {
    position: absolute;
    background: var(--white);
    display: none;
    left: 0;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    overflow: hidden;
    border-radius: 4px;
}

    .submenu a {
        text-decoration: none;
        white-space: nowrap;
        text-transform: uppercase;
        color: var(--txt-black);
        display: block;
        font-size: 16px;
        position: relative;
        padding: 8px 10px;
        transition: all .3s ease;
    }

    .submenu li:last-child > a {
        border-bottom: none;
    }

    .submenu a:hover {
        color: var(--white);
        background: var(--mcolor);
    }

.has_child .submenu {
    left: calc(100% + 5px);
    margin-top: 0;
    top: -10px;
}

.submenu li.has_child:after {
    content: '';
    position: absolute;
    border: solid var(--txt);
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 30px;
    top: 14px;
}

#gnavi {
    display: flex;
    justify-content: center;
}

.h_top {
    background: var(--mcolor);
    padding: 6px 0 6px;
    color: var(--white);
}

    .h_top a {
        color: var(--white);
        text-decoration: none;
    }

    .h_top p {
        margin-bottom: 0;
    }

.h_tel {
    background: url(/assets/images/ic_tel.svg) no-repeat left center/16px auto;
    padding-left: 21px;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid var(--white);
}

.h_fb a {
    background: url(/assets/images/sms.svg) no-repeat left center/16px auto;
    padding-left: 21px;
    color: var(--white);
}

.logo {
    margin: 20px 0 20px 15px;
}

    .logo img {
        width: 70%;
    }

.h_cskh {
    margin-left: 68px;
}

#header.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background: var(--mcolor);
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-animation: header-fixed 0.6s;
    -moz-animation: header-fixed 0.6s;
    -ms-animation: header-fixed 0.6s;
    animation: header-fixed 0.6s;
}

    #header.fixed .h_top {
        display: none;
    }

    #header.fixed .h_top {
        padding-top: 10px;
    }

/* #header.fixed .logo {
    width: 60px;
  } */
@keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
    color: var(--txt);
    font-family: var(--f-main);
    font-weight: 300;
    background-color: var(--color-dark-blue);
}

#wrapper {
    min-width: 1200px;
    padding-top: 90px;
    overflow: hidden;
}

.container {
    width: 1260px; 
    max-width: 100%;
    padding: 0 15px;
    margin: 10px auto; 
    position: relative;
}

img {
    max-width: 100%;
}

.sp {
    display: none;
}

.df {
    display: flex;
    flex-wrap: wrap;
}

.ai-c {
    align-items: center;
}

.ai-n {
    align-items: flex-end;
}

.jc-c {
    justify-content: center;
}

.jc-sw {
    justify-content: space-between;
}
.card-icon{
	font-size:0;
}
.mainvisual {
    position: relative;
    overflow: hidden;
}

    .mainvisual::before {
        content: '';
        position: absolute;
        left: -50px;
        right: -50px;
        bottom: -136px;
        background: var(--s-bg);
        z-index: 1;
    }

    .mainvisual .mvs_slider {
        background-color: var(--s-bg);
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
    }

/*.mvs_slider1 {
    background-image: url(/assets/images/main-slider.png);
    max-width: 100%;
}

.mvs_slider2 {
    background-image: url(/assets/images/main-slider.png);
    max-width: 100%;
}*/

.mainvisual .mvs_slider .container {
    width: 100%;
    max-width: 1690px;
    height: 618px;
    display: flex;
    align-items: center;
    z-index: 3;
	position: absolute;
    top: 0;
}
.mvs_slider img {
	width:100%;
}
.mvs_content {
    max-width: 970px;
    color: #002440;
    position: absolute;
    left: calc(50% - 250px/2 - 358.5px);
    top: 135px;
}

.main_slide .slick-arrow {
    position: absolute;
    width: 180px;
    height: 60px;
    background: transparent;
    z-index: 5;
    top: calc(50% - 30px);
    border: none;
    text-indent: -50000px;
    cursor: pointer;
    transition: all 0.3s;
}

.main_slide .slick-prev {
    left: 0;
    background-image: url("/assets/images/Group-1.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.main_slide .slick-next {
    right: 0;
    background-image: url("/assets/images/Group.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.main_slide .slick-arrow:hover {
    transform: scale(1.1);
}

.mvs_content .mvs_ttl {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
}

.ab_style_01 {
    font-size: 57px;
    text-align: center;
    color: var(--color-gold);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.slide_ttl {
    display: inline-block;
    font-size: 17px;
    font-weight: 400;
    color: #002440;
    margin-bottom: 9px;
    margin-top: 10px;
    line-height: 1.3;
    width: 600px;
    padding: 5px;
}

.btn_slider {
    margin-top: 10px;
    top: 276px;
    position: absolute;
}

    .btn_slider a {
        display: inline-block;
        border-radius: 16px;
        padding: 16px 40px;
        font-size: 16px;
        font-weight: 700;
        background-color: #002440;
        color: white;
        text-decoration: none;
        transition: 0.3s;
    }

        .btn_slider a:hover {
            transform: translateY(-5px);
        }

.arrow {
    position: absolute;
    font-size: 30px;
    color: #999;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

    .arrow.left {
        left: 20px;
    }

    .arrow.right {
        right: 20px;
    }

.box01 {
    padding: 80px;
}

.about_main {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.main-container {
    background-color: #f9f6ef;
    border-radius: 12px;
    padding: 120px;
    max-width: 810px;
    margin-right: auto;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.about-text {
    max-width: 520px;
}

    .about-text .subheading {
        font-family: '1K Reey';
        color: #2c3e50;
        margin-bottom: 3px;
    }

    .about-text h2 {
        font-size: 48px;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #012030;
    }

    .about-text p {
        font-size: 16px;
        color: #333;
        margin-bottom: 16px;
        margin-right: 109px;
    }

.about-image {
    position: absolute;
    top: 10%;
    right: -320px;
    width: 518px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

    .about-image img {
        width: 100%;
        display: block;
        border-radius: 10px;
    }

/* box02 */
.box02 {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 77px;
}

.about-text-b02 {
    text-align: center;
    margin-bottom: 40px;
}

    .about-text-b02 h2 {
        color: #E4BA79;
        margin-bottom: 8px;
        font-size: 48px;
    }

    .about-text-b02 .subheading {
        font-family: '1K Reey';
        color: #E4BA79;
        margin-bottom: 3px;
        font-size: 16px;
        line-height: 2.1em;
    }

.grid-box02 {
    display: flex;
    gap: 16px;
}

.grid-item {
    width: 33.33%;
}

    .grid-item:nth-child(1) {
        order: 1;
    }

    .grid-item:nth-child(2) {
        order: 2;
    }

    .grid-item:nth-child(3) {
        order: 3;
    }

    .grid-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

.text-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.text-box {
    background-color: #f9f6ef;
    color: #000;
    padding: 23px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    border-radius: 8px;
    height: 240px;
    align-content: center;
}

    .text-box h3 {
        font-family: 'VIP Vouge';
        margin-bottom: 10px;
        font-size: 28px;
        color: #002440;
        font-weight: 600;
    }

    .text-box p {
        font-size: 16px;
        line-height: 1.5;
        color: #444;
    }

.under-text-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.box03 {
    padding: 80px 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.service-item {
    position: relative;
    color: white;
    padding: 20px;
}

.bg-icon {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.service-item h3 {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.service-item p {
    font-size: 13px;
    color: #ddd;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.box04 {
    padding: 80px;
    color: #fff;
}

    .box04 .about_main {
        max-width: 1200px;
        margin: 0 auto;
    }

    .box04 .declare_container {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        flex-direction: row-reverse;
    }

    .box04 .about-text {
        flex: 1;
        min-width: 300px;
        max-width: 600px;
    }

        .box04 .about-text .subheading {
            font-family: '1K Reey', cursive;
            color: #E4BA79;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .box04 .about-text h2 {
            font-size: 40px;
            color: #E4BA79;
            margin-bottom: 20px;
            line-height: 1.3;
            text-transform: uppercase;
        }

        .box04 .about-text p {
            font-size: 16px;
            line-height: 1.6;
            color: #fff;
            margin-bottom: 16px;
            margin-right: 35px;
        }

    .box04 .declare-image {
        flex-shrink: 0;
        width: 705px;
    }

        .box04 .declare-image img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

.box05 {
    position: relative;
    width: 100%;
    background: url('/assets/images/bg_giftcard.jpg') no-repeat center;
    background-size: 100%;
    overflow: hidden;
}

.top-right-logo {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 140px;
    z-index: 3;
    object-fit: contain;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.bg-nails-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.bg-nails-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32%;
    height: auto;
    z-index: 1;
}


.giftcard-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 146px 20px;
    position: relative;
    z-index: 2;
    gap: 60px;
}

.image-left {
    flex: 1;
    min-width: 280px;
    text-align: center;
    position: relative;
    right: 8%;
}

.giftcard-img {
    width: 100%;
    transform: rotate(-1deg);
    position: relative;
    z-index: 3;
}

.giftcard-text {
    flex: 2;
    padding-left: 0;
    z-index: 3;
}

    .giftcard-text .sub {
        font-family: '1K Reey', cursive;
        font-style: italic;
        font-size: 18px;
        color: #002440;
        margin-bottom: 8px;
    }

    .giftcard-text h2 {
        font-size: 48px;
        color: #002440;
        margin-bottom: 20px;
    }

    .giftcard-text .desc {
        font-size: 16px;
        color: #002440;
        line-height: 1.6;
        margin-bottom: 24px;
        padding: 0 383px 0 0;
    }

.btn-buy {
    background-color: #002440;
    color: #E4BA79;
    text-decoration: none;
    font-size: 23px;
    font-weight: bold;
    transition: 0.3s;
    display: flex;
    width: 262px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
}

    .btn-buy:hover {
        transform: translateY(-5px);
    }

.box06 {
    padding: 80px;
    color: #fff;
}

    .box06 .about_main {
        max-width: 1200px;
        margin: 0 auto;
    }

    .box06 .declare_container {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
    }

    .box06 .declare-image {
        flex-shrink: 0;
        width: 700px;
    }

        .box06 .declare-image img {
            width: 100%;
            display: block;
            object-fit: cover;
            border-radius: 6px;
        }

    .box06 .about-text {
        flex: 1;
        min-width: 320px;
        margin: 8% 0 0;
    }

        .box06 .about-text .subheading {
            font-family: '1K Reey', cursive;
            font-style: italic;
            font-size: 16px;
            color: #E4BA79;
            margin-bottom: 10px;
        }

        .box06 .about-text h2 {
            font-size: 34px;
            color: #E4BA79;
            margin-bottom: 20px;
            line-height: 1.4;
            text-transform: uppercase;
        }

        .box06 .about-text .desc {
            font-size: 15px;
            color: #fff;
            margin-bottom: 24px;
            line-height: 1.6;
        }

            .box06 .about-text .desc span {
                display: block;
                font-size: 14px;
                color: #ccc;
                margin-top: 8px;
                line-height: 1.5;
            }

    .box06 .service-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .box06 .about-text .service-list .toggle-content p {
        color: #fff;
        margin: 0;
    }

    .box06 .toggle-item {
        margin-bottom: 16px;
    }

    .box06 .toggle-header {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }

        .box06 .toggle-header .title {
            color: #fff;
            font-weight: bold;
            font-size: 16px;
        }

        .box06 .toggle-header .b06_arrow {
            font-size: 13px;
            color: #e4ba79;
            display: flex;
            align-items: center;
            background: url(/assets/images/arrow.png) no-repeat center;
            width: 30px;
            height: 30px;
            transition: transform 0.3s ease;
        }

    .box06 .toggle-item.active .toggle-header span.title {
        color: #e4ba79;
    }

    .box06 .toggle-item.active .toggle-header .b06_arrow {
        background: url(/assets/images/arrow-down.png) no-repeat center;
    }

        .box06 .toggle-item.active .toggle-header .b06_arrow img {
            transform: rotate(180deg);
        }

    .box06 .toggle-content {
        display: none;
        font-size: 14px;
        color: #ccc;
        padding: 8px 0;
        line-height: 1.6;
    }

    .box06 .toggle-item.active .toggle-content {
        display: block;
    }

    .box06 .toggle-item.active .b06_arrow img {
        transform: rotate(180deg);
    }

.box07 {
    margin: 0 auto;
    padding-bottom: 20px;
    padding-top: 50px;
}

    .box07 .about_main {
        max-width: none;
        margin: 0 auto;
    }

.location_b07 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-bottom: 20px;
}

.about-text-b07 {
    text-align: center;
}

.arrow-left-b07 {
    position: absolute;
    left: calc(50% - 170px);
    cursor: pointer;
}

.arrow-right-b07 {
    position: absolute;
    right: calc(50% - 170px);
    cursor: pointer;
}

.box07 .about-text-b07 .subheading {
    font-family: '1K Reey', cursive;
    font-style: italic;
    font-size: 16px;
    color: #E4BA79;
    margin-bottom: 10px;
}

.box07 .about-text-b07 h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arrow {
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .arrow img {
        height: auto;
    }

    .arrow:hover img {
        transform: scale(1.2);
    }

.gallery-b07 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item-b07 {
    position: relative;
    overflow: hidden;
}

    .gallery-item-b07 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
/* Trạng thái trước khi chuyển nội dung */
.gallery-b07.transition-out-left,
.gallery-b07.transition-out-right {
    opacity: 0;
    transform: translateX(var(--slide-direction, -100px));
    transition: all 0.5s ease;
}

/* Trạng thái sau khi hiển thị nội dung mới */
.gallery-b07.transition-in {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease;
}

.default-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.label-area {
    position: absolute;
    top: 0;
    padding: 4px 10px;
    background: #002440;
    color: #fff;
    font-size: 19px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 5;
}

.gallery-item-b07:nth-child(odd) .label-area {
    right: 0;
    left: auto;
}

.gallery-item-b07:nth-child(even) .label-area {
    left: 0;
    right: auto;
}

.center-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
	width: 100%;
}
.itm_status {
	position: absolute;
    bottom: 20px;
    left: calc(50% - 75px);
    display: inline-flex;
    padding: 8px 15px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #E4BA79;
    color: var(--Blue-Main, #002440);
    font-family: "BT Beau Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
    .center-info img.b07-hoasen {
        width: 50px;
        height: auto;
        margin-bottom: 10px;
    }

    .center-info p {
        color: #fff;
        font-size: 28px;
        margin: 0;
        line-height: 1.2;
    }

.overlay-b07 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100%);
    background: rgba(0, 0, 0, 0.603);
    color: #fff;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
    padding: 20px;
    gap: 15px;
}

    .overlay-b07 p {
        margin: 0;
    }

    .overlay-b07 .b07-hoasen {
        width: 40px;
        height: auto;
        margin: 10px;
    }

    .overlay-b07 span.b07-address span.b07-phone {
        font-size: 16px;
        margin: auto;
    }

.gallery-item-b07:hover .overlay-b07 {
    opacity: 1;
}

.buttons-b07 {
    display: flex;
    gap: 10px;
}

    .buttons-b07 a {
        background: #002440;
        color: #E4BA79;
        padding: 8px 15px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 5px;
        text-decoration: none;
        border-radius: 8px;
        font-weight: bold;
        font-size: 14px;
        text-transform: uppercase;
    }

        .buttons-b07 a img {
            width: 18px;
            height: 18px;
            object-fit: contain;
        }

        .buttons-b07 a:hover {
            background: #034374;
            transition: background 0.3s, color 0.3s;
        }

.gallery-item-b07:hover .default-info {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-bottom-b07 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    border-top: 1px #fff solid;
}

.gallery-item-b07:hover .overlay-bottom-b07 {
    opacity: 1;
}

.overlay-bottom-b07 a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

    .overlay-bottom-b07 a img {
        width: 21px;
        height: 21px;
        margin-left: 5px;
    }

    .overlay-bottom-b07 a:hover {
        text-decoration: underline;
    }

.overlay-bottom-b07 span {
    width: 1px;
    height: 100%;
    background: #fff;
}

.overlay-b07 span.b07-location-item {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

.overlay-b07 span.b07-address {
    font-size: 16px;
}

.overlay-b07 span.b07-phone {
    font-size: 16px;
}

.box08 {
    padding: 50px;
}

.gallery-b08 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

    .gallery-b08 p {
        border-radius: 8px;
        overflow: hidden;
        margin: 0;
    }

    .gallery-b08 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.3s;
    }

    .gallery-b08 p:hover img {
        transform: scale(1.1);
    }

.box09 {
    padding: 50px 0 200px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background-color: #FDFBEB;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333; /* Dark text color */
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.user-info .name {
    font-weight: bold;
    font-size: 0.9em;
    color: #222;
}

.user-info .timestamp {
    font-size: 0.75em;
    color: #777;
}

.testimonial-text {
    line-height: 1.5;
    margin-bottom: 15px;
    color: #000;
}

.posted-on {
    display: flex;
    align-items: center;
    font-size: 0.75em;
    color: #777;
}

.google-logo {
    width: 26px;
    height: 26px;
    margin-right: 5px;
}

.gg_info {
    margin: 0;
    display: grid;
    font-size: 1em;
    padding-left: 5px;
}

.posted-on .platform-name {
    color: #4285f4; /* Google blue */
}

#footer {
    background: #f9f7ee;
    text-align: center;
    padding-top: 0;
    overflow: hidden;
}


.footer-top {
    position: relative;
    background: #c2a269;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: '1K Reey', cursive;
    font-size: 128px;
    color: rgba(254, 218, 162, 0.69);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.footer-subscribe {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    z-index: 2;
}

.subscribe-text {
    color: #002440;
    font-size: 24px;
    text-transform: uppercase;
    white-space: normal;
    line-height: 1.3;
    text-align: start;
}

.subscribe-input {
    flex-grow: 1;
    padding: 10px 8px;
    border: none;
    border-bottom: 1px solid #002440;
    background-color: transparent;
    color: #002440;
    font-size: 14px;
    outline: none;
}

    .subscribe-input::placeholder {
        color: rgba(0, 36, 64, 0.6);
    }

.subscribe-btn {
    padding: 16px;
    background: transparent;
    border: 1px solid #002440;
    border-radius: 5px;
    color: #002440;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.4em;
}

    .subscribe-btn:hover {
        background: #002440;
        color: #fff;
    }

.footer-middle {
    background: #f9f7ee url('/assets/images/footer-flower.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 80px 20px 50px;
    position: relative;
}

.footer-logo {
    width: 150px;
    margin-bottom: 40px;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-items: center;
    gap: 20px 60px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

    .footer-menu li a {
        color: #002440;
        font-size: 14px;
        text-decoration: none;
        font-weight: 500;
    }

        .footer-menu li a:hover {
            text-decoration: underline;
        }

    .footer-menu li::after {
        content: '›';
        padding-left: 10px;
    }

.footer-social {
    position: absolute;
    top: 70%;
    right: 18%;
    transform: translateY(-50%);
    display: flex;
    gap: 15px;
}

    .footer-social a img {
        width: 100%;
        height: auto;
    }

.services_box01 {
    padding: 80px;
}

.services_main {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.sv-container {
}

.sv-text {
    max-width: 520px;
}

.asv-text .subheading {
    font-family: '1K Reey';
    color: #2c3e50;
    margin-bottom: 3px;
}

.about-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #012030;
}

.about-text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
    margin-right: 109px;
}

#header-mobile {
    display: none;
}
/* SERVICES */
.title_inner {
    font-family: 'VIP VOUGE';
    font-size: 64px;
    text-align: center;
    color: #E4BA79;
    margin: 50px 0;
    text-transform: uppercase;
}

.service-section {
    padding: 60px 120px;
}

.service-block {
    width: 100%;
    margin-bottom: 15%;
}

.service-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
	margin: auto;
	margin-bottom: 15%;
}

.service-block:nth-child(odd) .service-inner {
    flex-direction: row;
    margin-left: 0;
    margin-right: auto;
	margin: auto;
}

.service-block:nth-child(even) .service-content {
    text-align: right;
    padding-right: 40px;
    padding-left: 0;
	padding-top: 150px;
}

.service-block:nth-child(even) .service-inner {
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: 0;
	margin: auto;
}

.service-block:nth-child(even) .service-heading {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.service-block:nth-child(even) .service-inner .service-images{
	margin-right: -23%;
    margin-left: 17%;
}

.service-images {
    position: relative;
    width: 50%;
	text-align: right;
}

.main-img {
    width: 75%;
    border-radius: 10px;
    display: block;
    position: relative;
    left: 27%;
}

.sub-img {
    width: 70%;
    position: absolute;
    bottom: -25%;
    left: -40%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

/*.service-block:nth-child(odd) .sub-img {
    right: 58%;
    top: 45%;
}*/

.service-content {
    width: 50%;
    max-width: 520px;
    position: relative;
    z-index: 1;
}


    .service-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
        color: #ddd;
    }

    .service-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .service-content ul li {
            margin-bottom: 10px;
            font-size: 15px;
            color: #ccc;
        }

.service-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}


.icon-flower {
    width: 80px;
    height: auto;
}

.heading-text {
    display: flex;
    flex-direction: column;
}

.sub-title {
    font-family: '1K Reey';
    font-size: 16px;
    color: #E4BA79;
    margin-bottom: 8px;
}

.main-title {
    font-size: 26px;
    color: #E4BA79;
    margin: 0;
    letter-spacing: 1px;
}

.service-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #ccc;
	flex-wrap: wrap;
}
.service-content ul li span {
	font-size: 13px;
    display: block;
    color: var(--bg-gray);
    margin-left: 25px;
	width: 100%;
}
.service-block:nth-child(even) ul li span {
	margin-right: 25px;
	margin-left: 0;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-content li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #ccc;
}


    .service-content li::before {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url('/assets/images/Tick Square.svg');
        background-size: contain;
        background-repeat: no-repeat;
    }

.even-style {
    text-align: right;
}

.heading-even {
    flex-direction: row;
    justify-content: flex-end;
}

    .heading-even .sub-title,
    .heading-even .main-title {
        text-align: right;
    }

.service-block:nth-child(even) li {
    flex-direction: row-reverse;
}

.align-right li::before {
    display: none;
}

.align-right li::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/assets/images/Tick Square.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
}

.right-sub {
    left: auto;
    right: 60%;
}

.flower-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 0;
    padding-top: 120px;
    pointer-events: none;
}

.flower {
    max-width: 100px;
    justify-self: center;
}

.reveal {
    opacity: 1;
    transform: translateY(50px);
    transition: all 0.7s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
/* LOCATION */

.branch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.location-group {
    width: 100%;
}

.gallery-b07 {
    gap: 0px;
}
@media screen and (max-width: 1290px) {
	.btn_slider {
		top: 200px;
	}
	.itm_status {
		bottom:0;
	}
	.buttons-b07 a {
		font-size: 14px;
	    margin: 0;
	    padding: 6px 10px;
	}
}
@media screen and (max-width: 1048px) {
    .gnavi > li > a {
        padding: 15px 5px 15px 5px;
        font-size: 18px;
    }

    .center-info p {
        font-size: 20px;
        font-size: 12px;
    }

    .overlay-b07 span.b07-location-item, .overlay-b07 span.b07-address, .overlay-b07 span.b07-phone {
        font-size: 12px;
    }

    .overlay-bottom-b07 {
        height: 30px;
    }

    .overlay-b07 .b07-hoasen {
        margin: 0;
    }

    .buttons-b07 a {
        padding: 5px 15px;
        font-size: 10px;
    }

    .overlay-bottom-b07 a img {
        width: 15px;
        height: 15px;
        margin-left: 5px;
    }
}

@media screen and (max-width: 768px) {

    #wrapper {
        min-width: 100%;
        margin: 0;
        padding-top: 64px;
    }

    #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        z-index: 9999;
    }

    #header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
    }


    .cart-icon {
        position: relative;
    }

        .cart-icon img {
            height: 28px;
        }

    .cart-count {
        position: absolute;
        top: -6px;
        right: -6px;
        background: red;
        color: white;
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 50%;
    }

    .h_main {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: #003B5c;
    }

    .menu-open .h_main {
        max-height: 1000px;
    }

    .h_main.active {
        display: block;
    }

    .gnavi {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .gnavi li a {
            display: block;
            padding: 12px 20px;
            color: white;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            text-decoration: none;
        }

    /* Hamburger Icon */
    .menu-icon {
        width: 32px;
        height: 43px;
        cursor: pointer;
        position: relative;
    }

        .menu-icon span,
        .menu-icon span::before,
        .menu-icon span::after {
            display: block;
            background-color: white;
            width: 30px;
            height: 3px;
            border-radius: 3px;
            position: absolute;
            transition: 0.3s;
        }

        .menu-icon span {
            top: 20px;
        }

            .menu-icon span::before {
                content: '';
                top: -10px;
            }

            .menu-icon span::after {
                content: '';
                top: 10px;
            }

        .menu-icon.active span {
            background: transparent;
        }

            .menu-icon.active span::before {
                transform: rotate(45deg);
                top: 0;
            }

            .menu-icon.active span::after {
                transform: rotate(-45deg);
                top: 0;
            }

    #gnavi {
        width: 100%;
    }

    .gnavi {
        display: block;
        width: 100%;
    }

        .gnavi > li {
            margin: 0 !important;
            padding: 0;
            position: relative;
        }

            .gnavi > li > a {
                display: block;
                text-align: left;
                padding: 15px 20px;
                font-size: 14px;
                color: var(--white);
                border-bottom: 1px solid rgba(255, 255, 255, 0.14);
            }

                .gnavi > li > a::before {
                    content: none;
                }

    .gnv-ico {
        width: 40px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 0;
        background: var(--s-color);
        border: none;
        transform: none;
    }

        .gnv-ico::before {
            content: '';
            position: absolute;
            border: 1px solid #000;
            border-width: 0 1px 1px 0;
            display: inline-block;
            padding: 3px;
            transform: rotate(45deg);
            left: calc(50% - 3px);
            top: calc(50% - 3px);
            transition: all 0.5s ease;
        }

    .gnavi li.active > .gnv-ico::before {
        transform: rotate(-135deg);
    }

    .logo.pc,
    .menu-actions {
        display: none !important;
    }

    .logo.mobile img {
        width: 60%;
        display: block;
        margin: 0 auto;
    }
	.logo {
		margin: 0;
	}
    .h_main .container {
        display: block;
        min-width: 0;
    }

    .gnavi {
        display: block;
        width: 100%;
    }

        .gnavi > li {
            margin: 0 !important;
            padding: 0;
        }

            .gnavi > li > a {
                text-align: left;
                padding: 15px 20px;
                font-size: 14px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.14);
                color: var(--white);
                text-align: center;
                border-radius: 0;
            }

                .gnavi > li > a::before {
                    content: none;
                }
	.gift-card-btn{
		color: #fff;
        justify-content: center;
        font-size: 0;
        border: none;padding: 0;
	}
	.card-icon{
		color: var(--color-input-name-bg);
        font-size: 0;
        font-weight: 500;
	}
    .menu-icon {
        width: 32px;
        height: 43px;
        cursor: pointer;
        padding: 8px 0;
        margin-left: 10px;
        z-index: 99999;
    }

        .menu-icon span {
            display: block;
            margin: 0 auto 15px;
            width: 30px;
            height: 3px;
            background-color: var(--s-color);
            -webkit-transition-duration: 0;
            -moz-transition-duration: 0;
            -ms-transition-duration: 0;
            -o-transition-duration: 0;
            transition-duration: 0;
            -webkit-transition-delay: 0.2s;
            -moz-transition-delay: 0.2s;
            -ms-transition-delay: 0.2s;
            -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
            top: 12px;
            left: 0;
            position: relative;
            border-radius: 6px;
        }

            .menu-icon span::after, .menu-icon span::before {
                display: block;
                content: '';
                position: absolute;
                width: 30px;
                height: 3px;
                background-color: var(--s-color);
                -webkit-transition-property: margin, -webkit-transform;
                -webkit-transition-duration: 0.2s;
                -moz-transition-duration: 0.2s;
                -ms-transition-duration: 0.2s;
                -o-transition-duration: 0.2s;
                transition-duration: 0.2s;
                -webkit-transition-delay: 0.2s, 0;
                -moz-transition-delay: 0.2s, 0;
                -ms-transition-delay: 0.2s, 0;
                -o-transition-delay: 0.2s, 0;
                transition-delay: 0.2s, 0;
                border-radius: 6px;
            }

        .menu-icon.active span {
            background-color: transparent;
        }

            .menu-icon.active span::before, .menu-icon.active span::after {
                margin-top: 0px;
                -webkit-transition-delay: 0, 0.2s;
                -moz-transition-delay: 0, 0.2s;
                -ms-transition-delay: 0, 0.2s;
                -o-transition-delay: 0, 0.2s;
                transition-delay: 0, 0.2s;
            }

            .menu-icon.active span::before {
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
            }

            .menu-icon.active span::after {
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -o-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }

    .mainvisual .mvs_slider .container {
        height: 268px;
        flex-direction: unset;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 20px;
    }

    .mvs_content {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 50px;
        max-width: unset;
        text-align: left;
        padding: 0;
        transform: none;
    }

        .mvs_content .mvs_ttl {
            font-size: 24px;
            line-height: 1.2;
            margin-bottom: 10px;
        }

    .main_slide .slick-prev, .main_slide .slick-next {
        background-size: 60px;
    }

    .main_slide .slick-arrow {
        width: 60px;
        height: 30px;
        bottom: 10px;
        top: unset;
    }

    .main_slide .slick-prev {
        right: 55%;
        left: unset;
    }

    .main_slide .slick-next {
        left: 55%;
    }

    .slide_ttl {
        width: 100%;
        font-size: 11px;
        line-height: 1.4;
        margin: 0;
        padding: 0;
        max-width: 300px;
    }

    .btn_slider {
        position: static;
        margin-top: 15px;
    }

        .btn_slider a {
            font-size: 14px;
            padding: 10px 24px;
            border-radius: 12px;
        }

    .arrow {
        width: 30px;
        height: 30px;
        top: auto;
        bottom: 20px;
        transform: none;
    }

        .arrow.left {
            left: 20px;
        }

        .arrow.right {
            right: 20px;
        }

    .box01 {
        padding: 40px 20px 160px 20px;
    }

    .about_main {
        max-width: 100%;
        padding: 0;
        position: relative;
    }

    .main-container {
        background-color: #f9f6ef;
        border-radius: 12px;
        padding: 30px 25px 20%;
        max-width: 100%;
        margin: 0 auto;
        box-shadow: none;
        overflow: visible;
        position: relative;
        z-index: 2;
    }

    .about-text {
        max-width: 100%;
    }

        .about-text .subheading {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .about-text h2 {
            font-size: 26px;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .about-text p {
            font-size: 14px;
            margin-right: 0;
            line-height: 1.5;
        }

    .about-image {
        position: absolute;
        left: 5%;
        top: 82%;
        width: 90%;
        height: 230px;
        z-index: 1;
    }

        .about-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            display: block;
        }

    .box02 {
        padding: 40px 20px;
    }

    .about-text-b02 h2 {
        font-size: 28px;
    }

    .grid-box02 {
        flex-wrap: wrap;
        gap: 7px;
    }

    .grid-item {
        width: 100%;
    }

        .grid-item:nth-child(1) {
            order: 2;
            width: 49%;
        }

        .grid-item:nth-child(3) {
            order: 3;
            width: 49%;
        }

        .grid-item.text-image {
            order: 1;
            width: 100%;
            gap: 10px;
        }

    .text-box {
        height: auto;
        padding: 40px 16px;
    }

        .text-box h3 {
            font-size: 22px;
        }

        .text-box p {
            font-size: 14px;
            margin: 0;
        }

    .grid-item img,
    .under-text-img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .box03 {
        padding: 40px 20px;
    }

    .service-grid {
        display: unset;
    }

    .service-item {
        padding: 20% 5%;
    }

        .service-item:last-child {
            padding: 20% 5% 0;
        }

    .bg-icon {
        transform: translateX(-50%) translateY(28%);
        top: -20px;
    }

    .service-item h3 {
        font-size: 26px;
    }

    .service-item p {
        font-size: 16px;
    }

    .box04 {
        padding: 40px 20px;
    }

        .box04 .declare_container {
            flex-wrap: wrap;
        }

        .box04 .declare-image {
            width: 100%;
            padding-bottom: 15px;
        }

        .box04 .about-text .subheading {
            font-size: 12px;
        }

        .box04 .about-text h2 {
            font-size: 24px;
        }

        .box04 .about-text p {
            margin: 0 6% 0 0;
        }

    .box05 {
    }

    .giftcard-container {
        flex-direction: row;
        align-items: stretch;
        align-items: center;
        justify-content: center;
        gap: unset;
        padding: 40px 20px;
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .image-left {
        flex: 1 1 50%;
        text-align: center;
        position: relative;
        right: 0;
    }

    .giftcard-img {
        width: 61%;
        max-width: 160px;
        transform: rotate(0deg);
        position: absolute;
        top: 54%;
        left: 30%;
    }

    .giftcard-text {
        flex: none;
        text-align: left;
        padding: 0 60px 0 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 60%;
    }

        .giftcard-text .sub {
            font-size: 12px;
            margin-bottom: 5px;
        }

        .giftcard-text h2 {
            font-size: 24px;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .giftcard-text .desc {
            display: none;
        }

    .btn-buy {
        margin-top: 20px;
        font-size: 16px;
        padding: 12px 30px;
        display: inline-block;
        width: 90%;
        text-align: center;
        color: #fff;
    }

    .bg-nails-left {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        transform: scale(1.8);
        transform-origin: bottom left;
        object-fit: contain;
        z-index: 1;
    }

    .bg-nails-right {
        display: none;
    }

    .top-right-logo {
        width: 80px;
        top: 3%;
        right: 0%;
        z-index: 4;
    }

    .box06 {
        padding: 40px 20px;
    }

        .box06 .declare-image {
            width: 100%;
            ;
        }

        .box06 .about-text .subheading {
            font-size: 12px;
        }

    .gallery-b07 {
            grid-template-columns: repeat(1, 1fr);

    }

    .title_inner {
        font-size: 32px;
        margin: 16px 0;
    }

    .box07 .about-text-b07 .subheading {
        font-size: 12px;
        margin-bottom: 0;
    }

    .box07 .about-text-b07 h2 {
        font-size: 24px;
        margin-bottom: 0;
    }

    .box07 {
    }

        .box07 .center-info p {
            font-size: 16px;
        }

    .gallery-item-b07 img {
        height: 210px;
    }

    .overlay-b07 .b07-hoasen {
        margin: 5px;
    }

    .overlay-b07 {
        padding:20px 20px 0;
    }

    .overlay-bottom-b07 {
        height: 35px;
        border-top: 1px solid #fff;
    }

    .gallery-item-b07:nth-child(odd) .label-area {
        left: 0;
        right: auto;
    }
	.overlay-b07 p {
		margin: 0;
		font-size: 14px;
	}
    .branch-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: unset;
    }

    .overlay-b07 {
        gap: unset;
    }

    .box08 {
        padding: 10px;
    }

        .box08 .gallery-b08 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: unset;
        }
    /* SERVICES */

    .service-section {
        padding: 20px 20px;
    }

    .service-inner {
        display: block;
        text-align: center;
    }

    .service-images {
        position: relative;
        width: 100%;
        max-width: 350px;
        margin: 0 0 0 auto !important;
    }

    .main-img {
        width: 80%;
        border-radius: 10px;
        display: block;
        left: 25%;
    }

    .sub-img {
        width: 60%;
        position: absolute;
        bottom: -20px;
        left: -20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        z-index: 2;
    }

    .right-sub {
        left: 0;
        right: 0;
    }

    .service-content {
        width: 100%;
        padding: 76px 0 0 0 !important;
        max-width: 100%;
        margin: 0 auto;
        text-align: left;
    }

    .even-style {
        text-align: left;
        padding: 0;
    }

    .service-block:nth-child(even) .service-content {
        text-align: left !important;
        padding: 16px 0 0 0;
    }
	.service-heading ,.service-content ul li {
		flex-direction: row !important;
	}
    .heading-even {
        justify-content: left;
        display: flex;
        flex-direction: row-reverse;
    }

        .heading-even .sub-title,
        .heading-even .main-title {
            text-align: left;
        }

    .align-right {
        text-align: left;
    }

        .align-right li {
            justify-content: flex-start;
        }

    .main-title {
        font-size: 24px;
        white-space: nowrap;
    }

    .align-right li::after {
        margin-left: 8px;
        display: none;
    }

    .align-right li::before {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url('/assets/images/Tick Square.svg');
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 8px;
    }

    /* #gnavi {
  position: fixed;
  margin: 0;
  top: 70px;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  height: calc(100% - 90px);
  width: 100%;
  padding: 30px 4%;
  overflow: auto;
  display: none;
} */

    .box09 {
        padding: 40px 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        padding: 20px;
    }

    #main {
        padding: 0;
        margin-top: 30px;
    }

    #main, #footer {
        min-width: 100%;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 12px;
    }

    .footer-subscribe {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .background-text {
        font-size: 35px;
    }

    .subscribe-text {
        font-size: 16px;
        line-height: 1.2;
        text-align: left;
    }

    .subscribe-input {
        flex-grow: 1;
        width: 100%;
        min-width: 0;
    }

    .subscribe-btn {
        font-size: 12px;
        padding: 8px 12px;
        align-self: flex-end;
        border-radius: 4px;
        letter-spacing: 0.1em;
    }

    .footer-middle {
        background: #f9f7ee url(/assets/images/Footer-mobile.png) no-repeat center center;
        padding: 50px 20px 40px;
        background-position: center;
        background-size: cover;
    }

    .footer-logo {
        width: 140px;
        margin: 0 auto 40px;
        display: block;
    }

    .footer-menu {
        display: flex;
        flex-direction: column;
        gap: 22px;
        padding: 0;
        margin: 0;
    }

        .footer-menu li {
            position: relative;
            text-align: center;
        }

            .footer-menu li::after {
                content: '›';
                position: absolute;
                right: -20px;
                color: #002440;
                font-weight: bold;
                padding-left: 10px;
            }

            .footer-menu li a {
                font-size: 16px;
                font-weight: 500;
                color: #002440;
                text-decoration: none;
            }

    .footer-social {
        margin-top: 40px;
        justify-content: center;
        display: flex;
        gap: 40px;
        position: static;
        transform: none;
    }

        .footer-social a img {
            width: 26px;
            height: 26px;
        }
}

@media (max-width: 1366px) and (min-width: 1024px) {
    .giftcard-container {
        gap: 40px;
        padding: 80px 20px;
    }

    .giftcard-text h2 {
        font-size: 36px;
    }

    .giftcard-text .desc {
        font-size: 15px;
        padding: 0 47% 0 0;
    }

    .btn-buy {
        padding: 14px 50px;
        font-size: 20px;
    }

    .giftcard-img {
        width: 90%;
    }

    .bg-nails-right {
        width: 32%;
    }

    .image-left {
        left: 5%;
    }

    .overlay-b07 {
        gap: 5px;
    }
}

.scroll-container {
            width: 100%;
            overflow: hidden;
            background: linear-gradient(135deg, #d4a574, #c49660);
            position: relative;
            height: 50px;
            display: flex;
            align-items: center;
        }

        .scroll-content {
            display: flex;
            align-items: center;
            white-space: nowrap;
            animation: scroll 30s linear infinite;
            gap: 40px;
        }

        .scroll-item {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .scroll-item a {
            color: #2c1810;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 8px 16px;
            border-radius: 4px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .scroll-item a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .bullet {
            color: #2c1810;
            font-size: 18px;
            font-weight: bold;
        }

        @keyframes scroll {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Pause animation on hover */
        .scroll-container:hover .scroll-content {
            animation-play-state: paused;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .scroll-item a {
                font-size: 14px;
                padding: 6px 12px;
            }
            
            .scroll-container {
                height: 50px;
            }
        }
