body {
    font-family: "Inter", sans-serif;
}

/* ================= CONTACT PAGE ================= */
:root {
    --contact-primary-blue: #0876dd;
    --contact-dark-blue: #043f73;
    --contact-yellow: #ffd200;
    --contact-bg: #eeeeee;
    --contact-input-bg: #eeeeee;
    --contact-text: #111111;
    --contact-muted: #595959;
    --contact-card: #ffffff;
    --contact-required: #e2211c;
    --contact-font-xs: 12px;
    --contact-font-sm: 13px;
    --contact-font-base: 14px;
    --contact-font-md: 16px;
    --contact-font-lg: 20px;
    --contact-font-xl: clamp(36px, 3.4vw, 48px);
    --contact-space-xs: 8px;
    --contact-space-sm: 12px;
    --contact-space-md: 18px;
    --contact-space-lg: 28px;
    --contact-space-xl: 44px;
    --contact-hex-cell-w: 112px;
    --contact-hex-cell-h: 98px;
}

.contact-hero {
    min-height: 0;
    background: linear-gradient(115deg, var(--contact-dark-blue) 0%, #07559d 46%, var(--contact-primary-blue) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.contact-hero__inner {
    padding: 24px 16px 18px;
}

.contact-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: var(--contact-font-xl);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.contact-hero p {
    margin: 9px 0 0;
    color: #ffffff;
    font-size: var(--contact-font-sm);
    line-height: 1.35;
    font-weight: 500;
}

.contact-page {
    position: relative;
    overflow: hidden;
    background: var(--contact-bg);
    padding: 38px 16px 58px;
}

.contact-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 918px);
    margin: 0 auto;
}

.contact-intro {
    display: grid;
    grid-template-columns: 145px 1fr;
    align-items: start;
    gap: 32px;
    width: min(100%, 892px);
    margin: 0 auto 34px;
}

.contact-logo-placeholder {
    width: 145px;
    height: 55px;
    background: #ffffff;
    border: 1px solid #d6d6d6;
}

.contact-intro__copy {
    padding-top: 3px;
}

.contact-intro__copy h2 {
    margin: 0 0 var(--contact-space-sm);
    color: var(--contact-text);
    font-size: 18px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
}

.contact-intro__copy p {
    margin: 0;
    color: var(--contact-text);
    font-size: var(--contact-font-sm);
    line-height: 1.5;
    font-weight: 400;
}

.contact-form-card {
    width: min(100%, 892px);
    margin: 0 auto;
    padding: 29px 52px 24px;
    background: var(--contact-card);
    border-radius: 9px;
}

.contact-fieldset {
    margin: 0 0 16px;
    padding: 0;
    border: 0;
}

.contact-fieldset legend,
.contact-field label {
    display: block;
    margin: 0 0 7px;
    color: var(--contact-text);
    font-size: var(--contact-font-xs);
    line-height: 1.3;
    font-weight: 700;
}

.contact-fieldset legend span,
.contact-field label span {
    color: var(--contact-required);
}

.contact-radio-group {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.contact-radio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--contact-text);
    font-size: var(--contact-font-xs);
    line-height: 1.2;
    cursor: pointer;
}

.contact-radio input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #0057ff;
}

.contact-field {
    margin-bottom: 16px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 0;
    border-radius: 4px;
    background: var(--contact-input-bg);
    color: var(--contact-text);
    font-size: var(--contact-font-xs);
    line-height: 1.35;
    outline: none;
    transition: box-shadow 0.18s ease, background-color 0.18s ease;
}

.contact-field input,
.contact-field select {
    height: 36px;
    padding: 0 14px;
}

.contact-field textarea {
    min-height: 146px;
    resize: vertical;
    padding: 13px 14px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #777777;
    opacity: 1;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    background: #f3f3f3;
    box-shadow: 0 0 0 2px rgba(8, 118, 221, 0.2);
}

.contact-phone-row {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: var(--contact-space-sm);
}

.contact-field--file input[type="file"] {
    height: 34px;
    padding: 0;
    border: 1px solid #d6d6d6;
    background: #ffffff;
    font-size: var(--contact-font-xs);
}

.contact-field--file input[type="file"]::file-selector-button {
    height: 32px;
    margin: 0 10px 0 0;
    padding: 0 15px;
    border: 0;
    border-right: 1px solid #d6d6d6;
    background: #f7f7f7;
    color: var(--contact-text);
    font-size: var(--contact-font-xs);
    cursor: pointer;
}

.contact-recaptcha {
    width: 238px;
    min-height: 64px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-recaptcha .g-recaptcha {
    transform: scale(0.78);
    transform-origin: left top;
}

.contact-recaptcha-wrap {
    margin: 18px 0 24px;
}

.contact-recaptcha-unavailable {
    width: 304px;
    max-width: 100%;
    padding: 14px 16px;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: #ffffff;
    color: #8a1f11;
    font-size: var(--contact-font-xs);
    line-height: 1.4;
}

.contact-recaptcha__check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--contact-text);
    font-size: var(--contact-font-xs);
}

.contact-recaptcha__check input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.contact-recaptcha__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6f6f6f;
    font-size: 9px;
    line-height: 1.2;
    white-space: nowrap;
}

.contact-recaptcha__brand i {
    color: #3d70c9;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 2px;
}

.contact-recaptcha__brand small {
    color: #777777;
    font-size: 8px;
}

