/*
Theme Name: Molly Theme
Theme URI: https://www.mollynguyendesign.com/
Author: Thu Trang
Author URI: https://www.mollynguyendesign.com/
Description: Molly Nguyen Design
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mollynguyendesign.com
*/


:root {
    --molly-navy: #0d182a;
    --molly-navy-light: #17243a;
    --molly-gold: #c8a86e;
    --molly-white: #ffffff;

    --font-heading:'Playfair Display', serif;
    --font-body:'Montserrat', sans-serif;

}

body {
    margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
}

h1, h2, h3, h4, h5, h6{
	font-family: "Playfair Display", serif;
}

h3 a {
    text-decoration: none;
    color: #212529;
    font-size: 20px;
}

.molly-header {
    position: relative;
    z-index: 999;
    color: var(--molly-white);
    background: var(--molly-navy);
    font-family: "Montserrat", Arial, sans-serif;
}

.molly-header a {
    text-decoration: none;
}

/* Top bar */
.molly-header-top {
    min-height: 42px;
    display: flex;
    align-items: center;
    background: var(--molly-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.molly-contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 24px;
}

.molly-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    line-height: 1.3;
}

.molly-contact-item:hover {
    color: var(--molly-gold);
}

.molly-contact-item i {
    color: var(--molly-gold);
    font-size: 11px;
}

.molly-book-button {
    display: inline-flex;
    min-height: 30px;
    padding: 7px 17px;
    align-items: center;
    justify-content: center;
    color: var(--molly-navy);
    background: var(--molly-gold);
    border: 1px solid var(--molly-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.molly-book-button:hover {
    color: var(--molly-gold);
    background: transparent;
}

/* Main row */
.molly-main-nav {
    min-height: 76px;
    padding: 0;
    background: var(--molly-navy);
}

.molly-desktop-header {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 22px;
}

.molly-menu-side {
    min-width: 0;
}

.molly-menu-left .molly-menu-list {
    justify-content: flex-end;
}

.molly-menu-right .molly-menu-list {
    justify-content: flex-start;
}

.molly-menu-list,
.molly-mobile-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.molly-menu-list {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.6vw, 26px);
}

.molly-menu-list > li {
    position: relative;
    flex: 0 0 auto;
}

.molly-menu-list > li > a {
    display: flex;
    min-height: 76px;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.045em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.molly-menu-list > li > a:hover,
.molly-menu-list > .current-menu-item > a,
.molly-menu-list > .current-menu-ancestor > a {
    color: var(--molly-gold);
}

/* Dropdown */
.molly-menu-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    min-width: 210px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    background: var(--molly-navy-light);
    border-top: 2px solid var(--molly-gold);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transform: translateY(8px);
    transition: 0.2s ease;
}

.molly-menu-right .molly-menu-list > li:last-child .sub-menu {
    right: 0;
    left: auto;
}

.molly-menu-list li:hover > .sub-menu,
.molly-menu-list li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.molly-menu-list .sub-menu a {
    display: block;
    padding: 10px 16px;
    color: #fff;
    font-size: 11px;
    white-space: nowrap;
}

.molly-menu-list .sub-menu a:hover {
    color: var(--molly-gold);
    background: rgba(255, 255, 255, 0.04);
}

/* Logo */
.molly-logo-wrap {
    position: relative;
    z-index: 2;
    padding: 10px 0;
}

.molly-logo-link,
.molly-mobile-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--molly-gold);
}

.molly-logo-link {
    width: 205px;
    min-height: 62px;
    padding: 5px 18px;
    border: 1px solid var(--molly-gold);
    outline: 1px solid var(--molly-gold);
    outline-offset: -5px;
}

.molly-logo-image {
    display: block;
    width: auto;
    max-width: 205px;
    max-height: 62px;
    object-fit: contain;
}

.molly-logo-text-main {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1;
}

.molly-logo-text-sub {
    margin-top: 4px;
    font-family: Georgia, serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1;
}

/* Mobile */
.molly-mobile-header {
    min-height: 68px;
}

.molly-mobile-logo .molly-logo-image {
    max-width: 155px;
    max-height: 50px;
}

.molly-mobile-logo .molly-logo-text-main {
    font-size: 22px;
}

.molly-mobile-logo .molly-logo-text-sub {
    font-size: 10px;
}

.molly-main-nav .navbar-toggler {
    padding: 5px 8px;
    border-color: rgba(200, 168, 110, 0.75);
    border-radius: 0;
}

.molly-main-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(200, 168, 110, 0.25);
}

.molly-mobile-menu-inner {
    padding: 8px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.molly-mobile-menu-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.molly-mobile-menu-list a {
    display: block;
    padding: 12px 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.molly-mobile-menu-list a:hover,
.molly-mobile-menu-list .current-menu-item > a {
    color: var(--molly-gold);
}

.molly-mobile-menu-list .sub-menu {
    margin: 0;
    padding: 0 0 8px 14px;
    list-style: none;
}

.molly-mobile-menu-list .sub-menu a {
    padding: 8px 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    text-transform: none;
}

.molly-mobile-book-button {
    width: 100%;
    margin-top: 16px;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .molly-desktop-header {
        column-gap: 14px;
    }

    .molly-menu-list {
        gap: 11px;
    }

    .molly-menu-list > li > a {
        font-size: 9px;
        white-space: normal;
    }

    .molly-logo-link {
        width: 180px;
    }

    .molly-logo-image {
        max-width: 180px;
    }
}

@media (max-width: 991.98px) {
    .molly-header-top {
        min-height: 36px;
        padding: 6px 0;
    }

    .molly-contact-list {
        justify-content: center;
        gap: 7px 16px;
    }

    .molly-contact-item {
        font-size: 10px;
    }

    .molly-main-nav {
        min-height: 68px;
    }
}

@media (max-width: 575.98px) {
    .molly-contact-list {
        justify-content: flex-start;
    }

    .molly-contact-item span {
        max-width: 165px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .molly-mobile-logo .molly-logo-image {
        max-width: 135px;
    }
}
/* Hero */

.home-hero {
    padding: 0;

	    background: url("images/herohome.png");
    background-position: center;
    background-size: cover;
	min-height: 700px;
}

.home-hero-inner {
    
}

.min-vh-hero {
    min-height: 650px;
}

.hero-content {
    padding: 70px 0 70px 70px;
}

.hero-content h1 {
    margin-bottom: 28px;
    font-size: clamp(45px, 5.3vw, 75px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: var(--molly-gold);
}

.hero-description {
    margin-bottom: 30px;
    color: #333;
    font-family: "Playfair Display", serif;
    font-size: 21px;
    line-height: 1.5;
}

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

.btn-dark-custom,
.btn-outline-custom {
    min-width: 220px;
    padding: 13px 24px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.btn-dark-custom {
    color: #fff;
    background: var(--molly-navy);
    border: 1px solid var(--molly-navy);
}

.btn-dark-custom:hover {
    color: var(--molly-navy);
    background: var(--molly-gold);
    border-color: var(--molly-gold);
}

.btn-outline-custom {
    color: var(--molly-navy);
    background: rgba(255,255,255,0.4);
    border: 1px solid var(--molly-navy);
}

.btn-outline-custom:hover {
    color: #fff;
    background: var(--molly-navy);
}


/* =====================================================
   HOME PHILOSOPHY
===================================================== */

.home-philosophy {
    position: relative;
    padding: 95px 0 105px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(200, 166, 110, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #faf6ef 0%,
            #f8f3eb 55%,
            #f6eee3 100%
        );
}


/* Đường viền mảnh phía trên */

.home-philosophy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: calc(100% - 40px);
    max-width: 1320px;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(184, 138, 69, 0.58),
        transparent
    );
}


/* Ánh sáng mềm phía dưới */

.home-philosophy::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -180px;

    width: 520px;
    height: 320px;

    border-radius: 50%;

    background: rgba(200, 166, 110, 0.08);
    filter: blur(75px);

    pointer-events: none;
}


/* =====================================================
   DECORATION
===================================================== */

.home-philosophy-decoration {
    position: absolute;
    inset: 0;
    z-index: 0;

    overflow: hidden;
    pointer-events: none;
}


/* Chữ M chìm phía sau */

.home-philosophy-letter {
    position: absolute;
    right: 2%;
    bottom: -135px;

    color: transparent;

    font-family: "Playfair Display", serif;
    font-size: clamp(300px, 28vw, 530px);
    font-weight: 400;
    font-style: italic;
    line-height: 1;

    -webkit-text-stroke: 1px rgba(184, 138, 69, 0.10);

    transform: rotate(-7deg);

    user-select: none;
}


/* Các vòng tròn trang trí */

.home-philosophy-curve {
    position: absolute;
    top: -220px;
    right: 7%;

    width: 620px;
    height: 620px;

    border: 1px solid rgba(184, 138, 69, 0.12);
    border-radius: 50%;

    transform: rotate(-25deg);
}

.home-philosophy-curve::before,
.home-philosophy-curve::after {
    content: "";
    position: absolute;

    border-radius: 50%;
}

.home-philosophy-curve::before {
    inset: 58px;

    border: 1px solid rgba(184, 138, 69, 0.08);
}

.home-philosophy-curve::after {
    inset: 125px;

    border: 1px solid rgba(184, 138, 69, 0.055);
}


/* Nội dung nằm trên phần trang trí */

.home-philosophy .container {
    position: relative;
    z-index: 2;
}


/* =====================================================
   LAYOUT
===================================================== */

.home-philosophy-wrap {
    display: grid;
    grid-template-columns: minmax(210px, 0.6fr) minmax(0, 1.75fr);
    gap: 85px;

    align-items: start;
}


/* =====================================================
   HEADING LEFT
===================================================== */

.home-philosophy-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding-top: 13px;
}

.home-philosophy-number {
    margin-bottom: 25px;

    color: rgba(13, 24, 42, 0.38);

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;

    letter-spacing: 0.28em;
}

.home-philosophy-label {
    position: relative;

    padding-bottom: 22px;

    color: #b88a45;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-philosophy-label::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 48px;
    height: 1px;

    background: #b88a45;
}


/* =====================================================
   MAIN CONTENT
===================================================== */

.home-philosophy-main {
    position: relative;
}

.home-philosophy-content {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 30px;
}

.home-philosophy-icon {
    flex: 0 0 auto;

    margin-top: 15px;

    color: #c8a66e;

    font-size: 19px;
    line-height: 1;
}

.home-philosophy-text {
    width: 100%;
}


/* Nội dung chính */

.home-philosophy-text p {
    position: relative;

    margin: 0;

    color: #0d182a;

    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 3.05vw, 55px);
    font-weight: 400;
    line-height: 1.25;

    letter-spacing: -0.03em;

    transition:
        transform 0.4s ease,
        color 0.4s ease;
}

.home-philosophy-text p + p {
    margin-top: 4px;
}

.home-philosophy-text p:hover {
    transform: translateX(8px);
}


/* Câu cuối nổi bật */

.home-philosophy-text p:last-child {
    color: #bc8737;

    font-style: italic;
}


/* =====================================================
   SIGNATURE
===================================================== */

.home-philosophy-signature {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 42px;
    padding-left: 49px;
}

.home-philosophy-signature::before {
    content: "";

    width: 58px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #b88a45,
        rgba(184, 138, 69, 0.25)
    );
}

.home-philosophy-signature span {
    color: rgba(13, 24, 42, 0.54);

    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}


/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media (max-width: 1199px) {

    .home-philosophy-wrap {
        grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.7fr);
        gap: 60px;
    }

    .home-philosophy-text p {
        font-size: clamp(32px, 3.5vw, 48px);
    }

}


/* =====================================================
   RESPONSIVE SMALL TABLET
===================================================== */

@media (max-width: 991px) {

    .home-philosophy {
        padding: 75px 0 82px;
    }

    .home-philosophy-wrap {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-philosophy-heading {
        flex-direction: row;
        align-items: center;

        gap: 18px;

        padding-top: 0;
    }

    .home-philosophy-number {
        margin-bottom: 0;
    }

    .home-philosophy-label {
        padding: 0 0 0 55px;
    }

    .home-philosophy-label::after {
        top: 50%;
        bottom: auto;
        left: 0;

        width: 38px;

        transform: translateY(-50%);
    }

    .home-philosophy-letter {
        right: -80px;
        bottom: -70px;

        font-size: 350px;
    }

    .home-philosophy-curve {
        top: -210px;
        right: -170px;

        width: 520px;
        height: 520px;
    }

}


/* =====================================================
   RESPONSIVE MOBILE
===================================================== */

@media (max-width: 767px) {

    .home-philosophy {
        padding: 58px 0 64px;
    }

    .home-philosophy-wrap {
        gap: 30px;
    }

    .home-philosophy-heading {
        gap: 13px;
    }

    .home-philosophy-content {
        gap: 15px;
    }

    .home-philosophy-icon {
        margin-top: 9px;

        font-size: 14px;
    }

    .home-philosophy-text p {
        font-size: clamp(27px, 7.4vw, 38px);
        line-height: 1.3;

        letter-spacing: -0.02em;
    }

    .home-philosophy-text p + p {
        margin-top: 7px;
    }

    .home-philosophy-signature {
        gap: 13px;

        margin-top: 30px;
        padding-left: 29px;
    }

    .home-philosophy-signature::before {
        width: 40px;
    }

    .home-philosophy-signature span {
        font-size: 9px;
        letter-spacing: 0.17em;
    }

    .home-philosophy-letter {
        right: -85px;
        bottom: -20px;

        font-size: 245px;

        -webkit-text-stroke-color: rgba(184, 138, 69, 0.09);
    }

    .home-philosophy-curve {
        top: -155px;
        right: -175px;

        width: 390px;
        height: 390px;
    }

    .home-philosophy-curve::before {
        inset: 40px;
    }

    .home-philosophy-curve::after {
        inset: 90px;
    }

}


/* =====================================================
   RESPONSIVE SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .home-philosophy-number,
    .home-philosophy-label {
        font-size: 10px;
    }

    .home-philosophy-label {
        padding-left: 42px;

        letter-spacing: 0.17em;
    }

    .home-philosophy-label::after {
        width: 28px;
    }

    .home-philosophy-text p {
        font-size: 28px;
    }

    .home-philosophy-signature {
        padding-left: 15px;
    }

}

.about-home {
    position: relative;
    padding: 40px 0 45px;
    overflow: hidden;
    background: #F5F8FB;
}

.about-home::before {
    position: absolute;
    top: -160px;
    left: -150px;
    width: 380px;
    height: 380px;
    content: "";
    background: rgba(200, 168, 110, 0.06);
    border-radius: 50%;
}

.about-home::after {
    position: absolute;
    right: -180px;
    bottom: -200px;
    width: 440px;
    height: 440px;
    content: "";
    border: 1px solid rgba(200, 168, 110, 0.15);
    border-radius: 50%;
}

.about-home .container {
    position: relative;
    z-index: 2;
}

.about-home-content {
    max-width: 590px;
}

.about-home-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--molly-gold);
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-style: italic;
    line-height: 1.3;
}

.about-home-title {
    margin-bottom: 10px;
    color: var(--molly-navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(44px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.1;
}

.about-home-tagline {
    position: relative;
    margin-bottom: 26px;
    padding-bottom: 21px;
    color: var(--molly-gold);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-home-tagline::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85px;
    height: 1px;
    content: "";
    background: var(--molly-gold);
}

.about-home-text {
    margin-bottom: 16px;
    color: #626262;
    font-family: "Montserrat", sans-serif;
    line-height: 1.9;
}

.about-home-features {
    margin-top: 30px;
}

.about-home-feature {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    color: var(--molly-navy);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.about-home-feature i {
    color: var(--molly-gold);
    font-size: 17px;
}

.about-home-actions {
    display: flex;
    margin-top: 35px;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.about-home-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--molly-navy);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-home-link:hover {
    color: var(--molly-gold);
}

.about-home-link i {
    transition: transform 0.3s ease;
}

.about-home-link:hover i {
    transform: translateX(5px);
}

/* Khối hình ảnh */

.about-home-visual {
    position: relative;
    max-width: 610px;
    min-height: 580px;
    margin-left: auto;
}

.about-home-main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 500px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 24px 60px rgba(13, 24, 42, 0.12);
}

.about-home-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.about-home-main-image:hover img {
    transform: scale(1.04);
}

.about-home-small-image {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 45%;
    height: 220px;
    overflow: hidden;
    background: #fff;
    border: 4px solid #fff;
    box-shadow: 0 20px 45px rgba(13, 24, 42, 0.13);
}

.about-home-small-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-home-badge {
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 4;
    display: flex;
    width: 150px;
    height: 150px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    background: var(--molly-navy);
    border: 1px solid var(--molly-gold);
    border-radius: 50%;
    box-shadow: 0 16px 35px rgba(13, 24, 42, 0.17);
    text-align: center;
}

.about-home-badge strong {
    color: var(--molly-gold);
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
}

.about-home-badge span {
    margin-top: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.about-home-stat {
    position: absolute;
    right: 25px;
    bottom: 24px;
    z-index: 5;
    min-width: 180px;
    padding: 17px 22px;
    color: var(--molly-navy);
    background: rgba(255, 255, 255, 0.96);
    border-left: 3px solid var(--molly-gold);
    box-shadow: 0 12px 28px rgba(13, 24, 42, 0.1);
}

.about-home-stat strong {
    display: block;
    color: var(--molly-gold);
    font-family: "Playfair Display", serif;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.1;
}

.about-home-stat span {
    display: block;
    margin-top: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Tablet */

@media (max-width: 991.98px) {

    .about-home {
        padding: 75px 0;
    }

    .about-home-content {
        max-width: none;
    }

    .about-home-visual {
        min-height: 550px;
        margin: 10px auto 0;
    }
}

/* Mobile */

@media (max-width: 767.98px) {

    .about-home {
        padding: 60px 0;
    }

    .about-home-eyebrow {
        font-size: 24px;
    }

    .about-home-title {
        font-size: 43px;
    }

    .about-home-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-home-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .about-home-visual {
        min-height: 470px;
    }

    .about-home-main-image {
        width: 88%;
        height: 390px;
    }

    .about-home-small-image {
        width: 50%;
        height: 200px;
        border-width: 7px;
    }

    .about-home-badge {
        top: 40px;
        width: 115px;
        height: 115px;
        padding: 12px;
    }

    .about-home-badge strong {
        font-size: 30px;
    }

    .about-home-badge span {
        font-size: 8px;
    }

    .about-home-stat {
        right: 8px;
        bottom: 12px;
        min-width: 150px;
        padding: 14px 17px;
    }

    .about-home-stat strong {
        font-size: 24px;
    }
}

@media (max-width: 479.98px) {

    .about-home-feature {
        font-size: 12px;
    }

    .about-home-visual {
        min-height: 420px;
    }

    .about-home-main-image {
        width: 92%;
        height: 350px;
    }

    .about-home-small-image {
        width: 52%;
        height: 170px;
    }

    .about-home-badge {
        top: 28px;
        width: 100px;
        height: 100px;
    }

    .about-home-badge strong {
        font-size: 27px;
    }

    .about-home-stat {
        min-width: 135px;
    }
}

/* Services */

.home-services {
    background: #fff;
	padding: 40px 0;
}

.section-heading{
	padding-bottom: 30px;
}

.section-heading span.section-label{
    color: #C8A86E;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
}



.section-heading h2{
    font-family: "Playfair Display", serif;
	position: relative;
	padding-bottom: 28px;
}


.section-heading h2::after,
.order-process-heading::after,
.product-portfolio-heading::after,
.single-product .related.products > h2::after,
.single-product .up-sells > h2::after{
    content: " ";
	position: absolute;
	left: 50%;
	bottom: auto;
	background: url("images/titleline.png");
    background-position: center;
    background-size: cover;
	transform: translateX(-50%);

    width: 150px;
    display: block;
	max-width: 100%;
	aspect-ratio:120 / 18;
}



.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--molly-border);
    box-shadow: 0 8px 25px rgba(13,24,42,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 38px rgba(13,24,42,0.12);
}

.service-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
	object-position: center;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    position: relative;
    z-index: 2;
    display: flex;
    width: 54px;
    height: 54px;
    margin: -27px auto 0;
    align-items: center;
    justify-content: center;
    color: var(--molly-gold);
    background: var(--molly-navy);
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 18px;
}

.service-content {
    padding: 25px 28px 30px;
    text-align: center;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 23px;
    text-transform: uppercase;
}

.service-content p {
    min-height: 52px;
    color: var(--molly-gray);
}

