* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    text-align: center;
    position: relative;
}

thead {
    display: table-header-group;
    position: sticky;
    top: 0;
    z-index: 10;
}

thead th {
    background-color: #d9eaf1;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid white;
    padding: 10px;
    font-size: 18px;
}

tbody tr{
}

tbody tr:hover {
    background-color: #eee;
}

tr:nth-child(2n) {
    background-color: #f5f5f5;
}

tr {
    border-bottom: 1px solid #e0e0e0;
}

td {
    padding-top: 5px;
    padding-bottom: 20px;
}

td input {
    width: 60px;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}

html,
body {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    overflow: hidden scroll;
}

:root {
    --bg-gray: #424242;
    --bg-black: #000000;
    --bg-white: #ffffff;
    --black: #000000;
    --white: #ffffff;
    --white-transparent: rgba(255, 255, 255, 0.8);
    --gray: #424242;
    --box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    --blue: #3a589d;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.heading {
    font-size: 38px;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-gray);
    line-height: 68px;
}

.btn {
    display: inline-block;
    border: 1px solid;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
    color: var(--white);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    transition: all .2s linear;
    cursor: pointer;
}

.btn-login,
.btn-register,
.btn-cart {
    background-color: var(--black);
}


/* header */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: var(--box-shadow);
}

.header-container {
    width: 100%;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top {
    background-color: var(--bg-black);
    color: var(--white);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
}

.header-top-left {
    display: flex;
    align-items: center;
}

.header-top-left-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.header-top-left-content-item {
    padding: 5px 0;
}

.header-top-left-content-item span a {
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.header-top-right {
    display: flex;
    align-items: center;
    color: var(--white-transparent);
}

.header-top-right-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.header-top-right-content-item {
    border: 1px solid var(--white-transparent);
    border-radius: 5px;
    padding: 5px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
}

.header-top-right-content-item:hover {
    background-color: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.header-top-right-content-item i {
    font-size: 16px;
}

.header-main {
    background-color: var(--bg-white);
    color: var(--black);
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-main-left {
    display: flex;
    align-items: center;
}

.header-logo {}

.header-logo a {
    font-size: 36px;
    font-weight: bold;
    color: var(--black);
    text-decoration: none;
    font-style: italic;
}

.header-search {}

.header-search input {
    border: 1px solid var(--gray);
    border-radius: 5px;
    padding: 5px 10px;
    width: 300px;
    font-size: 14px;
    color: var(--black);
    transition: all .2s linear;
}


.header-search .btn-submit {
    background-color: var(--bg-black);
    border: 1px solid var(--bg-black);
    color: var(--white);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    transition: all .2s linear;
    cursor: pointer;
}

.header-search .btn-submit:hover {
    background-color: var(--bg-gray);
}

#btn-login:hover,
#btn-register:hover,
#btn-cart:hover {
    background-color: var(--bg-gray);
}

.header-main-right {
    position: relative;
    display: flex;
    align-items: center;
}




.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    padding-left: 10px;
}

.header-menu i {
    font-size: 16px;
}










.header-user {
    display: flex;
    align-items: center;
    position: relative;
}

.header-user-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-user-image img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--bg-gray);
}

.header-user:hover .header-user-funtion {
    display: block;
    opacity: 1;
}

.header-user-funtion {
    padding: 15px 8px;
    position: absolute;
    top: 120%;
    left: -5px;
    width: 160px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    opacity: 0;
    display: none;
    transform-origin: top;
    transition: all .2s linear;
}

.header-user-funtion::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--bg-white);
}

.header-user-funtion::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0px;
    width: 80px;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.header-user-funtion-item {
    line-height: 2.0;
    padding: 5px 10px;
    width: 100%;
    display: inline-block;
}

.header-user-funtion-item:not(:last-child) {
    border-bottom: 1px solid var(--bg-gray);
}

.header-user-funtion-item a {
    color: var(--black);
    font-size: 14px;
    text-decoration: none;
}

.header-user-funtion-item a i {
    font-size: 16px;
}

.header-user-funtion-item a span {
    color: var(--black);
    font-size: 14px;
    margin-left: 5px;
    transition: all .2s linear;
}

.header-user-funtion-item a:hover span {
    color: var(--blue);
    margin-left: 10px;
}

.header-cart {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cart #cart-mini {
    padding: 5px 10px;
}

.header-cart #cart-mini span {
    color: var(--gray);
}

.header-cart i {
    font-size: 16px;
}


.header-bottom {
    background-color: var(--bg-gray);
    color: var(--white);
}

.header-bottom-nav {
    padding: 10px 0;
}

.header-bottom-nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.header-bottom-nav-list-item {
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s linear;
}