.contact-submit {
    width: 100%;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: var(--contact-yellow);
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    font-size: var(--contact-font-xs);
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.contact-submit:disabled {
    cursor: not-allowed;
    opacity: 1;
    transform: none;
    box-shadow: none;
}

.contact-submit i {
    font-size: 18px;
    line-height: 1;
}

.contact-submit:hover {
    filter: brightness(0.98);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.contact-alert {
    margin: 0 0 var(--contact-space-md);
    padding: 12px 14px;
    border-radius: 6px;
    font-size: var(--contact-font-sm);
    line-height: 1.45;
}

.contact-alert--success {
    border: 1px solid #b8dfc2;
    background: #eefaf1;
    color: #146c2e;
}

.contact-alert--error {
    border: 1px solid #f0c1bd;
    background: #fff1f0;
    color: #9f1d15;
}

.contact-field-error {
    min-height: 0;
    margin-top: 4px;
    color: #c8281d;
    font-size: 11px;
    line-height: 1.35;
}

.contact-field-error:empty {
    margin-top: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: min(100%, 892px);
    margin: 42px auto 10px;
}

.contact-info-card {
    min-height: 144px;
    padding: 21px 23px;
    background: var(--contact-card);
    border-radius: 5px;
}

.contact-info-card__icon {
    width: 26px;
    height: 26px;
    margin-bottom: 6px;
    color: #1700ff;
    font-size: 26px;
    line-height: 1;
}

.contact-info-card h3 {
    margin: -25px 0 18px 34px;
    color: var(--contact-text);
    font-size: var(--contact-font-sm);
    line-height: 1.2;
    font-weight: 800;
}

.contact-info-card p {
    margin: 0 0 var(--contact-space-xs);
    color: var(--contact-text);
    font-size: var(--contact-font-xs);
    line-height: 1.4;
}

.contact-hex {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.28;
    width: 350px;
    height: 660px;
}

.contact-hex--left {
    left: max(14px, calc(50% - 675px));
    top: 68px;
}

.contact-hex--right {
    right: max(14px, calc(50% - 700px));
    top: 326px;
    transform: rotate(5deg);
}

.contact-hex__cell {
    position: absolute;
    width: var(--contact-hex-cell-w);
    height: var(--contact-hex-cell-h);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
    background: rgba(171, 199, 226, 0.84);
}

.contact-hex__cell--1 {
    left: 0;
    top: 24px;
}

.contact-hex__cell--2 {
    left: 92px;
    top: 0;
    background: rgba(217, 244, 246, 0.86);
}

.contact-hex__cell--3 {
    left: 92px;
    top: 104px;
    background: rgba(171, 199, 226, 0.75);
}

.contact-hex__cell--4 {
    left: 0;
    top: 208px;
    background: rgba(171, 199, 226, 0.88);
}

.contact-hex__cell--5 {
    left: 184px;
    top: 156px;
    background: rgba(216, 221, 227, 0.82);
}

.contact-hex__cell--6 {
    left: 92px;
    top: 260px;
    background: rgba(217, 244, 246, 0.82);
}

.contact-hex__cell--7 {
    left: 184px;
    top: 364px;
    background: rgba(195, 205, 216, 0.82);
}

.contact-hex__cell--8 {
    left: 46px;
    top: 500px;
    background: rgba(171, 199, 226, 0.86);
}

.contact-hex__cell--9 {
    left: 138px;
    top: 552px;
    background: rgba(195, 205, 216, 0.82);
}

.contact-hex--right .contact-hex__cell--1 {
    left: 0;
    top: 88px;
}

.contact-hex--right .contact-hex__cell--2 {
    left: 92px;
    top: 36px;
}

.contact-hex--right .contact-hex__cell--3 {
    left: 92px;
    top: 140px;
}

.contact-hex--right .contact-hex__cell--4 {
    left: 0;
    top: 244px;
}

.contact-hex--right .contact-hex__cell--5 {
    left: 184px;
    top: 192px;
}

.contact-hex--right .contact-hex__cell--6 {
    left: 92px;
    top: 296px;
}

.contact-hex--right .contact-hex__cell--7 {
    left: 184px;
    top: 400px;
}

.contact-hex--right .contact-hex__cell--8 {
    left: 0;
    top: 452px;
}

.contact-hex--right .contact-hex__cell--9 {
    left: 92px;
    top: 504px;
}

@media (max-width: 991.98px) {
    .contact-page {
        padding-top: 36px;
        --contact-hex-cell-w: 90px;
        --contact-hex-cell-h: 79px;
    }

    .contact-hero {
        min-height: 170px;
    }

    .contact-hero h1 {
        font-size: clamp(34px, 5vw, 42px);
    }

    .contact-hero p {
        font-size: var(--contact-font-sm);
    }

    .contact-intro {
        grid-template-columns: 120px 1fr;
        gap: 24px;
        margin-bottom: 30px;
    }

    .contact-logo-placeholder {
        width: 120px;
        height: 48px;
    }

    .contact-form-card {
        padding: 28px 38px 24px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 34px;
    }

    .contact-hex {
        opacity: 0.18;
        width: 292px;
        height: 540px;
    }

    .contact-hex--left {
        left: -76px;
        top: 94px;
    }

    .contact-hex--right {
        right: -86px;
        top: 360px;
    }
}

@media (max-width: 767.98px) {
    .contact-page {
        padding: 30px 14px 42px;
        --contact-hex-cell-w: 70px;
        --contact-hex-cell-h: 62px;
    }

    .contact-hero {
        min-height: 146px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
        font-size: 13px;
    }

    .contact-intro {
        grid-template-columns: 1fr;
        gap: var(--contact-space-sm);
        margin-bottom: 24px;
    }

    .contact-form-card {
        padding: 24px 18px 22px;
        border-radius: 8px;
    }

    .contact-radio-group {
        gap: 16px;
    }

    .contact-phone-row {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .contact-recaptcha {
        width: min(100%, 304px);
        overflow: hidden;
    }

    .contact-recaptcha .g-recaptcha {
        transform: scale(0.82);
        transform-origin: left top;
    }

    .contact-recaptcha-wrap {
        min-height: 84px;
    }

    .contact-submit {
        gap: 14px;
        min-height: 42px;
        height: auto;
        padding: 10px 18px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .contact-info-card {
        min-height: 112px;
    }

    .contact-hex {
        width: 230px;
        height: 360px;
        opacity: 0.06;
    }

    .contact-hex--left {
        left: -124px;
        top: 228px;
        transform: scale(0.74);
        transform-origin: top left;
    }

    .contact-hex--right {
        display: none;
    }
}

@media (max-width: 420px) {
    .contact-hero h1 {
        font-size: 30px;
    }

    .contact-hero p {
        font-size: 12px;
    }

    .contact-submit {
        font-size: 11px;
    }
}

.site-header {
    width: 100%;
    background: #ffffff;
    /* border: 2px solid #8b4dff; */
}

.custom-navbar {
    min-height: 58px;
    padding: 0 28px;
}

.logo-box {
    width: 125px;
    height: 34px;
    border: 1px solid #dddddd;
    background: #ffffff;
}

.main-menu {
    margin-left: 25px;
    gap: 25px;
}

.main-menu .nav-link {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
    padding: 8px 0;
}

.main-menu .nav-link:hover {
    color: #8b4dff;
}

/* .search-box {
    width: 575px;
    height: 36px;
    background: #e9e9e9;
    border-radius: 20px;
    align-items: center;
    padding: 0 15px;
    margin-right: 28px;
} */

/* .search-box input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: #555555;
} */

.search-box input::placeholder {
    color: #777777;
}

.search-icon {
    font-size: 18px;
    color: #777777;
    margin-right: 8px;
    line-height: 1;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.icon-link {
    color: #111111;
    font-size: 20px;
    text-decoration: none;
}

.icon-link:hover {
    color: #8b4dff;
}

.language-box {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.flag-img {
    width: 32px;
    height: 22px;
    object-fit: cover;
}

.arrow-down {
    font-size: 14px;
    color: #2b45ff;
}
/* ================= HEADER BASE ================= */
.site-header {
    width: 100%;
    background: #fff;
    /* border: 2px solid #8b4dff; */
}

.logo-box {
    width: 125px;
    height: 34px;
    border: 1px solid #d9d9d9;
    background: #fff;
}

.icon-link {
    color: #111;
    text-decoration: none;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    color: #8b4dff;
}

.search-box {
    display: flex;
    align-items: center;
    height: 42px;
    background: #e9e9e9;
    border-radius: 30px;
    padding: 0 16px;
}

.search-box .search-icon {
    flex-shrink: 0;
    font-size: 22px;
    color: #777;
    margin-right: 10px;
    line-height: 1;
}

.search-box input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #555;
    line-height: 1;
}

.search-box input::placeholder {
    color: #777;
}

.search-box input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
}

.search-box input::placeholder {
    color: #8c8c8c;
}

.search-icon {
    color: #8c8c8c;
    margin-right: 8px;
    font-size: 16px;
}

.flag-img {
    width: 28px;
    height: 20px;
    object-fit: cover;
}

.language-box {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 14px;
}

.arrow-down {
    font-size: 12px;
    line-height: 1;
}


/* ================= DESKTOP ================= */
.custom-navbar {
    min-height: 93px;
    padding: 0 28px;
    display: flex;
    align-items: center;
}

.main-menu {
    margin-left: 28px;
    gap: 26px;
    display: flex;
    align-items: center;
}

.main-menu .nav-link {
    color: #111;
    font-size: 16px;
    font-weight: 700;
    padding: 0;
    font-style: bold;
}

.main-menu .nav-link:hover {
    color: #8b4dff;
}

.desktop-header .search-box {
    width: 560px;
    margin-left: auto;
    margin-right: 24px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}


/* ================= MOBILE ================= */
.mobile-header {
    padding: 14px 16px 12px;
}

.mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.mobile-menu-btn {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 28px;
    color: #111;
    line-height: 1;
}

.mobile-logo-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.mobile-logo {
    width: 86px;
    height: 32px;
}

.mobile-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-icons .icon-link {
    font-size: 24px;
}

.mobile-search-wrap {
    width: 100%;
}

.mobile-search-box {
    width: 100%;
    height: 40px;
}


/* ================= MOBILE OFFCANVAS ================= */
.mobile-offcanvas {
    width: 100% !important;
    max-width: 100%;
    background: #fff;
}

.mobile-menu-header {
    padding: 24px 30px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-logo .logo-box {
    width: 84px;
    height: 32px;
}

.custom-close {
    font-size: 14px;
    box-shadow: none !important;
}
.hero-head{
        margin: 0 0 14px;
    font-size: 50px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}
.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-action-group {
    margin-top: 100px;
}
.mobile-menu-body {
    padding: 8px 30px 30px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0px 10px;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 24px;
}

.mobile-menu-list li a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-list li a:hover {
    color: #8b4dff;
}
/* panel หลัก / panel ย่อย */
.mobile-menu-body {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 90px);
}

/* ทุก panel อยู่ซ้อนกันเต็มพื้นที่ */
.mobile-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    pointer-events: none;
}

/* panel ที่แสดงอยู่ */
.mobile-menu-panel.active {
    transform: translateX(0);
    pointer-events: auto;
}

/* เมนูหลักเลื่อนออกไปทางซ้าย */
.mobile-menu-panel.move-left {
    transform: translateX(-100%);
}

/* เมนูย่อยอยู่ทางขวารอก่อน */
.mobile-menu-panel.from-right {
    transform: translateX(100%);
}

/* เมนูย่อยเลื่อนออกไปทางขวาตอนย้อนกลับ */
.mobile-menu-panel.move-right {
    transform: translateX(100%);
}

/* ปุ่มเมนูหลัก */
.mobile-menu-link {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    text-decoration: none;
    color: #111;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.mobile-menu-link:hover {
    color: #8b4dff;
}

/* แถวหัวข้อเมนูย่อย เช่น < Lanyard */
.submenu-title-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    font-size: 16px;
    color: #111;
}

.back-main-menu {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 18px;
    color: #111;
    display: flex;
    align-items: center;
}

/* รายการเมนูย่อย */
.submenu-list li {
    margin-bottom: 28px;
}

.submenu-list li a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    display: block;
}

.submenu-list li a:hover {
    color: #8b4dff;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .site-header {
        border-width: 0;
        border-bottom: 1px solid #e7e7e7;
    }
}

