#subpage-header{
    padding-top: var(--header-height);
    &.is-post{
        padding-top: 0;
    }
    .inner{
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px 5%;
    }
}
#subpage {

    .text-red {
        color: #da241c;
        font-weight: bold;
    }

    .bg-light-gray {
        background-color: #f9f9f9;
    }

    .bg-blue {
        background-color: #6a9bd1;
    }

    .bg-blue-dark {
        background-color: #517fb5;
    }

    .bg-gray-light {
        background-color: #f7f9fc;
    }

    .bg-surface-dark {
        background-color: var(--color-surface);
        .title{
            color: #fff;
        }
    }

    .w-50 {
        width: 50% !important;
    }

    .w-45 {
        width: 45% !important;
    }

    .w-55 {
        width: 55% !important;
    }

    .w-25 {
        width: 25% !important;
    }

    .shop-header-wrap{
        position:relative;
        overflow:hidden;
        color:#fff;
        .shop-header-bg-slider{
            position:absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
            z-index:0;
            
            .splide__track, .splide__list, .splide__slide {
                height: 100% !important;
            }
            img {
                width: 100%;
                height: 100%;
                object-fit: cover !important;
                object-position: center !important;
                display: block;
            }
        }
        .overlay{
            position:absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
            background:rgba(0,0,0,0.4);
            z-index:1;
        }
        .shop-header {
            text-align: center;
            padding: 60px 5% 40px;
            position:relative;
            z-index:2;
            padding-top:200px;
            padding-bottom:200px;
            text-shadow:0 1px 4px rgba(0,0,0,0.8);

            .title {
                font-family: var(--font-serif);
                font-size: clamp(2rem, 4vw, 3rem);
                margin-bottom: 10px;
                color:#fff;
            }

            .subtitle {
                color: var(--color-text-muted);
                font-size: 1.1rem;
                color:#fff;
            }
        }
        @media (max-width: 768px) {
            .shop-header {
                padding-top:80px;
                padding-bottom:50px;
            }
        }
    }

    /* Slider Section */
    .shop-slider-section {
        padding-top: 0;
        .container--fluid {
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }
    }

    /* Facility Section */
    #facility {
        .items {
            display: flex;
            flex-direction: column;
            gap: 60px;

            .item {
                display: flex;
                align-items: center;
                gap: 5%;

                &.reverse {
                    flex-direction: row-reverse;
                }

                .image {
                    flex: 1;
                    border-radius: 8px;
                    overflow: hidden;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                }

                .image img {
                    width: 100%;
                    height: auto;
                    aspect-ratio: 4/3;
                    object-fit: cover;
                    transition: transform var(--transition-slow);
                }

                .image:hover img {
                    transform: scale(1.05);
                }

                .content {
                    flex: 1;
                    padding: 20px 0;

                    .text {
                        color: #fff;
                        line-height: 1.8;
                    }
                }
            }
        }

        .map {
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;

            .title {
                font-family: var(--font-serif);
                font-size: 1.8rem;
                margin-bottom: 20px;
                color: #fff;
            }

            .image {
                max-width: 800px;
                margin: 0 auto;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            }

            .image img {
                width: 100%;
                height: auto;
                display: block;
            }
        }

        @media (max-width: 960px) {
            .items {
                .item {
                    flex-direction: column;
                    gap: 30px;

                    &.reverse {
                        flex-direction: column;
                    }
                }
            }
        }
    }

    /* --- Plan Section --- */
    #plan {
        .main {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 40px;

            .card {
                background: #fff;
                border: 1px solid #ccc;
                box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
                transition: transform var(--transition-normal), box-shadow var(--transition-normal);

                .header {
                    display: flex;
                    align-items: baseline;
                    padding: 12px 20px;
                    color: #fff;

                    .title {
                        font-size: 1.5rem;
                        font-weight: bold;
                        margin-right: 15px;
                        margin-bottom: 0;
                        color: #fff;
                        font-family: var(--font-sans);
                        .reserve-text{
                            font-size: 0.8em;
                            margin-left: 10px;
                        }
                    }

                    .desc {
                        font-size: 0.95rem;
                        margin: 0;
                    }
                }

                .header.green {
                    background-color: #6d8e20;
                }

                .header.orange {
                    background-color: #c47610;
                }

                .header.teal {
                    background-color: #128994;
                }

                .header.pink {
                    background-color: #df6881;
                }

                .body {
                    display: flex;
                    padding: 15px;
                    gap: 15px;

                    .image {
                        width: 280px;
                        flex-shrink: 0;
                    }

                    .image img {
                        width: 100%;
                        height: auto;
                        display: block;
                    }

                    .tables {
                        flex: 1;
                        display: flex;
                        gap: 15px;

                        .table {
                            border-collapse: collapse;
                            width: 100%;
                            border: 1px solid #666;
                            background-color: #fff;

                            & th,
                            & td {
                                border: 1px solid #666;
                                padding: 8px;
                                text-align: center;
                                color: var(--color-text-main);
                            }

                            & th {
                                font-weight: normal;
                                font-size: 0.95rem;
                            }

                            &.content {
                                flex: 1.1;

                                .td-list {
                                    text-align: center;

                                    .list {
                                        list-style: none;
                                        padding: 0;
                                        margin: 0;
                                        text-align: left;
                                        display: inline-block;

                                        & li {
                                            font-size: 0.9rem;
                                            margin-bottom: 4px;
                                            text-indent: -1em;
                                            padding-left: 1em;
                                        }

                                        & li::before {
                                            content: '・';
                                            color: #333;
                                        }
                                    }
                                }
                            }

                            &.price {
                                flex: 0.9;

                                .price-label {
                                    font-size: 0.85rem;
                                    vertical-align: middle;
                                    line-height: 1.4;
                                    white-space: pre-line;
                                }

                                .price-val {
                                    vertical-align: middle;

                                    .price-main {
                                        display: block;
                                        font-size: 1.8rem;
                                        color: #da241c;
                                        font-weight: bold;
                                        line-height: 1.2;
                                    }
                                }

                            }

                            .bg-yellow {
                                background-color: #feef8c;
                            }

                            .bg-orange {
                                background-color: #f7bfb1;
                            }

                            .bg-blue {
                                background-color: #dbeaf3;
                            }

                        }
                    }

                }
            }

            .card:hover {
                transform: translateY(-8px);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            }

            @media (max-width: 1024px) {
                .card {
                    .body {
                        flex-direction: column;

                        .tables {
                            flex-direction: column;
                        }

                        .image {
                            width: 100%;
                            max-width: 400px;
                            margin: 0 auto;
                        }
                    }
                }
            }

            @media (max-width: 600px) {
                .card{
                    .header {
                        flex-direction: column;
                        align-items: flex-start;
                        gap: 5px;
                        font-size: 1rem;

                        .title {
                            margin-right: 0;
                            .reserve-text{
                                margin-left: 0px;
                            }
                        }
                    }
                }

            }
        }
    }

    /* Drink Section Section */
    #drink-free {
        max-width: 1000px;
        margin: 0 auto;

        .note {
            background: #fff;
            border-radius: 8px;
            padding: 20px 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            list-style: none;
            text-align: left;

            & li {
                position: relative;
                padding-left: 1em;
                margin-bottom: 5px;
                font-size: 0.95rem;
                color: var(--color-text-main);
                line-height: 1.6;
            }

            & li::before {
                content: '・';
                position: absolute;
                left: 0;
            }

            & li:last-child {
                margin-bottom: 0;
            }

            &.bottom {
                margin-top: 20px;
                margin-bottom: 0;
                font-size: 0.9rem;
                color: var(--color-text-muted);
            }
        }

        .main {
            display: flex;
            gap: 20px;

            .block {
                background: #fff;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                display: flex;
                flex-direction: column;
                transition: transform var(--transition-normal), box-shadow var(--transition-normal);

                .header {
                    padding: 15px;
                    text-align: center;
                    color: #fff;
                    font-size: 1.1rem;
                    font-weight: bold;
                }

                .body {
                    padding: 0;
                    flex: 1;
                    display: flex;
                    flex-direction: column;

                    .drink-table {
                        width: 100%;
                        border-collapse: collapse;
                        height: 100%;

                        & th,
                        & td {
                            border: 1px solid #eee;
                            padding: 20px;
                        }

                        & th {
                            text-align: center;
                            font-weight: bold;
                            color: var(--color-text-main);
                        }

                        & td {
                            vertical-align: top;
                        }

                        .drink-list {
                            display: grid;
                            grid-template-columns: repeat(2, 1fr);
                            gap: 10px;
                            list-style: none;
                            padding: 0;
                            margin: 0;
                            font-size: 0.95rem;
                            color: var(--color-text-main);

                            & li {
                                line-height: 1.4;
                            }
                        }
                    }

                    .drink-extend {
                        display: flex;
                        flex-direction: column;
                        height: 100%;

                        .item {
                            flex: 1;
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            align-items: center;
                            padding: 30px 20px;
                            text-align: center;
                            border: 1px solid #eee;
                            border-top: none;

                            &:first-child {
                                border-top: 1px solid #eee;
                            }

                            & h4 {
                                font-size: 1rem;
                                font-weight: bold;
                                color: var(--color-text-main);
                                margin-bottom: 10px;
                            }

                            .price {
                                font-size: 0.9rem;
                                color: var(--color-text-muted);
                            }

                            .price-val {
                                font-size: 1.3rem;
                            }
                        }
                    }


                }
            }

            .block:hover {
                transform: translateY(-8px);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            }

            .block.menu {
                flex: 2;
            }

            .block.extend {
                flex: 1;
            }

        }

        @media (max-width: 768px) {
            .main {
                flex-direction: column;

                .drink-table,
                .drink-table tbody,
                .drink-table tr,
                .drink-table th,
                .drink-table td {
                    display: block;
                    width: 100% !important;
                }
            }
        }
    }

    /* menu Section */
    #menu {
        .menu-category {
            margin-bottom: 50px;

            .menu-items {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 20px;

                .menu-item {
                    background-color: #ffffff;
                    border-radius: 12px;
                    padding: 20px 15px;
                    text-align: center;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
                    position: relative;
                    border: none;
                    transition: transform var(--transition-normal), box-shadow var(--transition-normal);

                    .image {
                        width: 100px;
                        height: 100px;
                        margin: 0 auto 15px;
                        border-radius: 50%;
                        background-color: #e8eaed;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        overflow: hidden;

                        & img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }

                        .image-placeholder {
                            color: #9aa0a6;
                            font-size: 0.9rem;
                            font-weight: 500;
                        }
                    }

                    .name {
                        font-size: 1.1rem;
                        font-weight: 700;
                        color: var(--color-text-main);
                        margin-bottom: 8px;
                    }

                    .price-wrapper {
                        display: flex;
                        align-items: baseline;
                        justify-content: center;
                        gap: 8px;

                        .unit {
                            font-size: 0.85rem;
                            color: #8c8c8c;
                            margin-bottom: 0;
                        }

                        .price {
                            font-size: 1.3rem;
                            font-weight: 700;
                            color: #e54d4d;
                            margin-bottom: 0;
                        }
                    }
                }

                .menu-item:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
                }
            }

        }

        .menu-item__badge {
            position: absolute;
            top: -10px;
            left: 20px;
            background-color: #ffaa00;
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .menu-category {
                .menu-items {
                    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                    gap: 15px;

                    .menu-item {
                        .name {
                            font-size: 1rem;
                        }

                        .price-wrapper {
                            .unit {
                                font-size: 0.8rem;
                            }

                            .price {
                                font-size: 1rem;
                            }
                        }
                    }
                }
            }
        }
    }

    /* payment Section */
    #payment {
        .payment-wrapper {
            max-width: 1000px;
            margin: 0 auto;

            .lead {
                text-align: center;
                color: var(--color-text-main);
                margin-bottom: 30px;
            }

            .cards {
                display: grid;
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 15px;

                .card {
                    background: #fff;
                    border-radius: 8px;
                    padding: 25px;
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                    transition: transform var(--transition-normal), box-shadow var(--transition-normal);

                    .card__title {
                        font-size: 1.1rem;
                        font-weight: bold;
                        color: var(--color-text-main);
                        border-bottom: 1px dashed #eee;
                        padding-bottom: 15px;
                        margin-bottom: 20px;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                    }

                    .card__items {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 10px;

                        .item {
                            display: inline-block;
                            padding: 6px 12px;
                            border: 1px solid #e0e0e0;
                            border-radius: 4px;
                            font-size: 0.9rem;
                            color: var(--color-text-main);
                            background: #fff;
                            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
                        }
                    }
                }

                .card:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
                }
            }

            .note {
                text-align: right;
                font-size: 0.85rem;
                color: var(--color-text-muted);
            }
        }
    }

    /* Included in Price Section */
    #included {
        .included-wrapper {
            max-width: 900px;
            margin: 0 auto;

            .grid {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 30px 20px;
                margin-top: 30px;

                .item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    width: 90px;
                    text-align: center;
                    transition: transform var(--transition-normal);

                    .icon {
                        width: 80px;
                        height: 80px;
                        background-color: #fff;
                        border: 2px solid #0056b3;
                        border-radius: 10px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 2.2rem;
                        margin-bottom: 12px;
                        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                        transition: box-shadow var(--transition-normal);
                    }

                    .text {
                        font-size: 0.85rem;
                        font-weight: bold;
                        color: var(--color-text-main);
                        line-height: 1.4;
                    }
                }

                .item:hover {
                    transform: translateY(-8px);
                }

                .item:hover .icon {
                    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
                }
            }
        }

        @media (max-width: 768px) {
            .included-wrapper {
                .grid {
                    justify-content: center;
                    gap: 20px 15px;
                }

                .item {
                    width: 75px;
                }

                .icon {
                    width: 65px;
                    height: 65px;
                    font-size: 1.8rem;
                    border-radius: 8px;
                }

                .text {
                    font-size: 0.75rem;
                }
            }
        }

    }

    /* Access Section */
    #access {
        .access-wrapper {
            display: flex;
            gap: 40px;
            align-items: center;

            .map {
                height: 400px;
                flex: 1;
            }

            .info {
                flex: 1;

                .info-table {
                    width: 100%;
                    border-collapse: collapse;

                    & th,
                    & td {
                        padding: 20px;
                        border-bottom: 1px solid var(--color-border);
                        text-align: left;
                    }

                    & th {
                        width: 30%;
                        background-color: var(--color-bg);
                        font-weight: bold;
                        color: var(--color-surface);
                    }

                    & tr:first-child {
                        border-top: 1px solid var(--color-border);
                    }
                }
            }
        }

        @media (max-width: 768px) {
            .access-wrapper {
                flex-direction: column;

                .info {
                    .info-table {

                        & th,
                        & td {
                            display: block;
                            width: 100%;
                        }

                        & th {
                            border-bottom: none;
                            padding-bottom: 10px;
                        }

                        & td {
                            padding-top: 0;
                            margin-bottom: 10px;
                        }
                    }
                }
            }
        }
    }

    /* --- Store Info Redesign (Match Drink Section) --- */
    #store-info {

        .store-wrapper {
            max-width: 1000px;
            margin: 0 auto;

            .main {
                display: flex;
                gap: 20px;

                .block {
                    background: #fff;
                    border-radius: 8px;
                    overflow: hidden;
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                    display: flex;
                    flex-direction: column;
                    transition: transform var(--transition-normal), box-shadow var(--transition-normal);

                    .header {
                        padding: 15px;
                        text-align: center;
                        color: #fff;
                        font-size: 1.1rem;
                        font-weight: bold;
                    }

                    .body {
                        padding: 0;
                        flex: 1;
                        display: flex;
                        flex-direction: column;
                    }
                }

                .block:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
                }

                .block.left {
                    flex: 1.2;

                    /* Left Side Table */
                    .left-content {
                        width: 100%;
                        border-collapse: collapse;

                        & th,
                        & td {
                            border: 1px solid #eee;
                            padding: 20px;
                        }

                        & th {
                            background-color: #f7f9fc;
                            text-align: center;
                            font-weight: bold;
                            color: var(--color-text-main);
                        }

                        & td {
                            vertical-align: middle;
                        }
                    }

                    .store-note {
                        padding: 20px 30px;
                        background: #fff;
                        border-top: 1px solid #eee;

                        & ul {
                            list-style: none;
                            padding: 0;
                            margin: 0;

                            & li {
                                position: relative;
                                padding-left: 1em;
                                margin-bottom: 5px;
                                font-size: 0.95rem;
                                color: var(--color-text-main);
                                line-height: 1.6;
                            }

                            & li::before {
                                content: '・';
                                position: absolute;
                                left: 0;
                            }

                            & li:last-child {
                                margin-bottom: 0;
                            }
                        }
                    }
                }

                .block.right {
                    flex: 1;

                    /* Right Side Tables Wrapper */
                    .right-content {
                        padding: 20px;
                        display: flex;
                        flex-direction: column;
                        gap: 20px;

                        /* Right Side Tables */
                        .right-table {
                            width: 100%;
                            border-collapse: collapse;

                            & th.bg-blue-main {
                                background-color: #6a9bd1;
                                color: #fff;
                                padding: 10px 15px;
                                font-weight: bold;
                                font-size: 1rem;
                                text-align: center;
                            }

                            & th.bg-blue-sub {
                                background-color: #f7f9fc;
                                color: var(--color-text-main);
                                padding: 12px;
                                width: 120px;
                                font-weight: bold;
                                text-align: center;
                                border: 1px solid #eee;
                            }

                            & td {
                                padding: 12px 15px;
                                font-size: 0.95rem;
                                text-align: center;
                                border: 1px solid #eee;
                            }
                        }

                        /* Store Extend */
                        .extend-row {
                            display: flex;
                            align-items: center;
                            font-size: 0.95rem;
                            border: 1px solid #eee;

                            .label {
                                background-color: #f7f9fc;
                                font-weight: bold;
                                color: var(--color-text-main);
                                padding: 12px;
                                width: 120px;
                                text-align: center;
                                border-right: 1px solid #eee;
                                margin: 0;
                            }

                            .price {
                                flex: 1;
                                text-align: center;
                                padding: 12px;
                                background-color: transparent;
                            }

                            .time {
                                padding: 12px 15px;
                                text-align: right;
                                background-color: transparent;
                            }
                        }
                    }

                }
            }
        }

        @media (max-width: 768px) {
            .store-wrapper {
                .main {
                    flex-direction: column;

                    .block.left {
                        .left-content {

                            & th,
                            & td {
                                display: block;
                                width: 100% !important;
                                border: none;
                            }

                            & th {
                                text-align: left;
                                border-bottom: 1px dashed #ccc;
                                padding: 12px 15px;
                            }

                            & td {
                                padding: 15px;
                                border-bottom: 1px solid #eee;
                            }

                            & tr:last-child td {
                                border-bottom: none;
                            }
                        }

                        .store-note {
                            padding: 20px;
                        }
                    }
                }

                .right-content {
                    padding: 15px;
                }
            }
        }
    }

    #cancel-policy {
        .text-box {
            background: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            max-width: 900px;
            margin: 0 auto;
        }

        & ul {
            margin: 20px 0;
            padding-left: 20px;

            & li {
                list-style-type: disc;
                margin-bottom: 10px;
            }
        }


    }

    #disclaimer {
        .text-box {
            background: transparent;
            padding: 40px;
            border-radius: 8px;
            box-shadow: none;
            max-width: 900px;
            margin: 0 auto;
            border: 1px solid var(--color-border);
        }
        & ul {
            margin: 20px 0;
            padding-left: 20px;

            & li {
                list-style-type: disc;
                margin-bottom: 10px;
            }
        }
    }

    #news {
        .list {
            max-width: 800px;
            margin: 0 auto;
            border-top: 1px solid var(--color-border);

            .item {
                display: flex;
                align-items: center;
                padding: 24px 0;
                border-bottom: 1px solid var(--color-border);
                transition: background-color var(--transition-fast);

                .meta {
                    display: flex;
                    align-items: center;
                    gap: 16px;
                    width: 250px;
                    flex-shrink: 0;

                    .date {
                        color: var(--color-text-muted);
                        font-size: 1rem;
                    }

                    .category {
                        font-size: 0.8rem;
                        padding: 4px 12px;
                        border-radius: 20px;
                        background-color: var(--color-border);
                        color: var(--color-text-main);
                        font-weight: 500;
                    }

                    .category[data-cat="info"] {
                        background-color: #333;
                        color: #fff;
                    }

                    .category[data-cat="menu"] {
                        background-color: #8b0000;
                        color: #fff;
                    }

                    .category[data-cat="open"] {
                        background-color: #e65100;
                        color: #fff;
                    }
                }

                .title {
                    font-size: 1.1rem;
                    font-weight: 400;
                    transition: color var(--transition-fast);
                }
            }
        }
        @media (max-width: 768px) {
            .list {
                .item {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 12px;

                    .meta {
                        width: auto;
                    }
            }
        }
    }

    }

    #news-single {
        .article {
            max-width: 800px;
            margin: 0 auto;
            .heading {
                .date {
                    font-size: 1rem;
                }
                .title {
                    font-size: 1.5rem;
                }
            }
            .content {
                margin-top: 40px;
            }
        }
        .back-archive {
            margin-top: 40px;
            text-align: center;
        }
    }
    #contact {
        .contact-wrapper {
            max-width: 800px;
            margin: 0 auto;
            .wpcf7 form {
                min-height: 500px;
                .form-item {
                    margin-bottom: 25px;
                    & input,
                    & textarea {
                        width: 100%;
                        padding: 10px;
                        border: 1px solid #ccc;
                        border-radius: 5px;
                        font-family: inherit;
                        font-size: 16px;
                    }
                     & label .req{
                        background-color: var(--color-accent);
                        color: #fff;
                        font-size: 12px;
                        padding: 2px 6px;
                        margin-left: 10px;
                        border-radius: 3px;
                     }
                }
                .form-submit{
                    display: flex;
                    justify-content: center;
                    & input{
                        width: 100%;
                        max-width: 300px;
                        padding: 15px 40px;
                        border-radius: 30px;
                        border: none;
                        background-color: var(--color-accent);
                        color: #fff;
                        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
                        &:hover{
                            transform: translateY(-2px);
                        }
                    }
                }
                .custom-message {
                    display: none;
                    text-align: center;
                    padding-top: 80px;
                }   
                &.sent{
                    .form-item,
                    .form-submit {
                        display: none;
                    }
                    .custom-message {
                        display: block;
                        line-height: 1.8;
                        & h3{
                            margin-bottom: 15px;
                        }
                        .tel{
                            font-size: 1.2rem;
                            font-weight: bold;
                            margin-top: 15px;
                        }
                    }
                    .wpcf7-response-output,
                    .wpcf7-response-output{
                        display: none !important;  
                    }
                }
                &.invalid{
                    .wpcf7-response-output,
                    .wpcf7-response-output{
                        display: none !important;  
                    }
                }
            }
        }
        @media (max-width: 768px) {
            .contact-wrapper {
                .wpcf7 form {
                    .form-item {
                        & input,
                        & textarea {
                            padding: 5px;
                        }
                    }
                    .form-submit{
                        & input{
                            padding: 10px 20px;
                        }
                    }
                }
            }
        }
    }
    #privacy{
        & h2{
            margin-bottom: 24px;
        }
        & h3{
            margin-top: 16px;
            margin-bottom: 8px;
        }
    }
}