@charset "UTF-8";

/* WEB THAM KHẢO 
    https://onlineshop.dressherself.com/
    https://kume.jp/
----------------------------------------------------- */
/* COLOR 
color: #efefef  /MÀU XÁM NHẸ
color: #ee4d2d  /MÀU SHOPEE
color: #3fa037
color: #c70000  /MÀU RAKUTEN
màu giá gốc: #929292
màu footer: #232f3e
----------------------------------------------------*/
/* CÀI ĐẶT CHUNG 
----------------------------------------------------- */
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    color:#000000cc;
}
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}
h3 {
    color: #000000;
}
p {
    line-height: 1.5em;
    font-size: 0.875em;
    color: #000000;
}

img {
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-sizing: border-box;
}

table {
    width: 100%;
}
th, td {
    text-align: left;
    padding: 8px;
}
tr:nth-child(odd) {
    background-color: #efefef;
}

.remove-default {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.slick-next:before,
.slick-prev:before {
    content: '';
}
.slick-initialized .slick-slide {
    margin: 0 10px;
}

/* PHẦN HEADER 
----------------------------------------------------- ------------------
------------------------------------------------------------------------*/
.header-container {
    background-color: #fff;
}
.header-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 100%;
    background-color:#232f3e;
}
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1120px;
    width: 100%;
    padding: 0 10px;
}   
.header-contact-items {
    display: flex;
    align-items: center;
}
.header-logo img {
   height: 45px;
    width: auto;
}
.header-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
}
.header-nav-items {
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: normal;
    font-size: 1.5em;
    color: #f220ac;
}
.header-nav-link {
    color: #000000cc;
}
.header-nav-sns, 
.nav-home {
    display: none;
}
.header-hamburger {
    display: none;
}

.fa-phone {
    color: #ffffff;
    font-size: 1.2em;
    margin-right: 5px;
}
.fa-cart-shopping {
    font-size: 2em;
    color: #ffffff;
}
.zalo-icon {
    height: 30px;
    width: auto;
    margin-right: 5px;
}
.header-tel {
    color: #ffffff;
    font-size: 1.5em;
    margin-right: 5px;
}

@media only screen and (max-width: 768px){ /* CSS CHO ĐIỆN THOẠI */
    .header-container {
        margin-top: 120px;
    }
    .header-hamburger {
        display: block;
        margin-left: 10px;
    }
    .header-nav-sns {
        display: block;
    }
    .header-contact-phone,
    .header-contact-zalo {
        display: none;
    }
}
@media only screen and (max-width: 768px){ /* CSS CHO ĐIỆN THOẠI */
    .header-wrapper {
        position: fixed;
        top: 0;
        z-index: 3;
    }
    .header-nav {
        display: block;
        position: fixed;
        z-index: 5;
        background-color: #232f3e;
        width: 100%;
        height: 100vh;
        top: 60px;
        left: 100%;
        transition: all 0.5s;
    }
    .header-nav-items {
        display: grid;
        justify-content: left;
        height: auto;
        width: 100%;
    }
    .header-nav-item {
        line-height: 3em;
        border-top: 1px solid #ffffff;
        width: 100vw;
        padding-left:  20px;
        color:#fff;
    }
    .header-nav-link {
        color: #fff;
    }
    .header-sns-items {
        display: flex;
    }
    .header-sns-item {
        margin-right: 10px;  
    }
    .header-sns-link {
        font-size: 25px;
    }
    .nav-home {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #232f3e;
        z-index: 2;

    }
    .nav-home-items {
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 50px;
    }
    .nav-home-link .fa-house,
    .nav-home-link .fa-facebook-messenger,
    .nav-home-link .fa-phone {
        font-size: 30px;
    }
    .nav-home-link .nav-home-zalo {
       height: 35px;
    }
}

/* OPEN - CLOSE MENU SMARTPHONE 
-----------------------------------------------------*/
.hamburger-line {
    height: 2px;
    width: 30px;
    background-color: #ffffff;
    margin: 12px 0;
    transition: all 0.5s;

}
.clicked .line-1 {
    transform: translate(0, 14px) rotate(-45deg);
}
.clicked .line-2 {
    opacity: 0;
}
.clicked .line-3 {
    transform: translate(0, -14px) rotate(45deg);
}
.clicked.header-nav {
    left: 0;
}
/* --------------------------------------------------*/

/* MAIN VISUAL
-----------------------------------------------------
----------------------------------------------------- */
/* __________PHAN SLIDESHOW___________ */

