@font-face {
    font-family: "SharpGroteskBook25";
    src: url("../font/Sharp_Grotesk/SharpGrotesk-Book25.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Tối ưu hiển thị khi tải */
}

.locktin-container {
    display: flex;
    flex-wrap: wrap;
    /*
    -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
    mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
    */
}

/* animation cho hiệu ứng trượt lên */
@keyframes slideUp {
    0% {
        transform: translateY(100%); /* Bắt đầu từ dưới */
        opacity: 0; /* Bắt đầu trong suốt */
    }
    100% {
        transform: translateY(0); /* Trở về vị trí ban đầu */
        opacity: 1; /* Xuất hiện */
    }
}

/* Thêm lớp để áp dụng animation */
.fade-in {
    animation: slideUp 0.5s forwards;
}

.locktin-product-container {
    flex: 1 0 20%; /* Mỗi sản phẩm chiếm 20% chiều rộng ban đầu */
    position: relative;
    overflow: hidden;
    opacity: 1; /* Bắt đầu ở trạng thái trong suốt */
    transition: all 0.5s ease; /* Hiệu ứng chuyển tiếp cho tất cả các sản phẩm */
    /* animation: slideUp 0.5s forwards;  Thêm animation khi xuất hiện */

    /* Căn giữa ảnh */
    display: flex; /* Bật chế độ flexbox */
    justify-content: center; /* Căn giữa theo chiều ngang */
    align-items: center; /* Căn giữa theo chiều dọc */
}

.locktin-product-container.active {
    /* Thêm style để highlight sản phẩm được chọn */
}

.locktin-product-image {
    object-fit: cover;
    cursor: pointer;
    filter: brightness(0.95);
    transition: transform 2.5s ease, filter 0.5s ease; /* Thay đổi tốc độ với 0.5s */
}

.locktin-product-overlay {
    position: absolute; /* Đặt vị trí tuyệt đối */
    border-top-left-radius: 128px 30px; /* Bo góc tương tự theo yêu cầu */
    border-top-right-radius: 128px 30px; /* Bo góc tương tự theo yêu cầu */
    opacity: 0; /* Đặt độ trong suốt nếu cần (1 là không trong suốt, 0 là trong suốt hoàn toàn) */
    z-index: 1000;
}

.locktin-product-content {
    color: #333333;
    font-size: 30px;
    top: 1350px;
    position: absolute;
    left: -100%;
    opacity: 0;
    transition: all 0.5s ease; /* Hiệu ứng mượt trong 0.5s */
    font-family: "SharpGroteskBook25", sans-serif;
}

.locktin-product-container:not(.locktin-expanded):hover
    .locktin-product-content {
    left: 50px; /* Trượt về vị trí gốc */
    opacity: 1; /* Hiện rõ dần */
}

/* Thay đổi khi hover chỉ khi chưa mở rộng */
.locktin-product-container:not(.locktin-expanded):hover .locktin-product-image {
    transform: scale(1.1); /* Phóng to ảnh khi hover */
    filter: brightness(1); /* Tăng độ sáng ảnh khi hover */
}

/* Thay đổi khi hover chỉ khi chưa mở rộng */
.locktin-product-container:not(.locktin-expanded):hover .locktin-product-overlay {
    width: 100px; /* Phóng to ảnh khi hover */
    filter: brightness(1); /* Tăng độ sáng ảnh khi hover */
}

/* Sản phẩm thu nhỏ */
.locktin-shrink {
    flex: 0 0 0%; /* Thu nhỏ xuống 0% chiều rộng */
    opacity: 0; /* Mờ dần */
}

/* Sản phẩm mở rộng */
.locktin-expanded {
    flex: 1 0 100%; /* Mở rộng chiếm toàn bộ chiều rộng */
    z-index: 5;
}

.locktin-expanded .locktin-product-image {
    object-fit: cover;
}

/* ===== LOCKTIN-A CONTAINER ===== */
.locktin-a-container {
    --locktin-primary: #111;
    --locktin-secondary: #555;
    --locktin-light: #f5f5f5;
    --locktin-gray: #777;
    --locktin-white: #f9f9f9;

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "SharpGroteskBook25", sans-serif;
    background-color: transparent;
    position: absolute;
    height: 100vh;
    width: 100vw;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.locktin-product-container.active .locktin-a-container {
}

/* ===== LEFT SECTION ===== */
.locktin-a-left-section {
    padding-left: clamp(1rem, 5vw, 8rem);
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Thay space-between bằng center */
    text-align: right;
}

.locktin-a-product-info {
}

.locktin-a-product-info {
    text-align: right; /* Căn phải toàn bộ nội dung */
}

.locktin-a-cta-button {
    display: inline-block; /* Cho phép căn theo text-align */
}

.locktin-a-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--locktin-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Màn hình trung bình (tablet) */
@media (min-width: 481px) and (max-width: 768px) {
    .locktin-a-title {
        font-size: 15px;
    }
}

/* Màn hình lớn (desktop) */
@media (min-width: 769px) and (max-width: 1300px) {
    .locktin-a-title {
        font-size: 24px;
    }
}

/* Màn hình lớn (desktop) */
@media (min-width: 1300px) {
  .locktin-a-title {
      font-size: 48px;
  }
}

.locktin-a-option-desc {
    color: var(--locktin-primary);
    font-size: clamp(10px, 1vw, 24px);
}

.locktin-a-description {
    color: var(--locktin-secondary);
    font-size: clamp(10px, 1vw, 24px);
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.locktin-a-cta-button {
    background-color: var(--locktin-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: fit-content;
}

.locktin-a-cta-button span {
    margin-right: 10px;
}

.locktin-a-scroll-indicator {
    display: flex;
    align-items: center;
    color: var(--locktin-gray);
    font-size: 0.9rem;
}

.locktin-a-scroll-indicator-circle {
    width: 24px;
    height: 24px;
    border: 1px solid var(--locktin-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

/* ===== MIDDLE SECTION ===== */
.locktin-a-middle-section {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
}

.locktin-a-product-image {
    height: 70%;
    position: relative;
}

.locktin-a-bottle-image {
    height: 100%;
}

.locktin-a-dots {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.locktin-a-dot {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
}

.locktin-a-product-description {
    position: absolute;
    bottom: 4rem;
    left: 5%;
    max-width: 90%;
    font-size: 0.8rem;
    color: var(--locktin-secondary);
    padding: 0 1rem;
}

/* ===== RIGHT SECTION ===== */
.locktin-a-right-section {
    padding-left: 0;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Màn hình trung bình (tablet) */
@media (min-width: 481px) and (max-width: 768px) {
    .locktin-a-right-section {
        padding-left: 0;
    }
}

/* Màn hình lớn (desktop) */
@media (min-width: 769px) {
    .locktin-a-right-section {
        padding-left: 0;
    }
}

.locktin-a-product-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .locktin-a-product-options {
        gap: 1rem; /* tablet */
    }
}

@media (max-width: 768px) {
    .locktin-a-product-options {
        gap: 0.5rem; /* mobile */
    }
}

@media (max-width: 480px) {
    .locktin-a-product-options {
        gap: 0; /* mobile nhỏ */
    }
}

.locktin-a-option-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.locktin-a-option-desc {
    color: var(--locktin-primary);
    font-size: clamp(10px, 1vw, 24px);
}

.locktin-a-discover-more {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--locktin-primary);
    text-decoration: none;
    margin-top: auto;
}

.lockscreen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}
.lockscreen-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #0d3b2e;
}
.lockscreen-logo img {
    width: 40px;
    margin-right: 10px;
}
.lockscreen-nav-buttons {
    display: flex;
    align-items: center;
}
.lockscreen-login-btn {
    padding: 8px 24px;
    border: 1px solid #0d3b2e;
    border-radius: 50px;
    background: transparent;
    color: #0d3b2e;
    margin-right: 15px;
    cursor: pointer;
}
.lockscreen-icon-btn {
    margin-left: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
}
.lockscreen-intro-section {
    height: 100vh;
    padding: 100px 5%;
    background-color: #f9f9f9;
}
.lockscreen-products-container {
    position: relative;
}
@media (min-width: 768px) {
    .lockscreen-products-container {
        height: 400vh;
    }
}
.lockscreen-products-wrapper {
    position: sticky;
    top: 17.5vh;
    border-radius: 20px;
    margin-left: 2.5vw;
    margin-right: 2.5vw;
    margin-top: 2.5vw;
    margin-bottom: 2.5vw;
    height: 80vh;
    width: 95vw;
    overflow: hidden;
}
.lockscreen-products-wrapper-2 {
    display: none;
}
/* Đối với màn hình nhỏ (Tablet) */
@media (max-width: 768px) {
    .lockscreen-products-wrapper {
        display: none;
    }
    .lockscreen-products-wrapper-2 {
        display: block;
    }
}
.lockscreen-product {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* Icon container */
.medical-icon {
    background-color: #0d5247; /* Màu xanh đậm */
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.medical-icon svg {
    fill: white;
    width: 24px;
    height: 24px;
}

/* Text content */
.alert-text {
    font-size: max(.825rem + .2vw, .925vw);
    line-height: 1.5;
    color: #0d5247; /* Màu xanh đậm */
    max-width: 450px;
    margin-bottom: 40px;
}

/* Main heading */
.main-heading {
    font-size: 80px;
    line-height: 1.1;
    color: #0d5247; /* Màu xanh đậm */
    margin-top: auto; /* Đẩy xuống dưới */
    max-width: 700px;
    margin-bottom: 30px;
}

/* Clipboard illustration */
.clipboard-illustration {
    position: absolute;
    right: 5vw; /* Sử dụng đơn vị vw để kích thước và vị trí phụ thuộc vào kích thước màn hình */
    bottom: 5vh; /* Sử dụng đơn vị vh để đảm bảo sự thay đổi linh hoạt khi thay đổi kích thước màn hình */
    width: 25vw; /* Kích thước thay đổi theo tỷ lệ của màn hình */
    height: auto; /* Tự động thay đổi chiều cao để duy trì tỷ lệ */
}

.clipboard-illustration img {
    width: 25vw;
}

/* Màn hình siêu rộng 1440px */
@media (max-width: 1440px) {
    .main-heading {
        max-width: 500px;
    }
}

/* Màn hình siêu rộng 1440px */
@media (max-width: 1200px) {
    .main-heading {
        max-width: 600px;
        font-size: 64px;
    }
}

/* Màn hình siêu rộng 1440px */
@media (max-width: 992px) {
    .main-heading {
        max-width: 500px;
        font-size: 50px;
    }
}

/* Màn hình siêu rộng 1440px */
@media (max-width: 800px) {
    .main-heading {
        max-width: 450px;
        font-size: 50px;
    }
}

/* Decorative elements */
.decorative-star {
    position: absolute;
    color: #cccccc;
    opacity: 0.5;
}

.star-1 {
    right: 10vw;  /* Tạo vị trí linh hoạt với vw */
    bottom: 15vh; /* Sử dụng vh để căn chỉnh sao cho vị trí phụ thuộc vào kích thước màn hình */
    font-size: 6vw; /* Kích thước thay đổi theo tỷ lệ của màn hình */
}

.star-2 {
    right: 25vw; /* Tạo vị trí linh hoạt với vw */
    bottom: 10vh; /* Sử dụng vh để căn chỉnh sao cho vị trí phụ thuộc vào kích thước màn hình */
    font-size: 5vw; /* Kích thước thay đổi theo tỷ lệ của màn hình */
}

/* Media Queries cho responsiveness */

/* Khi màn hình nhỏ hơn hoặc bằng 768px (Tablet and Mobile) */
@media (max-width: 768px) {
    .lockscreen-product {
        padding: 20px;
    }

    .alert-text {
        max-width: 100%;
    }

    .main-heading {
        font-size: 36px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .medical-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
    }

    .clipboard-illustration {
        width: 30vw; /* Thay đổi kích thước theo tỷ lệ màn hình */
        height: auto; /* Đảm bảo chiều cao thay đổi theo tỷ lệ của chiều rộng */
        right: 4vw; /* Căn chỉnh lại vị trí cho phù hợp */
        bottom: 4vh; /* Căn chỉnh lại vị trí */
        position: relative;
    }

    .decorative-star {
        font-size: 10vw; /* Tăng kích thước sao cho phù hợp với màn hình nhỏ */
    }

    .star-1 {
        right: 15vw;
        bottom: 12vh;
    }

    .star-2 {
        right: 20vw;
        bottom: 8vh;
    }
}

@media (max-width: 765px) {
    .clipboard-illustration {
        width: 100%; /* Chiều rộng 100% */
        /*
        position: relative;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        */
    }
    .clipboard-illustration img {
        margin-left: 10vw;
        margin-top: 10vw;
        margin-bottom: 10vw;
        width: 50vw;
    }
}

/* Khi màn hình nhỏ hơn hoặc bằng 480px (Mobile Phone) */
@media (max-width: 480px) {
    .alert-text {
    }

    .main-heading {
        font-size: 28px;
    }

    .clipboard-illustration {
        position: relative;
        width: 35vw; /* Thay đổi kích thước theo tỷ lệ màn hình */
        right: 3vw;
        bottom: 3vh;
    }

    .decorative-star {
        font-size: 12vw; /* Tăng kích thước sao cho phù hợp */
    }

    .star-1 {
        right: 10vw;
        bottom: 5vh;
    }

    .star-2 {
        right: 15vw;
        bottom: 5vh;
    }
}

.lockscreen-product-2 {
    position: relative;
    width: 95vw;
    margin-left: 2.5vw;
    margin-right: 2.5vw;
    margin-bottom: 20px;
    border-radius: 20px;
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Căn giữa theo chiều dọc */
    text-align: left; /* Căn giữa nội dung văn bản */
    padding: 10% 5%;
    transition: opacity 0.8s ease;
}

.lockscreen-product.active {
    opacity: 1;
}
.lockscreen-product-icon {
    background-color: #0d3b2e;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 20px;
}
.lockscreen-product-headline {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    width: 60%;
    line-height: 1.1;
}
.lockscreen-product-description {
    font-size: 18px;
    margin-bottom: 20px;
    width: 60%;
}
.lockscreen-product-image {
    position: absolute;
    right: 10%;
    transform: translateY(-50%);
    top: 50%;
    width: 30%;
    max-width: 400px;
}
@media (max-width: 768px) {
    .lockscreen-product-headline {
        text-align: left;
        font-weight: 500;
        font-size: 25px;
        width: 100%;
    }
    .lockscreen-product-description {
        text-align: left;
        font-size: 15px;
        width: 100%;
    }
    .lockscreen-product-image {
        margin-bottom: 50px;
        width: 60%;
        position: relative;
        right: 0;
        top: 0;
        transform: translateX(5vw);
    }
}
.lockscreen-product-1 {
    background-color: #f0ebd8;
}
.lockscreen-product-2 {
    background-color: #f1ebdd;
}
.lockscreen-product-3 {
    background-color: #eaf0d0;
}
.lockscreen-product-4 {
    background-color: #eedccb;
}
.lockscreen-product-5 {
    background-color: #eee1dd;
}

.locktin-footer-title {
    width: 100%;
    text-align: left; /* Căn giữa chữ */
    overflow: hidden; /* Đảm bảo không có tràn chữ ra ngoài */
}

.locktin-footer-title h1 {
    font-family: "SharpGroteskBook25", sans-serif;
    font-size: calc(13vw); /* Kích thước chữ sẽ thay đổi theo chiều rộng màn hình */
    line-height: 1; /* Đặt line-height để không có khoảng cách thừa */
    font-weight: 700;
    margin: 0; /* Xóa margin nếu có */
    color: #0b5740; /* Màu chữ */
}

.lockscreen-footer-section {
    height: 100vh;
    padding: 100px 5%;
    background-color: #0b5740;
    color: white;
}

.locktin-footer {
    background-color: var(--background-cmyk);
    padding-top: 40px;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
    color: #0b5740;
    width: 100%;
}

.locktin-footer-container {
    margin: 0 auto;
    display: flex;
}

/* Phần bên trái footer - Desktop */
.locktin-footer-left {
    flex: 0 0 40%;
    padding-right: 60px;
    border-right: 1px solid #0b5740;
}

.locktin-footer-left h3 {
    font-size: max(.825rem + .2vw, .925vw);
    font-weight: normal;
    margin-bottom: 15px;
    color: #0b5740;
}

.locktin-footer-left p {
    margin-bottom: 20px;
    font-size: max(.825rem + .2vw, .925vw);
    line-height: 1.5;
}

.locktin-footer-subscribe {
    display: flex;
    margin-bottom: 20px;
}

.locktin-footer-subscribe input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-right: none;
    font-size: 16px;
    outline: none;
}

.locktin-footer-subscribe button {
    padding: 12px 20px;
    background-color: white;
    border: 1px solid #ddd;
    color: #0b5740;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.locktin-footer-privacy {
    font-size: 14px;
    color: #0b5740;
}

/* Phần bên phải footer - Desktop */
.locktin-footer-right {
    flex: 0 0 60%;
    display: flex;
    flex-wrap: wrap;
}

.locktin-footer-column {
    flex: 1 0 25%;
    padding: 0 15px;
    margin-bottom: 20px;
}

.locktin-footer-column-s {
    flex: 1 0 25%; /* 3 cột trên tablet */
    padding: 0 15px;
    margin-bottom: 20px;
}

.locktin-footer-column h4 {
    font-size: max(.825rem + .2vw, .925vw);
    color: #0b5740;
}

.locktin-footer-column-s h4 {
    font-size: max(.825rem + .2vw, .925vw);
    color: #0b5740;
}

.locktin-footer-column ul {
    list-style: none;
    padding-left: 0;
    line-height: 1.6;
}

.locktin-footer-column-s ul {
    list-style: none;
    padding-left: 0;
    line-height: 1.6;
}

.locktin-footer-column ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.locktin-footer-column-s ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.locktin-footer-column ul li a {
    color: #0b5740;
    text-decoration: none;
    font-size: max(.825rem + .2vw, .925vw);
    transition: color 0.2s;
}

.locktin-footer-column-s ul li a {
    color: #0b5740;
    text-decoration: none;
    font-size: max(.825rem + .2vw, .925vw);
    transition: color 0.2s;
}

.locktin-footer-column ul li a:hover {
    color: #0b5740;
}

.locktin-footer-column-s ul li a:hover {
    color: #0b5740;
}

.locktin-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.locktin-copyright {
    font-size: 14px;
    color: #0b5740;
}

.locktin-payment-methods img {
    height: 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .locktin-footer-container {
        flex-direction: column;
    }

    .locktin-footer-left {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 40px;
        border-right: none;
        border-bottom: 1px solid #0b5740;
    }

    .locktin-footer-right {
        flex: 0 0 100%;
    }

    .locktin-footer-column {
        flex: 1 0 33.33%; /* 3 cột trên tablet */
        margin-bottom: 30px;
    }

    
    .locktin-footer-column-s {
        flex: 1 0 100%; /* 3 cột trên tablet */
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .locktin-footer-column {
        flex: 1 0 33.33%; /* 2 cột trên điện thoại lớn */
    }

    .locktin-footer-column-s {
        flex: 1 0 100%; /* 3 cột trên tablet */
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .locktin-footer-column {
        flex: 1 0 33.33%; /* 1 cột trên điện thoại nhỏ */
    }

    .locktin-footer-column-s {
        flex: 1 0 100%; /* 3 cột trên tablet */
        margin-bottom: 30px;
    }

    .locktin-footer-subscribe {
        flex-direction: column;
    }

    .locktin-footer-subscribe input {
        margin-bottom: 10px;
        border-right: 1px solid #ddd;
    }

    .locktin-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .locktin-copyright {
        margin-bottom: 15px;
    }
}

.news-product-container {
    width: 95vw;
    height: 47.5vw;
    margin: 20px 2.5vw;
    display: flex;
    border-radius: 20px;
    background-color: #ebeee0;
    position: relative;
    overflow: hidden;
}
.news-product-container-2 {
    width: 95vw;
    height: 47.5vw;
    margin: 20px 2.5vw;
    display: flex;
    border-radius: 20px;
    background-color: #ebeee0;
    position: relative;
    overflow: hidden;
}
.news-product-container-3 {
    width: 95vw;
    height: 47.5vw;
    margin: 20px 2.5vw;
    display: none;
    border-radius: 20px;
    background-color: #ebeee0;
    position: relative;
    overflow: hidden;
}
.news-product-image {
    background-color: #eff1e9;
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.news-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-product-content {
    width: 50%;
    height: 100%;
    padding: 2% 10% 2% 2%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.news-product-title {
    font-size: max(2.125rem, 2.36111vw);
    font-weight: 500 !important;
    color: #0b5740;
    margin-bottom: 2%;
    font-weight: normal;
}
.news-product-description {
    font-size: max(.825rem + .2vw, .925vw);
    color: #0b5740;
    line-height: 1.6;
    margin-bottom: 4%;
}
.news-cta-button {
    display: inline-block;
    padding: 1.2vw 2.5vw;
    border: 1px solid #0b5740;
    border-radius: 50px;
    color: #0b5740;
    font-size: max(.825rem + .2vw, .925vw);
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    width: fit-content;
}
.news-cta-button:hover {
    background-color: #0b5740;
    color: #f9f9f7;
}
.news-brand-vertical {
    position: absolute;
    right: 2vw;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #0b5740;
    overflow: hidden;
}
.news-brand-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scrollVertical 90s linear infinite;
    padding: 5px 5px;
}
.news-brand-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 1.8vw;
    font-weight: bold;
    letter-spacing: 0.2vw;
    margin: 1vw 0;
    color: #0b5740;
}
.news-brand-dot {
    width: 1vw;
    height: 1vw;
    background-image: radial-gradient(#0b5740 40%, transparent 60%);
    margin: 1vw 0;
}
.news-brand-vertical-mobile {
    position: absolute;
    right: 2vw;
    bottom: 0;
    width: 100%; /* Đặt chiều rộng */
    height: 100px; /* Đặt chiều cao như mong muốn */
    display: none;
    overflow: hidden; /* Ngăn không cho nội dung tràn ra ngoài */
    align-items: center;      /* Căn giữa theo chiều dọc */
}

.news-brand-content-mobile {
    display: flex;
    flex-direction: row; /* Chuyển thành hàng */
    animation: scrollHorizontal 90s linear infinite; /* Hiệu ứng cuộn ngang */
}

.news-brand-text-mobile {
    /* Loại bỏ viết chữ thẳng đứng */
    width: 17vw;
    font-size: 1.8vw;
    font-weight: bold;
    letter-spacing: 0.2vw;
    margin: 0 1vw; /* Margin ngang giữa các logo */
    color: #0b5740;
}

.news-brand-dot-mobile {
    width: 1vw;
    height: 1vw;
    background-image: radial-gradient(#0b5740 40%, transparent 60%);
    margin: 1.5vw 1vw; /* Margin ngang giữa điểm và chữ */
}

@keyframes scrollHorizontal {
    0% {
        transform: translateX(0); /* Bắt đầu từ bên phải */
    }
    100% {
        transform: translateX(-100%); /* Di chuyển đến bên trái */
    }
}


@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

@media (max-width: 768px) {
    .news-product-container {
        flex-direction: column;
        height: auto;
    }
    .news-product-container-2 {
        display: none;
    }
    .news-product-container-3 {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .news-product-image, .news-product-content {
        width: 100%;
    }
    .news-product-image {
        height: 60vw;
    }
    .news-product-title {
        margin-top: 5%;
    }
    .news-product-description {
    }
    .news-cta-button {
        padding: 2vw 4vw;
        margin-bottom: 100px;
    }
    .news-brand-vertical {
        display: none;
    }
    .news-brand-vertical-mobile {
        display: flex;
    }
    .news-brand-text-mobile {
        font-size: 3vw;
    }
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #0b5740;
    z-index: 9999;
    transition: transform 0.8s ease-in-out;
    font-family: "SharpGroteskBook25", sans-serif;
}

.loading-screen.complete {
    transform: translateY(-100%);
}

.percentage {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.loading-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.pulse-dot {
    margin-left: 5px;
    width: 10px;
    height: 10px;
    background-color: #0b5740;
    border-radius: 50%;
    opacity: 0;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

:root {
    --rotate: -0deg;

    /* To make it responsive */
    --unit: 4px;
    --zoom: 160;
    --workspace-min: 768; /* Device screen height = 768px */
    --upx: calc(var(--zoom) * (var(--unit) / var(--workspace-min))); /* upx = units per pixel */

    /* DNA Helix loop */
    --animation-speed: 1;
    --helix-duration: 1s;
    --helix-iteration-factor: 0.2s;
    
    /* DNA model */
    --dna-max-height: calc(200 * var(--upx));
    --dna-nitrogenous-base-width: calc(12 * var(--upx));
    --dna-nitrogenous-base-margin: calc(30 * var(--upx));
    --dna-sugar-diameter: calc(20 * var(--upx));
    --dna-sugar-border-size: calc(10 * var(--upx));

    /* colors */
    --color-background: #151515;
    --color-white: #ffffff;
    --color-sugar: #f2f1d5;
    --color-locktin: #1e614f;
    --color-A: #35ac8c;
    --color-T: #1e614f;
    --color-C: #1e614f;
    --color-G: #35ac8c;
    --color-2: #35ac8c;
}

/* Rotate the DNA container for smart mobile devices */
@media (orientation: portrait) {
    :root {
        --rotate: -0deg;
    }
}

@media (orientation: portrait) {
    :root {
        --unit: 2px;
    }
}

/* Align the DNA to middle */
.dna-wrapper {
    position: relative;
    height: 250px;
}

/* Align the DNA to middle */
.dna-wrapper-top {
    position: relative;
    height: 250px;
}

.responsive-height-150 {
    height: 150px;
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .dna-wrapper-top {
        position: relative;
        height: 150px;
    }
    .dna-wrapper {
        position: relative;
        height: 150px;
    }
}

@media (max-width: 936px) {
    .responsive-height-150 {
        height: 0;
    }
}

/* DNA is a flex container with n-double helix */
.dna-structure {
    display: flex;
    align-items: center;
    position: relative;
}

/* Helix (nitrogenous base) */
.dna-structure > div {
    font-size: 0;
    position: relative;
    width: var(--dna-nitrogenous-base-width);
    height: 0;
    background: linear-gradient(0deg, var(--color-G) 50%, var(--color-C) 50%);
    display: inline-block;
    margin: 0 var(--dna-nitrogenous-base-margin);
    animation: 
        double-helix 
        ease 
        calc(var(--helix-duration) / var(--animation-speed)) 
        calc((var(--i) * var(--helix-iteration-factor)) / var(--animation-speed)) 
        alternate 
        infinite;
}

.dna-structure > div:nth-child(2n) {
    background: linear-gradient(0deg, var(--color-A) 50%, var(--color-T) 50%);
}

@keyframes double-helix {
    to {
        height: var(--dna-max-height);
    }
}

/* Sugar */
.dna-structure > div::before, 
.dna-structure > div::after {
    content: "";
    position: absolute;
    left: 50%;
    width: var(--dna-sugar-diameter);
    height: var(--dna-sugar-diameter);
    display: block;
    border-radius: 50%;
    background: var(--color-white);
    border: var(--dna-sugar-border-size) solid var(--color-locktin);
    box-sizing: content-box;
}

.dna-structure > div::before {
    top: 0;
    transform: translate(-50%, -50%);
}

.dna-structure > div::after {
    bottom: 0;
    transform: translate(-50%, 50%);
}

.dna-locktin-wrapper {
    transform: rotate(90deg);
    position: relative;
    width: 140px;
    height: 70px;
}
/* Tablet (≤ 1024px) */
@media (max-width: 1280px) {
    .dna-locktin-wrapper {
        transform: rotate(90deg) scale(0.75);
        transform-origin: center;
    }
}

/* DOTS (two strands of DNA) */
.dna-locktin-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1e614f;
  animation: dna-locktin-spin 1.5s linear infinite;
  transform-origin: center center;
}

/* Place dots horizontally */
.dna-locktin-dot:nth-child(1)  { left:   0px;  animation-delay:    0s; }
.dna-locktin-dot:nth-child(2)  { left:   0px;  animation-delay: -0.75s; }

.dna-locktin-dot:nth-child(3)  { left:  30px;  animation-delay: -1.3s; }
.dna-locktin-dot:nth-child(4)  { left:  30px;  animation-delay: -0.55s; }

.dna-locktin-dot:nth-child(5)  { left:  60px;  animation-delay: -1.1s; }
.dna-locktin-dot:nth-child(6)  { left:  60px;  animation-delay: -0.35s; }

.dna-locktin-dot:nth-child(7)  { left:  90px;  animation-delay: -0.9s; }
.dna-locktin-dot:nth-child(8)  { left:  90px;  animation-delay: -0.15s; }

.dna-locktin-dot:nth-child(9)  { left: 120px;  animation-delay: -0.7s; }
.dna-locktin-dot:nth-child(10) { left: 120px;  animation-delay:  0.05s; }

/* BASE PAIRS (connectors between strands) */
.dna-locktin-base {
  position: absolute;
  top: 30px;
  width: 1px;
  height: 10px;
  background: #000;
  animation: dna-locktin-flex 1.5s linear infinite;
  transform-origin: center center;
}

.dna-locktin-base:nth-child(11) { left:  5px;  animation-delay:    0s; }
.dna-locktin-base:nth-child(12) { left: 35px;  animation-delay: -1.3s; }
.dna-locktin-base:nth-child(13) { left: 65px;  animation-delay: -1.1s; }
.dna-locktin-base:nth-child(14) { left: 95px;  animation-delay: -0.9s; }
.dna-locktin-base:nth-child(15) { left:125px;  animation-delay: -0.7s; }

/* DOT movement keyframes */
@keyframes dna-locktin-spin {
  0%, 100%   { transform: translateY(0px) scale(1); }
  25%        { transform: translateY(30px) scale(2); }
  50%        { transform: translateY(60px) scale(1); }
  75%        { transform: translateY(30px) scale(0.3); }
}

/* BASE contraction keyframes */
@keyframes dna-locktin-flex {
  0%, 100%   { transform: scaleY(5); }
  25%        { transform: scaleY(1); }
  50%        { transform: scaleY(5); }
  75%        { transform: scaleY(1); }
}

    .dna-tech-hero-container {
        width: 100%;
        padding: 0 5%;
    }

    .dna-tech-hero-title {
      font-size: clamp(2rem, 6vw, 3.5rem);
      color: #0d5247;
      line-height: 1.2;
      margin-bottom: 60px;
    }

    .dna-tech-hero-description {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 40px;
      margin-bottom: 60px;
      font-size: max(.825rem + .2vw, .925vw);
      color: #0d5247;
      line-height: 1.6;
    }

    .dna-tech-hero-description h3 {
      font-size: max(.825rem + .2vw, .925vw);
      color: #0d5247;
      font-weight: 500;
      margin: 0;
    }

    @media (max-width: 768px) {
      .dna-tech-hero-description {
        grid-template-columns: 1fr;
      }
    }

/* Responsive Gap */
/* Mặc định (màn hình lớn) */
.responsive-gap-bg {
    height: 100px;
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .responsive-gap-bg {
        height: 80px;
    }
}

/* Thiết bị trung bình (≤ 768px) */
@media (max-width: 768px) {
    .responsive-gap-bg {
        height: 60px;
    }
}

/* Điện thoại (≤ 480px) */
@media (max-width: 480px) {
    .responsive-gap-bg {
        height: 40px;
    }
}

/* Rất nhỏ (≤ 360px) */
@media (max-width: 360px) {
    .responsive-gap-bg {
        height: 30px;
    }
}

/* Responsive Gap */
/* Mặc định (màn hình lớn) */
.responsive-gap-md {
    padding-top: 50px;
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .responsive-gap-md {
        padding-top: 0;
    }
}

/* Responsive Gap */
/* Mặc định (màn hình lớn) */
.responsive-height-md-764 {
    height: 100px !important;
}

/* Tablet (≤ 1024px) */
@media (max-width: 764px) {
    .responsive-height-md-764 {
        height: 0 !important;
    }
}

/* Responsive Gap */
/* Mặc định (màn hình lớn) */
.responsive-pdv-sm {
    padding-top: 25px;
    padding-bottom: 25px;
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .responsive-pdv-sm {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* Responsive Gap */
/* Mặc định (màn hình lớn) */
.responsive-pdb-sm {
    padding-bottom: 25px;
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .responsive-pdb-sm {
        padding-bottom: 0 !important;
    }
}
/* Quiz */
.quiz-dr-locktin {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    color: #0b5740;
    z-index: 9999;
    transition: transform 0.8s ease-in-out;
    overflow: auto;
}
::-webkit-scrollbar {
    display: none;  /* Ẩn thanh cuộn */
}
:root {
    --green: #2a5934;
    --green-light: #e9f0e2;
}
.quiz-header {
    padding: 20px;
    border-bottom: 2px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.quiz-logo img {
    width: 100px;
}
.quiz-page-number {
    font-size: 14px;
    color: #888;
}
.quiz-content {
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.quiz-question {
    font-size: 24px;
    color: var(--green);
    margin-bottom: 10px;
    white-space: pre-line;
}
.quiz-subtitle {
    color: #666;
    margin-bottom: 30px;
}
.quiz-options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.quiz-option {
    padding: 15px 25px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-weight: 400;
    border-radius: 30px;
    cursor: pointer;
    background: #fff;
    user-select: none;
}
.quiz-option:hover {
    border-color: var(--green);
}
.quiz-option.selected {
    background: var(--green-light);
    border-color: var(--green);
}
input[type="checkbox"],
input[type="radio"] {
    display: none;
}
.quiz-buttons {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 50px auto 0;
    padding: 0 20px;
}
.quiz-back-btn {
    padding: 15px 25px;
    border: none;
    background: transparent;
    color: var(--green);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.quiz-back-btn[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}
.quiz-continue-btn {
    padding: 15px 25px;
    border: none;
    background: var(--green);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    min-width: 150px;
}
.form-group {
    margin-bottom: 15px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
}


:root{
/* palette 1 */
--green-900-first:#133418;
--green-700-first:#0FA437;
--green-50-first:#f5f7f3;
--green-100-first:#c5e3a4;
--radius-first:8px;

/* palette 2 */
--green-second:#103810;
--body-second:#fafafa;
--text-second:#333;
}

/***************** SECTION #1 – PRODUCT HERO **************/
.quiz_product_first-card{
max-width:1240px;
margin:auto;
padding:60px 20px 80px;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}
.quiz_product_first-left img{
width:100%;
display:block;
border-radius:var(--radius-first);
}

/* fake carousel dots (nếu muốn xài sau) */
.quiz_product_first-carousel-dots{
position:absolute;
left:50%;
bottom:1rem;
transform:translateX(-50%);
display:flex;
gap:.4rem;
}
.quiz_product_first-carousel-dots span{
width:8px;height:8px;border-radius:50%;background:#ddd;cursor:pointer
}
.quiz_product_first-carousel-dots .active{background:#fff}

/* RIGHT */
.quiz_product_first-right{display:flex;flex-direction:column}
h1{margin:0;font-size:clamp(1.6rem,4vw,2.4rem);color:var(--green-900-first);line-height:1.15}

.quiz_product_first-price{margin:.9rem 0;font-size:1.25rem}
.quiz_product_first-badge{
background:var(--green-100-first);color:var(--green-900-first);
padding:.2rem .6rem;border-radius:4px;font-size:.75rem
}
.quiz_product_first-rating{color:#f9b630;font-size:.9rem;margin-bottom:.6rem;line-height:1}

.quiz_product_first-benefits{
font-size: 12px;
list-style:none;padding:1rem;background:var(--green-50-first);
border-radius:6px;margin:1.2rem 0;display:flex;flex-direction:column;gap:.6rem
}
.quiz_product_first-benefits li{display:flex;gap:.5rem;line-height:1.35}
.quiz_product_first-benefits i{color:var(--green-700-first);margin-top:2px}

.quiz_product_first-cta{margin-top:auto}
.quiz_product_first-cta button{
width:100%;border:none;border-radius:9999px;background:var(--green-900-first);
color:#fff;padding:1rem;font-size:1rem;cursor:pointer;transition:opacity .25s
}
.quiz_product_first-cta button:hover{opacity:.85}
.quiz_product_first-cta small{display:block;text-align:center;margin-top:.6rem;color:#666;font-size:.9rem}

/************** SECTION #2 – RELATED PRODUCTS + REVIEWS **************/
.quiz_product_second_section{
max-width:1240px;margin:auto;padding:60px 20px 80px;
display:grid;grid-template-columns:320px 1fr;gap:40px
}
.quiz_product_second_section h2{
font-size:clamp(28px,3.5vw,46px);font-weight:500;color:var(--green-second);margin:0
}
.quiz_product_second_section h2 strong{font-weight:700}

/* grid gồm các card  */
.quiz_product_second_testimonials{
display:grid;gap:32px;
grid-template-columns:repeat(auto-fill,minmax(220px,1fr))
}
.quiz_product_second_card{
background:#fff;border-radius:8px;overflow:hidden;
display:flex;flex-direction:column;
transition:transform .25s,box-shadow .25s
}
.quiz_product_second_card:hover{
transform:translateY(-4px);box-shadow:0 8px 18px rgba(0,0,0,.08)
}
.quiz_product_second_card img{width:100%;display:block;object-fit:cover}
.quiz_product_second_content{
padding:14px 20px 0;font-size:15px;color:#666;line-height:1.35;flex:1
}
.quiz_product_second_author{
margin:0 20px 20px;font-weight:700;font-size:14px;color:var(--green-second)
}

/* ============ GLOBAL RESPONSIVE ============== */
@media (max-width:1024px){
.quiz_product_first-card{grid-template-columns:1fr}          /* chia 1 cột */
.quiz_product_first-left{margin:auto}        /* giữ hình gọn */
.quiz_product_first-right{padding-top:20px}
}

@media (max-width:860px){
.quiz_product_second_section{grid-template-columns:1fr}      /* title lên trên */
.quiz_product_second_section h2{text-align:center;margin-bottom:32px}
}

@media (max-width:600px){
body{padding:0}                                              /* bỏ padding body */
.quiz_product_first-card,.quiz_product_second_section{padding:40px 16px 60px}
.quiz_product_first-price{font-size:1.1rem}
.quiz_product_first-cta button{padding:.9rem;font-size:.95rem}
.quiz_product_second_testimonials{gap:20px}
}

/* About Us */
    .about-us-container {
      width: 100%;
      height: 70vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #ffffff; /* fallback màu nền */
      margin-bottom: 20px;
    }

    .about-us-wrapper {
      width: 95vw; /* luôn chừa 2.5vw mỗi bên */
      height: 100%;
      background-image: url('../images/about-us/0hB6itS.jpeg');
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 16px;
    }

    .about-us-content {
      text-align: center;
      max-width: 800px;
      padding: 60px 20px;
      border-radius: 12px;
    }

    .about-us-title {
      color: #0d5247;
      font-size: max(2.125rem, 2.36111vw);
      font-weight: 500;
      margin-bottom: 20px;
    }

    .about-us-description {
      color: #0d5247;
      font-size: max(.825rem + .2vw, .925vw);
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .about-us-cta-button {
      display: inline-block;
      padding: 10px 40px;
      border: 1px solid #0d5247;
      border-radius: 25px;
      color: #0d5247;
      text-decoration: none;
      font-size: max(.875rem + .2vw, .925vw) !important;
      letter-spacing: 1px;
      transition: all 0.3s ease;
    }

    .about-us-cta-button:hover {
      background-color: #0d5247;
      color: #fff;
    }