@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-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: #ebeee0;
    padding-top: 40px;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
    color: #0b5740;
    width: 97%;
    margin: 0 auto;
}

.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;
    }
}