.hero-banner {
    background: #f4f7ff;
}

.hero-carousel {
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(16, 45, 139, 0.18);
}

.hero-slide {
    position: relative;
    min-height: 500px;
    padding: 72px 80px;
    background:#1D4ED8;
    color: #fff;
}

.hero-slide-alt {
    background:
        radial-gradient(circle at 70% 25%, rgba(255, 224, 124, 0.18), transparent 24%),
        linear-gradient(90deg, #0f4bcf 0%, #1061e0 50%, #2d79ff 100%);
}

.hero-slide-soft {
    background:
        radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.2), transparent 26%),
        linear-gradient(90deg, #1f48c1 0%, #2255d6 42%, #4374f3 100%);
}

.hero-copy {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 360px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 20px;
    font-size: clamp(2rem, 3vw, 3.45rem);
    line-height: 1.08;
    font-weight: 800;
}

.hero-text {
    margin-bottom: 34px;
    font-size: 1.15rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    border-radius: 999px;
    background: #ffcb24;
    border: none;
    color: #111;
    font-size: 1.35rem;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(255, 203, 36, 0.28);
}

.hero-cta:hover {
    background: #ffd54a;
    color: #111;
}

.hero-visual {
    position: relative;
    min-height: 355px;
}

.hero-banner-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-glow {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(8px);
}

.hero-glow-left {
    top: 8%;
    left: 12%;
}

.hero-glow-right {
    right: 8%;
    bottom: 10%;
}

.hero-world {
    position: absolute;
    inset: 16% 14% 16% 14%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 38%, transparent 38%),
        linear-gradient(transparent 48%, rgba(255, 255, 255, 0.08) 49%, transparent 50%),
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, transparent 50%);
    opacity: 0.75;
}