.text-link {
    color: var(--molly-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

.text-link i {
    margin-left: 5px;
}

/* ==================================================
   Featured Collection Swiper
================================================== */

.featured-collections-slider-wrap {
    position: relative;
}

.featuredCollectionsSwiper {
    overflow: hidden;
    padding: 8px 4px 18px;
}

.featuredCollectionsSwiper .swiper-wrapper {
    align-items: stretch;
}

.featuredCollectionsSwiper .swiper-slide {
    height: auto;
}

.featuredCollectionsSwiper .collection-card {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.featuredCollectionsSwiper .collection-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.featuredCollectionsSwiper .collection-content h3 {
    display: flex;
    min-height: 2.8em;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.featuredCollectionsSwiper .collection-price {
    margin-top: auto;
}

/* Giá sale WooCommerce */
.collection-price del {
    margin-right: 5px;
    color: #999;
    font-size: 0.85em;
}

.collection-price ins {
    color: var(--molly-gold);
    text-decoration: none;
}

/* Nút điều hướng */
.featured-collection-prev,
.featured-collection-next {
    position: absolute;
    top: 43%;
    z-index: 10;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--molly-navy);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(200, 168, 110, 0.65);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(13, 24, 42, 0.13);
    font-size: 14px;
    transform: translateY(-50%);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.featured-collection-prev {
    left: -22px;
}

.featured-collection-next {
    right: -22px;
}

.featured-collection-prev:hover,
.featured-collection-next:hover {
    color: #fff;
    background: var(--molly-navy);
    border-color: var(--molly-navy);
}

.featured-collection-prev.is-hidden,
.featured-collection-next.is-hidden,
.featured-collection-prev.swiper-button-disabled,
.featured-collection-next.swiper-button-disabled {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Pagination */
.featured-collection-pagination {
    display: flex;
    min-height: 18px;
    margin-top: 15px;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.featured-collection-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    opacity: 1;
    background: #c9c9c9;
    border-radius: 50%;
    transition:
        width 0.25s ease,
        background-color 0.25s ease;
}

.featured-collection-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--molly-gold);
    border-radius: 20px;
}

/* Tablet */
@media (max-width: 991.98px) {

    .featured-collection-prev {
        left: 5px;
    }

    .featured-collection-next {
        right: 5px;
    }

    .featured-collection-prev,
    .featured-collection-next {
        top: 42%;
        width: 40px;
        height: 40px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {

    .featuredCollectionsSwiper {
        padding-right: 2px;
        padding-left: 2px;
    }

    .featured-collection-prev,
    .featured-collection-next {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .featured-collection-prev {
        left: 4px;
    }

    .featured-collection-next {
        right: 4px;
    }

    .featured-collection-pagination {
        margin-top: 10px;
    }
}

/* Collection */

.featured-collections {
    background: #fdfcfb;
	    padding: 40px 0;
}

.collection-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--molly-border);
    transition: transform 0.35s ease, box-shadow 0.35s ease;

    display:flex;
    flex-direction:column;
	border: 1px solid #efdcdc;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(13,24,42,0.1);
}

.collection-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-content {
    padding: 18px 12px;
    text-align: center;
	flex:1;
    display:flex;
    flex-direction:column;
}

.collection-content h3 {
    margin-bottom: 10px;
}

.collection-price {
    color: var(--molly-gold);
    font-weight: 600;
	margin-top:auto;
}

/* Why choose */

.why-choose {
    background: #f7f2eb;
	padding: 40px 0;
}

.feature-item {
    height: 100%;
    padding: 10px 15px;
}

.feature-icon {
    display: flex;
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    align-items: center;
    justify-content: center;
    color: var(--molly-gold);
    border: 1px solid var(--molly-gold);
    border-radius: 50%;
    font-size: 28px;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-item p {
    max-width: 240px;
    margin: 0 auto;
    color: var(--molly-gray);
}

/* Testimonial */

.home-testimonial {
    background: #fff;
	padding: 30px 0 40px;
}

.testimonial-box {
    max-width: 850px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 145px;
    height: 145px;
    overflow: hidden;
    border-radius: 50%;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-box blockquote {
    margin: 0 0 15px;
    color: #4d4d4d;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.65;
}

.testimonial-name {
    color: var(--molly-navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.strong-view{
    max-width:760px;
    margin:auto;
}

.strong-view .testimonial{
    display:flex;
    align-items:center;
    gap:30px;
}

.strong-view .testimonial-image{
    flex:0 0 120px;
}



.strong-view .wpmslider-viewport,.strong-view.wpmtst-default .wpmtst-testimonial{
	border: none!important;
}

.strong-view .testimonial-image img{
    border-radius:50%;
    object-fit:cover;
}

.wpm-testimonial-content{
    display:flex;
    flex-direction:column;
    justify-content:center;   /* canh giữa theo chiều dọc */
    min-height:140px;         /* bằng chiều cao avatar */
}

.wpmtst-testimonial-content{
    position:relative;
    min-height:150px;
    padding-left:180px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.wpmtst-testimonial-image{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
}

.wpmtst-testimonial-content > p{
    margin:0 0 12px;
	font-style: italic;
}

.wpmtst-testimonial-content > p::before{
    content:"“";
    color:var(--molly-gold);
    font-size:38px;
    line-height:0;
    vertical-align:-10px;
    margin-right:6px;
}

.wpmtst-testimonial-content > p::after{
    content:"”";
    color:var(--molly-gold);
    font-size:38px;
    line-height:0;
    vertical-align:-10px;
    margin-left:6px;
}

.strong-view .testimonial-name{
    font-family:"Montserrat";
    font-weight:600;
}

.strong-view .testimonial-quote{
    font-family:"Playfair Display";
    font-size:20px;
    font-style:italic;
}

.strong-view .wpmslider-pager{
    margin-top:30px;
}

.product-portfolio-section {
    padding: 40px 0 50px;
    background: #f8f4ef;
}

.product-portfolio-section .container-fluid {
    padding-right: 22px;
    padding-left: 22px;
}

.product-portfolio-heading {
    max-width: 760px;
    margin: 0 auto 45px;
	position: relative;
}

.product-portfolio-heading span.section-label {
    font-size: 22px;
}

.product-portfolio-heading h2 {
    margin-bottom: 15px;
    color: var(--molly-navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 500;
}

.product-portfolio-heading p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

/* Pinterest masonry */
.product-portfolio-masonry {
    column-count: 5;
    column-gap: 18px;
}

.product-portfolio-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    break-inside: avoid;
    vertical-align: top;
}

.product-portfolio-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #eee8df;
}

.product-portfolio-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

/* Overlay */
.product-portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    padding: 22px;
    align-items: flex-end;
    color: #fff;
    background:
        linear-gradient(
            180deg,
            rgba(13, 24, 42, 0.02) 30%,
            rgba(13, 24, 42, 0.82) 100%
        );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-portfolio-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(15px);
    transition: transform 0.35s ease;
}

.product-portfolio-title {
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1.25;
}

.product-portfolio-price {
    margin-top: 5px;
    color: var(--molly-gold);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.product-portfolio-price del {
    margin-right: 6px;
    color: rgba(255, 255, 255, 0.6);
}

.product-portfolio-price ins {
    color: var(--molly-gold);
    text-decoration: none;
}

.product-portfolio-view {
    display: inline-flex;
    margin-top: 13px;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-portfolio-link:hover .product-portfolio-image {
    transform: scale(1.05);
}

.product-portfolio-link:hover .product-portfolio-overlay {
    opacity: 1;
}

.product-portfolio-link:hover .product-portfolio-content {
    transform: translateY(0);
}

.product-portfolio-action {
    margin-top: 35px;
}

/* Tablet */
@media (max-width: 1199.98px) {

    .product-portfolio-masonry {
        column-count: 4;
    }
}

@media (max-width: 991.98px) {

    .product-portfolio-masonry {
        column-count: 3;
    }

    .product-portfolio-overlay {
        opacity: 1;
        background:
            linear-gradient(
                180deg,
                transparent 45%,
                rgba(13, 24, 42, 0.78) 100%
            );
    }

    .product-portfolio-content {
        transform: none;
    }
}

/* Mobile */
@media (max-width: 575.98px) {

    .product-portfolio-section {
        padding: 55px 0;
    }

    .product-portfolio-section .container-fluid {
        padding-right: 10px;
        padding-left: 10px;
    }

    .product-portfolio-masonry {
        column-count: 2;
        column-gap: 10px;
    }

    .product-portfolio-item {
        margin-bottom: 10px;
    }

    .product-portfolio-overlay {
        padding: 12px;
    }

    .product-portfolio-title {
        font-size: 15px;
    }

    .product-portfolio-price {
        font-size: 12px;
    }

    .product-portfolio-view {
        display: none;
    }
}

.footer-share {
    position: relative;
    padding: 15px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(200, 168, 110, 0.12),
            transparent 45%
        ),
        #101b32;
    border-bottom: 1px solid rgba(200, 168, 110, 0.22);
}


.footer-share-inner {
    position: relative;
    z-index: 2;
}

.footer-share-label {
    display: block;
    margin-bottom: 15px;
    color: var(--molly-gold);
    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 1;
}

.footer-share-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-share-link {
    display: inline-flex;
    width: 40px;
    height:40px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--molly-gold);
    background: transparent;
    border: 1px solid rgba(200, 168, 110, 0.4);
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.footer-share-link:hover {
    color: var(--molly-navy);
    background: var(--molly-gold);
    border-color: var(--molly-gold);
    transform: translateY(-3px);
}

.footer-copy-message {
    display: block;
    height: 18px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.footer-copy-message.is-visible {
    opacity: 1;
}

@media (max-width: 575.98px) {

    .footer-share {
        padding: 30px 0 25px;
    }

    .footer-share::before,
    .footer-share::after {
        display: none;
    }

    .footer-share-label {
        font-size: 29px;
    }

    .footer-share-list {
        gap: 10px;
    }

    .footer-share-link {
        width: 36px;
        height: 36px;
    }
}

/* Footer */

.site-footer {
    padding: 65px 0 0;
    color: rgba(255,255,255,0.75);
    background: var(--molly-navy);
}

.footer-logo {
    min-width: 180px;
    margin-bottom: 20px;
}

.footer-logo .brand-main {
    font-size: 26px;
}

.footer-about {
    max-width: 280px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--molly-navy);
    background: var(--molly-gold);
    border-color: var(--molly-gold);
}

.footer-title {
    margin-bottom: 20px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-menu,
.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li,
.footer-contact li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-menu a:hover {
    color: var(--molly-gold);
}

.newsletter-form {
    display: flex;
    border: 1px solid rgba(255,255,255,0.3);
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    padding: 11px 12px;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.55);
}

.newsletter-form button {
    width: 45px;
    color: var(--molly-navy);
    background: var(--molly-gold);
    border: 0;
}

.footer-bottom {
    display: flex;
    margin-top: 45px;
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.16);
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

.footer-bottom a:hover {
    color: var(--molly-gold);
}

/* Responsive */

@media (max-width: 991.98px) {

    .section-space {
        padding: 60px 0;
    }

    .header-top {
        text-align: center;
    }

    .header-contact {
        justify-content: center;
    }

    .header-booking {
        display: none;
    }

    .main-navbar {
        padding: 10px 0;
    }

    .navbar-brand {
        min-width: 165px;
    }

    .brand-main {
        font-size: 25px;
    }

    .brand-sub {
        font-size: 11px;
    }

    .main-navbar .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .main-navbar .menu-item > a {
        padding: 13px 5px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .home-hero {
        min-height: 600px;
        background: url("images/herohome.png");
        background-position: right;
        background-size: cover;
    }

    .min-vh-hero {
        min-height: 600px;
    }

    .hero-content {
        max-width: 600px;
        padding: 70px 20px;
    }

    .service-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {

    body {
        font-size: 14px;
    }

    .section-space {
        padding: 50px 0;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 br {
        display: none;
    }

    .header-contact a:nth-child(2) {
        display: none;
    }

    .home-hero .container {
        max-width: 100%;
        padding: 0;
    }

    .home-hero {
        min-height: 570px;
        background: url("images/herohome.png");
        background-position: right;
        background-size: cover;
    }

    .min-vh-hero {
        min-height: 570px;
    }

    .hero-content {
        padding: 60px 24px;
    }

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

    .hero-description {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-dark-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 290px;
    }

    .service-content {
        padding: 22px 18px 25px;
    }

    .collection-content h3 {
        font-size: 10px;
        line-height: 1.4;
    }

    .feature-item {
        padding: 5px;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        font-size: 23px;
    }

    .feature-item h3 {
        font-size: 11px;
    }

    .feature-item p {
        font-size: 11px;
    }

    .testimonial-box {
        text-align: center;
    }

    .testimonial-avatar {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 479.98px) {

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

    .section-heading h2 {
        font-size: 27px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .feature-item p {
        display: none;
    }
}

.footer-logo img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 80px;
    object-fit: contain;
	margin-bottom: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-contact li i {
    width: 14px;
    flex: 0 0 14px;
    margin-top: 5px;
    color: var(--molly-gold);
    text-align: center;
}

.footer-contact li a {
    color: #fff;
	text-decoration: none;
}

.footer-contact li a:hover {
    color: var(--molly-gold);
}

.footer-zalo {
    font-size: 13px;
    font-weight: 700;
}

.footer-newsletter-desc {
    font-size: 12px;
}

.footer-policy-links {
    display: flex;
    gap: 25px;
}

@media (max-width: 767.98px) {
    .footer-policy-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 20px;
    }
}

.order-process-section {
    position: relative;
    padding: 30px 0 40px;
    overflow: hidden;
    background:
        linear-gradient(
            rgba(252,249,245,.96),
            rgba(252,249,245,.96)
        ),
        url("images/lace-pattern.jpg") center/cover;
}

.order-process-section::before {
    position: absolute;
    top: 50%;
    left: -140px;
    width: 320px;
    height: 320px;
    content: "";
    border: 1px solid rgba(200, 168, 110, 0.18);
    border-radius: 50%;
    transform: translateY(-50%);
}

.order-process-section::after {
    position: absolute;
    right: -130px;
    bottom: -150px;
    width: 330px;
    height: 330px;
    content: "";
    background: rgba(200, 168, 110, 0.06);
    border-radius: 50%;
}

.order-process-section .container {
    position: relative;
    z-index: 2;
}

.order-process-heading {
    max-width: 760px;
    margin: 0 auto 45px;
	position: relative;
}

.order-process-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--molly-gold);
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-style: italic;
}

.order-process-heading h2 {
    position: relative;
    margin-bottom: 15px;
    color: var(--molly-navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4.4vw, 50px);
    font-weight: 500;
    line-height: 1.15;
}

.order-process-heading h2::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 115px;
    aspect-ratio: 7 / 1;
    content: "";
    background:
        url("assets/images/titleline.png")
        center / contain
        no-repeat;
    transform: translateX(-50%);
}

.order-process-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #626262;
    font-family: "Montserrat", sans-serif;
    line-height: 1.8;
}

.order-process-card {
    position: relative;
    height: 100%;
    min-height: 320px;
    padding: 42px 30px 34px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebe3d8;
    box-shadow: 0 14px 35px rgba(13, 24, 42, 0.06);
    text-align: center;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.order-process-card:hover {
    border-color: rgba(200, 168, 110, 0.7);
    box-shadow: 0 20px 45px rgba(13, 24, 42, 0.11);
    transform: translateY(-8px);
}

.order-process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    color: rgba(200, 168, 110, 0.16);
    font-family: "Playfair Display", serif;
    font-size: 54px;
    font-weight: 600;
    line-height: 1;
}

.order-process-icon {
    position: relative;
    z-index: 2;
    display: flex;
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    align-items: center;
    justify-content: center;
    color: var(--molly-gold);
    background: #fff;
    border: 1px solid var(--molly-gold);
    border-radius: 50%;
    font-size: 27px;
    transition:
        color 0.35s ease,
        background-color 0.35s ease;
}

.order-process-card:hover .order-process-icon {
    color: #fff;
    background: var(--molly-navy);
    border-color: var(--molly-navy);
}

.order-process-card h3 {
    margin-bottom: 16px;
    color: var(--molly-navy);
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;
}

.order-process-card p {
    margin: 0;
    color: #666;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.8;
}

.order-process-action {
    margin-top: 45px;
}

.order-process-button {
    display: inline-flex;
    min-width: 230px;
    min-height: 48px;
    padding: 12px 28px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--molly-navy);
    border: 1px solid var(--molly-navy);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.order-process-button:hover {
    color: var(--molly-navy);
    background: var(--molly-gold);
    border-color: var(--molly-gold);
}

@media (max-width: 991.98px) {

    .order-process-section {
        padding: 75px 0;
    }

    .order-process-card {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {

    .order-process-section {
        padding: 60px 0;
    }

    .order-process-heading {
        margin-bottom: 38px;
    }

    .order-process-eyebrow {
        font-size: 19px;
    }

    .order-process-heading p {
        font-size: 14px;
    }

    .order-process-card {
        min-height: auto;
        padding: 34px 24px 30px;
    }

    .order-process-card h3 {
        font-size: 25px;
    }
}

/* ==================================================
   FIX HEADER DESKTOP / MOBILE
================================================== */

/* Mặc định desktop */
.molly-desktop-header {
    display: grid;
}

.molly-mobile-header,
.molly-mobile-menu {
    display: none;
}

/* Mobile và tablet dưới 992px */
@media (max-width: 991.98px) {

    .molly-desktop-header {
        display: none !important;
    }

    .molly-mobile-header {
        display: flex !important;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }

    /*
     * Collapse menu vẫn phải để Bootstrap điều khiển.
     * Không đặt display:block ở đây.
     */
    .molly-mobile-menu.show {
        display: block;
    }
}

/* Desktop từ 992px */
@media (min-width: 992px) {

    .molly-desktop-header {
        display: grid !important;
    }

    .molly-mobile-header,
    .molly-mobile-menu {
        display: none !important;
    }
}

:root {
    --molly-navy: #0d182a;
    --molly-navy-light: #17243a;
    --molly-gold: #b78b45;
    --molly-gold-light: #d4b477;
    --molly-cream: #f8f6f2;
    --molly-white: #fff;
    --molly-text: #5e5e5e;
    --molly-border: rgba(183, 139, 69, .25);
}

/* ==============================
   General
============================== */

.molly-about-page {
    color: var(--molly-text);
    overflow: hidden;
}

.about-section {
    position: relative;
    padding: 120px 0;
}

.about-section-label,
.about-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--molly-gold);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1.5;
    text-transform: uppercase;
}

.about-section-label-light {
    color: var(--molly-gold-light);
}

.about-section-title {
    margin: 0 0 28px;
    color: var(--molly-navy);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 5.5vw, 76px);
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: .98;
}

.about-heading {
    max-width: 760px;
    margin: 0 auto 70px;
}

.about-heading p,
.about-heading-description {
    margin: 0;
    color: #777;
    font-size: 16px;
    line-height: 1.9;
}

.about-editor-content p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.95;
}

.about-editor-content p:last-child {
    margin-bottom: 0;
}

.molly-btn {
    display: inline-flex;
    min-height: 52px;
    padding: 12px 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--molly-gold);
    border-radius: 0;
    background: var(--molly-gold);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-decoration: none;
    text-transform: uppercase;
    transition: .35s ease;
}

.molly-btn:hover {
    border-color: var(--molly-navy);
    background: var(--molly-navy);
    color: #fff;
    transform: translateY(-2px);
}

.molly-btn-light {
    border-color: #fff;
    background: #fff;
    color: var(--molly-navy);
}

.molly-btn-light:hover {
    border-color: var(--molly-gold);
    background: var(--molly-gold);
}

.molly-btn-outline-light {
    border-color: rgba(255, 255, 255, .65);
    background: transparent;
    color: #fff;
}

.molly-btn-outline-light:hover {
    border-color: #fff;
    background: #fff;
    color: var(--molly-navy);
}

/* ==============================
   Hero
============================== */

.about-hero {
    position: relative;
    min-height: min(920px, 100vh);
    display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-hero-content {
    max-width: 780px;
    padding: 140px 0 100px;
    color: #fff;
}

.about-hero-content h1 {
    margin: 0 0 28px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(58px, 8vw, 108px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .86;
}

.about-hero-content p {
    max-width: 610px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
    line-height: 1.9;
}

.about-hero .about-eyebrow {
    color: var(--molly-gold-light);
}

.about-scroll-down {
    position: absolute;
    right: 50%;
    bottom: 35px;
    width: 25px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 20px;
    transform: translateX(50%);
}

.about-scroll-down span {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 3px;
    height: 8px;
    border-radius: 5px;
    background: #fff;
    transform: translateX(-50%);
    animation: aboutScroll 1.8s infinite;
}

@keyframes aboutScroll {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

/* ==============================
   Story
============================== */

.about-story {
    background: #fff;
}

.about-story-image {
    position: relative;
    max-width: 620px;
    padding: 0 50px 50px 0;
}

.about-story-image::before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 72%;
    height: 68%;
    background: var(--molly-cream);
    content: "";
}

.about-story-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 650px;
    display: block;
    object-fit: cover;
}

.about-story-year {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 25px;
    width: 160px;
    padding: 25px 20px;
    background: var(--molly-navy);
    color: #fff;
    text-align: center;
}

.about-story-year strong {
    display: block;
    color: var(--molly-gold-light);
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
}

.about-story-year span {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-quote {
    position: relative;
    margin: 38px 0 0;
    padding: 0 0 0 25px;
    border-left: 2px solid var(--molly-gold);
    color: var(--molly-navy);
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-style: italic;
    line-height: 1.45;
}

/* ==============================
   Philosophy
============================== */

.about-philosophy {
    padding: 135px 0;
    background:
        linear-gradient(rgba(13, 24, 42, .97), rgba(13, 24, 42, .97)),
        url("./assets/images/navy-texture.jpg") center/cover;
    text-align: center;
}

.about-philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-philosophy h2 {
    margin: 0;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(45px, 6.5vw, 88px);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 1.05;
}

.about-philosophy h2 em {
    display: block;
    color: var(--molly-gold-light);
    font-style: italic;
}

/* ==============================
   Timeline
============================== */

.about-journey {
    background: var(--molly-cream);
}

.about-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.about-timeline::before {
    position: absolute;
    top: 12px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: rgba(183, 139, 69, .45);
    content: "";
}

.about-timeline-item {
    position: relative;
    padding: 45px 15px 0;
    text-align: center;
}

.about-timeline-dot {
    position: absolute;
    z-index: 2;
    top: 5px;
    left: 50%;
    width: 15px;
    height: 15px;
    border: 4px solid var(--molly-cream);
    border-radius: 50%;
    background: var(--molly-gold);
    box-shadow: 0 0 0 1px var(--molly-gold);
    transform: translateX(-50%);
}

.about-timeline-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--molly-navy);
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
}

.about-timeline-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

/* ==============================
   Process
============================== */

.about-process {
    background: #fff;
}

.about-process-card {
    height: 100%;
    min-height: 310px;
    padding: 38px 28px;
    border: 1px solid var(--molly-border);
    transition: .4s ease;
}

.about-process-card:hover {
    border-color: var(--molly-navy);
    background: var(--molly-navy);
    color: #fff;
    transform: translateY(-8px);
}

.about-process-number {
    display: block;
    margin-bottom: 65px;
    color: var(--molly-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
}

.about-process-card h3 {
    margin: 0 0 16px;
    color: var(--molly-navy);
    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
    font-weight: 600;
    transition: .4s ease;
}

.about-process-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
}

.about-process-card:hover h3 {
    color: #fff;
}

/* ==============================
   Details
============================== */

.about-details {
    min-height: 720px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-details-content {
    max-width: 580px;
    padding: 100px 0;
    color: #fff;
}

.about-details-number {
    margin: 5px 0 10px;
    color: var(--molly-gold-light);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(78px, 10vw, 140px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: .9;
}

.about-details-content h2 {
    margin: 0 0 24px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 400;
    line-height: 1;
}

.about-details-content p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.9;
}

/* ==============================
   Atelier
============================== */

.about-atelier{
    background: var(--molly-cream);
}

.about-atelier-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

/* bỏ toàn bộ grid-row cũ */
.about-atelier-item,
.about-atelier-item:first-child,
.about-atelier-item:nth-child(4),
.about-atelier-item:last-child{
    margin:0;
    overflow:hidden;
    aspect-ratio:3/4;
    background:#f3f3f3;
    border-radius:4px;
}

.about-atelier-item img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .6s ease;
}

.about-atelier-item:hover img{
    transform:scale(1.06);
}

/* ==============================
   Worldwide
============================== */

.about-worldwide {
    background: #fff;
}

.about-world-map {
    position: relative;
}

.about-world-map img {
    width: 100%;
    display: block;
    opacity: .85;
}

.map-point {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--molly-gold);
    box-shadow: 0 0 0 7px rgba(183, 139, 69, .18);
}

.point-usa {
    top: 39%;
    left: 21%;
}

.point-france {
    top: 40%;
    left: 48%;
}

.point-germany {
    top: 35%;
    left: 51%;
}

.point-vietnam {
    top: 53%;
    left: 73%;
}

.point-japan {
    top: 40%;
    left: 83%;
}

.point-australia {
    top: 72%;
    left: 82%;
}

.about-world-stats {
    display: flex;
    gap: 55px;
    margin: 45px 0 35px;
}

.about-world-stats div {
    padding-left: 20px;
    border-left: 1px solid var(--molly-gold);
}

.about-world-stats strong {
    display: block;
    color: var(--molly-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 68px;
    font-weight: 500;
    line-height: .85;
}

.about-world-stats strong::after {
    content: "+";
}

.about-world-stats span {
    display: block;
    margin-top: 10px;
    color: var(--molly-navy);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* ==============================
   Contest
============================== */

.about-contest {
    background: var(--molly-navy);
    color: rgba(255, 255, 255, .75);
	position:relative;
}

.about-contest .about-section-title {
    color: #fff;
}

.about-contest-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.about-contest-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 12, 24, .85),
        transparent 55%
    );
    content: "";
}

.about-contest-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.about-contest-card:hover img {
    transform: scale(1.06);
}

.about-contest-overlay {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    left: 28px;
}

.about-contest-overlay h3 {
    margin: 0 0 5px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
    font-weight: 500;
}

.about-contest-overlay span {
    color: var(--molly-gold-light);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-contest-swiper{
    position:relative;
	padding-bottom: 70px;
}

.about-swiper-footer{
    position: static;
}

.about-swiper-footer .swiper-button-prev,
.about-swiper-footer .swiper-button-next{
    width: 54px;
    height: 54px;
    top: calc(55%);
    margin-top: 0;
    border: 1px solid rgba(214, 175, 102, .85);
    border-radius: 50%;
    background: #0d1a2d;
    color: #fff;
    z-index: 20;
    transition: .3s ease;
	
}


/* Bỏ icon mặc định quá lớn */
.about-swiper-footer .swiper-button-prev::after,
.about-swiper-footer .swiper-button-next::after{
    font-size: 18px;
    font-weight: 600;
}

/* Đặt nút ra ngoài mép ảnh */
.about-swiper-footer .swiper-button-prev{
    left: -28px;
}

.about-swiper-footer .swiper-button-next{
    right: -28px;
}

.about-swiper-footer .swiper-button-prev:hover,
.about-swiper-footer .swiper-button-next:hover{
    background: #d6af66;
    color: #0d1a2d;
}

/* Pagination nằm giữa phía dưới */
.about-swiper-footer .swiper-pagination{
    position: absolute;
    left: 50% !important;
    right: auto !important;
    bottom: 18px !important;
    width: auto !important;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Bullet */
.about-swiper-footer .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: rgba(255,255,255,.35);
    opacity: 1;
}

/* Bullet active */
.about-swiper-footer .swiper-pagination-bullet-active{
    background: #d6af66;
}

.about-slider-wrap{
    position:relative;
}

.about-prev,
.about-next{
    top:50%;
    transform:translateY(-50%);
}

.swiper-button-prev{
    left:-30px;
}

.swiper-button-next{
    right:-30px;
}

/* ==============================
   Values
============================== */

.about-values {
    background: var(--molly-cream);
}

.about-value-card {
    height: 100%;
    min-height: 330px;
    padding: 42px 32px;
    border-top: 1px solid var(--molly-gold);
    background: #fff;
    box-shadow: 0 14px 40px rgba(13, 24, 42, .06);
}

.about-value-card > span {
    display: block;
    margin-bottom: 70px;
    color: var(--molly-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
}

.about-value-card h3 {
    margin: 0 0 17px;
    color: var(--molly-navy);
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;
}

.about-value-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.85;
}

/* ==============================
   Founder
============================== */

.about-founder {
    background: #fff;
}

.about-founder-position {
    margin: -14px 0 35px;
    color: var(--molly-gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-founder blockquote {
    margin: 0 0 35px;
    color: var(--molly-navy);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 3vw, 42px);
    font-style: italic;
    line-height: 1.3;
}

.about-founder-image {
    position: relative;
    padding: 35px 0 0 35px;
}

.about-founder-image::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    border: 1px solid var(--molly-gold);
    content: "";
}

.about-founder-image img {
    position: relative;
    width: 100%;
    min-height: 720px;
    display: block;
    object-fit: cover;
}

.about-founder-signature {
    margin-top: 35px;
    color: var(--molly-gold);
    font-family: "Allura", cursive;
    font-size: 45px;
}

/* ==============================
   Final CTA
============================== */

.about-final-cta {
    min-height: 760px;
    display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-final-content {
    max-width: 850px;
    margin: 0 auto;
    color: #fff;
}

.about-final-content h2 {
    margin: 0 0 25px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 8vw, 100px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .88;
}

.about-final-content p {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
}

.about-final-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* ==============================
   Scroll Animation
============================== */

.js [data-about-reveal] {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22, 1, .36, 1);
}

.js [data-about-reveal].about-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   Responsive
============================== */

@media (max-width: 1199px) {
    .about-section {
        padding: 100px 0;
    }

    .about-timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 50px;
    }

    .about-timeline::before {
        display: none;
    }

    .about-timeline-item {
        padding-top: 40px;
    }

    .about-timeline-item::before {
        position: absolute;
        top: 12px;
        right: 10%;
        left: 10%;
        height: 1px;
        background: rgba(183, 139, 69, .4);
        content: "";
    }

    .about-atelier-grid {
        min-height: 700px;
    }
}

@media (max-width: 991px) {
    .about-hero {
        min-height: 800px;
        background-position: 60% center;
    }

    .about-story-image {
        margin: 0 auto;
    }

    .about-story-image img {
        min-height: 550px;
    }

    .about-process-card {
        min-height: 270px;
    }

    .about-process-number {
        margin-bottom: 45px;
    }

    .about-details {
        min-height: 650px;
        background-attachment: scroll;
        background-position: 65% center;
    }

    .about-atelier-grid {
        min-height: auto;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 330px);
    }

    .about-atelier-item:first-child {
        grid-row: 1 / 3;
    }

    .about-atelier-item:nth-child(4) {
        grid-column: auto;
    }

    .about-atelier-item:last-child {
        grid-column: 1 / 3;
    }

    .about-world-map {
        margin-bottom: 30px;
    }

    .about-founder-image img {
        min-height: 620px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 75px 0;
    }

    .about-heading {
        margin-bottom: 45px;
    }

    .about-hero {
        min-height: 720px;
        background-position: 65% center;
    }

    .about-hero-content {
        padding: 120px 0 90px;
    }

    .about-hero-content h1 {
        font-size: 61px;
        line-height: .92;
    }

    .about-hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-story-image {
        padding: 0 25px 35px 0;
    }

    .about-story-image img {
        min-height: 450px;
    }

    .about-story-year {
        width: 135px;
        padding: 20px 15px;
    }

    .about-philosophy {
        padding: 90px 0;
    }

    .about-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-process-card {
        min-height: auto;
    }

    .about-process-number {
        margin-bottom: 35px;
    }

    .about-details {
        min-height: 620px;
    }

    .about-details-number {
        font-size: 82px;
    }

    .about-atelier-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 240px);
        gap: 10px;
    }

    .about-world-stats {
        gap: 25px;
    }

    .about-world-stats strong {
        font-size: 55px;
    }

    .about-founder-image {
        padding: 20px 0 0 20px;
    }

    .about-founder-image img {
        min-height: 500px;
    }

    .about-final-cta {
        min-height: 650px;
    }

    .about-final-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-final-actions .molly-btn {
        width: min(100%, 290px);
    }
}