.slider_container {
    overflow: hidden;
}
.slider_wrapper {
    position: relative;
    z-index: 0;
    width: 100%;
    max-width: 940px;
    height: 540px;
    margin: 0 auto;
}
.slider_items {
    display: flex;
    transition: 1s;
}
.slider_items img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    z-index: 0;
}
.slider_container .buttons {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    left: -10%;
    width: 120%;
}
.slider_container .buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #d4d4d4;
    color: #000000;
    border: none;
    cursor: pointer;
}
.slider_container .buttons button:hover {
    opacity: 0.7;
}
.slider_dots {
    margin: 0;
    padding: 0;
    color: #3c3c3c;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.slider_dots li {
    list-style: none;
    width: 8px;
    height: 8px;
    border: solid 1px #c4c4c4;
    border-radius: 50%;
    margin: 0 5px;
    transition: 1s;
}
.slider_dots li.active {
    background-color: #c4c4c4;
}
.slider_items .item {
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: 1s;
}
.slider_items .item:nth-child(1){
    transform: translateX(-204%);
    opacity: 0.5;
}
.slider_items .item:nth-child(2){
    transform: translateX(-102%);
    opacity: 0.7;
}
.slider_items .item:nth-child(3){
    transform: translate(0%);
}
.slider_items .item:nth-child(4){
    transform: translateX(102%);
    opacity: 0.7;
}
.slider_items .item:nth-child(5){
    transform: translateX(204%);
    opacity: 0.7;
}
.slider_items .item:nth-child(n+6){
    transform: translateX(306%);
    opacity: 0.5;
}

/* CONCEPT SLIDER
-----------------------------------------------------
----------------------------------------------------- */
.concept-container {
    overflow: hidden;
    margin-top: 30px;
}
.concept-wrapper {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}
@media only screen and (min-width: 768px) {
    .concept-items {
        position: relative;
    }
    .concept-slick-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
        color: #666666;
    }
    .concept-prev-arrow {
        left: -3%;
    }
    .concept-next-arrow {
        right: -3%;
    }
}

/* BRAND
----------------------------------------------------- */
.brand-container {
    margin-top: 20px;
    margin-bottom: 20px;
}
.brand-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

/* BESTSELLER
----------------------------------------------------- */
.bestseller-container {
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
}
.bestseller-wrapper {
   max-width: 1100px;
   margin: 0 auto; 
   padding: 0 10px;
}
.bestseller-title {
    color:#c70000;
    border-bottom: solid 2px #c70000;
    padding-bottom: 5px;
    margin-bottom: 25px;
}
.bestseller-slider {
    position: relative;
}
.bestseller-product-name {
    margin-top: 10px;
    color: #000000cc;
}
.bestseller-product-price {
    font-size: 1.1em;
    font-weight: 600;
    color:#c70000;
}
.bestseller-product-price::before {
    content: "\20AB";
    position: relative;
    top: 4px;
    font-size: 1.1em;
    z-index: 0;
}
@media only screen and (min-width: 768px) {
    .bestseller-slick-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
        color: #666666;
    }
    .bestseller-prev-arrow {
        left: -3%;
    }
    .bestseller-next-arrow {
        right: -3%;
    }
}
/* INTRODUCTION PRODUCT 
----------------------------------------------------- */
.introduction-container {
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
}
.introduction-wrapper {
    max-width: 1100px;
    margin: 0 auto; 
    padding: 0 10px;
}
.introduction-title {
    color:#c70000;
    border-bottom: solid 2px #c70000;
    padding-bottom: 5px;
    margin-bottom: 25px;
}
.introduction-slider {
    position: relative;
}
.introduction-product-name {
    margin-top: 10px;
    color: #000000cc;
}
.introduction-product-price {
    font-size: 1.1em;
    font-weight: 600;
    color:#c70000;
}
.introduction-product-price::before {
    content: "\20AB";
    position: relative;
    top: 4px;
    font-size: 1.1em;
    z-index: 0;
}
@media only screen and (min-width: 768px) {
    .introduction-slick-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
        color: #666666;
    }
    .introduction-prev-arrow {
        left: -3%;
    }
    .introduction-next-arrow {
        right: -3%;
    }
}

/* ẢNH HỘ CHIẾU - PASSPORT
----------------------------------------------------*/
.passport-image-section {
    margin-top: 40px;  
    margin-bottom: 40px;
  }