.hero-world::before,
.hero-world::after {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.hero-world::after {
    inset: 24%;
}

.hero-model {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-model-left {
    left: 14%;
}

.hero-model-right {
    right: 8%;
}

.hero-avatar {
    width: 170px;
    height: 270px;
    border-radius: 90px 90px 24px 24px;
    background:
        radial-gradient(circle at 50% 18%, #f7d8c6 0 18%, transparent 18%),
        radial-gradient(circle at 50% 10%, #412d2d 0 19%, transparent 19%),
        linear-gradient(#ffffff 0 52%, #bfd4ff 52% 100%);
    box-shadow: 0 16px 28px rgba(9, 29, 95, 0.24);
    border: 3px solid rgba(255, 255, 255, 0.18);
}

.hero-badge {
    width: 26px;
    height: 56px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.hero-ribbons {
    position: absolute;
    inset: 0;
}

.ribbon {
    position: absolute;
    display: block;
    width: 24px;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(15, 32, 92, 0.18);
}

.ribbon-one {
    top: 2%;
    right: 18%;
    height: 250px;
    transform: rotate(28deg);
    background: linear-gradient(180deg, #f8f8f8 0%, #ff6d6d 28%, #2f67ff 60%, #ffffff 100%);
}

.ribbon-two {
    top: 22%;
    right: 28%;
    height: 185px;
    transform: rotate(-18deg);
    background: linear-gradient(180deg, #fde047 0%, #ec4899 34%, #22c55e 72%, #1d4ed8 100%);
}

.ribbon-three {
    right: 22%;
    bottom: 6%;
    height: 145px;
    transform: rotate(32deg);
    background: linear-gradient(180deg, #38bdf8 0%, #ffffff 28%, #f43f5e 65%, #f8fafc 100%);
}

.ribbon-four {
    top: 6%;
    right: 3%;
    height: 195px;
    transform: rotate(16deg);
    background: linear-gradient(180deg, #f8fafc 0%, #60a5fa 40%, #1e3a8a 100%);
}

.hero-tags {
    position: absolute;
    inset: 0;
}

.hero-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: #2457ef;
    font-size: 1.4rem;
    box-shadow: 0 12px 28px rgba(14, 30, 88, 0.22);
}

.hero-tag-top {
    top: 22%;
    right: 28%;
}

.hero-tag-middle {
    top: 42%;
    right: 2%;
}

.hero-tag-bottom {
    right: 0;
    bottom: 2%;
}

.hero-indicators {
    justify-content: flex-start;
    margin: 0;
    bottom: 74px;
    left: 80px;
    right: auto;
    gap: 10px;
}

.hero-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.hero-indicators .active {
    width: 28px;
    border-radius: 999px;
    background: #fff;
}

.hero-control {
    width: 60px;
    opacity: 1;
}

.hero-control-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 1.6rem;
}

.hero-control:hover .hero-control-icon {
    background: rgba(255, 255, 255, 0.32);
}

.hero-visual-centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pattern-grid {
    position: absolute;
    inset: 10% 18% 10% 18%;
    border-radius: 30px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 24px 24px;
}

.hero-card-stack {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 170px));
    gap: 18px;
}

.hero-card {
    padding: 26px 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    color: #13308a;
    box-shadow: 0 18px 32px rgba(9, 29, 95, 0.2);
}

.hero-card strong,
.hero-card small {
    display: block;
}

.hero-card strong {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.hero-card small {
    color: #4b66b8;
    font-size: 0.9rem;
}

.hero-card-chip {
    display: inline-block;
    width: 42px;
    height: 8px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd43b, #2f67ff);
}

.hero-card-accent {
    transform: translateY(26px);
}

.hero-ribbons-compact .ribbon-one {
    top: 3%;
    right: 30%;
    height: 220px;
}

.hero-ribbons-compact .ribbon-two {
    right: 12%;
    top: 10%;
}

.hero-ribbons-compact .ribbon-three {
    right: 20%;
    bottom: 0;
}

.hero-visual-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-height: 355px;
}

.process-line {
    position: absolute;
    left: 14%;
    right: 14%;
    top: 50%;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

.process-step {
    position: relative;
    z-index: 2;
    width: 145px;
    text-align: center;
    color: #fff;
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin-bottom: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
    font-size: 1.9rem;
}

.process-step strong {
    font-size: 1.1rem;
    font-weight: 700;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta:hover {
    transform: translate(-5px, 5px);
    box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.18);
}

.hero-cta i {
    transition: transform 0.25s ease;
}

.hero-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero-slide {
        padding: 64px 56px;
    }

    .hero-model-left {
        left: 8%;
    }

    .hero-model-right {
        right: 2%;
    }

    .hero-card-stack {
        grid-template-columns: repeat(3, minmax(120px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        border-radius: 0 0 22px 22px;
    }

    .hero-slide {
        min-height: auto;
        padding: 48px 24px 108px;
    }

    .hero-copy {
        
        max-width: 100%;
        text-align: center;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-cta {
        font-size: 1.05rem;
    }

    .hero-visual {
        min-height: 300px;
        margin-top: 6px;
    }

    .hero-banner-image {
        max-height: 300px;
        margin: 0 auto;
    }

    .hero-avatar {
        width: 130px;
        height: 220px;
    }

    .hero-indicators {
        left: 50%;
        bottom: 34px;
        transform: translateX(-50%);
        justify-content: center;
    }

    .hero-control {
        width: 48px;
    }

    .hero-control-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .hero-card-stack {
        grid-template-columns: 1fr;
        width: min(100%, 280px);
    }

    .hero-card-accent {
        transform: none;
    }

    .hero-visual-process {
        flex-wrap: wrap;
        gap: 18px;
        padding: 12px 0;
    }

    .process-line {
        display: none;
    }

    .process-step {
        width: calc(50% - 9px);
    }
}

@media (max-width: 768px) {
    .hero-slide {
        padding: 36px 18px 96px;
    }

    .hero-kicker {
        margin-bottom: 14px;
        font-size: 11px;
    }

    .hero-title {
        margin-bottom: 16px;
        font-size: 1.9rem;
    }

    .hero-text {
        margin-bottom: 24px;
    }

    .hero-visual {
        min-height: 245px;
    }

    .hero-banner-image {
        max-height: 245px;
    }

    .hero-model-left {
        left: 2%;
    }

    .hero-model-right {
        right: 0;
    }

    .hero-avatar {
        width: 100px;
        height: 176px;
        border-radius: 60px 60px 18px 18px;
    }

    .hero-badge {
        width: 22px;
        height: 42px;
    }

    .hero-tag {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 1rem;
    }

    .ribbon-one,
    .ribbon-two,
    .ribbon-three,
    .ribbon-four {
        width: 16px;
    }

    .process-step {
        width: 100%;
    }
}
/* ================= HOME HERO LIKE MOCKUP ================= */

.hero-banner {
    background: #ffffff;
    padding: 0;
}

.hero-carousel {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 667px;
    min-height: 500px;
    padding: 0;
    background: #1f4ed8;
    overflow: hidden;
}

/* รูปด้านขวา */
.hero-banner-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 56%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    z-index: 1;
}

/* กล่องข้อความด้านซ้าย */
.hero-copy {
    position: absolute;
    top: 86px;
    left: 15.5%;
    z-index: 3;
    max-width: 390px;
    color: #ffffff;
    text-align: left;
}

/* ซ่อน kicker เดิม ถ้าไม่ได้ใช้ */
.hero-kicker {
    display: none;
}

.hero-title {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hero-text {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    color: #ffffff;
}

/* จุด slide */
.hero-indicators {
    display: none;
}

.hero-dots-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-dots-custom button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
}

.hero-dots-custom button.active {
    width: 22px;
    border-radius: 20px;
    background: #ffffff;
}

/* ปุ่มเหลือง */
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-width: 265px;
    height: 54px;
    padding: 0 34px;
    border-radius: 999px;
    background: #ffce18;
    color: #000000;
    font-size: 20px;
    font-weight: 800;
    border: none;
    box-shadow: none;
}

.hero-cta:hover {
    background: #ffd633;
    color: #000000;
}

.hero-cta i {
    font-size: 20px;
}

/* ปุ่ม prev / next */
.hero-control {
    width: auto;
    opacity: 1;
    z-index: 5;
}

.hero-control-prev-custom {
    left: 54px;
}

.hero-control-next-custom {
    right: 54px;
}

.hero-control-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    color: #5d6575;
    font-size: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-control:hover .hero-control-icon {
    background: rgba(255, 255, 255, 0.55);
}
.feature-bar {
    width: 100%;
    border-bottom: 0.5px solid #00000033;
}

.feature-bar .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.feature-bar-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    padding: 0 193px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2449b8;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    color: #2449b8;
}

.feature-text {
    line-height: 1;
}
.recommended-section {
    position: relative;
    overflow: hidden;
    /* background: #f4f4f5; */
    padding: 52px 0;
}

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

.recommended-title {
    margin-bottom: 24px;
}

.recommended-title h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.recommended-title h2 span {
    color: #777;
    margin-left: 8px;
    font-weight: 600;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.recommended-card {
    position: relative;
    background: #fff;
    min-height: 328px;
    border-radius: 14px;
    padding: 24px 18px 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.recommended-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 6px;
    font-size: 27px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
}

.stars {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 4px;
    color: #f7b900;
    font-size: 18px;
    margin-bottom: 8px;
}

.product-img-wrap {
    position: relative;
    height: 225px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.product-img-wrap img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.card-blob {
   position: absolute;
    width: 150px;
    height: 125px;
    left: 44px;
    bottom: 66px;
    /* background: #ffe4bd; */
    border-radius: 45% 55% 55% 45%;
    z-index: 1;
}

.card-blob-orange {
  
    left: 35px;
    bottom: 82px;
}

/* background decoration */
.recommended-bg {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.recommended-bg-left {
    position: absolute;
    width: 420px;
    height: 180px;
    left: -110px;
    bottom: 20px;
    background: #FF9300;
    border-radius: 999px;
    transform: rotate(-38deg);
    z-index: 1;
}
.recommended-bg-up{
    position: absolute;
    width: 420px;
    height: 180px;
    left: -255px;
    bottom: 20px;
    background: #ffd20b;
    border-radius: 999px;
    transform: rotate(-38deg);
    z-index: 1;
}
.recommended-bg-left-circle {
    width: 150px;
    height: 150px;
    left: 40px;
    bottom: 108px;
    border-radius: 50%;
    background: #ff9200;
}

.recommended-bg-right-big {
    width: 245px;
    height: 245px;
    right: 86px;
    top: 25px;
    border-radius: 50%;
    background: #facb13;
}

.recommended-bg-right-small {
    width: 156px;
    height: 156px;
    right: 16px;
    top: 153px;
    border-radius: 50%;
    background: #ff9200;
}
.recommended-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    transform-origin: top left;
}

.recommended-card:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

/* swiper */
.recommended-slider-wrap {
    position: relative;
    z-index: 2;
}

.recommended-swiper {
    overflow: visible;
    padding: 4px 0 34px;
}

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

.recommended-swiper .recommended-card {
    height: 100%;
}
.recommended-slider-wrap,
.recommended-swiper,
.recommended-swiper .swiper-wrapper,
.recommended-swiper .swiper-slide {
    overflow: visible !important;
}
.premium-materials-mobile {
    display: none;
}

@media (max-width: 768px) {
    .premium-materials-desktop {
        display: none;
    }

    .premium-materials-mobile {
        display: block;
    }
     .premium-materials-mobile {
        background: #eef2f7;
        padding: 16px 0 26px;
        overflow: hidden;
    }

    .premium-materials-mobile .premium-materials-header {
        margin-bottom: 14px;
    }

    .premium-materials-mobile .premium-materials-header h2 {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .premium-materials-mobile .premium-materials-header p {
        font-size: 24px;
        line-height: 1.35;
    }

    .premium-materials-swiper {
        overflow: visible;
        padding: 2px 0 30px;
    }

    .premium-materials-swiper .swiper-slide {
        height: auto;
    }

    .premium-materials-swiper .material-card {
        height: 100%;
        min-height: 210px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14);
        overflow: hidden;
    }

    .premium-materials-swiper .material-image {
        /* height: 115px; */
        padding: 8px 8px 0;
    }

    .premium-materials-swiper .material-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .premium-materials-swiper .material-content {
        padding: 9px 10px 12px;
    }

    .premium-materials-swiper .material-content h3 {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .premium-materials-swiper .material-content p {
        font-size: 11px;
        line-height: 1.3;
    }

    .premium-materials-pagination {
        text-align: center;
        margin-top: 8px;
    }

    .premium-materials-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #b8b8b8;
        opacity: 1;
    }

    .premium-materials-pagination .swiper-pagination-bullet-active {
        background: #2449b8;
    }
}

/* pagination */
.recommended-swiper-pagination {
    position: relative;
    text-align: center;
    margin-top: 6px;
}

.recommended-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #b8b8b8;
    opacity: 1;
}

.recommended-swiper-pagination .swiper-pagination-bullet-active {
    background: #2449b8;
}

.purchase-steps-section {
    position: relative;
    overflow: hidden;
    background-color: #e7ecef;
    background-image: url("../images/home/Frame 365.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 48px 0 62px;
}
.promotional-steps-section {
    position: relative;
    overflow: hidden;
    background-color: #e7ecef;
    background-image: url("../images/home/Frame 366.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 48px 0 62px;
}

.purchase-steps-section .container {
    position: relative;
    z-index: 2;
}

.purchase-steps-title {
    text-align: center;
    margin-bottom: 28px;
}

.purchase-steps-title h2 {
    margin: 0;
    color: #000;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.2;
}

.purchase-steps-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 52px;
    max-width: 990px;
    margin: 0 auto;
}

/* เส้นประเชื่อม icon */
.purchase-steps-wrapper::before {
    content: "";
    position: absolute;
    top: 68px;
    left: 12%;
    right: 12%;
    border-top: 2px dotted #111;
    z-index: 1;
}

.purchase-step-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-circle {
    position: relative;
    width: 138px;
    height: 138px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-circle img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.step-number {
    position: absolute;
    top: 9px;
    left: -14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1f4bbb;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.step-text {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

/* Pattern background */
.step-pattern {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;

    background-image:
        linear-gradient(30deg, transparent 49%, #aeb4b8 50%, transparent 51%),
        linear-gradient(150deg, transparent 49%, #aeb4b8 50%, transparent 51%),
        linear-gradient(90deg, transparent 49%, #aeb4b8 50%, transparent 51%);
    background-size: 36px 36px;
}

/* มุมซ้ายบน */
.step-pattern-left {
    width: 270px;
    height: 180px;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.step-pattern-right {
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}

.premium-materials-section {
    background: #eef2f7;
    padding: 8px 0 18px;
}

.premium-materials-header {
    margin-bottom: 12px;
}

.premium-materials-header h2 {
    margin: 0 0 4px;
    color: #111;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.premium-materials-header p {
    
    margin: 0;
    color: #666;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.25;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.material-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    min-height: 184px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14);
    border: 2px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.18);
}

.material-card.active {
    border-color: #2196f3;
}

.material-image {
    width: 100%;
        padding: 25px 25px;
}

.material-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.material-content {
    padding: 8px 10px 12px;
}

.material-content h3 {
    margin: 0 0 5px;
    color: #111;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
}

.material-content p {
    margin: 0;
    color: #111;
    font-size: 22px;
    line-height: 1.25;
}

.material-card-wide {
    grid-column: span 3;
    min-height: 106px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
}

.material-card-wide .material-image {
    height: 100%;
    padding: 25px 25px;
}

.material-card-wide .material-content {
    padding: 18px 16px;
}
/* ================= DESKTOP MENU TOGGLE ================= */
.main-menu .nav-link.desktop-menu-toggle {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.main-menu .nav-link.desktop-menu-toggle.active,
.main-menu .nav-link.desktop-menu-toggle.is-open {
    color: #1f4bbb;
}

/* ================= MEGA MENU ================= */
.desktop-mega-menu-wrap {
    position: relative;
    z-index: 50;
}

.desktop-mega-menu {
    display: none;
    width: 100%;
    background: #f7f7f7;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.desktop-mega-menu.is-open {
    display: block;
}

.mega-menu-container {
    padding: 34px 90px 40px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 25% 25% 16% 16%;
    gap: 54px;
    align-items: start;
}

/* columns */
.mega-menu-title {
    font-size: 16px;
    font-weight: 400;
    color: #8c8c8c;
    margin-bottom: 12px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 14px;
}

.mega-menu-list li a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    line-height: 1.25;
}

.mega-menu-list li a:hover {
    color: #1f4bbb;
}

.mega-menu-view-all {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1f4bbb;
    font-size: 16px;
    text-decoration: none;
}

/* product card */
.mega-product-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    overflow: hidden;
}

.mega-product-image {
    height: 232px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.mega-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mega-product-content {
    padding: 14px 16px 16px;
}

.mega-product-content h4 {
    margin: 0 0 10px;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.mega-product-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}
.mega-product-image {
    overflow: hidden;
}

.mega-product-image img {
    transition: transform 0.3s ease;
}

.mega-product-image:hover img {
    transform: scale(1.08);
}

.other-product-grid {
    grid-template-columns: 20% 17% 17% 17% 17%;
    gap: 45px;
}

.other-product-grid .mega-product-card {
    align-self: start;
}

.other-product-card .mega-product-image {
    height: 232px;
    background: #f4f4f4;
}

.other-product-card .mega-product-content h4 {
    font-size: 16px;
}

.other-product-card .mega-product-content p {
    font-size: 14px;
    line-height: 1.8;
}
.site-header {
    position: relative;
    z-index: 1000;
}

.desktop-header {
    position: relative;
    z-index: 1002;
    background: #fff;
}

.desktop-mega-menu-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.desktop-mega-menu {
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.desktop-mega-menu.is-open {
    display: block;
}
.blog-inspirations-section {
    background: #f5f0e8;
    padding: 58px 0 42px;
}

.blog-inspirations-header {
    margin-bottom: 24px;
}

.blog-inspirations-header h2 {
    margin: 0;
    color: #111;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.18);
} */

.blog-image {
    display: block;
    width: 100%;
    /* height: 136px; */
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.blog-content {
    padding: 14px 16px 13px;
}

.blog-content h3 {
    margin: 0 0 9px;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.blog-content p {
    min-height: 48px;
    margin: 0 0 14px;
    color: #111;
    font-size: 10.5px;
    line-height: 1.25;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.blog-tag {
    min-width: 55px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #111;
    font-size: 9px;
    line-height: 1;
    text-align: center;
    display: inline-flex;
    justify-content: center;
}

.blog-tag-blue {
    background: #95d7df;
}

.blog-tag-yellow {
    background: #f3d55b;
}

.blog-date {
    color: #9b9b9b;
    font-size: 10px;
    white-space: nowrap;
}

.blog-button-wrap {
    margin-top: 34px;
    text-align: center;
}

.blog-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 235px;
    min-height: 36px;
    padding: 8px 22px;
    background: #00417d;
    color: #fff;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.blog-more-btn:hover {
    color: #fff;
    background: #003566;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.22);
}
.blog-swiper-wrap {
    position: relative;
}

.blog-swiper {
    overflow: visible;
    padding: 4px 0 28px;
}

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

.blog-swiper .blog-card {
    height: 100%;
}

.blog-swiper-pagination {
    text-align: center;
    margin-top: 4px;
}

.blog-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #b8b8b8;
    opacity: 1;
}

.blog-swiper-pagination .swiper-pagination-bullet-active {
    background: #00417d;
}
/* footer */
/* ================= FOOTER ================= */
.site-footer {
    width: 100%;
}

/* Newsletter bar */
.footer-newsletter {
    background: #98c6e0;
    padding: 18px 0;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.newsletter-text p {
    margin: 0;
    color: #eaf6ff;
    font-size: 14px;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 18px;
}

.newsletter-form input {
    width: 100%;
    height: 38px;
    border: none;
    outline: none;
    border-radius: 7px;
    padding: 0 16px;
    color: #555;
    font-size: 14px;
    background: #fff;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    width: 112px;
    height: 38px;
    border: none;
    border-radius: 7px;
    background: #2e66cf;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-form button:hover {
    background: #1f55bc;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.16);
}

/* Main footer */
.footer-main {
    background: #004780;
    padding: 54px 0 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 70px;
    align-items: flex-start;
}

.footer-logo-box {
    width: 145px;
    height: 50px;
    background: #fff;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-social a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

.footer-col h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #eaf6ff;
    font-size: 13px;
    text-decoration: none;
    line-height: 1.2;
}

.footer-col a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Copyright */
.footer-bottom {
    background: #004780;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
    font-size: 12px;
}
/* ปิด mega menu บน mobile */
@media (max-width: 768px) {
    .desktop-mega-menu-wrap {
        display: none !important;
    }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    /* ================= NEWSLETTER ================= */
    .footer-newsletter {
        padding: 34px 0 28px;
        text-align: center;
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .newsletter-text {
        text-align: center;
    }

    .newsletter-text h3 {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.25;
    }

    .newsletter-text p {
        max-width: 320px;
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.55;
    }

    .newsletter-form {
        width: 100%;
        max-width: 290px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .newsletter-form input {
        width: 100%;
        height: 40px;
        border-radius: 8px;
        font-size: 14px;
        padding: 0 14px;
    }

    .newsletter-form button {
        width: 86px;
        height: 36px;
        font-size: 12px;
        border-radius: 8px;
    }

    /* ================= MAIN FOOTER ================= */
    .footer-main {
        padding: 32px 0 48px;
        text-align: left;
    }

    .footer-grid {
        display: grid;
        padding: 17px;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 26px;
        align-items: start;
    }

    /* brand กินเต็มแถว */
    .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 8px;
    }

    .footer-logo {
        flex-shrink: 0;
    }

    .footer-logo-box {
        width: 116px;
        height: 42px;
        margin: 0;
    }

    .footer-social {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 18px;
        flex-wrap: nowrap;
    }

    .footer-social a {
        font-size: 26px;
    }

    .footer-col {
        text-align: left;
    }

    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-col ul {
        margin: 0;
        padding: 0;
    }

    .footer-col li {
        margin-bottom: 8px;
    }

    .footer-col a {
        font-size: 15px;
        line-height: 1.35;
    }

    /* ================= COPYRIGHT ================= */
    .footer-bottom {
        padding: 12px 0;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.4;
    }
}
@media (max-width: 768px) {
    .hero-copy {
        left: 12%;
    }

    .hero-banner-image {
        width: 72%;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 620px;
    }
.hero-slide {
    height: 595px;
}
.recommended-bg-right-big {
    width: 150px;
    height: 150px;
    right: 10px;
    top: 25px;
}
.recommended-bg-right-small {
    width: 100px;
    height: 100px;
    right: -10px;
    top: 94px;
}
.recommended-card h3 {
    font-size: 24px;
}
    .hero-banner-image {
        width: 100%;
        height: 58%;
        top: auto;
        bottom: 0;
        object-position: center bottom;
    }
     .hero-cta {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        align-items: center;
    }

    .hero-copy {
        top: 55px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 48px);
        max-width: 440px;
        text-align: left;
    }

    .hero-title {
        font-size: 32px;
    }

    /* .hero-text {
        font-size: 15px;
    } */

    .hero-dots-custom {
        justify-content: center;
    }

    .hero-control-prev-custom {
        left: 16px;
    }

    .hero-control-next-custom {
        right: 16px;
    }

    .hero-control-icon {
        width: 44px;
        height: 44px;
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 560px;
    }

    .hero-copy {
        top: 38px;
        width: calc(100% - 32px);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        /* font-size: 14px; */
        line-height: 1.35;
    }

    .hero-cta {
        min-width: 230px;
        height: 50px;
        font-size: 17px;
    }

    .hero-banner-image {
        height: 52%;
    }
}
@media (max-width: 768px) {
    .feature-bar-inner {
        gap: 10px;
        padding: 12px 8px;
        justify-content: space-between;
    }

    .feature-item {
        gap: 4px;
        font-size: 10px;
        line-height: 1.1;
        flex: 1;
        justify-content: center;
        min-width: 0;
        white-space: normal;
        text-align: left;
    }

    .feature-icon {
        flex-shrink: 0;
    }

    .feature-icon img {
        width: 20px;
        height: 20px;
    }

    .feature-text {
        max-width: 70px;
    }
}
@media (max-width: 768px) {
    .hero-control-prev-custom,
    .hero-control-next-custom {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .blog-swiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
        transform: none !important;
    }

    .blog-swiper .swiper-slide {
        width: auto !important;
    }

    .blog-swiper-pagination {
        display: none;
    }
}
@media (max-width: 768px) {
    .purchase-steps-section {
        background-image: url("../images/home/Frame 353.png");
        padding: 28px 0 36px;
    }

    .purchase-steps-title {
        margin-bottom: 16px;
    }

    .purchase-steps-title h2 {
        font-size: 22px;
        line-height: 1.2;
        text-align: center;
    }

    .purchase-steps-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 250px;
        margin: 0 auto;
        position: relative;
    }

    /* ซ่อนเส้นประแนวนอนของ desktop */
    .purchase-steps-wrapper::before {
        display: none;
    }

    .purchase-step-item {
        position: relative;
        text-align: center;
        padding-bottom: 34px;
        margin-bottom: 8px;
    }

    /* เส้นประแนวตั้งระหว่าง step */
    .purchase-step-item:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 163px;
        transform: translateX(-50%);
        height: 42px;
        border-left: 2px dotted #111;
        z-index: 1;
    }

    .step-circle {
        width: 112px;
        height: 112px;
        margin: 0 auto 12px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .step-circle img {
        width: 66px;
        height: 66px;
        object-fit: contain;
    }

    .step-number {
        position: absolute;
        top: -4px;
        left: -12px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #234db8;
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }

    .step-text {
        font-size: 15px;
        line-height: 1.25;
        font-weight: 700;
        text-align: center;
        max-width: 220px;
        margin: 0 auto;
    }

    /* pattern ซ้าย/ขวา */
    .step-pattern {
        opacity: 0.28;
    }

    .step-pattern-left {
        width: 120px;
        height: 170px;
        top: 70px;
        left: 0;
        clip-path: polygon(0 0, 100% 0, 0 100%);
    }

    .step-pattern-right {
        width: 120px;
        height: 170px;
        right: 0;
        top: 260px;
        bottom: auto;
        transform: none;
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
    }
}
@media (max-width: 767.98px) {
    .hero-copy {
        align-items: center;
        text-align: center;
    }

    .hero-action-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: auto;
        padding-bottom: 68px;
    }

    .hero-dots-custom {
        display: flex;
        justify-content: center;
        margin-bottom: 16px;
    }

    .hero-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}
/* ===== Language Dropdown ===== */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.language-toggle .lang-flag-toggle {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    display: inline-block;
    background-size: cover;
    background-position: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    line-height: 20px;
}

.language-toggle i {
    font-size: 12px;
    color: #2449b8;
    transition: transform 0.25s ease;
}

/* เมนู */
.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    padding: 8px 0;
    z-index: 1200;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

/* เปิดตอน hover */
.language-dropdown:hover .language-menu,
.language-dropdown.is-open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* หมุนลูกศร */
.language-dropdown:hover .language-toggle i,
.language-dropdown.is-open .language-toggle i {
    transform: rotate(180deg);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #111;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.2;
    transition: background 0.2s ease;
}

.language-item:hover {
    background: #f6f7fb;
    color: #111;
}

.language-item.active {
    font-weight: 500;
}

/* ธงในเมนู dropdown */
.lang-flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    flex-shrink: 0;
    display: inline-block;
    background-size: cover;
    background-position: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    line-height: 16px;
}
.auth-page {
    min-height: 100vh;
    background: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
}

.auth-card {
    width: 100%;
    max-width: 470px;
    background: #f7f7f7;
    border-radius: 14px;
    padding: 34px 30px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    color: #111;
}

.auth-group {
    margin-bottom: 18px;
}

.auth-label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #222;
}

.auth-input {
    width: 100%;
    height: 46px;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 16px;
    background: #fff;
    outline: none;
    transition: 0.2s ease;
}

.auth-input:focus {
    border-color: #3a74c5;
    box-shadow: 0 0 0 3px rgba(58, 116, 197, 0.12);
}

.auth-forgot-wrap {
    text-align: right;
    margin-top: -4px;
    margin-bottom: 18px;
}

.auth-link {
    color: #2f6fcc;
    text-decoration: none;
    font-size: 15px;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: #2f69bd;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.auth-submit-btn:hover {
    background: #2559a3;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0 18px;
    color: #222;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #cfcfcf;
}

.auth-divider span {
    font-size: 16px;
    color: #222;
}

.auth-social-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-social-btn {
    height: 38px;
    border: 1px solid #222;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
    font-size: 16px;
    background: #fff;
    transition: 0.2s ease;
    position: relative;
}

.auth-social-btn:hover {
    background: #f5f5f5;
}

.auth-social-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    position: absolute;
    left: 16px;
}

.google-icon {
    color: #ea4335;
    background: transparent;
    font-family: Arial, sans-serif;
}

.facebook-icon {
    color: #1877f2;
    background: transparent;
    font-family: Arial, sans-serif;
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
}

.auth-register-text {
    text-align: center;
    font-size: 15px;
    margin-top: 22px;
    color: #222;
}

.auth-alert {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
}

.auth-alert-success {
    background: #e9f8ee;
    color: #1f7a39;
    border: 1px solid #bfe7c9;
}

.auth-alert-danger {
    background: #fdecec;
    color: #b42318;
    border: 1px solid #f5c2c2;
}

@media (max-width: 576px) {
    .auth-card {
        padding: 26px 20px 22px;
    }

    .auth-title {
        font-size: 21px;
    }

    .auth-social-btn {
        font-size: 15px;
    }
}
.register-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 40% 60%;
    background: #fff;
}

.register-left {
    background: #e9e9e9;
    position: relative;
    overflow: hidden;
}

.register-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.register-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px 24px;
}

.register-card {
    width: 100%;
    max-width: 408px;
}

.register-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #050505;
    margin-bottom: 34px;
}

.register-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.register-group {
    margin-bottom: 24px;
}

.register-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.register-label span {
    color: #e60012;
}

.register-input {
    width: 100%;
    height: 38px;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    padding: 0 14px;
    font-size: 15px;
    background: #fff;
    outline: none;
    transition: 0.2s ease;
}

.register-input::placeholder {
    color: #8c8c8c;
}

.register-input:focus {
    border-color: #2f69bd;
    box-shadow: 0 0 0 3px rgba(47, 105, 189, 0.12);
}

.password-rules {
    margin-top: -14px;
    margin-bottom: 24px;
}

.password-rule {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
    font-size: 15px;
    margin-bottom: 12px;
}

.rule-icon {
    color: #e63946;
    font-size: 24px;
    line-height: 1;
    width: 13px;
    display: inline-flex;
    justify-content: center;
}

.password-rule.passed .rule-icon {
    color: #3da34d;
    font-size: 18px;
}

.register-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 15px;
    line-height: 1.45;
    color: #111;
    margin-bottom: 14px;
    cursor: pointer;
}

.register-checkbox input {
    width: 19px;
    height: 19px;
    min-width: 19px;
    margin-top: 2px;
    accent-color: #2f69bd;
}

.register-submit-btn {
    width: 100%;
    height: 37px;
    border: none;
    border-radius: 999px;
    background: #2f6fc3;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.register-submit-btn:hover {
    background: #245da8;
}

@media (max-width: 900px) {
    .register-page {
        grid-template-columns: 1fr;
    }

    .register-left {
        display: none;
    }

    .register-right {
        min-height: 100vh;
        padding: 35px 18px;
    }
}

@media (max-width: 520px) {
    .register-card {
        max-width: 100%;
    }

    .register-title {
        font-size: 25px;
        margin-bottom: 26px;
    }

    .register-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .register-group {
        margin-bottom: 18px;
    }

    .register-checkbox {
        font-size: 14px;
    }
}
.verify-success-page {
    min-height: 100vh;
    background: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.verify-success-card {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.verify-success-icon-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
}

.verify-success-icon {
    width: 88px;
    height: 88px;
    background: #58ba70;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.verify-success-icon span {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-2px);
}

.verify-success-badge {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-10%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px #efefef;
}

.verify-success-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px;
}

.verify-success-text {
    font-size: 16px;
    line-height: 1.5;
    color: #222;
    margin: 0 0 24px;
}

.verify-success-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 36px;
    padding: 0 28px;
    background: #2f6fc3;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    transition: 0.2s ease;
}

.verify-success-btn:hover {
    background: #255da8;
    color: #fff;
}
 .product-page {
        max-width: 1180px;
        margin: 0 auto;
        padding: 35px 20px;
        display: grid;
        grid-template-columns: 230px 1fr;
        gap: 35px;
    }

    .filter-box {
        background: #fff;
        padding: 18px;
        border-radius: 2px;
        align-self: start;
    }

    .filter-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .filter-group {
        margin-bottom: 24px;
    }

    .filter-group-title {
        font-size: 18px;
        color: #006b80;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .filter-option {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 14px;
        margin-bottom: 7px;
    }

    .filter-option input {
        width: 13px;
        height: 13px;
    }

    .filter-actions {
        display: flex;
        gap: 8px;
        margin-top: 15px;
    }

    .filter-btn {
        border: 0;
        background: #1f66ff;
        color: #fff;
        padding: 8px 12px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 12px;
    }

    .clear-btn {
        background: #e5e7eb;
        color: #111827;
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 4px;
        font-size: 12px;
    }

    .content-header {
        text-align: center;
        margin-bottom: 24px;
    }

    .content-header h1 {
        font-size: 24px;
        margin: 0;
        font-weight: 700;
    }

    .content-header p {
        font-size: 18px;
        margin: 5px 0 16px;
    }

    .type-tabs {
        display: flex;
        justify-content: center;
        gap: 18px;
    }

    .type-card {
        width: 230px;
        min-height: 105px;
        background: #fff;
        border: 1px solid #d9dde7;
        border-radius: 10px;
        text-decoration: none;
        color: #111827;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        transition: 0.2s;
        padding: 11px;
    }

    .type-card.active {
        background: #213f99;
        color: #fff;
        box-shadow: 0 5px 12px rgba(0,0,0,0.18);
    }

    .type-card .icon {
        font-size: 30px;
    }

    .type-card .label {
        font-size: 14px;
        line-height: 1.25;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .product-card {
        background: #fff;
        border-radius: 8px;
        padding: 15px;
    }

    .product-image {
        width: 100%;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        overflow: hidden;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .product-name {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 5px;
        min-height: 18px;
    }

    .stars {
        color: #f5b400;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .detail-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #1f66ff;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        padding: 9px 13px;
        font-size: 12px;
        font-weight: 700;
    }
    .detail-btn:hover{
        color: #fff;
        background-color: #1447E6;
    }
    

    .empty-products {
        background: #fff;
        padding: 30px;
        text-align: center;
        border-radius: 8px;
        grid-column: 1 / -1;
    }

    .pagination-wrap {
        margin-top: 25px;
    }

    @media (max-width: 900px) {
        .product-page {
            grid-template-columns: 1fr;
        }

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

        .type-tabs {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 520px) {
        .products-grid {
            grid-template-columns: 1fr;
        }

        .type-card {
            width: 100%;
        }
    }
    .product-list-banner-wrap {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.product-list-banner-img {
    width: 100%;
  
    object-fit: cover;
}
.category-swiper-section {
    background: #fff;
    padding: 28px 0 26px;
}

.category-swiper-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-swiper-inner h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 22px;
}

.category-swiper {
    position: relative;
    padding: 0 55px;
}

.category-swiper .swiper-slide {
    width: 120px;
}

.category-slide-btn {
    border: 0;
    background: transparent;
    width: 100%;
    padding: 0;
    cursor: pointer;
    text-align: center;
    color: #111;
}

.category-slide-img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #f1f2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: 0.2s ease;
    border: 2px solid transparent;
}

.category-slide-img img {
    max-width: 58px;
    max-height: 58px;
    object-fit: contain;
}

.category-slide-name {
    display: block;
    font-size: 14px;
    line-height: 1.25;
    min-height: 34px;
}

.category-slide-btn.active .category-slide-img {
    border-color: #1f66ff;
    box-shadow: 0 4px 12px rgba(31, 102, 255, 0.22);
}

.category-slide-btn:hover .category-slide-img {
    transform: translateY(-2px);
}

.category-swiper-prev,
.category-swiper-next {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.14);
    color: #111;
}

.category-swiper-prev::after,
.category-swiper-next::after {
    font-size: 18px;
    font-weight: 700;
}

.category-swiper-prev {
    left: 0;
}

.category-swiper-next {
    right: 0;
}

@media (max-width: 768px) {
    .category-swiper {
        padding: 0 38px;
    }

    .category-swiper .swiper-slide {
        width: 95px;
    }

    .category-slide-img {
        width: 62px;
        height: 62px;
    }

    .category-slide-img img {
        max-width: 48px;
        max-height: 48px;
    }

    .category-slide-name {
        font-size: 12px;
    }
}
.category-swiper-section,
.category-swiper-inner,
.category-swiper,
.category-swiper .swiper-wrapper,
.category-swiper .swiper-slide {
    overflow: visible !important;
}

.category-swiper {
    padding-top: 14px;
    padding-bottom: 14px;
}

.category-slide-btn {
    border: 1px solid transparent;
    background: transparent;
    width: 100%;
    padding: 8px 6px;
    cursor: pointer;
    text-align: center;
    color: #111;
    border-radius: 4px;
}


.category-slide-img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #f1f2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: 0.2s ease;
    border: 2px solid transparent;
}

.category-slide-btn.active .category-slide-img,
.category-slide-btn:hover .category-slide-img {
    border-color: #1f66ff;
    box-shadow: 0 4px 12px rgba(31, 102, 255, 0.22);
    transform: scale(1.03);
}
.product-description-page {
    background: #f4f5f7;
    padding: 34px 20px 60px;
}

.product-description-page,
.product-description-page * {
    box-sizing: border-box;
}

.product-breadcrumb {
    max-width: 1180px;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #111;
}

.product-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.product-description-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: start;
}

.product-gallery {
    width: 100%;
}

.product-main-image {
    background: #fff;
    border-radius: 8px;
    height: 410px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 35px;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.product-thumbnail {
    border: 0;
    background: #fff;
    border-radius: 8px;
    height: 72px;
    padding: 8px;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-thumbnail.active,
.product-thumbnail:hover {
    border-color: #3166ff;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-summary {
    padding-top: 6px;
}

.product-rating-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 20px;
}

.product-stars {
    color: #f5b400;
    letter-spacing: 2px;
}

.product-summary h1 {
    font-size: 34px;
    line-height: 1.35;
    margin: 0 0 26px;
    font-weight: 800;
    color: #050505;
}

.product-description-text {
    font-size: 16px;
    line-height: 1.55;
    color: #111;
    margin-bottom: 30px;
    max-width: 520px;
}

.customize-btn {
    width: 100%;
    max-width: 520px;
    min-height: 58px;
    background: #3166f6;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.customize-btn:hover {
    background: #1f55e8;
    color: #fff;
}

@media (max-width: 900px) {
    .product-description-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .product-main-image {
        height: 340px;
    }

    .product-summary h1 {
        font-size: 28px;
    }
}

@media (max-width: 540px) {
    .product-description-page {
        padding: 24px 14px 45px;
    }

    .product-main-image {
        height: 280px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .product-thumbnail {
        height: 64px;
    }

    .product-summary h1 {
        font-size: 24px;
    }

    .product-description-text {
        font-size: 14px;
    }
}
.hotstrap-desc-page {
    background: #F8F9FB;
    padding: 28px 20px 50px;
}

.hotstrap-container {
    max-width: 1180px;
    margin: 0 auto;
}

.hotstrap-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #111;
    margin-bottom: 22px;
}

.hotstrap-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.hotstrap-main-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 68px;
    align-items: start;
}

.hotstrap-main-image {
    background: #fff;
    /* border: 3px solid #2f86ff; */
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hotstrap-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
}

.hotstrap-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.hotstrap-thumb {
    border: 0;
    background: #fff;
    border-radius: 8px;
    height: 74px;
    padding: 8px;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
}

.hotstrap-thumb.active,
.hotstrap-thumb:hover {
    border-color: #2f86ff;
}

.hotstrap-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hotstrap-summary {
    padding-top: 4px;
}

.hotstrap-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 18px;
}

.hotstrap-rating .stars {
    color: #f5b400;
    letter-spacing: 2px;
    font-size: 18px;
}

.hotstrap-summary h1 {
    font-size: 32px;
    line-height: 1.35;
    font-weight: 800;
    margin: 0 0 22px;
    color: #050505;
}

.hotstrap-description {
    font-size: 15px;
    line-height: 1.55;
    color: #111;
    max-width: 520px;
    margin-bottom: 24px;
}

.hotstrap-customize-btn {
    max-width: 520px;
    min-height: 54px;
    background: #3166f6;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.2s ease;
}

.hotstrap-customize-btn:hover {
    background: #1f55e8;
    color: #fff;
}

.hotstrap-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.hotstrap-feature-card {
    background: #f8f9fb;
    border: 1px solid #e0e4ea;
    border-radius: 8px;
    padding: 18px 18px 20px;
    min-height: 138px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: #eef3ff;
    color: #2f66ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 22px;
}

.hotstrap-feature-card h3 {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #111;
}

.hotstrap-feature-card p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: #111;
}

@media (max-width: 900px) {
    .hotstrap-main-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hotstrap-main-image {
        height: 320px;
    }

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

    .hotstrap-summary h1 {
        font-size: 28px;
    }
}

@media (max-width: 540px) {
    .hotstrap-desc-page {
        padding: 22px 14px 40px;
    }

    .hotstrap-main-image {
        height: 270px;
    }

    .hotstrap-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .hotstrap-thumb {
        height: 64px;
    }

    .hotstrap-feature-grid {
        grid-template-columns: 1fr;
    }

    .hotstrap-summary h1 {
        font-size: 24px;
    }
}
.hotstrap-main-image {
    background-color: #fff;
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
}

.hotstrap-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
    transition: transform 0.15s ease;
    transform-origin: center center;
}

.hotstrap-main-image.is-zooming img {
    transform: scale(2);
}
.hotstrap-spec-section {
    background: #eaf3f6;
    padding: 42px 20px;
}

.hotstrap-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hotstrap-spec-image {
    /* border: 3px solid #2f86ff; */
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.hotstrap-spec-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hotstrap-spec-content h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 18px;
}

.hotstrap-spec-card {
    background: #fff;
    border-radius: 8px;
    padding: 24px 28px;
}

.hotstrap-spec-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.hotstrap-spec-row:last-child {
    margin-bottom: 0;
}

.hotstrap-spec-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #dff0f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotstrap-spec-icon img {
    object-fit: contain;
}

.hotstrap-spec-row h3 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 4px;
}

.hotstrap-spec-row p {
    font-size: 15px;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .hotstrap-spec-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hotstrap-spec-image img {
        height: 300px;
    }
}
.hotstrap-accordion-section {
    padding: 40px 20px 60px;
    background: #F8F9FB;
}

.hotstrap-accordion-wrap {
    max-width: 1150px;
    margin: 0 auto;
}

.custom-accordion-item {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.custom-accordion-header {
    width: 100%;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
    cursor: pointer;
    text-align: left;
}

.custom-accordion-title {
    font-size: 20px;
    font-weight: 500;
    color: #111827;
}

.custom-accordion-icon {
    font-size: 34px;
    line-height: 1;
    color: #111;
    transition: 0.2s ease;
}

.custom-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    background: #fff;
}

.custom-accordion-inner {
    padding: 0 32px 28px;
    color: #111827;
    line-height: 1.8;
    font-size: 16px;
}

.custom-accordion-item.active .custom-accordion-header {
    border-bottom: 1px solid #e5e7eb;
}

.custom-accordion-item.active .custom-accordion-icon {
    transform: rotate(180deg);
}

.custom-accordion-inner table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow-x: auto;
    display: block;
}

.custom-accordion-inner img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .custom-accordion-header {
        padding: 18px 20px;
    }

    .custom-accordion-inner {
        padding: 0 20px 22px;
        font-size: 14px;
    }

    .custom-accordion-title {
        font-size: 18px;
    }

    .custom-accordion-icon {
        font-size: 28px;
    }
}
.related-products-section {
    background: #f5f6f8;
    padding: 36px 20px 60px;
}

.related-products-container {
    max-width: 1180px;
    margin: 0 auto;
}

.related-products-container h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 18px;
    color: #111;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.related-product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    min-height: 195px;
    padding: 18px 14px 0;
    text-decoration: none;
    color: #111;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: 0.2s ease;
}

.related-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    color: #111;
}

.related-product-info h3 {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 4px;
}

.related-stars {
    color: #f5b400;
    font-size: 14px;
    letter-spacing: 1px;
}

.related-product-image {
    height: 130px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 8px;
}

.related-product-image img {
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
    display: block;
}

@media (max-width: 900px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }

    .related-product-card {
        min-height: 210px;
    }
}
.no-underline{
    text-decoration: none;
}
