.banner-daily-setion-1 .container {
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede9e2 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    min-height: 600px;
}main {
    overflow: hidden;
}

.banner-daily-setion-1 .left-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.banner-daily-setion-1 .logo {
    /* background: rgba(255, 255, 255, 0.9); */
    padding: 15px 20px;
    border-radius: 8px;
    width: fit-content;
    position: relative;
    padding-left: 0px;
}

.banner-daily-setion-1 .logo h1 {
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 1.2;
    color: #bfb6a1;
    font-size: 30px;
}

.banner-daily-setion-1 .logo span {
    font-size: 12px;
    color: #666;
    letter-spacing: 4px;
}

.banner-daily-setion-1 .main-text {
    margin-bottom: 15px;
    position: relative;
}

.banner-daily-setion-1 .main-text h2 {
    font-size: 25px;
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 1.2;
    color: #73aa3f;
}

.banner-daily-setion-1 .discount {
    font-size: 120px;
    font-weight: 800;
    color: #f00;
    line-height: 0.9;
    margin: 20px 0 0px;
}

.banner-daily-setion-1 .description {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 28px;
}

.banner-daily-setion-1 .cta-button {
    background: linear-gradient(360deg, #347bbb, #2a4e9e) !important;
    color: white;
    padding: 16px 28px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    letter-spacing: 1px;
    box-shadow: #000 0px 15px 20px -15px;
    transition: 0.5s ease;
    animation-name: bounce;
    nimation-delay: 0s;
    animation-duration: 5s;
    animation-iteration-count: 1;
    transition: 0.5s ease;
    animation-name: bounce;
    animation-delay: 0s;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.banner-daily-setion-1 .cta-button:hover {
    background: #6f5a42;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 115, 85, 0.3);
}


.banner-daily-setion-1 .products-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.banner-daily-setion-1 .product-item {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-daily-setion-1 .product-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

.banner-daily-setion-1 .product-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

.banner-daily-setion-1 .large-product::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.banner-daily-setion-1 .large-product::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 10px;
    text-align: center;
    font-weight: 600;
    white-space: pre-line;
}

.banner-daily-setion-1 .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.banner-daily-setion-1 .floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.banner-daily-setion-1 .floating-circle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.banner-daily-setion-1 .floating-circle:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.banner-daily-setion-1 .floating-circle:nth-child(3) {
    width: 30px;
    height: 30px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

section.banner-daily-setion-1 .logo:before {
    position: absolute;
    height: 143%;
    overflow: hidden;
    background-color: rgba(191, 182, 161, 0.5);
    width: 24px;
    content: "";
    left: -40px;
}

section.banner-daily-setion-1 .logo img {
    height: 54px;
}

@media (max-width: 768px) {
    .banner-daily-setion-1 .container {
        flex-direction: column;
        margin: 20px;
    }

    .banner-daily-setion-1 .left-section {
        padding: 40px 30px;
    }

    .banner-daily-setion-1 .discount {
        font-size: 96px;
    }

    .banner-daily-setion-1 .right-section {
        height: 400px;
    }
}

.banner-daily-setion-1 h2.name-chietkhau {
    font-weight: bold;
    line-height: 1.2;
    color: #73aa3f;
    text-align: left;
    font-size: 25px;
}

.banner-daily-setion-1 .logo:before {
    position: absolute;
    height: 143%;
    overflow: hidden;
    background-color: rgba(191, 182, 161, 0.5);
    width: 24px;
    content: "";
    left: -40px;
}

.banner-daily-setion-1 .logo img {
    height: 97px;
}

h2.name-chietkhau {
    font-weight: bold;
    line-height: 1.2;
    color: rgb(117, 112, 95);
    text-align: left;
    font-size: 33px;
}

section.daily-section-2 .ctnr {}

section.daily-section-2 .header {
    text-align: center;
    margin-bottom: 40px;
}

section.daily-section-2 .header h1 {
    font-size: 31px;
    color: #2a5aa7;
    font-weight: bold;
    margin-bottom: 10px;
}

section.daily-section-2 .header p {
    font-size: 1.1em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

section.daily-section-2 .policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 75%;
    margin: 0 auto;
}

section.daily-section-2 .policy-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

section.daily-section-2 .policy-card:hover {
    transform: translateY(-5px);
}

section.daily-section-2 .policy-card.highlight {
    background: linear-gradient(135deg, #b8a082 0%, #9d8b6f 100%);
    color: white;
}

section.daily-section-2 .policy-card h3 {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    color: #2a5aa7;
}

section.daily-section-2 .policy-card.highlight h3 {
    color: white;
}

section.daily-section-2 .policy-card p {
    text-align: center;
    font-size: 1em;
    line-height: 1.8;
}

section.daily-section-2 .consult-btn {
    text-align: center;
    margin-top: 40px;
}

section.daily-section-2 .consult-btn button {
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(360deg, #347bbb, #2a4e9e) !important;
    box-shadow: #000 0px 15px 20px -15px;
    transition: 0.5s ease;
    animation-name: bounce;
    nimation-delay: 0s;
    animation-duration: 5s;
    animation-iteration-count: 1;
    transition: 0.5s ease;
    animation-name: bounce;
    animation-delay: 0s;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}
@keyframes bounce{
0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}
60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}
section.daily-section-2 .consult-btn button:hover {
    background: #4a4a4a;
    transform: translateY(-2px);
}
}
@media (max-width: 768px) {
    section.daily-section-2 .policy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    section.daily-section-2 .header h1 {
        font-size: 2em;
    }

    section.daily-section-2 .policy-card {
        padding: 20px;
    }
}

section.daily-section-2 {
    padding: 30px 0px;
    background:
        #fff;
}

section.daily-section-2 .policy-card svg {
    position: absolute;
    bottom: 0;
}

section.daily-section-2 .policy-card svg {
    width: 196.855px;
    height: 196.855px;
    top: 59.5px;
    left: 251.5px;
    fill: rgb(244, 242, 237);
}

.logo-triangle img {
    height: 60px;
}

section.daily-section-3 .header {
    margin-bottom: 26px;
}

section.daily-section-3 .logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 0px 20px;
}



section.daily-section-3 .logo-text {
    font-size: 31px;
    color: #2a5aa7;
    letter-spacing: 3px;
    font-weight: bold;
}

section.daily-section-3 .intro-text {
    font-size: 18px;
    color: #555;
    max-width: 500px;
    line-height: 1.5;
}

section.daily-section-3 .main-content {}

section.daily-section-3 .left-section {
    flex: 1;
}


section.daily-section-3 .certificate-content img {
    width: 100%;
}

section.daily-section-3 .woman-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 280px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}





section.daily-section-3 .right-section {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr;
}

section.daily-section-3 .info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 4px solid #80b53f;
    border-radius: 100%;
    height: 285px;
    display: flex;
    align-items: center;
    justify-content: center;
}