@media (max-width: 575px) {
    .about-section-title {
        font-size: 46px;
    }

    .about-hero-content h1 {
        font-size: 52px;
    }

    .about-story-image img {
        min-height: 390px;
    }

    .about-timeline {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .about-timeline-item {
        padding: 15px 15px 15px 55px;
        text-align: left;
    }

    .about-timeline-item::before {
        top: 0;
        bottom: 0;
        left: 20px;
        width: 1px;
        height: auto;
    }

    .about-timeline-dot {
        top: 25px;
        left: 20px;
    }

    .about-timeline-item strong {
        font-size: 28px;
    }

    .about-atelier-grid {
        display: block;
    }

    .about-atelier-item {
        height: 330px;
        margin-bottom: 12px;
    }

    .about-atelier-item:first-child,
    .about-atelier-item:last-child {
        height: 430px;
    }

    .about-world-stats {
        display: block;
    }

    .about-world-stats > div {
        margin-bottom: 30px;
    }

    .about-founder-image img {
        min-height: 430px;
    }

    .about-final-content h2 {
        font-size: 55px;
    }
}

/* ==============================
   SHOP FILTER
================================= */

.molly-shop-filter {
    width: 100%;
    margin-bottom: 35px;
    padding: 22px 24px;
    background: #f8f5ef;
    border: 1px solid rgba(13, 24, 42, 0.12);
}

.molly-shop-filter-form {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
    align-items: end;
    gap: 18px;
}

.molly-filter-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.molly-filter-field label {
    margin: 0;
    color: #0d182a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.molly-filter-field select {
    width: 100%;
    min-height: 48px;
    padding: 0 42px 0 15px;
    color: #0d182a;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid rgba(13, 24, 42, 0.2);
    border-radius: 0;
    outline: none;
    cursor: pointer;
}

.molly-filter-field select:focus {
    border-color: #b89a5e;
}

.molly-filter-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
}

.molly-filter-submit {
    min-height: 48px;
    padding: 0 28px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: #0d182a;
    border: 1px solid #0d182a;
    transition: all 0.3s ease;
}

.molly-filter-submit:hover {
    color: #0d182a;
    background: transparent;
}

.molly-filter-reset {
    color: #777;
    font-size: 13px;
    text-decoration: underline;
    white-space: nowrap;
}

.molly-filter-reset:hover {
    color: #b89a5e;
}

/* WooCommerce result count và ordering */
.woocommerce .woocommerce-result-count {
    margin-top: 10px;
}

.woocommerce .woocommerce-ordering {
    margin-top: 0;
}

/* Tablet */
@media (max-width: 991px) {

    .molly-shop-filter-form {
        grid-template-columns: 1fr 1fr;
    }

    .molly-filter-actions {
        grid-column: 1 / -1;
    }

}

/* Mobile */
@media (max-width: 575px) {

    .molly-shop-filter {
        padding: 18px 15px;
        margin-bottom: 25px;
    }

    .molly-shop-filter-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .molly-filter-actions {
        grid-column: auto;
        flex-wrap: wrap;
    }

    .molly-filter-submit {
        flex: 1;
    }

}

/*wishlist*/

.yith-wcwl-add-to-wishlist{
    position:absolute;
    top:18px;
    right:18px;
    margin:0;
    z-index:20;
}

.yith-wcwl-add-to-wishlist a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(255,255,255,.92);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.yith-wcwl-add-to-wishlist i{
    font-size:18px;
}

.yith-wcwl-add-to-wishlist a:hover{
    background:#b89a5e;
    color:#fff;
}

/* =========================================
   WOOCOMMERCE PRODUCT GRID
========================================= */

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}


/* =========================================
   PRODUCT CARD
========================================= */

.woocommerce ul.products li.product {
    width: 100% !important;
    height: 100%;
    margin: 0 !important;
    padding: 0;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: #fff;
    border: 1px solid rgba(184, 154, 94, 0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    border-color: #b89a5e;
    box-shadow: 0 18px 38px rgba(13, 24, 42, 0.13);
}


/* =========================================
   PRODUCT LINK
========================================= */

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    text-decoration: none;
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.woocommerce ul.products li.product a img {
    width: 100%;
    height: 430px;
    flex-shrink: 0;
    margin: 0 !important;
    display: block;
    object-fit: cover;
    object-position: center top;

    transition: transform 0.6s ease;
}

.woocommerce ul.products li.product:hover a img {
    transform: scale(1.035);
}


/* =========================================
   PRODUCT TITLE
========================================= */

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 74px;
    margin: 0;
    padding: 28px 20px 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0d182a;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;

    transition: color 0.3s ease;
}


/* =========================================
   PRODUCT PRICE
========================================= */

.woocommerce ul.products li.product .price {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    padding: 12px 20px 24px;

    display: block;

    color: #b8893e !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.woocommerce ul.products li.product .price del {
    margin-right: 7px;
    color: #8f8f8f;
    font-size: 14px;
    opacity: 1;
}

.woocommerce ul.products li.product .price ins {
    color: #b8893e;
    font-weight: 600;
    text-decoration: none;
}


/* =========================================
   ADD TO CART BUTTON
========================================= */

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.added_to_cart {
    width: calc(100% - 40px);
    min-height: 50px;
    margin: 0 20px 22px !important;
    padding: 14px 20px !important;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-shrink: 0;

    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
	
	color: #0d182a !important;
    background: #d6b36d !important;
    border-color: #d6b36d !important;

    
    
    border-radius: 0 !important;
    box-shadow: none !important;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.added_to_cart:hover {
    color: #fff !important;
    background: #0d182a !important;
    border: 1px solid #0d182a !important;
}


/* =========================================
   CART ICON
========================================= */

.woocommerce ul.products li.product .button::before {
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-size: 13px;
    font-weight: 900;
}


/* =========================================
   BUTTON LOADING
========================================= */

.woocommerce ul.products li.product .button.loading {
    padding-right: 20px !important;
    opacity: 0.7;
}

.woocommerce ul.products li.product .button.loading::after {
    position: static !important;
    margin-left: 7px;
}


/* =========================================
   ADDED TO CART
========================================= */

.woocommerce ul.products li.product .button.added {
    display: none;
}

.woocommerce ul.products li.product a.added_to_cart::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}


/* =========================================
   SALE BADGE
========================================= */

.woocommerce ul.products li.product .onsale {
    min-width: auto;
    min-height: auto;
    margin: 0;
    padding: 8px 14px;

    position: absolute;
    top: 14px;
    right: 14px;
    left: auto;
    z-index: 8;

    color: #0d182a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: #d6b36d;
    border-radius: 0;
}


/* =========================================
   WISHLIST BUTTON
========================================= */

.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    margin: 0;
}

.woocommerce ul.products li.product .onsale
+ .yith-wcwl-add-to-wishlist {
    top: 58px;
}