.passport-image-wrapper {
    max-width: 1100px;
    margin: 0 auto; 
    padding: 0 10px;
}
.passport-image-title {
    color:#000000;
    border-bottom: solid 1px #232f3e;
    padding-bottom: 5px;
    margin-bottom: 25px;
}
.passport-image-container {
    display: grid;
    grid-template-columns: repeat(1, auto);
    gap: 20px;
}
@media only screen and (min-width: 768px) { /* MÁY TÍNH */
    .passport-image-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .passport-image-item {
        display: flex;
        align-items: center; /* Căn giữa theo chiều dọc */
    }
}
/* ẢNH VISA
----------------------------------------------------- */
.visa-image-section {
    background-color: #efefef;
    padding-top: 20px;
    padding-bottom: 40px;
}
.visa-image-wrapper {
    max-width: 1100px;
    margin: 0 auto; 
    padding: 0 10px;
}
.visa-image-title {
    color:#000000;
    border-bottom: solid 1px #232f3e;
    padding-bottom: 5px;
    margin-bottom: 25px;
}
.visa-image-container {
    display: grid;
    grid-template-columns: repeat(1, auto);
    gap: 20px;
}
@media only screen and (min-width: 768px) { /* MÁY TÍNH */
    .visa-image-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .visa-image-item {
        display: flex;
        align-items: center; /* Căn giữa theo chiều dọc */
    }
}

/* ẢNH MEMORY
----------------------------------------------------*/
.memory-image-section {
    margin-top: 40px;  
    margin-bottom: 40px;
  }