.header-bottom-nav-list-item:first-child {
    padding-left: 5px;
}

.header-bottom-nav-list-item a {
    color: var(--white-transparent);
    text-decoration: none;
}

.header-bottom-nav-list-item a:hover {
    color: var(--white);
}

.header-bottom-nav-list-sub {
    display: none;
    position: absolute;
    top: 120%;
    left: -10px;
    width: 140px;
    background-color: var(--bg-white);
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.header-bottom-nav-list-sub::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--bg-white);
}

.header-bottom-nav-list-sub::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 0px;
    width: 80px;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.header-bottom-nav-list-sub li {
    padding: 10px 0;
}

.header-bottom-nav-list-sub li:not(:last-child) {
    border-bottom: 1px solid var(--gray);
}

.header-bottom-nav-list-sub li a {
    display: inline-block;
    line-height: 20px;
    width: 100%;
    color: var(--black);
    text-decoration: none;
}


.header-bottom-nav-list-sub li a:hover {
    color: var(--blue);
}

.header-bottom-nav-list-item-product {
    position: relative;
}

.header-bottom-nav-list-item-product:hover .header-bottom-nav-list-sub {
    display: block;
}

.header-bottom-nav-list-sub-item a {
    transition: all .2s linear;
}

.header-bottom-nav-list-sub-item:hover a {
    margin-left: 5px;
}


/* footer */

.footer-wrapper {
    background-color: var(--bg-gray);
    color: var(--white);
    padding: 20px 0 0;
}

.footer-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {}

.footer-content-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.footer-content-top-quick-link,
.footer-content-top-newsletter {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.footer-content-top-quick-link-title,
.footer-content-top-newsletter-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-content-top-quick-link-content a {
    color: var(--white-transparent);
    text-decoration: none;
    transition: all .2s linear;
}

.footer-content-top-quick-link-content a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-content-top-newsletter-content p {
    font-size: 14px;
    color: var(--white-transparent);
}

.footer-content-top-newsletter-content form {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-content-top-newsletter-content form input {
    border: 1px solid var(--gray);
    border-radius: 5px;
    padding: 5px 10px;
    width: 300px;
    font-size: 14px;
    color: var(--black);
    transition: all .2s linear;
}

.footer-content-top-newsletter-content form .btn-cart:hover {
    background-color: var(--bg-gray);
}

.footer-content-bottom {}

.footer-content-bottom-copyright {
    font-size: 16px;
    color: var(--white-transparent);
    text-decoration: none;
    transition: all .2s linear;
    border-top: 1px solid var(--white);
    text-align: center;
}

.footer-content-bottom-copyright p {
    line-height: 2.5;
}

.footer-content-bottom-copyright p a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
}














/* login and register */

.login {
    margin-top: 159px;
}

.login-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 10px;
}

.login-content {
    padding: 40px;
    margin: 50px auto 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 50vh;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--box-shadow);
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 100%;
    background-color: var(--bg-gray);
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid var(--white);
}

.login-header h1 {
    font-size: 24px;
    padding: 10px 0;
    font-style: italic;
}

.login-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    /* padding: 20px; */
    background-color: var(--bg-white);
}

.login-form form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 20px;
    background-color: var(--bg-white);
    height: 100%;
    width: 100%;
}

.login-form form input {
    border: 1px solid var(--gray);
    border-radius: 5px;
    padding: 5px 10px;
    width: 100%;
    font-size: 14px;
    color: var(--black);
    transition: all .2s linear;
}

.form-group {
    width: 100%;
}

.form-group a {
    color: var(--blue);
    text-decoration: none;
    transition: all .2s linear;
}

.form-group a:hover {
    color: var(--bg-black);
}

.form-group-button {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.form-group-button .btn {
    width: 120px;
}

.form-group-link {
    display: flex;
    justify-content: space-between;
}

.form-group-link-register {
    display: flex;
    justify-content: center;
}














/* home css */
.home {
    margin-top: 149px;
}

.home-container {
    height: 100vh;
}

.home-slider {
    position: relative;
    height: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
}

.home-slider-wrapper-slide-image {
    width: 100%;
    height: 100%;
}

.home-slider-wrapper-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    border: 2px solid white;
    /* opacity: 0; */
    transition: all 0.3s ease-in-out;
}

.swiper-button-next {
    right: 30px !important;
}