section.daily-section-3 .info-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

@media (max-width: 1200px) {
    .main-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .left-section,
    .right-section {
        max-width: 100%;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    section.daily-section-3 .intro-text {
        font-size: 16px;
    }

    .info-card {
        padding: 20px;
        height: 196px;
    }

    .info-card p {
        font-size: 13px;
        text-align: center;
    }
}



section.daily-section-3 {
    padding: 30px 0px;
    background: #eef8fb;
}




section.daily-section-4 .main-title {
    font-size: 31px;
    font-weight: bold;
    color: #2a5aa7;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

section.daily-section-4 .description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

section.daily-section-4 .skin-types {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

section.daily-section-4 .skin-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
}

section.daily-section-4 .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    background-size: cover !important;
}

section.daily-section-4 .normal-skin {
    background-color: #b8a082;
}

section.daily-section-4 .dry-skin {
    background-color: #f0e6d6;
}

section.daily-section-4 .oily-skin {
    background-color: #e8c4a0;
}

section.daily-section-4 .combination-skin {
    background-color: #d4b896;
}

section.daily-section-4 .sensitive-skin {
    background-color: #c4a882;
}

section.daily-section-4 .skin-type-label {
    font-size: 16px;
    color: #8b7355;
    font-weight: 500;
}

/* Icons */
section.daily-section-4 .icon-circle::before {
    content: '';
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

section.daily-section-4 .normal-skin::before {}

section.daily-section-4 .dry-skin::before {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23b8a082" stroke-width="2"><path d="M12 2L8 8l4 4 4-4-4-6z"/><path d="M8 14l-2 2 2 2 2-2-2-2z"/><path d="M16 14l2 2-2 2-2-2 2-2z"/><path d="M12 18l2 2-2 2-2-2 2-2z"/></svg>');
}

section.daily-section-4 .oily-skin::before {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23b8a082" stroke-width="2"><path d="M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"/></svg>');
}

section.daily-section-4. combination-skin::before {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23b8a082" stroke-width="2"><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/><polyline points="3.27,6.96 12,12.01 20.73,6.96"/><line x1="12" y1="22.08" x2="12" y2="12"/></svg>');
}

section.daily-section-4 .sensitive-skin::before {
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23b8a082" stroke-width="2"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>');
}

@media (max-width: 768px) {
    section.daily-section-4 .skin-types {
        gap: 30px;
    }

    section.daily-section-4 .skin-type {
        width: 140px;
    }

    section.daily-section-4 .icon-circle {
        width: 70px;
        height: 70px;
    }

    section.daily-section-4 .main-title {
        font-size: 28px;
    }
}

section.daily-section-4 .main-title {
    text-align: center;
    color: #2a5aa7;
    position: relative;
}

section.daily-section-4 {
    padding: 30px 0px;
    background: #ffffff;
    position: relative;
}

section.daily-section-4:before {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    background: #fff;
    left: 31%;
    transform: translateX(-50%);
    border-radius: 100%;
    z-index: 0;
}

section.daily-section-5 {
    padding: 30px 0px;
    background: #eef8fb;
    position: relative;
}

section.daily-section-5 .main-title {
    text-align: center;
    color: #2a5aa7;
    position: relative;
    font-size: 31px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

section.daily-section-5 p.description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.box-main-daily-section-5 {
    width: 80%;
    margin: 0 auto;
    background: #fff;
}

.title-member-item-5 {
    width: 100%;
    background: #742a85;
    color: #fff;
    font-size: 26px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 10px;
}

.name-twe-item-section-5 {
    width: 100%;
    background: #742a85;
    color: #fff;
    font-size: 19px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 10px;
    padding:5px 0px
}

.list-grid-twe-item-section-5 {
    display: grid;
    align-items: center;
    gap: 0px 10px;
    grid-template-columns: 48% 52%;
}

section.daily-section-5 button.cta-button {
    background: linear-gradient(360deg, #347bbb, #2a4e9e) !important;
    color: white;
    padding: 16px 28px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    letter-spacing: 1px;
    box-shadow: #000 0px 15px 20px -15px;
    transition: 0.5s ease;
    animation-name: bounce;
    nimation-delay: 0s;
    animation-duration: 5s;
    animation-iteration-count: 1;
    transition: 0.5s ease;
    animation-name: bounce;
    animation-delay: 0s;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.box-btn-section5 {
    margin-top: 30px;
}

.box-content-twe-item-section-5 {
    margin-bottom: 30px;
}

.desc-item-right-section-5 .content {
    font-size: 14px;
}

.box-main-daily-section-5 .row {
    gap: 20px 0px;
    padding: 10px 15px;
}




section.daily-section-6 .header {
    text-align: center;
    margin-bottom: 15px;
}

section.daily-section-6 .header h1 {
    text-align: center;
    color: #2a5aa7;
    position: relative;
    font-size: 31px;
    font-weight: bold;
}

section.daily-section-6 .header h2 {
    text-align: center;
    color: rgb(117, 112, 95);
    position: relative;
    font-size: 36px;
    font-weight: bold;
}

section.daily-section-6 .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 auto;
    width: 90%;
    justify-content: center;
}

section.daily-section-6 .gallery-item {
    position: relative;
    /* overflow: hidden; */
    transition: transform 0.3s ease;
    flex: 0 0 auto;
}

section.daily-section-6 .gallery-item:hover {
    transform: translateY(-5px);
}

section.daily-section-6 .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}


section.daily-section-6 .gallery-item:nth-child(1) {
    width: 450.204px;
    height: 100%;
}

section.daily-section-6 .gallery-item:nth-child(2) {
    width: 293.376px;
    height: 245.917px;
    margin-bottom: 20px;
}

section.daily-section-6 .gallery-item:nth-child(3) {
    width: 237.703px;
    height: 503.679px;
}

section.daily-section-6 .gallery-item:nth-child(4) {
    width: 238px;
    height: 238px;
}

section.daily-section-6 .gallery-item:nth-child(5) {
    width: 191.239px;
    height: 191.239px;
}

section.daily-section-6 .gallery-item:nth-child(6) {
    width: 259.024px;
    height: 257.33px;
}

/* Responsive design */
@media (max-width: 768px) {
    section.daily-section-6 .header h1 {
        font-size: 1.8rem;
    }

    section.daily-section-6 .header h2 {
        font-size: 1.4rem;
    }

    section.daily-section-6 .gallery {
        flex-direction: column;
        align-items: center;
    }

    section.daily-section-6 .gallery-item {
        width: 100% !important;
        max-width: 400px !important;
        height: 250px !important;
    }
}

section.daily-section-6 .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 115, 85, 0.1), rgba(139, 115, 85, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

section.daily-section-6 .gallery-item:hover::before {
    opacity: 1;
}

section.daily-section-6 {
    background: #ffffff;
    padding: 30px 30px;
}

section.daily-section-6 .gallery-item.item-1 .gallery-item:nth-child(2) {
    width: 49%;
    float: left;
    height: 192.917px;
}

section.daily-section-6 .gallery-item.item-1 .gallery-item:nth-child(3) {
    .gallery-item.item-1 .gallery-item: nth-child(2);
    width: 49%;
    float: right;
    height: 192.917px;
}





section.form-section-7 .content-section {
    display: grid;
    position: relative;
    grid-template-columns: 60% 40%;
}

section.form-section-7 .main-title {
    font-size: 31px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2a5aa7;
    line-height: 1.2;
    text-align: center;
}

section.form-section-7 .event-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

section.form-section-7 .event-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 5px;
    text-transform: uppercase;
}

section.form-section-7 .event-subtitle {
    font-size: 1em;
    color: #2c5aa0;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

section.form-section-7 .event-details {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
}

section.form-section-7 .event-date {
    font-size: 0.9em;
    color: #333;
    font-weight: bold;
}


section.form-section-7 .image-placeholder span {
    position: relative;
    z-index: 1;
}

section.form-section-7 .form-section {
    padding: 40px 30px;
    background: #87bf3f;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.form-section-7 .form-title {
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

section.form-section-7 .form-description {
    text-align: center;
    margin-bottom: 25px;
    color: white;
    font-size: 17px;
    line-height: 1.4;
}

section.form-section-7 .form-group {
    margin-bottom: 15px;
}

section.form-section-7 .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95em;
    background: white;
    color: #333;
    transition: all 0.3s ease;
}

section.form-section-7 .form-input:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 5px rgba(139, 115, 85, 0.3);
}

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

section.form-section-7 .submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(360deg, #347bbb, #2a4e9e) !important;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

section.form-section-7 .submit-btn:hover {
    background: #7a6449;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

section.form-section-7 .submit-btn:active {
    transform: translateY(0);
}

.large-product {
    padding-top: 150px;
}

@media (max-width: 768px) {


    section.form-section-7 .content-section {
        padding: 30px 20px;
    }

    section.form-section-7 .form-section {
        padding: 30px 20px;
    }

    section.form-section-7 .main-title {
        font-size: 1.8em;
    }

    section.form-section-7 .images-section {
        flex-direction: column;
        align-items: center;
    }

    section.form-section-7 .image-placeholder {
        width: 100%;
        max-width: 300px;
    }
}

section.form-section-7 {
    padding: 30px 0px;
    background: #eef8fb;
}

.desc-item-right-section-5 .name {
    font-size: 23px;
    font-weight: 600;
}

section.banner-daily-setion-1 {
    background: #eef8fb;
}

.image-placeholder img {
    height: 509px;
    display: block;
}

.item-images-right img {
    height: 262px;
}
.item-images-right {
    text-align: center;
}

@media(max-width:990px){
    .banner-daily-setion-1 .left-section {
    padding: 20px;
}

section.daily-section-2 .policy-grid {
    width: 100%;
}

section.daily-section-3 .main-content {
    gap: unset;
    flex-direction: unset;
}

section.daily-section-3 .intro-text {
    max-width: unset;
    width: 100%;
    display: block;
}

section.daily-section-6 .gallery {
    width: 100%;
}

section.daily-section-6 {
    padding: 30px 0px;
}


section.daily-section-6 .gallery-item:nth-child(1) {
    width:100%;
    height: 100%;
}

section.daily-section-6 .gallery-item:nth-child(2) {
    width:100%;
    height: 100%;
    margin-bottom: 20px;
}

section.daily-section-6 .gallery-item:nth-child(3) {
    width: 100%;
    height: 100%;
}

section.daily-section-6 .gallery-item:nth-child(4) {
    width: 100%;
    height: 100%;
}

section.daily-section-6 .gallery-item:nth-child(5) {
    width: 100%;
    height: 100%;
}

section.daily-section-6 .gallery-item:nth-child(6) {
    width: 100%;
    height: 100%;
}


section.form-section-7 .content-section {
    grid-template-columns: 47% 53%;
}
.box-main-daily-section-5 {
    width: 100%;
}
section.daily-section-3 .info-card {
    height: 285px;
    width: 285px;
}
}



@media(max-width:768px){
    .banner-daily-setion-1 .logo {
        background: none;
        margin: 0 auto;
        width: 100%;
        text-align: center;
        display: none;
    }
    .banner-daily-setion-1 .main-text {
        margin-bottom: 0;
    }
    .large-product {
        padding: 0;
    }
    section.banner-daily-setion-1 .logo:before {
        display: none;
    }

    .banner-daily-setion-1 .main-text h2 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 0px;
    }

    .banner-daily-setion-1 h2.name-chietkhau {
        font-size: 26px;
        padding-top: 5px;
    }

    .banner-daily-setion-1 .discount {
        text-align: center;
        margin-top: 10px;
    }

    .banner-daily-setion-1 .description {
        text-overflow: ellipsis;
        margin-bottom: 5px;
    }

    .banner-daily-setion-1 .cta-button {
        font-size: 15px;
    }

    .banner-daily-setion-1 .left-section {
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 15px 0;
    }

    .banner-daily-setion-1 .large-product::after {
        display: none;
    }

    .banner-daily-setion-1 .large-product::before {
        display: none;
    }

    .banner-daily-setion-1 .right-section {
        height: unset;
    }

    section.daily-section-2 .header h1 {
        font-size: 22px;
    }

    section.daily-section-2 .consult-btn {
        margin-top: 20px;
    }

    section.daily-section-3 .logo-text {
        font-size: 22px;
    }

    section.daily-section-3 .intro-text {
        text-align: justify;
    }

    section.daily-section-3 .right-section {
        max-width: 100%;
        gap: 10px;
        display: block;
    }

    section.daily-section-3 .info-card {
        width: 99%;
        height: auto;
        padding: 9px;
        margin: 20px 0;
        border-radius: 0;
    }

    section.daily-section-3 .info-card p {
        font-size: 16px;
        padding: 10px 10px;
        text-align: left;
    }

    section.daily-section-4 .main-title {
        font-size: 22px;
    }

    section.daily-section-4 .skin-types {
        gap: 15px 5px;
    }

    section.daily-section-4 .skin-type {
        width: 32%;
    }

    section.daily-section-5 .main-title {
        font-size: 22px;
    }

    .title-member-item-5 {
        font-size: 22px;
        display: inline-block;
    }

    .box-main-daily-section-5 .row {
        padding: 10px 5px;
    }

    .desc-item-right-section-5 .name {
        font-size: 17px;
    }

    .box-content-twe-item-section-5 {
        margin-bottom: 0px;
    }

    section.daily-section-6 .gallery {
        flex-direction: row;
        gap: 0px;
        CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
    }

    section.daily-section-6 .gallery-item {
        width: 47% !important;
        max-width: unset !important;
        height: unset !important;
    }

    section.daily-section-6 .gallery-item .gallery-item {
        width: 100% !important;
    }

    section.daily-section-6 .gallery-item.item-1 .gallery-item:nth-child(2) {
        margin-bottom: 0px;
        float: unset;
    }

    section.daily-section-6 .gallery-item.item-1 .gallery-item:nth-child(3) {
        float: unset !important;
    }

    section.daily-section-6 .gallery-item:nth-child(3) {
        width: 100% !important;
    }

    section.daily-section-6 .gallery-item img {
        margin-bottom: 0px;
    }

    section.form-section-7 .main-title {
        font-size: 21px;
    }

    section.form-section-7 .content-section {
        grid-template-columns: 100% 100%;
        display: unset;
    }

    .image-placeholder img {
        height: unset;
        width: 100%;
    }

    section.form-section-7 .image-placeholder {
        width: 100%;
        max-width: 100%;
    }

    section.form-section-7 {
        padding-bottom: 0px;
    }

    section.form-section-7 .content-section {
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

    section.daily-section-2 .consult-btn button {
        font-size: 13px;
    }

    .banner-daily-setion-1 .cta-button {
        font-size: 13px;
    }

    section.daily-section-5 button.cta-button {
        font-size: 13px;
    }
}