.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist a {
    width: 42px;
    height: 42px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0d182a;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(13, 24, 42, 0.12);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist a:hover {
    color: #fff;
    background: #b89a5e;
    transform: scale(1.06);
}

.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist a span {
    display: none;
}

.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist i {
    margin: 0;
    font-size: 17px;
}


/* =========================================
   TABLET LARGE
========================================= */

@media (max-width: 1199px) {

    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .woocommerce ul.products li.product a img {
        height: 390px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .woocommerce ul.products li.product a img {
        height: 410px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .woocommerce ul.products li.product {
        transform: none;
    }

    .woocommerce ul.products li.product:hover {
        transform: none;
        box-shadow: none;
    }

    .woocommerce ul.products li.product a img {
        height: 260px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        min-height: 60px;
        padding: 18px 10px 5px;
        font-size: 18px;
    }

    .woocommerce ul.products li.product .price {
        padding: 8px 8px 16px;
        font-size: 15px;
    }

    .woocommerce ul.products li.product .price del {
        display: block;
        margin: 0 0 2px;
        font-size: 12px;
    }

    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product a.added_to_cart {
        width: calc(100% - 20px);
        min-height: 44px;
        margin: 0 10px 12px !important;
        padding: 11px 8px !important;

        gap: 5px;

        font-size: 10px;
        letter-spacing: 0.7px;
    }

    .woocommerce ul.products li.product .button::before {
        font-size: 11px;
    }

    .woocommerce ul.products li.product .onsale {
        top: 8px;
        right: 8px;
        padding: 6px 9px;
        font-size: 9px;
    }

    .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist {
        top: 8px;
        right: 8px;
    }

    .woocommerce ul.products li.product .onsale
    + .yith-wcwl-add-to-wishlist {
        top: 46px;
    }

    .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist a {
        width: 34px;
        height: 34px;
    }

    .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist i {
        font-size: 14px;
    }

}

/* =====================================================
   WOOCOMMERCE SINGLE PRODUCT
===================================================== */

:root{
    --product-navy: #0d182a;
    --product-gold: #b89a5e;
    --product-gold-light: #d6c18d;
    --product-text: #3f4650;
    --product-muted: #777d86;
    --product-border: rgba(184, 154, 94, 0.3);
    --product-bg-soft: #f8f6f1;
}

.single-product{
}

/* =====================================================
   KHUNG TRANG
===================================================== */

.single-product .site-main{
    padding-top: 70px;
    padding-bottom: 100px;
}

.single-product div.product{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 70px;
    align-items: start;
}

.single-product div.product::before,
.single-product div.product::after{
    display: none;
}


/* =====================================================
   PRODUCT VIDEO GALLERY FOR WOOCOMMERCE
   Plugin: Product Video Gallery for WooCommerce
===================================================== */

/* Bố cục 2 cột sản phẩm */
.single-product div.product{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 65px;
    align-items: start;
}

.single-product div.product::before,
.single-product div.product::after{
    display: none;
}


/* =====================================================
   CỘT GALLERY BÊN TRÁI
===================================================== */

.single-product div.product .images.nickx_product_images_with_video{
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* Khung tổng gallery */
.single-product .nickx_product_images_with_video{
    display: block !important;
    box-sizing: border-box;
}


/* Khung ảnh chính */
.single-product .nickx_product_images_with_video .nickx-slider-for,
.single-product .nickx_product_images_with_video .woocommerce-product-gallery__wrapper{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}


/* Slick container */
.single-product .nickx_product_images_with_video .slick-list{
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
}

.single-product .nickx_product_images_with_video .slick-track{
    display: flex;
    align-items: stretch;
}


/* Từng slide ảnh lớn */
.single-product .nickx_product_images_with_video .slick-slide{
    height: auto;
    margin: 0;
    padding: 0;
}

.single-product .nickx_product_images_with_video .slick-slide > div{
    width: 100%;
    height: 100%;
}


/* Ảnh lớn full cột trái */
.single-product .nickx_product_images_with_video
.woocommerce-product-gallery__image,
.single-product .nickx_product_images_with_video
.nickx_image{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow: hidden;
    background: #f4f2ed;
}

.single-product .nickx_product_images_with_video
.woocommerce-product-gallery__image img,
.single-product .nickx_product_images_with_video
.nickx_image img{
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0;
    object-fit: contain;
    transform: none !important;
    transition: none !important;
}


/* Không dùng hover scale từ CSS cũ */
.single-product .nickx_product_images_with_video
.woocommerce-product-gallery__image:hover img,
.single-product .nickx_product_images_with_video
.nickx_image:hover img{
    transform: none !important;
}


/* =====================================================
   VIDEO
===================================================== */

.single-product .nickx_product_images_with_video iframe,
.single-product .nickx_product_images_with_video video{
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 4 / 5;
    height: auto !important;
    border: 0;
    background: #000;
    object-fit: contain;
}


/* Một số phiên bản plugin bọc video trong div */
.single-product .nickx_product_images_with_video
.nickx-video,
.single-product .nickx_product_images_with_video
.nickx_video,
.single-product .nickx_product_images_with_video
.video_frame{
    width: 100% !important;
    max-width: 100% !important;
}


/* =====================================================
   THUMBNAIL
===================================================== */

.single-product .nickx_product_images_with_video .nickx-slider-nav{
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 12px !important;
    padding: 0 26px;
    box-sizing: border-box;
}

.single-product .nickx_product_images_with_video
.nickx-slider-nav .slick-list{
    margin: 0 -6px;
}

.single-product .nickx_product_images_with_video
.nickx-slider-nav .slick-slide{
    padding: 0 6px;
    cursor: pointer;
    opacity: 0.68;
    transition: opacity 0.25s ease;
}

.single-product .nickx_product_images_with_video
.nickx-slider-nav .slick-slide:hover,
.single-product .nickx_product_images_with_video
.nickx-slider-nav .slick-current{
    opacity: 1;
}

.single-product .nickx_product_images_with_video
.nickx-slider-nav img{
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 3 / 4;
    height: auto !important;
    object-fit: cover;
    border: 1px solid transparent;
    transform: none !important;
}

.single-product .nickx_product_images_with_video
.nickx-slider-nav .slick-current img{
    border-color: #b89a5e;
}


/* Thumbnail video */
.single-product .nickx_product_images_with_video
.nickx-slider-nav .video-thumbnail,
.single-product .nickx_product_images_with_video
.nickx-slider-nav .nickx-video-thumb{
    position: relative;
    overflow: hidden;
}


/* =====================================================
   NÚT PREV / NEXT
===================================================== */

.single-product .nickx_product_images_with_video .slick-arrow{
    z-index: 20;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(13, 24, 42, 0.55);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: none;
}

.single-product .nickx_product_images_with_video
.nickx-slider-for .slick-prev{
    left: 14px;
}

.single-product .nickx_product_images_with_video
.nickx-slider-for .slick-next{
    right: 14px;
}

.single-product .nickx_product_images_with_video
.nickx-slider-nav .slick-prev{
    left: 0;
}

.single-product .nickx_product_images_with_video
.nickx-slider-nav .slick-next{
    right: 0;
}


/* =====================================================
   NÚT PHÓNG TO
===================================================== */

.single-product .nickx_product_images_with_video
.woocommerce-product-gallery__trigger,
.single-product .nickx_product_images_with_video
.nickx-popup{
    z-index: 30;
    top: 18px !important;
    right: 18px !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 5px 18px rgba(13, 24, 42, 0.16);
}


/* =====================================================
   CỘT THÔNG TIN BÊN PHẢI
===================================================== */

.single-product div.product .summary{
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px){

    .single-product div.product{
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
        gap: 35px;
    }

    .single-product div.product
    .images.nickx_product_images_with_video{
        position: static;
        top: auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px){

    .single-product div.product{
        display: block;
    }

    .single-product div.product
    .images.nickx_product_images_with_video{
        width: 100% !important;
        margin-bottom: 32px !important;
    }

    .single-product .nickx_product_images_with_video
    .nickx-slider-nav{
        padding: 0 22px;
    }

    .single-product .nickx_product_images_with_video
    .nickx-slider-nav .slick-list{
        margin: 0 -4px;
    }

    .single-product .nickx_product_images_with_video
    .nickx-slider-nav .slick-slide{
        padding: 0 4px;
    }

    .single-product .nickx_product_images_with_video
    .woocommerce-product-gallery__trigger,
    .single-product .nickx_product_images_with_video
    .nickx-popup{
        top: 12px !important;
        right: 12px !important;
        width: 40px !important;
        height: 40px !important;
    }

}

/* =====================================================
   PHẦN THÔNG TIN SẢN PHẨM
===================================================== */

.single-product div.product .summary{
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    padding-top: 15px;
}

.single-product .product_title{
    margin: 0 0 18px;
    color: var(--product-navy);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
}


/* Rating */

.single-product .woocommerce-product-rating{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px !important;
}

.single-product .star-rating{
    color: var(--product-gold);
}

.single-product .woocommerce-review-link{
    color: var(--product-muted);
    font-size: 14px;
    text-decoration: none;
}

.single-product .woocommerce-review-link:hover{
    color: var(--product-gold);
}


/* Giá */

.single-product div.product p.price,
.single-product div.product span.price{
    margin: 0 0 28px;
    color: var(--product-gold);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.3;
}

.single-product div.product p.price del,
.single-product div.product span.price del{
    margin-right: 10px;
    color: #999;
    font-size: 18px;
    font-weight: 400;
    opacity: 1;
}

.single-product div.product p.price ins,
.single-product div.product span.price ins{
    color: var(--product-gold);
    text-decoration: none;
}


/* Mô tả ngắn */

.single-product .woocommerce-product-details__short-description{
    margin-bottom: 30px;
    color: var(--product-text);
    font-size: 16px;
    line-height: 1.85;
}

.single-product .woocommerce-product-details__short-description p:last-child{
    margin-bottom: 0;
}

.single-product .woocommerce-product-details__short-description ul{
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.single-product .woocommerce-product-details__short-description li{
    position: relative;
    margin-bottom: 10px;
    padding-left: 23px;
}

.single-product .woocommerce-product-details__short-description li::before{
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 1px;
    background: var(--product-gold);
}


/* =====================================================
   BIẾN THỂ SẢN PHẨM
===================================================== */

.single-product form.cart{
    margin-top: 28px !important;
    margin-bottom: 32px !important;
}

.single-product .variations{
    width: 100%;
    margin-bottom: 25px !important;
}

.single-product .variations tr{
    display: block;
    margin-bottom: 20px;
}

.single-product .variations th,
.single-product .variations td{
    display: block;
    width: 100%;
    padding: 0 !important;
    text-align: left;
}

.single-product .variations label{
    display: block;
    margin-bottom: 10px;
    color: var(--product-navy);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.single-product .variations select{
    width: 100%;
    min-height: 52px;
    padding: 0 45px 0 16px;
    color: var(--product-navy);
    background-color: #fff;
    border: 1px solid var(--product-border);
    border-radius: 0;
    outline: none;
    box-shadow: none;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.single-product .variations select:focus{
    border-color: var(--product-gold);
    box-shadow: 0 0 0 3px rgba(184, 154, 94, 0.1);
}

.single-product .reset_variations{
    display: inline-block;
    margin-top: 8px;
    color: var(--product-muted);
    font-size: 13px;
    text-decoration: underline;
}


/* =====================================================
   SỐ LƯỢNG VÀ NÚT THÊM GIỎ
===================================================== */

.single-product form.cart:not(.variations_form),
.single-product .woocommerce-variation-add-to-cart{
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex-wrap: wrap;
}

.single-product .quantity{
    margin: 0 !important;
}

.single-product .quantity .qty{
    width: 76px;
    height: 56px;
    padding: 0 8px;
    color: var(--product-navy);
    text-align: center;
    border: 1px solid var(--product-border);
    border-radius: 0;
    outline: none;
}

.single-product .single_add_to_cart_button{
    flex: 1;
    max-width: 180px;
    min-height: 56px;
    padding: 12px 20px !important;
    color: #fff !important;
    background: var(--product-navy) !important;
    border: 1px solid var(--product-navy) !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease !important;
}

.single-product .single_add_to_cart_button:hover{
    color: var(--product-navy) !important;
    background: transparent !important;
    border-color: var(--product-gold) !important;
    transform: translateY(-2px);
}

.single-product .single_add_to_cart_button.disabled,
.single-product .single_add_to_cart_button:disabled{
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}


/* =====================================================
   META: SKU, CATEGORY, TAG
===================================================== */

.single-product .product_meta{
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--product-border);
    color: var(--product-muted);
    font-size: 14px;
    line-height: 2;
}

.single-product .product_meta > span{
    display: block;
}

.single-product .product_meta a{
    color: var(--product-navy);
    text-decoration: none;
}

.single-product .product_meta a:hover{
    color: var(--product-gold);
}


/* =====================================================
   THÔNG TIN BỔ SUNG DƯỚI NÚT MUA
===================================================== */

.product-luxury-benefits{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 25px;
}

.product-luxury-benefit{
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 14px;
    background: var(--product-bg-soft);
}

.product-luxury-benefit i,
.product-luxury-benefit svg{
    flex: 0 0 auto;
    color: var(--product-gold);
    font-size: 21px;
}

.product-luxury-benefit strong{
    display: block;
    margin-bottom: 3px;
    color: var(--product-navy);
    font-size: 13px;
    font-weight: 600;
}

.product-luxury-benefit span{
    display: block;
    color: var(--product-muted);
    font-size: 12px;
    line-height: 1.4;
}


/* =====================================================
   TAB MÔ TẢ / THÔNG TIN / ĐÁNH GIÁ
===================================================== */

.single-product .woocommerce-tabs{
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 90px;
}

.single-product .woocommerce-tabs ul.tabs{
    display: flex;
    justify-content: center;
    gap: 45px;
    margin: 0 0 45px !important;
    padding: 0 !important;
    border-bottom: 1px solid var(--product-border);
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs::after{
    display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li{
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after{
    display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li a{
    position: relative;
    display: block;
    padding: 18px 4px !important;
    color: var(--product-muted) !important;
    font-size: 13px;
    font-weight: 600 !important;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.single-product .woocommerce-tabs ul.tabs li a::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--product-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.single-product .woocommerce-tabs ul.tabs li.active a{
    color: var(--product-navy) !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a::after,
.single-product .woocommerce-tabs ul.tabs li:hover a::after{
    transform: scaleX(1);
}

.single-product .woocommerce-Tabs-panel{
    max-width: 1000px;
    margin: 0 auto !important;
    color: var(--product-text);
    font-size: 16px;
    line-height: 1.85;
}

.single-product .woocommerce-Tabs-panel > h2:first-child{
    display: none;
}

.single-product .woocommerce-Tabs-panel h2,
.single-product .woocommerce-Tabs-panel h3{
    color: var(--product-navy);
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}


/* Bảng thông tin bổ sung */

.single-product .woocommerce-product-attributes{
    border: 1px solid var(--product-border);
}

.single-product .woocommerce-product-attributes th,
.single-product .woocommerce-product-attributes td{
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--product-border) !important;
}

.single-product .woocommerce-product-attributes th{
    width: 30%;
    color: var(--product-navy);
    background: var(--product-bg-soft);
    font-weight: 600;
}

.single-product .woocommerce-product-attributes td{
    background: #fff;
}


/* =====================================================
   ĐÁNH GIÁ
===================================================== */

.single-product #reviews{
    max-width: 900px;
    margin: 0 auto;
}

.single-product #reviews #comments ol.commentlist{
    padding: 0;
}

.single-product #reviews #comments ol.commentlist li{
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--product-border);
}

.single-product #reviews #comments ol.commentlist li img.avatar{
    width: 58px;
    padding: 0;
    border: 0;
    border-radius: 50%;
}

.single-product #reviews #comments ol.commentlist li .comment-text{
    margin-left: 80px;
    padding: 0;
    border: 0;
}

.single-product #review_form_wrapper{
    margin-top: 50px;
    padding: 35px;
    background: var(--product-bg-soft);
}

.single-product #review_form input[type="text"],
.single-product #review_form input[type="email"],
.single-product #review_form textarea{
    width: 100%;
    padding: 13px 15px;
    background: #fff;
    border: 1px solid var(--product-border);
    border-radius: 0;
    outline: none;
}

.single-product #review_form input:focus,
.single-product #review_form textarea:focus{
    border-color: var(--product-gold);
}

.single-product #review_form #submit{
    min-height: 50px;
    padding: 12px 28px;
    color: #fff;
    background: var(--product-navy);
    border: 1px solid var(--product-navy);
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =====================================================
   SẢN PHẨM LIÊN QUAN
===================================================== */

.single-product .related.products,
.single-product .up-sells{
    grid-column: 1 / -1;
    margin-top: 50px;
}

.single-product .related.products > h2,
.single-product .up-sells > h2{
    margin-bottom: 48px;
    color: var(--product-navy);
    font-size: clamp(36px, 4vw, 40px);
    font-weight: 500;
    text-align: center;
}

.single-product .related.products > h2::before,
.single-product .up-sells > h2::before{
    content: "You may also like";
    display: block;
    margin-bottom: 10px;
    color: var(--product-gold);
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* =====================================================
   SALE BADGE
===================================================== */

.single-product span.onsale{
    top: 18px !important;
    left: 18px !important;
    z-index: 5;
    min-width: auto;
    min-height: auto;
    margin: 0 !important;
    padding: 9px 13px;
    color: #fff;
    background: var(--product-navy);
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =====================================================
   THÔNG BÁO WOOCOMMERCE
===================================================== */

.single-product .woocommerce-message{
    margin-bottom: 35px;
    padding: 20px 25px 20px 55px;
    color: var(--product-navy);
    background: var(--product-bg-soft);
    border-top: 2px solid var(--product-gold);
}

.single-product .woocommerce-message::before{
    color: var(--product-gold);
}

.single-product .woocommerce-message .button{
    color: #fff;
    background: var(--product-navy);
    border-radius: 0;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px){

    .single-product .site-main{
        padding-top: 45px;
        padding-bottom: 75px;
    }

    .single-product div.product{
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
        gap: 35px;
    }

    .single-product div.product .woocommerce-product-gallery{
        position: static;
    }

    .single-product .product_title{
        font-size: 40px;
    }

    .single-product .woocommerce-tabs{
        margin-top: 65px;
    }

    .single-product .related.products,
    .single-product .up-sells{
        margin-top: 75px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px){

    .single-product .site-main{
        padding-top: 25px;
        padding-bottom: 60px;
    }

    .single-product div.product{
        display: block;
    }

    .single-product div.product .summary{
        padding-top: 35px;
    }

    .single-product .product_title{
        margin-bottom: 14px;
        font-size: 36px;
    }

    .single-product div.product p.price,
    .single-product div.product span.price{
        margin-bottom: 22px;
        font-size: 24px;
    }

    .single-product .woocommerce-product-details__short-description{
        font-size: 15px;
        line-height: 1.75;
    }

    .single-product .flex-control-thumbs{
        gap: 8px;
    }

    .single-product form.cart:not(.variations_form),
    .single-product .woocommerce-variation-add-to-cart{
        display: grid;
        grid-template-columns: 75px minmax(0, 1fr);
        gap: 10px;
    }

    .single-product .single_add_to_cart_button{
        min-width: 0;
        padding-right: 15px !important;
        padding-left: 15px !important;
        font-size: 12px !important;
    }

    .product-luxury-benefits{
        grid-template-columns: 1fr;
    }

    .single-product .woocommerce-tabs{
        margin-top: 55px;
    }

    .single-product .woocommerce-tabs ul.tabs{
        justify-content: flex-start;
        gap: 25px;
        overflow-x: auto;
        margin-bottom: 30px !important;
        scrollbar-width: none;
    }

    .single-product .woocommerce-tabs ul.tabs::-webkit-scrollbar{
        display: none;
    }

    .single-product .woocommerce-tabs ul.tabs li{
        flex: 0 0 auto;
    }

    .single-product .woocommerce-tabs ul.tabs li a{
        padding: 14px 2px !important;
        font-size: 11px;
        white-space: nowrap;
    }

    .single-product .woocommerce-Tabs-panel{
        font-size: 15px;
        line-height: 1.75;
    }

    .single-product .woocommerce-product-attributes th,
    .single-product .woocommerce-product-attributes td{
        display: block;
        width: 100%;
        padding: 12px 15px !important;
    }

    .single-product #review_form_wrapper{
        padding: 24px 18px;
    }

    .single-product .related.products,
    .single-product .up-sells{
        margin-top: 65px;
    }

    .single-product .related.products > h2,
    .single-product .up-sells > h2{
        margin-bottom: 30px;
        font-size: 36px;
    }

}


/* =====================================================
   MOBILE NHỎ
===================================================== */

@media (max-width: 480px){

    .single-product form.cart:not(.variations_form),
    .single-product .woocommerce-variation-add-to-cart{
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .single-product .quantity .qty{
        width: 70px;
    }

    .single-product .single_add_to_cart_button{
        letter-spacing: 0.08em;
    }

}
}

/* =====================================================
   SINGLE PRODUCT – BREADCRUMB + SUMMARY
===================================================== */

/*
 * Ẩn tiêu đề do theme tự xuất phía trên hai cột.
 * Tiêu đề WooCommerce bên trong .summary vẫn được giữ lại.
 */
.single-product .site-main > article > .entry-header,
.single-product .site-main > .entry-header,
.single-product .page-header{
    display: none;
}


/* Breadcrumb trong cột thông tin bên phải */

.single-product div.product .summary .woocommerce-breadcrumb{
    margin: 0 0 20px;
    padding: 0;
    color: #8b8b8b;
    font-size: 13px;
    line-height: 1.6;
}

.single-product div.product .summary .woocommerce-breadcrumb a{
    color: #8b8b8b;
    text-decoration: none;
    transition: color 0.25s ease;
}

.single-product div.product .summary .woocommerce-breadcrumb a:hover{
    color: #b89a5e;
}


/* Tiêu đề nằm bên phải, dưới breadcrumb */

.single-product div.product .summary .product_title{
    margin: 0 0 22px;
    color: #0d182a;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 3.6vw, 56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.02em;
}


/* Mô tả ngắn */

.single-product div.product .summary
.woocommerce-product-details__short-description{
    margin-bottom: 26px;
}


/* Giá nằm ngay trên nút Add to cart */

.single-product div.product .summary p.price,
.single-product div.product .summary span.price{
    display: block;
    margin: 0 0 22px;
    color: #b89a5e;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.3;
}


/* Form thêm vào giỏ */

.single-product div.product .summary form.cart{
    margin-top: 0 !important;
    margin-bottom: 30px !important;
}


/* Đường kẻ phía trên category */

.single-product div.product .summary .product_meta{
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid rgba(184, 154, 94, 0.35);
}

/* =====================================================
   SAME CATEGORY PRODUCTS
===================================================== */

.single-product .molly-same-category-products{
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 90px;
}

.single-product .molly-product-section-heading{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(184, 154, 94, 0.35);
}

.single-product .molly-product-section-title .section-label{
    display: block;
    margin-bottom: 8px;
    color: #b89a5e;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.single-product .molly-product-section-title h2{
    margin: 0;
    color: #0d182a;
    font-size: clamp(36px, 4vw, 40px);
    font-weight: 500;
    line-height: 1.08;
}

.single-product .molly-view-all{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    color: #0d182a;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.single-product .molly-view-all:hover{
    gap: 15px;
    color: #b89a5e;
}


/* Giữ grid sản phẩm 4 cột */

.single-product .molly-same-category-products ul.products{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin: 0;
}

.single-product .molly-same-category-products ul.products::before,
.single-product .molly-same-category-products ul.products::after{
    display: none;
}

.single-product .molly-same-category-products ul.products li.product{
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}


/* Tablet */

@media (max-width: 991.98px){

    .single-product .molly-same-category-products{
        margin-top: 70px;
    }

    .single-product .molly-same-category-products ul.products{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

}


/* Mobile */

@media (max-width: 575.98px){

    .single-product .molly-product-section-heading{
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 28px;
    }

    .single-product .molly-product-section-title h2{
        font-size: 34px;
    }

    .single-product .molly-view-all{
        margin-top: 8px;
        font-size: 11px;
    }

    .single-product .molly-same-category-products ul.products{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

}

/* =====================================================
   WOOCOMMERCE CART PAGE
===================================================== */

:root{
    --cart-navy: #0d182a;
    --cart-gold: #b89a5e;
    --cart-gold-light: #d8c28e;
    --cart-border: #e8e2d7;
    --cart-text: #252525;
    --cart-muted: #777;
    --cart-bg: #f8f6f1;
}


/* =====================================================
   KHUNG TRANG GIỎ HÀNG
===================================================== */

body.woocommerce-cart .site-main,
body.woocommerce-cart main{
    padding-top: 70px;
    padding-bottom: 90px;
}

body.woocommerce-cart .woocommerce{
    width: 100%;
}

body.woocommerce-cart .woocommerce-cart-form{
    margin: 0;
}


/* =====================================================
   THÔNG BÁO WOOCOMMERCE
===================================================== */

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error{
    border: 1px solid var(--cart-border);
    border-top: 3px solid var(--cart-gold);
    background: #fff;
    color: var(--cart-text);
    padding: 18px 22px 18px 50px;
    margin-bottom: 30px;
    box-shadow: none;
}

body.woocommerce-cart .woocommerce-message::before,
body.woocommerce-cart .woocommerce-info::before{
    color: var(--cart-gold);
}


/* =====================================================
   BỐ CỤC 2 CỘT
===================================================== */

body.woocommerce-cart .woocommerce{
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.75fr);
    gap: 45px;
    align-items: start;
}

/* Các thông báo chiếm toàn bộ chiều rộng */
body.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce > .woocommerce-message,
body.woocommerce-cart .woocommerce > .woocommerce-info,
body.woocommerce-cart .woocommerce > .woocommerce-error{
    grid-column: 1 / -1;
}

/* Form sản phẩm bên trái */
body.woocommerce-cart .woocommerce-cart-form{
    grid-column: 1;
}

/* Cart totals bên phải */
body.woocommerce-cart .cart-collaterals{
    grid-column: 2;
    width: 100%;
    margin: 0;
}


/* =====================================================
   BẢNG SẢN PHẨM
===================================================== */

body.woocommerce-cart table.shop_table{
    width: 100%;
    margin: 0;
    border: 1px solid var(--cart-border);
    border-radius: 0;
    border-collapse: collapse;
    background: #fff;
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td{
    border: 0;
    border-bottom: 1px solid var(--cart-border);
}

body.woocommerce-cart table.shop_table thead{
    background: var(--cart-navy);
}

body.woocommerce-cart table.shop_table thead th{
    padding: 17px 18px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

body.woocommerce-cart table.shop_table tbody td{
    padding: 22px 18px;
    vertical-align: middle;
    color: var(--cart-text);
}

body.woocommerce-cart table.shop_table tbody tr:last-child td{
    border-bottom: 0;
}


/* =====================================================
   ẢNH SẢN PHẨM
===================================================== */

body.woocommerce-cart td.product-thumbnail{
    width: 115px;
}

body.woocommerce-cart td.product-thumbnail a{
    display: block;
    overflow: hidden;
    background: var(--cart-bg);
}

body.woocommerce-cart td.product-thumbnail img{
    display: block;
    width: 90px;
    height: 115px;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

body.woocommerce-cart td.product-thumbnail a:hover img{
    transform: scale(1.05);
}


/* =====================================================
   TÊN, GIÁ, BIẾN THỂ SẢN PHẨM
===================================================== */

body.woocommerce-cart td.product-name a{
    color: var(--cart-navy);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.25s ease;
}

body.woocommerce-cart td.product-name a:hover{
    color: var(--cart-gold);
}

body.woocommerce-cart td.product-name dl.variation{
    margin-top: 9px;
    margin-bottom: 0;
    color: var(--cart-muted);
    font-size: 13px;
}

body.woocommerce-cart td.product-name dl.variation dt{
    font-weight: 500;
}

body.woocommerce-cart td.product-name dl.variation dd{
    margin: 0 0 4px;
}

body.woocommerce-cart td.product-price,
body.woocommerce-cart td.product-subtotal{
    color: var(--cart-navy);
    font-size: 15px;
    font-weight: 600;
}

body.woocommerce-cart td.product-subtotal{
    color: var(--cart-gold);
}


/* =====================================================
   NÚT XÓA
===================================================== */

body.woocommerce-cart td.product-remove{
    width: 45px;
    padding-right: 5px !important;
    padding-left: 12px !important;
}

body.woocommerce-cart td.product-remove a.remove{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #999 !important;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

body.woocommerce-cart td.product-remove a.remove:hover{
    color: #fff !important;
    border-color: var(--cart-navy);
    background: var(--cart-navy);
}


/* =====================================================
   Ô SỐ LƯỢNG
===================================================== */

body.woocommerce-cart td.product-quantity .quantity{
    display: inline-flex;
    align-items: center;
}

body.woocommerce-cart td.product-quantity input.qty{
    width: 68px;
    height: 44px;
    padding: 5px;
    border: 1px solid var(--cart-border);
    border-radius: 0;
    background: #fff;
    color: var(--cart-navy);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    outline: none;
    box-shadow: none;
}

body.woocommerce-cart td.product-quantity input.qty:focus{
    border-color: var(--cart-gold);
}


/* =====================================================
   COUPON VÀ CẬP NHẬT GIỎ HÀNG
===================================================== */

body.woocommerce-cart table.shop_table td.actions{
    padding: 20px;
    background: #fcfbf8;
}

body.woocommerce-cart table.shop_table td.actions .coupon{
    display: flex;
    align-items: center;
    gap: 10px;
}

body.woocommerce-cart table.shop_table td.actions .coupon label{
    display: none;
}

body.woocommerce-cart table.shop_table td.actions .coupon input.input-text{
    width: 220px;
    height: 46px;
    padding: 0 15px;
    border: 1px solid var(--cart-border);
    border-radius: 0;
    background: #fff;
    color: var(--cart-text);
    font-size: 14px;
    outline: none;
}

body.woocommerce-cart table.shop_table td.actions .coupon input.input-text:focus{
    border-color: var(--cart-gold);
}


/* Nút chung */
body.woocommerce-cart .woocommerce button.button,
body.woocommerce-cart .woocommerce a.button,
body.woocommerce-cart .woocommerce input.button{
    min-height: 46px;
    padding: 13px 22px;
    border: 1px solid var(--cart-navy);
    border-radius: 0;
    background: var(--cart-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

body.woocommerce-cart .woocommerce button.button:hover,
body.woocommerce-cart .woocommerce a.button:hover,
body.woocommerce-cart .woocommerce input.button:hover{
    border-color: var(--cart-gold);
    background: var(--cart-gold);
    color: #fff;
}

/* Nút cập nhật bị disabled */
body.woocommerce-cart .woocommerce button.button:disabled,
body.woocommerce-cart .woocommerce button.button:disabled[disabled]{
    opacity: 0.45;
    cursor: not-allowed;
}


/* =====================================================
   CART TOTALS
===================================================== */

body.woocommerce-cart .cart-collaterals .cart_totals{
    float: none;
    width: 100%;
    margin: 0;
    padding: 30px;
    border: 1px solid rgba(184, 154, 94, 0.5);
    background: #fff;
    position: sticky;
    top: 120px;
}

body.woocommerce-cart .cart-collaterals .cart_totals h2{
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 16px;
    color: var(--cart-navy);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.3;
}

body.woocommerce-cart .cart-collaterals .cart_totals h2::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--cart-gold);
}

body.woocommerce-cart .cart_totals table.shop_table{
    border: 0;
    background: transparent;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td{
    padding: 17px 0;
    border-bottom: 1px solid var(--cart-border);
    background: transparent;
    color: var(--cart-text);
    vertical-align: top;
}

body.woocommerce-cart .cart_totals table.shop_table th{
    width: 42%;
    font-size: 14px;
    font-weight: 500;
}

body.woocommerce-cart .cart_totals table.shop_table td{
    text-align: right;
    font-size: 14px;
}

body.woocommerce-cart .cart_totals .cart-subtotal td{
    color: var(--cart-navy);
    font-weight: 600;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td{
    padding-top: 21px;
    padding-bottom: 21px;
    border-bottom: 0;
    color: var(--cart-navy);
    font-size: 18px;
    font-weight: 700;
}

body.woocommerce-cart .cart_totals .order-total td{
    color: var(--cart-gold);
}


/* Shipping */
body.woocommerce-cart .woocommerce-shipping-methods{
    margin: 0;
    padding: 0;
    list-style: none;
}

body.woocommerce-cart .woocommerce-shipping-methods li{
    margin-bottom: 7px;
}

body.woocommerce-cart .woocommerce-shipping-destination{
    margin: 10px 0 0;
    color: var(--cart-muted);
    font-size: 13px;
    line-height: 1.6;
}

body.woocommerce-cart .shipping-calculator-button{
    color: var(--cart-gold);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}


/* =====================================================
   NÚT CHECKOUT
===================================================== */

body.woocommerce-cart .wc-proceed-to-checkout{
    padding: 25px 0 0;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 15px 20px;
    border: 1px solid var(--cart-gold);
    background: var(--cart-gold);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-align: center;
    text-transform: uppercase;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover{
    border-color: var(--cart-navy);
    background: var(--cart-navy);
    color: #fff;
}


/* =====================================================
   GIỎ HÀNG TRỐNG
===================================================== */

body.woocommerce-cart .woocommerce-cart-form__cart-item{
    background: #fff;
}

body.woocommerce-cart .cart-empty{
    grid-column: 1 / -1;
    margin: 20px 0;
    padding: 55px 30px;
    border: 1px solid var(--cart-border);
    background: #fff;
    color: var(--cart-navy);
    font-size: 18px;
    text-align: center;
}

body.woocommerce-cart .return-to-shop{
    grid-column: 1 / -1;
    text-align: center;
}

body.woocommerce-cart .return-to-shop .button{
    padding: 15px 30px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px){

    body.woocommerce-cart .woocommerce{
        grid-template-columns: 1fr;
        gap: 35px;
    }

    body.woocommerce-cart .woocommerce-cart-form,
    body.woocommerce-cart .cart-collaterals{
        grid-column: 1;
    }

    body.woocommerce-cart .cart-collaterals .cart_totals{
        position: static;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px){

    body.woocommerce-cart .site-main,
    body.woocommerce-cart main{
        padding-top: 40px;
        padding-bottom: 60px;
    }

    body.woocommerce-cart .woocommerce{
        display: block;
    }

    body.woocommerce-cart .woocommerce-cart-form{
        margin-bottom: 30px;
    }

    body.woocommerce-cart table.shop_table_responsive{
        border: 0;
        background: transparent;
    }

    body.woocommerce-cart table.shop_table_responsive thead{
        display: none;
    }

    body.woocommerce-cart table.shop_table_responsive tr.cart_item{
        display: grid;
        grid-template-columns: 85px minmax(0, 1fr) 32px;
        column-gap: 15px;
        margin-bottom: 18px;
        padding: 15px;
        border: 1px solid var(--cart-border);
        background: #fff;
    }

    body.woocommerce-cart table.shop_table_responsive tr.cart_item td{
        display: block;
        width: 100%;
        padding: 7px 0;
        border: 0;
        text-align: left !important;
    }

    body.woocommerce-cart table.shop_table_responsive tr.cart_item td::before{
        display: none;
    }

    body.woocommerce-cart td.product-thumbnail{
        display: block !important;
        grid-column: 1;
        grid-row: 1 / span 5;
        width: auto;
        padding: 0 !important;
    }

    body.woocommerce-cart td.product-thumbnail img{
        width: 85px;
        height: 110px;
    }

    body.woocommerce-cart td.product-remove{
        grid-column: 3;
        grid-row: 1;
        width: auto;
        padding: 0 !important;
        text-align: right !important;
    }

    body.woocommerce-cart td.product-name{
        grid-column: 2;
        grid-row: 1;
        padding-top: 0 !important;
        padding-right: 5px !important;
    }

    body.woocommerce-cart td.product-price{
        grid-column: 2 / 4;
        grid-row: 2;
    }

    body.woocommerce-cart td.product-price::before{
        content: "Price: ";
        display: inline;
        color: var(--cart-muted);
        font-weight: 400;
    }

    body.woocommerce-cart td.product-quantity{
        grid-column: 2 / 4;
        grid-row: 3;
    }

    body.woocommerce-cart td.product-subtotal{
        grid-column: 2 / 4;
        grid-row: 4;
    }

    body.woocommerce-cart td.product-subtotal::before{
        content: "Subtotal: ";
        display: inline;
        color: var(--cart-muted);
        font-weight: 400;
    }

    body.woocommerce-cart table.shop_table td.actions{
        display: block;
        padding: 15px;
        border: 1px solid var(--cart-border);
        background: #fff;
    }

    body.woocommerce-cart table.shop_table td.actions .coupon{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }

    body.woocommerce-cart table.shop_table td.actions .coupon input.input-text{
        width: 100%;
    }

    body.woocommerce-cart table.shop_table td.actions .coupon button,
    body.woocommerce-cart table.shop_table td.actions > button{
        width: 100%;
        margin: 0;
    }

    body.woocommerce-cart .cart-collaterals .cart_totals{
        padding: 24px 20px;
    }

    body.woocommerce-cart .cart-collaterals .cart_totals h2{
        font-size: 22px;
    }

}


/* =====================================================
   MOBILE NHỎ
===================================================== */

@media (max-width: 480px){

    body.woocommerce-cart table.shop_table_responsive tr.cart_item{
        grid-template-columns: 72px minmax(0, 1fr) 30px;
        column-gap: 12px;
        padding: 12px;
    }

    body.woocommerce-cart td.product-thumbnail img{
        width: 72px;
        height: 95px;
    }

    body.woocommerce-cart td.product-name a{
        font-size: 14px;
    }

    body.woocommerce-cart .cart-collaterals .cart_totals{
        padding: 22px 16px;
    }

}

/* =====================================================
   WOOCOMMERCE CART BLOCK
===================================================== */
.main-content{
	min-height: 150px;
}

body.woocommerce-cart{
    --cart-navy: #0d182a;
    --cart-gold: #b89a5e;
    --cart-border: #e8e2d7;
    --cart-bg: #f8f6f1;
    --cart-text: #252525;
    --cart-muted: #777;
}


/* Khoảng cách toàn trang */
body.woocommerce-cart .main-content{
    padding-top: 60px;
    padding-bottom: 80px;
}


/* Tiêu đề Cart */
body.woocommerce-cart .post-title{
    margin-bottom: 40px;
    color: var(--cart-navy);
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 500;
    text-align: center;
}


/* Bỏ giới hạn alignwide của block */
body.woocommerce-cart .wp-block-woocommerce-cart.alignwide{
    max-width: none;
    margin-right: 0;
    margin-left: 0;
}


/* =====================================================
   BỐ CỤC GIỎ HÀNG 2 CỘT
===================================================== */

body.woocommerce-cart .wc-block-cart{
    gap: 40px;
}

body.woocommerce-cart .wc-block-cart-items{
    border: 1px solid var(--cart-border);
    background: #fff;
}


/* Cột tổng tiền */
body.woocommerce-cart .wc-block-cart__sidebar{
    padding: 0;
}

body.woocommerce-cart .wc-block-cart__sidebar > div{
    border: 1px solid rgba(184, 154, 94, 0.55);
    background: #fff;
}


/* =====================================================
   BẢNG SẢN PHẨM
===================================================== */

body.woocommerce-cart
.wc-block-cart-items
.wc-block-cart-items__header{
    background: var(--cart-navy);
}

body.woocommerce-cart
.wc-block-cart-items
.wc-block-cart-items__header span{
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.woocommerce-cart
.wc-block-cart-items
.wc-block-cart-items__row{
    border-bottom: 1px solid var(--cart-border);
}

body.woocommerce-cart
.wc-block-cart-items
.wc-block-cart-items__row:last-child{
    border-bottom: 0;
}


/* Ảnh sản phẩm */
body.woocommerce-cart
.wc-block-cart-item__image img{
    width: 110px;
    height: 140px;
    object-fit: cover;
    object-position: center;
    background: var(--cart-bg);
}


/* Tên sản phẩm */
body.woocommerce-cart
.wc-block-components-product-name{
    color: var(--cart-navy);
    font-family: "Playfair Display", serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

body.woocommerce-cart
.wc-block-components-product-name:hover{
    color: var(--cart-gold);
}


/* Thông tin biến thể */
body.woocommerce-cart
.wc-block-components-product-details{
    margin-top: 10px;
    color: var(--cart-muted);
    font-size: 13px;
}


/* Giá */
body.woocommerce-cart
.wc-block-components-product-price{
    color: var(--cart-navy);
    font-size: 15px;
    font-weight: 600;
}

body.woocommerce-cart
.wc-block-cart-item__total-price-and-sale-badge-wrapper{
    color: var(--cart-gold);
    font-weight: 600;
}


/* =====================================================
   SỐ LƯỢNG
===================================================== */

body.woocommerce-cart
.wc-block-components-quantity-selector{
    border: 1px solid var(--cart-border);
    border-radius: 0;
    background: #fff;
}

body.woocommerce-cart
.wc-block-components-quantity-selector input{
    color: var(--cart-navy);
    font-weight: 600;
}

body.woocommerce-cart
.wc-block-components-quantity-selector button{
    color: var(--cart-navy);
}

body.woocommerce-cart
.wc-block-components-quantity-selector button:hover{
    background: var(--cart-bg);
}


/* =====================================================
   NÚT REMOVE
===================================================== */

body.woocommerce-cart
.wc-block-cart-item__remove-link{
    padding: 0;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 12px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.woocommerce-cart
.wc-block-cart-item__remove-link:hover{
    color: var(--cart-gold);
}


/* =====================================================
   CART TOTALS
===================================================== */

body.woocommerce-cart
.wc-block-cart__totals-title{
    padding: 24px 25px 18px;
    border-bottom: 1px solid var(--cart-border);
    color: var(--cart-navy);
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 500;
    text-transform: none;
}

body.woocommerce-cart
.wc-block-components-totals-wrapper{
    padding: 17px 25px;
    border-top: 1px solid var(--cart-border);
}

body.woocommerce-cart
.wc-block-components-totals-item__label{
    color: var(--cart-text);
    font-size: 14px;
    font-weight: 500;
}

body.woocommerce-cart
.wc-block-components-totals-item__value{
    color: var(--cart-navy);
    font-size: 14px;
    font-weight: 600;
}

body.woocommerce-cart
.wc-block-components-totals-footer-item{
    padding-top: 22px;
    padding-bottom: 22px;
}

body.woocommerce-cart
.wc-block-components-totals-footer-item
.wc-block-components-totals-item__label{
    color: var(--cart-navy);
    font-size: 18px;
    font-weight: 700;
}

body.woocommerce-cart
.wc-block-components-totals-footer-item
.wc-block-components-totals-item__value{
    color: var(--cart-gold);
    font-size: 20px;
    font-weight: 700;
}


/* =====================================================
   COUPON
===================================================== */

body.woocommerce-cart
.wc-block-components-panel__button{
    color: var(--cart-navy);
    font-size: 14px;
    font-weight: 600;
}

body.woocommerce-cart
.wc-block-components-text-input input{
    min-height: 48px;
    border: 1px solid var(--cart-border);
    border-radius: 0;
    box-shadow: none;
}

body.woocommerce-cart
.wc-block-components-text-input input:focus{
    border-color: var(--cart-gold);
    box-shadow: none;
}


/* =====================================================
   BUTTON CHUNG
===================================================== */

body.woocommerce-cart
.wc-block-components-button{
    min-height: 52px;
    border: 1px solid var(--cart-navy);
    border-radius: 0;
    background: var(--cart-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

body.woocommerce-cart
.wc-block-components-button:hover{
    border-color: var(--cart-gold);
    background: var(--cart-gold);
    color: #fff;
}


/* Nút Proceed to Checkout */
body.woocommerce-cart
.wc-block-cart__submit-button{
    min-height: 58px;
    border-color: var(--cart-gold);
    background: var(--cart-gold);
    color: #fff;
}

body.woocommerce-cart
.wc-block-cart__submit-button:hover{
    border-color: var(--cart-navy);
    background: var(--cart-navy);
}


/* =====================================================
   GIỎ HÀNG TRỐNG
===================================================== */

body.woocommerce-cart
.wc-block-cart__empty-cart__title{
    margin: 50px 0 30px;
    color: var(--cart-navy);
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 500;
}

body.woocommerce-cart
.wp-block-woocommerce-empty-cart-block > h2{
    color: var(--cart-navy);
    font-family: "Playfair Display", serif;
}


/* Sản phẩm đề xuất khi giỏ trống */
body.woocommerce-cart
.wc-block-grid__product{
    padding: 15px;
}

body.woocommerce-cart
.wc-block-grid__product-image img{
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

body.woocommerce-cart
.wc-block-grid__product-title{
    margin-top: 15px;
    color: var(--cart-navy);
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 500;
}

body.woocommerce-cart
.wc-block-grid__product-price{
    margin-top: 8px;
    color: var(--cart-gold);
    font-weight: 600;
}

body.woocommerce-cart
.wc-block-grid__product-add-to-cart
.wp-block-button__link{
    border-radius: 0;
    background: var(--cart-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

body.woocommerce-cart
.wc-block-grid__product-add-to-cart
.wp-block-button__link:hover{
    background: var(--cart-gold);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px){

    body.woocommerce-cart .main-content{
        padding-top: 40px;
        padding-bottom: 60px;
    }

    body.woocommerce-cart .post-title{
        margin-bottom: 30px;
        font-size: 34px;
    }

    body.woocommerce-cart
    .wc-block-cart{
        display: block;
    }

    body.woocommerce-cart
    .wc-block-cart__main{
        width: 100%;
        padding-right: 0;
    }

    body.woocommerce-cart
    .wc-block-cart__sidebar{
        width: 100%;
        margin-top: 30px;
        padding-left: 0;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px){

    body.woocommerce-cart .post-title{
        font-size: 30px;
    }

    body.woocommerce-cart
    .wc-block-cart-items{
        border: 0;
    }

    body.woocommerce-cart
    .wc-block-cart-items
    .wc-block-cart-items__row{
        margin-bottom: 18px;
        padding: 15px;
        border: 1px solid var(--cart-border);
        background: #fff;
    }

    body.woocommerce-cart
    .wc-block-cart-item__image img{
        width: 85px;
        height: 110px;
    }

    body.woocommerce-cart
    .wc-block-components-product-name{
        font-size: 16px;
    }

    body.woocommerce-cart
    .wc-block-cart__totals-title{
        padding-right: 18px;
        padding-left: 18px;
        font-size: 22px;
    }

    body.woocommerce-cart
    .wc-block-components-totals-wrapper{
        padding-right: 18px;
        padding-left: 18px;
    }

}

/* =====================================================
   FIX CART BLOCK 2 CỘT
===================================================== */

body.woocommerce-cart
.wc-block-components-sidebar-layout{
    display: grid !important;
    grid-template-columns: minmax(0, 1.65fr) minmax(330px, .75fr) !important;
    gap: 40px !important;
    align-items: start;
}

/* Cột sản phẩm bên trái */
body.woocommerce-cart
.wc-block-components-sidebar-layout
.wc-block-components-main{
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Cột tổng tiền bên phải */
body.woocommerce-cart
.wc-block-components-sidebar-layout
.wc-block-components-sidebar{
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ẩn mô tả sản phẩm trong cart */
body.woocommerce-cart
.wc-block-components-product-metadata__description{
    display: none !important;
}


/* Tablet và mobile */
@media (max-width: 991px){

    body.woocommerce-cart
    .wc-block-components-sidebar-layout{
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

}

/* =====================================================
   CONTINUE SHOPPING – CART BLOCK
===================================================== */

body.woocommerce-cart .molly-continue-shopping{
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 25px;
}

body.woocommerce-cart .molly-continue-shopping__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 26px;
    border: 1px solid #0d182a;
    background: #fff;
    color: #0d182a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color .3s ease,
        background-color .3s ease,
        border-color .3s ease;
}

body.woocommerce-cart .molly-continue-shopping__button:hover{
    border-color: #b89a5e;
    background: #b89a5e;
    color: #fff;
}

body.woocommerce-cart .molly-continue-shopping__button span:first-child{
    font-size: 17px;
    line-height: 1;
    transition: transform .3s ease;
}

body.woocommerce-cart .molly-continue-shopping__button:hover span:first-child{
    transform: translateX(-4px);
}

@media (max-width: 575px){

    body.woocommerce-cart .molly-continue-shopping__button{
        width: 100%;
    }

}

/* =====================================================
   MOLLY NGUYEN DESIGN - WOOCOMMERCE CHECKOUT BLOCK
===================================================== */

body.woocommerce-checkout{
    background:#f8f6f1;
    color:#0d182a;
}

/* Khoảng cách toàn trang */
body.woocommerce-checkout .main-content{
    padding:70px 0 90px;
}

body.woocommerce-checkout .main-content > .container{
    max-width:1320px;
}

/* Bỏ giới hạn alignwide mặc định */
body.woocommerce-checkout .wp-block-woocommerce-checkout.alignwide{
    max-width:none;
    margin-left:0;
    margin-right:0;
}

/* Tiêu đề trang */
body.woocommerce-checkout .post-title{
    margin:0 0 45px;
    text-align:center;
    color:#0d182a;
    font-family:"Cormorant Garamond", serif;
    font-size:52px;
    font-weight:500;
    line-height:1.1;
    letter-spacing:.02em;
}

body.woocommerce-checkout .post-title::after{
    content:"";
    display:block;
    width:70px;
    height:1px;
    margin:18px auto 0;
    background:#b89a5e;
}


/* =====================================================
   BỐ CỤC 2 CỘT
===================================================== */

body.woocommerce-checkout
.wc-block-components-sidebar-layout{
    display:grid !important;
    grid-template-columns:minmax(0, 1.45fr) minmax(360px, .8fr);
    gap:45px;
    align-items:start;
}

body.woocommerce-checkout
.wc-block-components-sidebar-layout
.wc-block-components-main{
    width:100% !important;
    max-width:none !important;
    padding:0 !important;
    margin:0 !important;
}

body.woocommerce-checkout
.wc-block-components-sidebar-layout
.wc-block-components-sidebar{
    width:100% !important;
    max-width:none !important;
    padding:0 !important;
    margin:0 !important;
}


/* =====================================================
   KHUNG FORM BÊN TRÁI
===================================================== */

body.woocommerce-checkout .wc-block-checkout__form{
    background:#fff;
    border:1px solid rgba(184,154,94,.35);
    padding:42px;
    box-shadow:0 18px 45px rgba(13,24,42,.07);
}

/* Từng nhóm thông tin */
body.woocommerce-checkout
.wc-block-components-checkout-step{
    padding:0 0 35px !important;
    margin:0 0 35px !important;
    border-bottom:1px solid rgba(13,24,42,.1);
}

body.woocommerce-checkout
.wc-block-components-checkout-step:last-of-type{
    margin-bottom:25px !important;
}

/* Tiêu đề từng phần */
body.woocommerce-checkout
.wc-block-components-checkout-step__heading-container{
    margin-bottom:24px;
}

body.woocommerce-checkout
.wc-block-components-title,
body.woocommerce-checkout
.wc-block-components-checkout-step__title{
    margin:0;
    color:#0d182a;
    font-family:"Cormorant Garamond", serif;
    font-size:30px !important;
    font-weight:600;
    line-height:1.2;
    letter-spacing:.01em;
}

/* Nội dung phụ */
body.woocommerce-checkout
.wc-block-checkout__guest-checkout-notice{
    margin:10px 0 0;
    color:#707070;
    font-size:14px;
}


/* =====================================================
   INPUT, SELECT, TEXTAREA
===================================================== */

body.woocommerce-checkout
.wc-block-components-text-input,
body.woocommerce-checkout
.wc-blocks-components-select{
    margin-bottom:18px;
}

body.woocommerce-checkout
.wc-block-components-text-input input,
body.woocommerce-checkout
.wc-block-components-text-input textarea,
body.woocommerce-checkout
.wc-blocks-components-select__select{
    min-height:56px !important;
    padding:20px 16px 8px !important;
    color:#0d182a !important;
    background:#fff !important;
    border:1px solid rgba(13,24,42,.22) !important;
    border-radius:0 !important;
    box-shadow:none !important;
    font-size:15px !important;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

body.woocommerce-checkout
.wc-block-components-text-input textarea{
    min-height:120px !important;
    resize:vertical;
}

/* Label nổi */
body.woocommerce-checkout
.wc-block-components-text-input label,
body.woocommerce-checkout
.wc-blocks-components-select__label{
    color:#777 !important;
    font-size:14px !important;
}

/* Focus */
body.woocommerce-checkout
.wc-block-components-text-input input:focus,
body.woocommerce-checkout
.wc-block-components-text-input textarea:focus,
body.woocommerce-checkout
.wc-blocks-components-select__select:focus{
    border-color:#b89a5e !important;
    box-shadow:0 0 0 3px rgba(184,154,94,.12) !important;
    outline:none !important;
}

/* Select icon */
body.woocommerce-checkout
.wc-blocks-components-select__expand{
    fill:#0d182a;
}

/* Link thêm apartment */
body.woocommerce-checkout
.wc-block-components-address-form__address_2-toggle{
    display:inline-block;
    margin:-4px 0 18px;
    color:#9a7b3f;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
}

body.woocommerce-checkout
.wc-block-components-address-form__address_2-toggle:hover{
    color:#0d182a;
}


/* =====================================================
   CARD ĐỊA CHỈ
===================================================== */

body.woocommerce-checkout
.wc-block-components-address-card{
    padding:18px 20px;
    background:#faf8f3;
    border:1px solid rgba(184,154,94,.32);
    border-radius:0;
}

body.woocommerce-checkout
.wc-block-components-address-card__edit{
    color:#9a7b3f;
    font-weight:600;
    text-decoration:underline;
    text-underline-offset:3px;
}


/* =====================================================
   CHECKBOX
===================================================== */

body.woocommerce-checkout
.wc-block-components-checkbox__input{
    width:20px !important;
    height:20px !important;
    border:1px solid rgba(13,24,42,.45) !important;
    border-radius:0 !important;
}

body.woocommerce-checkout
.wc-block-components-checkbox__input:checked{
    background:#0d182a !important;
    border-color:#0d182a !important;
}

body.woocommerce-checkout
.wc-block-components-checkbox__label{
    color:#3f4652;
    font-size:14px;
    line-height:1.6;
}


/* =====================================================
   THÔNG BÁO LỖI / NOTICE
===================================================== */

body.woocommerce-checkout
.wc-block-components-notice-banner{
    padding:16px 18px;
    border-radius:0;
    font-size:14px;
}

body.woocommerce-checkout
.wc-block-components-notice-banner.is-error{
    color:#842029;
    background:#fff3f3;
    border:1px solid #e8b5b9;
    border-left:4px solid #b4232d;
}

body.woocommerce-checkout
.wc-block-components-notice-banner.is-success{
    color:#164f2c;
    background:#f0faf3;
    border:1px solid #b9dec4;
    border-left:4px solid #2d7a48;
}


/* =====================================================
   GHI CHÚ VÀ ĐIỀU KHOẢN
===================================================== */

body.woocommerce-checkout
.wc-block-checkout__order-notes{
    margin:0 0 25px;
}

body.woocommerce-checkout
.wc-block-checkout__terms{
    padding:24px 0 !important;
    margin:0 !important;
    border-top:1px solid rgba(13,24,42,.1) !important;
    border-bottom:0 !important;
    color:#616773;
    font-size:14px;
    line-height:1.7;
}

body.woocommerce-checkout
.wc-block-checkout__terms a{
    color:#9a7b3f;
    text-decoration:none;
    border-bottom:1px solid rgba(154,123,63,.45);
}

body.woocommerce-checkout
.wc-block-checkout__terms a:hover{
    color:#0d182a;
    border-color:#0d182a;
}


/* =====================================================
   NÚT PLACE ORDER
===================================================== */

body.woocommerce-checkout
.wc-block-components-checkout-place-order-button{
    min-height:58px !important;
    padding:15px 30px !important;
    color:#fff !important;
    background:#0d182a !important;
    border:1px solid #0d182a !important;
    border-radius:0 !important;
    font-size:14px !important;
    font-weight:600 !important;
    letter-spacing:.12em;
    text-transform:uppercase;
    box-shadow:none !important;
    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease,
        transform .3s ease;
}

body.woocommerce-checkout
.wc-block-components-checkout-place-order-button:hover{
    color:#0d182a !important;
    background:#b89a5e !important;
    border-color:#b89a5e !important;
    transform:translateY(-2px);
}

body.woocommerce-checkout
.wc-block-components-checkout-place-order-button:disabled{
    opacity:.5;
    transform:none;
    cursor:not-allowed;
}


/* =====================================================
   ORDER SUMMARY BÊN PHẢI
===================================================== */

body.woocommerce-checkout
.wc-block-checkout__sidebar{
    position:sticky !important;
    top:120px;
    background:#0d182a;
    border:1px solid rgba(184,154,94,.55);
    box-shadow:0 22px 50px rgba(13,24,42,.15);
    color:#fff;
}

/* Tiêu đề order summary */
body.woocommerce-checkout
.wc-block-components-checkout-order-summary__title{
    padding:25px 28px !important;
    margin:0 !important;
    color:#fff;
    background:rgba(255,255,255,.025);
    border-bottom:1px solid rgba(184,154,94,.4);
}

body.woocommerce-checkout
.wc-block-components-checkout-order-summary__title-text{
    margin:0;
    color:#fff;
    font-family:"Cormorant Garamond", serif;
    font-size:28px;
    font-weight:600;
}

body.woocommerce-checkout
.wc-block-components-checkout-order-summary__title-price{
    color:#d6bc83;
    font-size:17px;
    font-weight:600;
}

body.woocommerce-checkout
.wc-block-components-checkout-order-summary__title-icon svg{
    fill:#d6bc83;
}

/* Nội dung summary */
body.woocommerce-checkout
.wc-block-components-checkout-order-summary__content{
    color:#fff;
}

/* Từng sản phẩm */
body.woocommerce-checkout
.wc-block-components-order-summary-item{
    display:grid !important;
    grid-template-columns:72px minmax(0, 1fr) auto;
    gap:15px;
    align-items:start;
    padding:22px 28px !important;
    border-bottom:1px solid rgba(255,255,255,.12);
}

body.woocommerce-checkout
.wc-block-components-order-summary-item__image{
    width:72px !important;
    height:88px !important;
    position:relative;
}

body.woocommerce-checkout
.wc-block-components-order-summary-item__image img{
    width:72px !important;
    height:88px !important;
    max-width:none !important;
    object-fit:cover;
    object-position:center;
    border:1px solid rgba(184,154,94,.55);
}

/* Số lượng */
body.woocommerce-checkout
.wc-block-components-order-summary-item__quantity{
    top:-9px !important;
    right:-9px !important;
    min-width:23px;
    height:23px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0d182a;
    background:#b89a5e;
    border:2px solid #0d182a;
    border-radius:50%;
    font-size:11px;
    font-weight:700;
}

/* Tên sản phẩm */
body.woocommerce-checkout
.wc-block-components-product-name{
    margin:0 0 7px;
    color:#fff !important;
    font-family:inherit;
    font-size:14px !important;
    font-weight:500 !important;
    line-height:1.45;
}

/* Giá đơn */
body.woocommerce-checkout
.wc-block-components-order-summary-item__individual-price{
    color:rgba(255,255,255,.65) !important;
    font-size:13px;
}

/* Giá tổng từng sản phẩm */
body.woocommerce-checkout
.wc-block-components-order-summary-item__total-price{
    color:#d6bc83;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
}

body.woocommerce-checkout
.wc-block-components-order-summary-item__total-price
.wc-block-components-product-price__value{
    color:#d6bc83 !important;
}

/* Ẩn phần mô tả bị lặp */
body.woocommerce-checkout
.wc-block-components-product-metadata__description{
    display:none !important;
}


/* =====================================================
   COUPON
===================================================== */

body.woocommerce-checkout
.wp-block-woocommerce-checkout-order-summary-coupon-form-block{
    border-bottom:1px solid rgba(255,255,255,.12);
}

body.woocommerce-checkout
.wc-block-components-totals-coupon{
    margin:0;
}

body.woocommerce-checkout
.wc-block-components-panel__button{
    padding:19px 28px !important;
    color:#d6bc83 !important;
    font-size:14px;
    font-weight:500;
}

body.woocommerce-checkout
.wc-block-components-panel__button-icon{
    fill:#d6bc83;
}

/* Form coupon khi mở */
body.woocommerce-checkout
.wc-block-components-totals-coupon__content{
    padding:0 28px 22px;
}

body.woocommerce-checkout
.wc-block-components-totals-coupon__content input{
    min-height:48px;
    color:#fff !important;
    background:rgba(255,255,255,.06) !important;
    border:1px solid rgba(255,255,255,.22) !important;
    border-radius:0 !important;
}

body.woocommerce-checkout
.wc-block-components-totals-coupon__button{
    min-height:48px;
    color:#0d182a !important;
    background:#b89a5e !important;
    border:1px solid #b89a5e !important;
    border-radius:0 !important;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
}


/* =====================================================
   SUBTOTAL / TOTAL
===================================================== */

body.woocommerce-checkout
.wc-block-components-totals-wrapper{
    border-top:0 !important;
}

body.woocommerce-checkout
.wc-block-components-totals-item{
    padding:17px 28px !important;
    color:rgba(255,255,255,.78);
}

body.woocommerce-checkout
.wc-block-components-totals-item__label{
    font-size:14px;
}

body.woocommerce-checkout
.wc-block-components-totals-item__value{
    color:#fff !important;
    font-size:14px;
    font-weight:600;
}

body.woocommerce-checkout
.wc-block-components-totals-footer-item{
    padding-top:23px !important;
    padding-bottom:23px !important;
    border-top:1px solid rgba(184,154,94,.45);
}

body.woocommerce-checkout
.wc-block-components-totals-footer-item
.wc-block-components-totals-item__label{
    color:#fff;
    font-family:"Cormorant Garamond", serif;
    font-size:24px;
    font-weight:600;
}

body.woocommerce-checkout
.wc-block-components-totals-footer-item
.wc-block-components-totals-item__value,
body.woocommerce-checkout
.wc-block-components-totals-footer-item-tax-value{
    color:#d6bc83 !important;
    font-size:21px;
    font-weight:700;
}


/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media (max-width:991.98px){

    body.woocommerce-checkout .main-content{
        padding:50px 0 70px;
    }

    body.woocommerce-checkout .post-title{
        margin-bottom:35px;
        font-size:44px;
    }

    body.woocommerce-checkout
    .wc-block-components-sidebar-layout{
        display:flex !important;
        flex-direction:column;
        gap:30px;
    }

    body.woocommerce-checkout
    .wc-block-components-sidebar-layout
    .wc-block-components-main,
    body.woocommerce-checkout
    .wc-block-components-sidebar-layout
    .wc-block-components-sidebar{
        width:100% !important;
    }

    body.woocommerce-checkout
    .wc-block-checkout__sidebar{
        position:relative !important;
        top:auto !important;
    }

}


/* =====================================================
   RESPONSIVE MOBILE
===================================================== */

@media (max-width:575.98px){

    body.woocommerce-checkout .main-content{
        padding:35px 0 55px;
    }

    body.woocommerce-checkout .main-content > .container{
        padding-left:15px;
        padding-right:15px;
    }

    body.woocommerce-checkout .post-title{
        margin-bottom:28px;
        font-size:38px;
    }

    body.woocommerce-checkout .post-title::after{
        width:55px;
        margin-top:14px;
    }

    body.woocommerce-checkout .wc-block-checkout__form{
        padding:25px 18px;
    }

    body.woocommerce-checkout
    .wc-block-components-title,
    body.woocommerce-checkout
    .wc-block-components-checkout-step__title{
        font-size:26px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-checkout-step{
        padding-bottom:28px !important;
        margin-bottom:28px !important;
    }

    /* Hai ô first name / last name về 1 cột */
    body.woocommerce-checkout
    .wc-block-components-address-form{
        display:block !important;
    }

    body.woocommerce-checkout
    .wc-block-components-address-form > *{
        width:100% !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item{
        grid-template-columns:62px minmax(0, 1fr);
        gap:13px;
        padding:19px 18px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__image{
        width:62px !important;
        height:78px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__image img{
        width:62px !important;
        height:78px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-order-summary-item__total-price{
        grid-column:2;
        margin-top:3px;
        text-align:left;
    }

    body.woocommerce-checkout
    .wc-block-components-checkout-order-summary__title,
    body.woocommerce-checkout
    .wc-block-components-totals-item,
    body.woocommerce-checkout
    .wc-block-components-panel__button{
        padding-left:18px !important;
        padding-right:18px !important;
    }

    body.woocommerce-checkout
    .wc-block-components-checkout-order-summary__title-text{
        font-size:25px;
    }

}

/* =====================================================
   PRODUCT GALLERY PAGE
===================================================== */

.product-gallery-page .product-portfolio-section {
    padding: 100px 0;
}

.product-gallery-page .product-portfolio-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    padding: 0 20px;
}

.product-gallery-page .product-portfolio-heading h1 {
    margin: 12px 0 18px;
}


/* =====================================================
   MASONRY
===================================================== */

.product-gallery-page .product-portfolio-masonry {
    column-count: 4;
    column-gap: 18px;
    width: 100%;
}

.product-gallery-page .product-portfolio-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

.product-gallery-page .product-portfolio-link {
    display: block;
    position: relative;
    overflow: hidden;
    background: #f3f1ed;
}

.product-gallery-page .product-portfolio-image {
    display: block;
    width: 100%;
    height: auto;
    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}

.product-gallery-page .product-portfolio-link:hover
.product-portfolio-image {
    transform: scale(1.045);
}


/* =====================================================
   LOAD MORE STATUS
===================================================== */

.product-gallery-sentinel {
    width: 100%;
    height: 1px;
    pointer-events: none;
}

.product-gallery-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 90px;
    padding: 25px 15px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
}

.product-gallery-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(13, 24, 42, 0.18);
    border-top-color: #0d182a;
    border-radius: 50%;
    animation: product-gallery-spin 0.8s linear infinite;
}

.product-gallery-status.is-finished
.product-gallery-spinner,
.product-gallery-status.is-error
.product-gallery-spinner {
    display: none;
}

.product-gallery-status.is-finished {
    color: #9c824d;
}

.product-gallery-status.is-error {
    color: #a54242;
}

@keyframes product-gallery-spin {
    to {
        transform: rotate(360deg);
    }
}


/* Hiệu ứng sản phẩm mới xuất hiện */
.product-gallery-item-enter {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.product-gallery-item-enter.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199px) {
    .product-gallery-page .product-portfolio-masonry {
        column-count: 3;
    }
}

@media (max-width: 767px) {
    .product-gallery-page .product-portfolio-section {
        padding: 65px 0;
    }

    .product-gallery-page .product-portfolio-heading {
        margin-bottom: 35px;
    }

    .product-gallery-page .product-portfolio-masonry {
        column-count: 2;
        column-gap: 10px;
    }

    .product-gallery-page .product-portfolio-item {
        margin-bottom: 10px;
    }

    .product-gallery-status {
        min-height: 70px;
        font-size: 12px;
    }
}

@media (max-width: 479px) {
    .product-gallery-page .product-portfolio-masonry {
        column-count: 2;
    }
}

/* =====================================================
   PRODUCT ARCHIVE
===================================================== */

#primary {
    padding: 100px 0 50px;
}

.product-archive-page {
    background: #fff;
}

.product-archive-header {
    margin-bottom: 35px;
}

.product-archive-heading {
    max-width: 850px;
}

.product-archive-heading .page-title {
    margin: 0 0 14px;
    color: #0d182a;
    font-family: var(--molly-heading-font, serif);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.1;
}

.product-archive-heading .term-description {
    color: #687080;
    font-size: 16px;
    line-height: 1.75;
}

.product-archive-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 50px;
    align-items: start;
}


/* =====================================================
   FILTER SIDEBAR
===================================================== */

.product-filter-sidebar {
    position: relative;
}

.product-filter-sidebar-inner {
    position: static;
    top: auto;
    align-self: auto;
}

.product-filter-widget {
    margin-bottom: 0;
    padding: 26px 0;
    border-bottom: 1px solid rgba(13, 24, 42, 0.12);
}

.product-filter-widget:first-child {
    padding-top: 0;
}

.product-filter-title {
    margin: 0 0 18px;
    color: #0d182a;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.product-filter-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-filter-widget li {
    margin-bottom: 11px;
}

.product-filter-widget li:last-child {
    margin-bottom: 0;
}

.product-filter-widget a {
    color: #4d5564;
    text-decoration: none;
    transition: color 0.25s ease;
}

.product-filter-widget a:hover,
.product-filter-widget .chosen a {
    color: #b89a5e;
}


/* =====================================================
   SEARCH
===================================================== */

.product-filter-widget form {
    position: relative;
}

.product-filter-widget input[type="search"],
.product-filter-widget input[type="text"] {
    width: 100%;
    min-height: 48px;
    padding: 10px;
    color: #0d182a;
    background: #fff;
    border: 1px solid rgba(13, 24, 42, 0.18);
    border-radius: 0;
    outline: none;
}

.product-filter-widget input[type="search"]:focus,
.product-filter-widget input[type="text"]:focus {
    border-color: #b89a5e;
}


/* =====================================================
   PRICE FILTER
===================================================== */

.woocommerce .widget_price_filter .price_slider_wrapper {
    padding-top: 5px;
}

.woocommerce .widget_price_filter .price_slider {
    margin-bottom: 22px;
}

.woocommerce .widget_price_filter .ui-slider {
    height: 3px;
    background: rgba(13, 24, 42, 0.15);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background: #b89a5e;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    top: -6px;
    width: 15px;
    height: 15px;
    margin-left: -7px;
    background: #0d182a;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #0d182a;
}

.woocommerce .widget_price_filter .price_slider_amount {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
    float: none;
    min-height: 40px;
    padding: 9px 18px;
    color: #fff;
    background: #0d182a;
    border: 0;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.woocommerce .widget_price_filter .price_label {
    color: #626a78;
    font-size: 13px;
}


/* =====================================================
   PRODUCT CONTENT
===================================================== */

.product-archive-content {
    min-width: 0;
}

.product-toolbar {
    margin-bottom: 30px;
}

.product-toolbar::after {
    display: table;
    clear: both;
    content: "";
}

.woocommerce .woocommerce-result-count {
    margin: 12px 0 0;
    color: #69717e;
    font-size: 14px;
}

.woocommerce .woocommerce-ordering {
    margin: 0;
}

.woocommerce .woocommerce-ordering select {
    min-width: 210px;
    min-height: 46px;
    padding: 9px 38px 9px 14px;
    color: #0d182a;
    background-color: #fff;
    border: 1px solid rgba(13, 24, 42, 0.16);
    border-radius: 0;
    outline: none;
}


/* 3 sản phẩm một hàng vì đã có sidebar */
.product-archive-content ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 24px;
}

.product-archive-content ul.products::before,
.product-archive-content ul.products::after {
    display: none;
}

.product-archive-content ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
}


/* =====================================================
   MOBILE FILTER BUTTON
===================================================== */

.product-filter-toggle,
.product-filter-close,
.product-filter-overlay {
    display: none;
}

@media (max-width: 991px) {

    .product-archive-page {
        padding: 35px 0 70px;
    }

    .product-archive-layout {
        display: block;
    }

    .product-filter-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        margin-bottom: 25px;
        padding: 10px 18px;
        color: #0d182a;
        background: #fff;
        border: 1px solid rgba(13, 24, 42, 0.18);
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .product-filter-sidebar {
        position: fixed;
        z-index: 10002;
        top: 0;
        left: 0;
        width: min(88vw, 380px);
        height: 100dvh;
        padding: 65px 24px 30px;
        background: #fff;
        box-shadow: 15px 0 40px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform 0.35s ease;
    }

    .product-filter-sidebar.is-open {
        transform: translateX(0);
    }

    .product-filter-sidebar-inner {
        position: static;
    }

    .product-filter-close {
        display: flex;
        position: absolute;
        top: 15px;
        right: 18px;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        color: #0d182a;
        background: transparent;
        border: 1px solid rgba(13, 24, 42, 0.15);
        font-size: 28px;
        line-height: 1;
    }

    .product-filter-overlay {
        position: fixed;
        z-index: 10001;
        inset: 0;
        background: rgba(6, 12, 22, 0.55);
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .product-filter-overlay.is-open {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    body.product-filter-open {
        overflow: hidden;
    }

    .product-archive-content ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .product-archive-heading .page-title {
        font-size: 36px;
    }

    .woocommerce .woocommerce-result-count,
    .woocommerce .woocommerce-ordering {
        float: none;
        width: 100%;
    }

    .woocommerce .woocommerce-result-count {
        margin: 0 0 12px;
    }

    .woocommerce .woocommerce-ordering select {
        width: 100%;
    }

    .product-archive-content ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
    }
}

@media (max-width: 420px) {

    .product-archive-content ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/*====================================================
SIDEBAR
====================================================*/

.product-filter-sidebar-inner{
    background:#fff;
    border:1px solid rgba(13,24,42,.08);
    padding:15px;
}


/*====================================================
SEARCH
====================================================*/

.product-filter-widget.widget_search{
    margin-bottom:40px;
}

.product-filter-widget .wp-block-search__label{
    display:block;
    margin-bottom:14px;
    font-size:13px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#b89a5e;
    font-weight:600;
}

.product-filter-widget .wp-block-search__inside-wrapper{
    display:flex;
}

.product-filter-widget .wp-block-search__input{
    flex:1;
    height:52px;
    border:1px solid rgba(13,24,42,.15);
    border-right:0;
    padding:0 18px;
    outline:none;
    box-shadow:none;
    font-size:14px;
}

.product-filter-widget .wp-block-search__button{
        width: max-content;
    background: #0d182a;
    color: #fff;
    border: none;
    transition: .3s;
    padding-left: 10px;
    padding-right: 10px;
}

.product-filter-widget .wp-block-search__button:hover{
    background:#b89a5e;
}


/*====================================================
FILTER TITLE
====================================================*/

.wp-block-woocommerce-product-filters > .wp-block-heading{

    display:none;

}


/*====================================================
EACH FILTER
====================================================*/

.wp-block-woocommerce-product-filter-price,
.wp-block-woocommerce-product-filter-attribute,
.wp-block-woocommerce-product-filter-taxonomy,
.wp-block-woocommerce-product-filter-stock,
.wp-block-woocommerce-product-filter-rating{

    padding:28px 0;
    border-top:1px solid rgba(13,24,42,.08);

}

.wp-block-woocommerce-product-filter-price:first-of-type{
    border-top:none;
    padding-top:0;
}

.wp-block-woocommerce-product-filters h3{

    margin:0 0 18px;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:#0d182a;
    font-weight:600;

}


/*====================================================
CHECKBOX
====================================================*/

.wc-block-product-filter-checkbox-list__item{

    margin-bottom:12px;

}

.wc-block-product-filter-checkbox-list__label{

    display:flex;
    align-items:center;
    gap:12px;
    cursor:pointer;
    transition:.25s;

}

.wc-block-product-filter-checkbox-list__label:hover{

    color:#b89a5e;

}

.wc-block-product-filter-checkbox-list__input-wrapper{

    width:18px;
    height:18px;
}

.wc-block-product-filter-checkbox-list__input{

    accent-color:#b89a5e;

}

.wc-block-product-filter-checkbox-list__text{

    font-size:15px;
    color:#4b5565;
}


/*====================================================
ACTIVE FILTER
====================================================*/

.wc-block-product-filter-removable-chips{

    margin-bottom:30px;

}

.wc-block-product-filter-removable-chips__items{

    display:flex;
    flex-wrap:wrap;
    gap:10px;
    list-style:none;
    padding:0;
    margin:0;

}

.wc-block-product-filter-removable-chips__item{

    border:1px solid rgba(13,24,42,.12);
    padding:7px 12px;
    font-size:13px;
    background:#fafafa;

}


/*====================================================
PRICE
====================================================*/

.wc-block-product-filter-price-slider__range{

    margin:12px 0 20px;

}

.wc-block-product-filter-price-slider__range .range-bar{

    background:#b89a5e;

}

.wc-block-product-filter-price-slider input[type=range]{

    accent-color:#b89a5e;

}

.wc-block-product-filter-price-slider__left input,
.wc-block-product-filter-price-slider__right input{

    width:100%;
    height:42px;
    border:1px solid rgba(13,24,42,.12);
    text-align:center;
    font-size:14px;

}


/*====================================================
CATEGORY COUNT
====================================================*/

.wc-block-product-filter-checkbox-list__count{

    margin-left:auto;
    color:#999;
    font-size:13px;

}

/* =========================================
   HEADER ACTIONS
========================================= */

.molly-header-actions {
    display: flex;
    align-items: stretch;
    margin-left: auto;
}


/* Nút đặt lịch */
.molly-appointment-btn {
    min-height: 44px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #b88736;
    color: #071426;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.molly-appointment-btn:hover {
    background: #d5af61;
    color: #071426;
}


/* Khung cart */
.molly-header-cart {
        position: relative;
    /* width: 72px; */
    /* min-height: 44px; */
    /* margin-left: 1px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #a8792e;
    color: #f4df9b;
    text-decoration: none;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 6px 15px;
}

.molly-header-cart:hover {
    background: #c09342;
    color: #ffffff;
}


/* Icon giỏ hàng */
.molly-header-cart > i {
    font-size: 17px;
    line-height: 1;
}


/* Số lượng sản phẩm */
.molly-cart-count {
    position: absolute;
    top: 4px;
    left: 50%;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e95b67;
    color: #ffffff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {

    .molly-header-actions {
        gap: 8px;
    }

    .molly-appointment-btn {
        display: none;
    }

    .molly-header-cart {
        width: 48px;
        min-height: 42px;
        background: transparent;
        border: 0;
    }

    .molly-header-cart > i {
        font-size: 20px;
    }

    .molly-cart-count {
        top: 2px;
    }
}

/* =====================================================
   MOLLY FIXED CONTACT BAR
===================================================== */

:root {
    --molly-contact-navy: #0d182a;
    --molly-contact-navy-light: #17263d;
    --molly-contact-gold: #b89a5e;
    --molly-contact-gold-light: #d7c08e;
    --molly-contact-white: #ffffff;
}


/* =====================================================
   DESKTOP
===================================================== */

.molly-fixed-contact-desktop {
    position: fixed;
    top: 50%;
    right: 18px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-50%);
}

.molly-fixed-contact-item {
    width: 54px;
    height: 54px;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(184, 154, 94, 0.65);
    border-radius: 50%;
    outline: none;
    background: var(--molly-contact-navy);
    color: var(--molly-contact-white);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(13, 24, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.molly-fixed-contact-item:hover {
    color: #fff;
    border-color: var(--molly-contact-gold);
    background: var(--molly-contact-gold);
    transform: translateX(-5px);
    box-shadow: 0 14px 32px rgba(13, 24, 42, 0.28);
}

.molly-fixed-contact-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    font-size: 19px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.molly-fixed-contact-zalo {
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.molly-fixed-contact-label {
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    min-width: max-content;
    padding: 8px 12px;
    border: 1px solid rgba(184, 154, 94, 0.35);
    border-radius: 3px;
    background: var(--molly-contact-navy);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(10px, -50%);
    box-shadow: 0 8px 22px rgba(13, 24, 42, 0.18);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.molly-fixed-contact-label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    border-width: 5px 0 5px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--molly-contact-navy);
    transform: translateY(-50%);
}

.molly-fixed-contact-item:hover .molly-fixed-contact-label {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

.molly-fixed-contact-consult {
    border-color: var(--molly-contact-gold);
    background: var(--molly-contact-gold);
}

.molly-fixed-contact-consult:hover {
    background: var(--molly-contact-navy);
}


/* =====================================================
   MOBILE
===================================================== */

.molly-fixed-contact-mobile {
    display: none;
}

@media (max-width: 767.98px) {

    body {
        padding-bottom: 68px;
    }

    .molly-fixed-contact-desktop {
        display: none;
    }

    .molly-fixed-contact-mobile {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9990;
        min-height: 64px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        border-top: 1px solid rgba(184, 154, 94, 0.35);
        background: #fff;
        box-shadow: 0 -8px 28px rgba(13, 24, 42, 0.12);
    }

    .molly-mobile-contact-item {
        min-width: 0;
        min-height: 64px;
        margin: 0;
        padding: 8px 3px 7px;
        border: 0;
        border-right: 1px solid rgba(13, 24, 42, 0.08);
        border-radius: 0;
        outline: none;
        background: #fff;
        color: var(--molly-contact-navy);
        cursor: pointer;
        font-family: inherit;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .molly-mobile-contact-item:last-child {
        border-right: 0;
    }

    .molly-mobile-contact-item i {
        color: var(--molly-contact-gold);
        font-size: 19px;
        line-height: 1;
    }

    .molly-mobile-contact-item span {
        max-width: 100%;
        overflow: hidden;
        font-size: 10px;
        font-weight: 600;
        line-height: 1.15;
        text-align: center;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .molly-mobile-contact-consult {
        background: var(--molly-contact-gold);
        color: #fff;
    }

    .molly-mobile-contact-consult i {
        color: #fff;
    }

    .molly-mobile-zalo-icon {
        width: 22px;
        height: 22px;
        border: 1px solid var(--molly-contact-gold);
        border-radius: 50%;
        color: var(--molly-contact-gold);
        font-family: Arial, sans-serif;
        font-size: 7px !important;
        font-weight: 700;
        line-height: 20px !important;
    }
}

@media (max-width: 374.98px) {

    .molly-mobile-contact-item span {
        font-size: 9px;
    }

    .molly-mobile-contact-item i {
        font-size: 18px;
    }
}
/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-page {
    padding: 80px 0 70px;
    background: #fff;
    color: #17233a;
}


/* =====================================================
   CONTACT INTRO
===================================================== */

.contact-page .contact-label {
    display: block;
    max-width: 500px;
    margin-bottom: 25px;
    color: #a16f29;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.5px;
}

.contact-page h1 {
    margin: 0 0 24px;
    color: #a16f29;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -1px;
}

.contact-page .col-lg-5 > p {
    max-width: 540px;
    margin: 0;
    color: #26324a;
    font-size: 16px;
    line-height: 1.65;
}


/* =====================================================
   FLUENT FORMS
===================================================== */

.contact-page .fluentform {
    width: 100%;
}

.contact-page .fluentform .ff-el-group {
    margin-bottom: 12px;
}

.contact-page .fluentform .ff-el-input--label {
    margin-bottom: 5px;
}

.contact-page .fluentform .ff-el-input--label label {
    color: #24304a;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.contact-page .fluentform .ff-el-input--label label::after {
    color: #d52b2b;
}

.contact-page .fluentform .ff-el-form-control {
    width: 100%;
    min-height: 58px;
    padding: 14px 18px;
    border: 1px solid #71798a;
    border-radius: 4px;
    background: #fff;
    color: #17233a;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-page .fluentform textarea.ff-el-form-control {
    min-height: 118px;
    resize: vertical;
}

.contact-page .fluentform .ff-el-form-control::placeholder {
    color: #a0a3aa;
    opacity: 1;
}

.contact-page .fluentform .ff-el-form-control:focus {
    border-color: #a16f29;
    outline: none;
    box-shadow: 0 0 0 3px rgba(161, 111, 41, 0.12);
}

.contact-page .fluentform .ff-btn-submit,
.contact-page .fluentform button[type="submit"] {
    width: 100%;
    min-height: 42px;
    margin: 0;
    padding: 10px 20px;
    border: 1px solid #a16f29;
    border-radius: 3px;
    background: #a16f29!important;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    box-shadow: none;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.contact-page .fluentform .ff-btn-submit:hover,
.contact-page .fluentform button[type="submit"]:hover {
    border-color: #80551d;
    background: #80551d!important;
    transform: translateY(-1px);
}

.contact-page .fluentform .ff-btn-submit:focus,
.contact-page .fluentform button[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(161, 111, 41, 0.2);
}


/* =====================================================
   VALIDATION MESSAGE
===================================================== */

.contact-page .fluentform .ff-el-is-error .ff-el-form-control {
    border-color: #d63638;
}

.contact-page .fluentform .error {
    margin-top: 5px;
    color: #d63638;
    font-size: 13px;
}

.contact-page .fluentform .ff-message-success {
    margin-top: 15px;
    padding: 14px 18px;
    border: 1px solid rgba(161, 111, 41, 0.35);
    border-radius: 4px;
    background: rgba(161, 111, 41, 0.08);
    color: #17233a;
}


/* =====================================================
   CONTACT INFO CARDS
===================================================== */

.contact-page .row.mt-5 {
    margin-top: 58px !important;
}

.contact-info-card {
    display: flex;
    min-height: 196px;
    height: 100%;
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 12px rgba(13, 24, 42, 0.16);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(13, 24, 42, 0.16);
}

.contact-info-card > i {
    display: flex;
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    color: #a16f29;
    font-size: 44px;
    line-height: 1;
}

.contact-info-card h5 {
    margin: 0 0 20px;
    color: #26324a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.contact-info-card a,
.contact-info-card p {
    margin: 0;
    color: #26324a;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #a16f29;
}


/* =====================================================
   GIỐNG NỘI DUNG TRONG HÌNH MẪU
===================================================== */

.contact-info-card h5 {
    margin-top: 0;
}

.contact-info-card .fa-envelope + h5::after {
    content: "";
}

.contact-info-card .fa-phone + h5::after {
    content: "";
}

.contact-info-card .fa-location-dot + h5::after {
    content: "";
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .contact-page {
        padding: 60px 0;
    }

    .contact-page .row.g-5 {
        --bs-gutter-y: 40px;
    }

    .contact-page .contact-label {
        max-width: 100%;
        margin-bottom: 18px;
    }

    .contact-page h1 {
        margin-bottom: 20px;
    }

    .contact-page .col-lg-5 > p {
        max-width: 100%;
    }

    .contact-page .row.mt-5 {
        margin-top: 42px !important;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .contact-page {
        padding: 42px 0 50px;
    }

    .contact-page .contact-label {
        font-size: 29px;
        line-height: 1.2;
    }

    .contact-page h1 {
        font-size: 38px;
        line-height: 1.16;
    }

    .contact-page .col-lg-5 > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-page .fluentform .ff-el-form-control {
        min-height: 54px;
        padding: 12px 15px;
        font-size: 15px;
    }

    .contact-page .fluentform textarea.ff-el-form-control {
        min-height: 125px;
    }

    .contact-info-card {
        min-height: 180px;
        padding: 18px 20px 24px;
    }

    .contact-info-card > i {
        width: 58px;
        height: 58px;
        font-size: 40px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .contact-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-page .contact-label {
        font-size: 27px;
    }

    .contact-page h1 {
        font-size: 34px;
    }

    .contact-page h1 br {
        display: none;
    }

    .contact-page .row.mt-5 {
        margin-top: 32px !important;
    }
}

/* =====================================================
   COMMON INNER PAGE BANNER
===================================================== */

.inner-page-banner {
    position: relative;
    width: 100%;

    background: #f8f3eb;
}


/* =====================================================
   BANNER IMAGE
===================================================== */

.inner-page-banner-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;

    background-image: url(assets/images/inner-page-banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* Overlay giúp ảnh sang và dịu hơn */

.inner-page-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
		linear-gradient(
			90deg,
			rgba(13,24,42,.42) 0%,
			rgba(13,24,42,.18) 45%,
			rgba(13,24,42,.05) 100%
		),
		linear-gradient(
			180deg,
			rgba(13,24,42,.02) 0%,
			rgba(13,24,42,.10) 100%
		);
}


/* =====================================================
   DECORATION
===================================================== */

.inner-page-banner-decoration {
    position: absolute;
    inset: 0;
    z-index: 2;

    overflow: hidden;
    pointer-events: none;
}


/* Chữ M chìm */

.inner-page-banner-letter {
    position: absolute;
    top: 50%;
    right: 6%;

    color: transparent;

    font-family: "Playfair Display", serif;
    font-size: clamp(230px, 20vw, 380px);
    font-weight: 400;
    font-style: italic;
    line-height: 1;

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);

    transform: translateY(-48%) rotate(-8deg);

    user-select: none;
}


/* Vòng tròn couture */

.inner-page-banner-circle {
    position: absolute;
    top: -245px;
    right: -90px;

    width: 590px;
    height: 590px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.inner-page-banner-circle::before,
.inner-page-banner-circle::after {
    content: "";
    position: absolute;

    border-radius: 50%;
}

.inner-page-banner-circle::before {
    inset: 60px;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.inner-page-banner-circle::after {
    inset: 130px;

    border: 1px solid rgba(255, 255, 255, 0.05);
}


/* =====================================================
   FLOATING CARD
===================================================== */

.inner-page-banner-container {
    position: relative;
    z-index: 5;
}

.inner-page-banner-card {
    position: absolute;
    bottom: -78px;
    left: 12px;

    width: min(680px, calc(100% - 24px));

    padding: 45px 55px 40px;

    background:
        radial-gradient(
            circle at 94% 8%,
            rgba(200, 166, 110, 0.12),
            transparent 32%
        ),
        #ffffff;

    border: 1px solid rgba(184, 138, 69, 0.22);

    box-shadow:
        0 25px 60px rgba(13, 24, 42, 0.12),
        0 5px 15px rgba(13, 24, 42, 0.04);
}


/* Đường vàng trên card */

.inner-page-banner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 55px;

    width: 80px;
    height: 2px;

    background: linear-gradient(
        90deg,
        #b88a45,
        #dec18c
    );
}


/* Góc trang trí */

.inner-page-banner-card::after {
    content: "✦";
    position: absolute;
    top: 33px;
    right: 38px;

    color: rgba(184, 138, 69, 0.5);

    font-size: 15px;
    line-height: 1;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.inner-page-banner-label {
    display: block;

    margin-bottom: 13px;

    color: #b88a45;

    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.inner-page-banner-title {
    margin: 0;

    color: #0d182a;

    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 4vw, 62px);
    font-weight: 400;
    line-height: 1.05;

    letter-spacing: -0.035em;
}

.inner-page-banner-description {
    max-width: 560px;

    margin: 17px 0 0;

    color: rgba(13, 24, 42, 0.68);

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}

.inner-page-banner-line {
    width: 45px;
    height: 1px;

    margin: 23px 0 17px;

    background: #b88a45;
}


/* =====================================================
   BREADCRUMB
===================================================== */

.inner-page-banner-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 10px;

    color: rgba(13, 24, 42, 0.48);

    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;

    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.inner-page-banner-breadcrumb a {
    color: #0d182a;
    text-decoration: none;

    transition: color 0.3s ease;
}

.inner-page-banner-breadcrumb a:hover {
    color: #b88a45;
}

.inner-page-banner-breadcrumb span:last-child {
    color: #b88a45;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .inner-page-banner {
        margin-bottom: 115px;
    }

    .inner-page-banner-image {
        height: 400px;
    }

    .inner-page-banner-card {
        bottom: -72px;

        width: min(640px, calc(100% - 24px));

        padding: 40px 45px 36px;
    }

    .inner-page-banner-card::before {
        left: 45px;
    }

    .inner-page-banner-title {
        font-size: clamp(40px, 6vw, 56px);
    }

    .inner-page-banner-letter {
        right: -40px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .inner-page-banner {
        margin-bottom: 125px;
    }

    .inner-page-banner-image {
        height: 400px;
        background-position: center;
    }

    .inner-page-banner-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(13, 24, 42, 0.26) 0%,
                rgba(13, 24, 42, 0.54) 100%
            );
    }

    .inner-page-banner-card {
        bottom: -90px;
        left: 12px;

        width: calc(100% - 24px);

        padding: 34px 28px 30px;
    }

    .inner-page-banner-card::before {
        left: 28px;

        width: 62px;
    }

    .inner-page-banner-card::after {
        top: 25px;
        right: 24px;
    }

    .inner-page-banner-label {
        padding-right: 35px;

        font-size: 9px;
        letter-spacing: 0.22em;
    }

    .inner-page-banner-title {
        font-size: clamp(38px, 11vw, 50px);
        line-height: 1.08;
    }

    .inner-page-banner-description {
        margin-top: 13px;

        font-size: 13px;
        line-height: 1.65;
    }

    .inner-page-banner-line {
        margin: 19px 0 15px;
    }

    .inner-page-banner-letter {
        top: 53%;
        right: -80px;

        font-size: 250px;
    }

    .inner-page-banner-circle {
        top: -180px;
        right: -190px;

        width: 440px;
        height: 440px;
    }

    .inner-page-banner-circle::before {
        inset: 45px;
    }

    .inner-page-banner-circle::after {
        inset: 100px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .inner-page-banner {
        margin-bottom: 135px;
    }

    .inner-page-banner-card {
        padding: 31px 22px 28px;
    }

    .inner-page-banner-card::before {
        left: 22px;
    }

    .inner-page-banner-title {
        font-size: 39px;
    }

    .inner-page-banner-description {
        font-size: 12px;
    }

    .inner-page-banner-breadcrumb {
        gap: 8px;

        font-size: 9px;
        letter-spacing: 0.1em;
    }

}

/* =====================================================
   BOOK APPOINTMENT FILE UPLOAD
===================================================== */

.molly-book-upload {
    position: relative;
}

.molly-book-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.molly-book-upload__label {
    display: flex !important;
    align-items: center;
    gap: 14px;
    min-height: 84px;
    margin: 0 !important;
    padding: 15px 16px;
    border: 1px dashed rgba(13, 24, 42, 0.28);
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.molly-book-upload__label:hover {
    border-color: #c8a66e;
    background: #fff;
}

.molly-book-upload__label > i {
    flex: 0 0 auto;
    color: #b88a45;
    font-size: 25px;
}

.molly-book-upload__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.molly-book-upload__content strong {
    color: #0d182a;
    font-size: 12px;
    font-weight: 500;
}

.molly-book-upload__content small {
    color: #8b9097;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
}

.molly-book-upload__button {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid rgba(13, 24, 42, 0.18);
    background: #f8f3eb;
    color: #0d182a;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.molly-book-upload__preview {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.molly-book-upload__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(13, 24, 42, 0.12);
    background: #f3f3f3;
}

.molly-book-upload__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.molly-book-upload__remove {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(13, 24, 42, 0.82);
    color: #fff;
    font-size: 11px;
    cursor: pointer;
}

.molly-book-upload__error {
    display: none;
    margin: 8px 0 0;
    color: #9c3030;
    font-size: 11px;
    line-height: 1.5;
}

.molly-book-upload__error.is-visible {
    display: block;
}

@media (max-width: 575px) {

    .molly-book-upload__label {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .molly-book-upload__button {
        width: 100%;
        text-align: center;
    }

    .molly-book-upload__preview {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

/* =====================================================
   POPUP WRAPPER
===================================================== */

.molly-book-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.molly-book-popup.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* Overlay */

.molly-book-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 13, 24, 0.68);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}


/* =====================================================
   POPUP DIALOG
===================================================== */

.molly-book-popup__dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 590px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 46px 46px 38px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 243, 235, 0.98)
        );
    border: 1px solid rgba(200, 166, 110, 0.72);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s ease;
}

.molly-book-popup.is-open .molly-book-popup__dialog {
    transform: translateY(0) scale(1);
}


/* Đường viền trang trí bên trong */

.molly-book-popup__dialog::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(200, 166, 110, 0.24);
    pointer-events: none;
}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.molly-book-popup__close {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(13, 24, 42, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    color: #0d182a;
    font-size: 17px;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.molly-book-popup__close:hover {
    background: #0d182a;
    color: #fff;
    transform: rotate(90deg);
}


/* =====================================================
   POPUP HEADER
===================================================== */

.molly-book-popup__header {
    position: relative;
    margin-bottom: 30px;
    padding: 0 20px 25px;
    text-align: center;
}

.molly-book-popup__header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 56px;
    height: 1px;
    background: #c8a66e;
    transform: translateX(-50%);
}

.molly-book-popup__label {
    display: block;
    margin-bottom: 9px;
    color: #b88a45;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.molly-book-popup__header h2 {
    margin: 0 0 12px;
    color: #0d182a;
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 500;
    line-height: 1.18;
}

.molly-book-popup__header p {
    max-width: 440px;
    margin: 0 auto;
    color: #68707b;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.75;
}


/* =====================================================
   FORM
===================================================== */

.molly-book-form {
    position: relative;
    z-index: 2;
}

.molly-book-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.molly-book-form__group {
    min-width: 0;
}

.molly-book-form__group--full {
    grid-column: 1 / -1;
}

.molly-book-form__group label {
    display: block;
    margin-bottom: 8px;
    color: #0d182a;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.035em;
}

.molly-book-form__group label span {
    color: #b88a45;
}

.molly-book-form__group input,
.molly-book-form__group textarea {
    display: block;
    width: 100%;
    border: 1px solid rgba(13, 24, 42, 0.16);
    border-radius: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.86);
    color: #0d182a;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.5;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.molly-book-form__group input {
    height: 50px;
    padding: 0 15px;
}

.molly-book-form__group textarea {
    min-height: 126px;
    padding: 14px 15px;
    resize: vertical;
}

.molly-book-form__group input::placeholder,
.molly-book-form__group textarea::placeholder {
    color: #9b9fa5;
}

.molly-book-form__group input:focus,
.molly-book-form__group textarea:focus {
    border-color: #c8a66e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(200, 166, 110, 0.12);
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.molly-book-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 54px;
    margin-top: 24px;
    padding: 13px 22px;
    border: 1px solid #0d182a;
    background: #0d182a;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.molly-book-form__submit i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.molly-book-form__submit:hover {
    background: #c8a66e;
    color: #0d182a;
    border-color: #c8a66e;
}

.molly-book-form__submit:hover i {
    transform: translateX(5px);
}

.molly-book-form__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}


/* =====================================================
   PRIVACY AND MESSAGE
===================================================== */

.molly-book-form__privacy {
    max-width: 470px;
    margin: 14px auto 0;
    color: #858a91;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    line-height: 1.7;
    text-align: center;
}

.molly-book-form__message {
    display: none;
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid transparent;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.molly-book-form__message.is-success {
    display: block;
    border-color: rgba(39, 130, 82, 0.28);
    background: rgba(39, 130, 82, 0.08);
    color: #217047;
}

.molly-book-form__message.is-error {
    display: block;
    border-color: rgba(183, 55, 55, 0.28);
    background: rgba(183, 55, 55, 0.08);
    color: #9c3030;
}


/* =====================================================
   BODY LOCK
===================================================== */

body.molly-popup-open {
    overflow: hidden;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .molly-book-popup {
        align-items: flex-end;
        padding: 12px;
    }

    .molly-book-popup__dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        padding: 42px 22px 28px;
    }

    .molly-book-popup__dialog::before {
        inset: 6px;
    }

    .molly-book-popup__header {
        margin-bottom: 24px;
        padding-right: 5px;
        padding-left: 5px;
    }

    .molly-book-popup__header h2 {
        font-size: 30px;
    }

    .molly-book-form__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .molly-book-form__group--full {
        grid-column: auto;
    }

    .molly-book-form__group input {
        height: 48px;
    }

    .molly-book-form__group textarea {
        min-height: 110px;
    }

}

/* =====================================================
   GALLERY LIGHTBOX
===================================================== */

/* Khóa cuộn trang khi mở popup */
body.molly-gallery-lightbox-open {
    overflow: hidden;
}


/* Khung popup toàn màn hình */
.molly-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* Trạng thái mở */
.molly-gallery-lightbox.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* Nền tối */
.molly-gallery-lightbox__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(3, 8, 17, 0.92);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    cursor: zoom-out;
}


/* Khung chứa nội dung popup */
.molly-gallery-lightbox__dialog {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: min(1200px, 100%);
    height: min(88vh, 900px);

    pointer-events: auto;
}


/* Khung figure */
.molly-gallery-lightbox__figure {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    margin: 0;

    pointer-events: none;
}


/* Ảnh phóng lớn */
.molly-gallery-lightbox__image {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 88vh;

    object-fit: contain;
    user-select: none;

    pointer-events: auto;

    opacity: 1;
    transform: scale(1);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* Trạng thái đang tải ảnh */
.molly-gallery-lightbox__image.is-loading {
    opacity: 0.35;
    transform: scale(0.985);
}


/* =====================================================
   NÚT ĐÓNG
===================================================== */

.molly-gallery-lightbox__close {
    position: fixed;
    top: 24px;
    right: 28px;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;

    background: rgba(13, 24, 42, 0.78);
    color: #fff;

    font-size: 32px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
    pointer-events: auto;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.molly-gallery-lightbox__close span {
    display: block;
    margin-top: -2px;
}


.molly-gallery-lightbox__close:hover {
    background: #c8a66e;
    border-color: #c8a66e;
    transform: rotate(90deg);
}


.molly-gallery-lightbox__close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}


/* =====================================================
   NÚT TRÁI / PHẢI
===================================================== */

.molly-gallery-lightbox__nav {
    position: fixed;
    top: 50%;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;

    background: rgba(13, 24, 42, 0.78);
    color: #fff;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;
    pointer-events: auto;

    transform: translateY(-50%);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.molly-gallery-lightbox__nav:hover {
    background: #c8a66e;
    border-color: #c8a66e;
}


.molly-gallery-lightbox__nav:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}


.molly-gallery-lightbox__nav[hidden] {
    display: none;
}


.molly-gallery-lightbox__prev {
    left: 28px;
}


.molly-gallery-lightbox__next {
    right: 28px;
}


.molly-gallery-lightbox__prev:hover {
    transform:
        translateY(-50%)
        translateX(-3px);
}


.molly-gallery-lightbox__next:hover {
    transform:
        translateY(-50%)
        translateX(3px);
}


/* =====================================================
   BỘ ĐẾM ẢNH
===================================================== */

.molly-gallery-lightbox__counter {
    position: fixed;
    bottom: 22px;
    left: 50%;
    z-index: 20;

    min-width: 70px;

    padding: 8px 14px;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;

    background: rgba(13, 24, 42, 0.72);
    color: #fff;

    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;

    transform: translateX(-50%);

    pointer-events: none;
}


/* =====================================================
   INFINITE SCROLL STATUS
===================================================== */

.product-gallery-sentinel {
    width: 100%;
    height: 1px;
}


.product-gallery-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 70px;
    margin-top: 25px;

    color: #667085;
    font-size: 14px;
}


.product-gallery-spinner {
    display: inline-block;

    width: 22px;
    height: 22px;

    border: 2px solid rgba(13, 24, 42, 0.15);
    border-top-color: #c8a66e;
    border-radius: 50%;

    animation: molly-gallery-spinner 0.8s linear infinite;
}


.product-gallery-status.is-finished
.product-gallery-spinner,
.product-gallery-status.is-error
.product-gallery-spinner {
    display: none;
}


.product-gallery-status.is-error {
    color: #b42318;
}


@keyframes molly-gallery-spinner {
    to {
        transform: rotate(360deg);
    }
}


/* Hiệu ứng ảnh được thêm bằng AJAX */
.product-gallery-item-enter {
    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}


.product-gallery-item-enter.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media screen and (max-width: 767px) {

    .molly-gallery-lightbox {
        padding: 70px 12px 65px;
    }


    .molly-gallery-lightbox__dialog {
        width: 100%;
        height: 78vh;
    }


    .molly-gallery-lightbox__figure {
        width: 100%;
        height: 100%;
    }


    .molly-gallery-lightbox__image {
        max-width: 100%;
        max-height: 78vh;
    }


    .molly-gallery-lightbox__close {
        top: 15px;
        right: 15px;

        width: 42px;
        height: 42px;

        font-size: 28px;
    }


    .molly-gallery-lightbox__nav {
        width: 42px;
        height: 42px;

        font-size: 18px;
    }


    .molly-gallery-lightbox__prev {
        left: 9px;
    }


    .molly-gallery-lightbox__next {
        right: 9px;
    }


    .molly-gallery-lightbox__counter {
        bottom: 14px;

        padding: 7px 12px;

        font-size: 12px;
    }
}