.swiper-button-prev {
    left: 30px !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    /* opacity: 0; */
    background: rgba(0, 0, 0, 0.2);
    width: 15px !important;
    height: 15px !important;
    border: 2px solid white;
    background: transparent !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-pagination-bullet:hover {
    background: rgba(0, 0, 0, 0.4);
}

.swiper-pagination-bullet-active {
    background-color: white !important;
}

.home-slider:hover .swiper-button-next,
.home-slider:hover .swiper-button-prev,
.home-slider:hover .swiper-pagination-bullet {
    opacity: 1;
}

/* features product */
.home-featured-product {
    margin-top: 39px !important;
    max-width: 1080px;
    margin: 0 auto;
}

.home-featured-product-container-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.home-featured-product-container-products-product {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.home-featured-product-container-products-product:hover img {
    transform: scale(1.05);
}

.home-featured-product-container-products-product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    border-radius: 5px 5px 0 0;
}

.home-featured-product-container-products-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.home-featured-product-container-products-product-title {
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.home-featured-product-container-products-product-title h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.home-featured-product-container-products-product-price {
    width: 100%;
    text-align: center;
}

.home-featured-product-container-products-product-price h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.home-featured-product-container-products-product-button {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    background-color: var(--bg-black);
    color: var(--white);
    padding: 15px 0 12px 0;
    font-size: 14px;
    text-align: center;
    border-radius: 0 0 5px 5px;
    transition: all 0.3s ease-in-out;
}

.home-featured-product-container-products-product-button a {
    width: 100px;
    transition: all 0.3s ease-in-out;
}

.home-featured-product-container-products-product-button:hover .btn-cart:hover {
    background-color: var(--bg-gray);
}


/* lastest product */
.home-lastest-product-image {
    margin-top: 39px !important;
    width: 100%;
}

.home-lastest-product-image-title {
    max-width: 1080px;
    margin: 0 auto;
}

.home-lastest-product-image-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.home-lastest-product-image img {
    opacity: 0.8;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    border: 2px solid #e0e0e0;
}

.home-lastest-product-image img:hover {
    opacity: 1;
}

















/* brand */
.text-center {
    height: 40px;
    display: flex;
    align-items: center;
}

.text-center-line {
    width: 40px;
    height: 4px;
    background-color: var(--bg-gray);
    margin: 0 auto;
}

.brand {
    margin-top: 149px;
}

.brand-container {}

.brand-row-heading {
    background-image: url('/assets/images/bg-brand.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.brand-row-heading h1 {
    padding-top: 20px;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.8;
    color: var(--white);
    text-align: center;
}

.brand-row-image {
    margin: 0 auto;
    width: 600px;
    border: 2px solid #e0e0e0;
    padding: 50px 80px 20px;
    background-color: #d9eaf1;
}

.brand-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-row-image h1 {
    font-size: 70px;
    font-style: italic;
    font-weight: 700;
    line-height: 1.8;
    color: var(--black);
    text-align: center;
}

.brand-row-for {
    background-image: url('/assets/images/bg-brand.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 80px;
}

.brand-row-image-text {
    max-width: 1080px;
    margin: 0 auto;
}

.brand-row-for-image {
    margin: 0 auto;
    width: 400px;
    border: 2px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 40px;
    background-color: #d9eaf1;
    text-align: center;
}

.brand-row-for-image img {}

.brand-row-for h1 {
    padding-top: 20px;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.8;
    color: var(--white);
    text-align: center;
    border: none;
}

.brand-row-for p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    text-align: center;
}















/* product */
.product {
    margin-top: 159px;
}

.product-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 100px;
}

.product-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.product-top-title {
    font-size: 30px;
    line-height: 1.2;
    color: var(--black);
    text-align: center;
}

.product-top-sort-by {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-top-sort-by-title {
    font-size: 18px;
    line-height: 1.2;
    color: var(--black);
    text-align: center;
    padding: 5px 10px;

}

.product-top-sort-by-title h3 {}

.product-top-sort-by-select {
    border-radius: 5px;
    border: 2px solid #e0e0e0;
    outline: none;
}

.product-top-sort-by-select select {}

.product-top-sort-by-select select option {}

.product-body {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.product-body-filter {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    flex: 1;
    /* display: none; */
}


.product-body-filter-select {
    border-radius: 5px;
    padding-left: 10px;
}

.product-body-filter-select select {
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    outline: none;
    padding: 5px;
}

.product-body-filter-brand {}

.product-body-filter-title h3,
.product-body-filter-brand h3,
.product-body-filter-price h3,
.product-body-filter-color h3,
.product-body-filter-size h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: #0c1d62;
    padding: 5px;
}

.product-body-filter-brand-list,
.product-body-filter-price-list,
.product-body-filter-color-list,
.product-body-filter-size-list {
    padding-left: 10px;
}

.product-body-filter-brand-list li,
.product-body-filter-price-list li,
.product-body-filter-color-list li,
.product-body-filter-size-list li {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
    padding: 5px;
    border-radius: 5px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    margin-bottom: 5px;
}

.product-body-filter-brand-list li input[type="checkbox"],
.product-body-filter-price-list li input[type="checkbox"],
.product-body-filter-color-list li input[type="checkbox"],
.product-body-filter-size-list li input[type="checkbox"] {
    margin-right: 10px;
}

.product-body-filter-brand-list li:hover,
.product-body-filter-price-list li:hover,
.product-body-filter-color-list li:hover,
.product-body-filter-size-list li:hover {
    background-color: #e0e0e0;
}

.product-body-filter-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.product-body-filter-button button {
    width: 100%;
}


#product-body-list {
    flex: 4;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.product-body-list-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-body-list-item:hover .product-body-list-item-image img {
    transform: scale(1.05);
}

.product-body-list-item-image {
    width: 100%;
    height: 240px;
    border-radius: 5px;
    overflow: hidden;
}

.product-body-list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.product-body-list-item-title {}

.product-body-list-item-title h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    padding: 5px;
    cursor: pointer;
}

.product-body-list-item-title h4:hover {
    color: var(--blue);
}

.product-body-list-item-price h4 {
    font-size: 16px;
    color: var(--bg-gray);
}

.product-body-list-item-button {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    background-color: var(--bg-black);
    color: var(--white);
    padding: 15px 0 12px 0;
    font-size: 14px;
    text-align: center;
    border-radius: 0 0 5px 5px;
    transition: all 0.3s ease-in-out;
}

.product-body-list-item-button button:hover {
    background-color: var(--bg-gray);
}















/* product detail */
.product-detail {
    margin-top: 159px;
}

.product-detail-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

#product-detail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 780px;
    margin: 0 auto;
}

.product-detail-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-detail-img img {
    height: 380px;
    object-fit: cover;
}

.product-detail-info {
    padding: 20px;
    flex: 1;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
}

.product-detail-info h1 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: #0c1d62;
    padding: 5px;
}

