/* ======================================================= */
/* ==       CSS CHO TRANG "ĐANG CẬP NHẬT"           == */
/* ======================================================= */

.page-template-template-comingsoon .site-main {
    padding: 0;
    margin: 0;
}

.coming-soon-section {
    background-color: #FAF6F2;
    /* Nền cam nhạt */
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    /* Giấu phần thừa của họa tiết nền */
}

/* Họa tiết lượn sóng mờ bên trái */
.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    width: 60%;
    height: 150%;
    background-image: url("data:image/svg+xml,%3Csvg width='800' height='800' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M-50 50C-50 22.39 22.39-50 50-50S150 22.39 150 50 77.61 150 50 150-50 77.61-50 50z' stroke='%23dddddd' fill='none' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23p)'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.coming-soon-container {
    max-width: 1320px;
    position: relative;
    z-index: 2;
}

.coming-soon-icon {
    margin-bottom: 30px;
}

.coming-soon-icon svg {
    width: 64px;
    height: 64px;
    color: #8BC3A3;
    /* Màu xanh lá mạ */
}

.coming-soon-container h2 {
    font-family: 'Title-One';
    font-size: 68px;
    font-weight: 600;
    /* ExtraBold */
    color: #1A1A1A;
    margin: 0 0 15px 0;
}

.coming-soon-container p {
    font-family: 'Text-One';
    font-size: 24px;
    line-height: 1.7;
    color: #000;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .coming-soon-section {
        min-height: 70vh;
    }

    .coming-soon-container h2 {
        font-size: 28px;
    }
}