/* ORDER GUIDE
----------------------------------------------------- */
.orderguide-container {
    background-color: #efefef;
    padding-top: 20px;
    padding-bottom: 40px;
}
.orderguide-wrapper {
    max-width: 1100px;
    margin: 0 auto; 
    padding: 0 10px;
    display: grid;
    grid-template-columns: auto;
    gap: 20px;
}
.orderguide-title {
    color:#000000;
    border-bottom: solid 1px #232f3e;
    margin-bottom: 25px;
}
.orderguide-items {
    display: grid;
    grid-template-columns: auto;
    gap: 20px;
}
@media only screen and (min-width: 768px) {
    .orderguide-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* INTASGRAM
----------------------------------------------------- */
.instagram-container {
    margin-top: 40px;
    margin-bottom: 40px;
}
.instagram-wrapper {
    max-width: 1100px;
    margin: 0 auto; 
    padding: 0 10px;
}
.instagram-title {
    color:#000000;
    border-bottom: solid 1px #232f3e;
    margin-bottom: 25px;
}
.instagram-items {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px;
}
.instagram-btn-link {
    color: #2a2a2a;
    border: solid 1px #2a2a2a;
    width: 200px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}
.instagram-btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
@media only screen and (min-width: 768px) {
    .instagram-items {
        display: grid;
        grid-template-columns: repeat(4, auto);
        gap: 10px;
    }
}
.instagram-container .fa-instagram {
    display: inline-block;
    margin-right: 5px;
}

/* COMMITMENT
----------------------------------------------------- */
.commitment-container {
    margin-top: 40px;
    margin-bottom: 40px;
}
.commitment-wrapper {
    max-width: 1100px;
    margin: 0 auto; 
    padding: 0 10px;
}
.commitment-title {
    color:#000000;
    border-bottom: solid 1px #232f3e;
    padding-bottom: 5px;
    margin-bottom: 25px;
}
.commitment-items {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
}
@media only screen and (min-width: 768px) {
    .commitment-items {
        display: grid;
        grid-template-columns: repeat(4, auto);
        gap: 10px;
    }
}
/* MISSON
----------------------------------------------------- */
.misson-container {
    background-color: #efefef;
    padding-top: 40px;
    padding-bottom: 40px;
}
.misson-wrapper {
    box-sizing: border-box;
    width: 100%;
    max-width: 1120px;
    padding: 0 10px;
    margin: auto;
}
.misson-items {
    display: grid;
    grid-template-columns: repeat(1, auto);
    gap: 10px;
}

@media only screen and (min-width: 768px) { /* MÀN HÌNH MÁY TÍNH */
    .misson-items {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 10px;
    }
}

/* CHAT SNS
-----------------------------------------------------
----------------------------------------------------- */

.chat-container {
    display: none;
}
@media only screen and (min-width: 768px) {
    .chat-container {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 30px;
    }
    .chat-items {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .chat-items .chat-item {
        height: 50px;
        width: auto;
    }
    .fa-facebook-messenger {
        font-size: 50px;
    }
    .chat-item-zalo {
        position: relative;
    }
    .chat-item-zalo::before {
        content: "";
        display: inline-block;
        width: 35px;
        height: 30px;
        background-color: #ffffff;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        z-index: -1;
    }
}
/* CSS FOOTER
        Màu văn bản: #000000cc;
        Màu nền: pink_ #ee4d2d #ff6347
        xám đen_ #232f3e
        green #3fa037
----------------------------------------------------------------------
---------------------------------------------------------------------- */
.footer-container {
    color: #fff;
    background-color: #232f3e;
    margin-bottom: 50px;
}
.footer-wrapper {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}
.footer-info-content p {
    color: #fff;
}
.footer-contact-title,
.footer-info-title,
.footer-sns-pc-title {
    border-bottom: solid 1px #fff;
    padding-bottom: 5px;
}
.footer-contact-items {
    display: grid;
    gap: 20px;
}
.footer-sns-phone {
    text-align: center;
}
.footer-sns-phone-item {
    display: inline-block;
    margin: 0 10px;
}
.footer-sns-phone-link .fa-brands {
    color: #ffffff;
    font-size: 2em;
}
.footer-sns-pc {
    display: none;
}
.footer-copyright {
    background-color: #000000;
    text-align: center;
    line-height: 50px;
}

/* CSS FOOTER CHO MÀN HÌNH MÁY TÍNH 
@media only screen and (min-width: 768px) {
}
-------------------------------------------------------------------- */
@media only screen and (min-width: 768px) {
    .footer-sns-phone {
        display: none;
    }
    .footer-sns-pc {
        display: block;
    }    
}
@media only screen and (min-width: 768px) {
    .footer-container {
        margin-bottom: 0;
    }
    .footer-contact {grid-area: footer-contact;}
    .footer-info {grid-area: footer-info;}
    .footer-sns-pc {grid-area: footer-sns-pc;}
    .footer-wrapper {
        width: 100%;
        max-width: 1120px;
        padding: 0 10px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: 'footer-info footer-contact footer-sns-pc';
        gap: 30px;
    }
 
    .footer-sns-pc-items {
        padding-left: 0;
        display: grid;
        gap: 10px;
        overflow: hidden;
    }
    .footer-sns-pc-items .footer-sns-pc-item{
        display: flex;
        align-items: center;
        align-content: center;
        width: 100%;
        height: 50px;
        padding-left: 20px;
        background-color: #fff;
        font-size: 1.5em;
        color: #232f3e;

    }
    .footer-sns-pc-items .fa-brands {
        margin-right: 10px;
        color: #232f3e;
    }
    .footer-sns-pc-link {
        color: #232f3e;
    }
}
/* ---------------------------------------------------
----------------------------------------------------------- */


/* CÀI ĐẶT CHO PHẦN MUA NGAY DƯỚI MÀN HÌNH SMARTPHONE 
-------------------------------------------------------- */
.nav-bottom-phone-home {
    display: flex;
    justify-content: center;
    z-index: 2;
    position: fixed;
    bottom: 0;
    overflow: hidden;
    background-color: #ffffff;
    width: 100%;
}
.nav-bottom-phone-home_items {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-around;
    align-items: center;
    height: 50px;
    width: 100%;
}
.nav-bottom-phone {
    display: grid;
    grid-template-columns: repeat(2, auto);
    text-align: center;
    align-items: center;
    height: 50px;
    width: 100%;
    position: fixed;
    bottom: 0;
    overflow: hidden;
    background-color: #5c0101;
    z-index: 2;
}
.nav-bottom-phone_contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    background-color: #3fa037 ;
}

.vertical-line-1 {
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 33.33%;
    width: 0.5px; 
    background-color: #232f3e; 
    transform: translateX(-50%);
}
.vertical-line-2 {
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 66%;
    width: 0.5px;
    background-color: #232f3e;
    transform: translateX(-50%);
}
.nav-bottom-phone_buy {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #ee4d2d;
    color: #ffffff;
} 
@media only screen and (min-width: 768px) {
    .nav-bottom-phone-home {
        display: none;
    }
    .nav-bottom-phone {
        display: none;
    }
}

.zalo-msg {
    position: fixed;
    right: 20px;
    bottom: 20px;
}