.product-detail-info p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--black);
    padding: 5px;
}

.product-detail-info input {
    width: 60px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    outline: none;
    padding: 5px;
}

.product-detail-info button {
    width: 100px;
    padding: 15px 0;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.product-detail-info button:hover {
    background-color: var(--bg-gray);
}

.product-detail-info div {
    padding: 5px;
}




















/* cart */
.cart {
    margin-top: 159px;
}

.cart-container {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 60px;
}

.cart-table {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden scroll;
}

.cart-table-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.cart-table-head h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: #0c1d62;
    padding: 5px;
}

.cart-table-head button {
    margin-right: 20px;
}

.cart #cart-total {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.cart #cart-total h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: #0c1d62;
    padding: 5px;
}

.cart-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cart-button a {
    background-color: var(--bg-black);
    color: var(--white);
    padding: 15px 20px 12px;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}



















.heading-page a {
    color: #e0e0e0;
}

/* media query screen */

@media screen and (max-width: 992px) {
    .header-bottom{
        display: block;
    }

    .home-container {
        height: 70vh;
    }
}

@media screen and (max-width: 768px) {

    .home-container {
        height: 50vh;
    }

    .home,
    .brand,
    .cart,
    .product,
    .product-detail,
    .login{
        margin-top: 63px;
    }

    .header-wrapper{
        top: 0 !important;
    }

    .header-menu {
        display: initial;
    }

    .header-top-left,
    .header-main-mid,
    .header-user,
    .header-top {
        display: none;
    }

    .header-cart #cart-mini,
    .header-cart #btn-wishlist {
        display: none !important;
    }

    .header-top-content {
        justify-content: center;
    }

    .header-bottom-nav-list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        max-width: 780px;
        margin: 0 auto;
    }

    .header-bottom-nav-list-item {
        width: 100%;
        text-align: center;
        transition: all 0.3s linear;
    }

    .header-bottom-nav-list-item a {
        width: 100%;
    }

    .header-main-content {
        justify-content: space-between;
    }

    .header-bottom-nav-list-item:hover .header-bottom-nav-list-sub {
        display: none;
    }

    .header-bottom-nav-list-item-product i {
        display: none;
    }

    .header-bottom-nav-list-sub {
        position: relative;
        width: 100%;
    }

    .header-bottom {
        transform-origin: top;
        display: none;
    }







    /* cart */
    .cart-table{
        overflow: scroll;
    }

    
}

@media screen and (max-width: 450px) {
    .header-bottom-nav-list {
        flex-direction: column;
    }



    /* cart */
    .cart-button {
        flex-direction: column;
    }

}