/* Common */

body {
  font-family: Arial, sans-serif;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0.4;
    display: none;
}

    #preloader #preloader-inner {
        display: block;
        position: relative;
        left: 50%;
        top: 50%;
        width: 150px;
        height: 150px;
        margin: -75px 0 0 -75px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #3498db;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
    }

        #preloader #preloader-inner:before {
            content: "";
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            border-radius: 50%;
            border: 3px solid transparent;
            border-top-color: #e74c3c;
            -webkit-animation: spin 3s linear infinite;
            animation: spin 3s linear infinite;
        }

        #preloader #preloader-inner:after {
            content: "";
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border-radius: 50%;
            border: 3px solid transparent;
            border-top-color: #f9c922;
            -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
        }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.top-banner {
  background-color: #FFF8F3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
}

.bar-notification-container {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    line-height: 16px;
    color: #fff;
    opacity: 0.95;
}

.bar-notification.success {
    background-color: #4bb07a;
}

.bar-notification.error {
    background-color: #e4444c;
}

.bar-notification.warning {
    background-color: #f39c12;
}

.bar-notification {
    position: relative;
    display: none;
    padding: 15px 25px 15px 10px;
}

    .bar-notification .content {
        margin: 0 10px 0 0;
    }

        .bar-notification .content a {
            color: #fff;
            text-decoration: underline;
        }

    .bar-notification .close {
        position: absolute;
        top: 0;
        right: 0;
        width: 32px;
        height: 32px;
        margin: 7px;
        background: #fff url('../images/close.png') center no-repeat;
        cursor: pointer;
    }

/* Header */
.header {
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1440px;
  height: 80px;
  margin: auto;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #FFFFFF;
}

.header-content .logo-container {
  width: 180px;
  height: 40px;
  display: flex;
  justify-content: left;
  margin-left: 20px;
}

.header-content .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FB6A18;
  text-decoration: none;

}
.header-content .logo img{
  width: 189px;
  object-fit: contain;
}

.header-content .search-bar {
  position: relative;
  width: 832px;
  height: 48px;
}

.header-content .search-bar input {
  width: 100%;
  height: 100%;
  border: 1px solid #EDEDF1;
  border-radius: 4px;
  padding: 5px 10px;
}
.header-content .search-bar input:focus {
  border: 1px solid #EDEDF1;
  outline: none;
}
.header-content .search-bar button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border: 1px solid #EDEDF1;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #FFF8F3;
  color: #FB6A18;
  font-size: 1rem;
  width: 54px;
  height: 48px;
}

.header-content .header-right {
  width: 284px;
  height: 48px;
  gap: 8px;
}

.header-content .btn-header-logo {
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  border-radius: 99px;
}

.header-content .custom-btn {
  background-color: #FB6A18;
  color: #fff;
  border: none;
  width: 116px;
  height: 48px;
  border-radius: 4px;
}

.header-content .custom-btn:hover {
  background-color: #e65c00;
}

.header-content .btn-header-logo {
  background-color: transparent;
  border: none;
  width: 48px;
  height: 48px;
}

.nav-container {
  background-color: #F6F6F8;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container .nav-menu {
  display: flex;
  width: 1200px;
  height: 40px;
  gap: 8px;
  margin: auto;
}

.nav-container .nav-link {
  font-weight: 500;
  font-size: 14px;
  color: black;
  cursor: pointer;
}

.btn-header-logo.active {
  color: #FB6A18;
  background-color: #FFF8F3;
}
.nav-item.active .nav-link {
  background-color: #EDEDF1;
  color: #FB6A18;
}

.nav-container .nav-left {
  width: 50%;
  height: 40px;
  display: flex;
  align-items: center;

}

.nav-container .nav-right {
  width: 50%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: right;
}

/* end header */

/* menu */
.nav-float-menu {
  position: relative;
  margin-top: 2px;
}

.nav-float-menu .menu{
  display: none;
}
.nav-float-menu .menu-wrapper{
  width: 1200px;
  margin: auto;
  display: flex;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
.nav-float-menu .menu-wrapper.active{
  display: block;
}
.nav-float-menu .menu-category{
  width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 255px auto;
  box-shadow: 0px 4px 8px 0px rgba(47, 43, 67, 0.1), 0px -1px 0px 0px rgba(47, 43, 67, 0.1);
  border-radius: 8px;
  border: 1px solid #EDEDF1;
  background-color: #FFFFFF; 
}
.nav-float-menu .menu-category .menu-category-left{
  padding: 16px;
  
}
.nav-float-menu .menu-category .menu-category-left .btn-menu{
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  background-color: #FFFFFF;
  padding-left: 15px;
  text-align: left;
  color: black;
}
.nav-float-menu .menu-category .menu-category-left .btn-menu:hover{
  color: white;
  background-color: #fb6a18;
}
/* .nav-float-menu .menu-category .menu-category-left .btn-menu.active{
  color: white;
  background-color: #fb6a18;
} */

.nav-float-menu .menu-category .menu-category-right{
  background-color: #FFF8F3;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 16px;
  display: grid;
  grid-template-columns: 170px 170px 170px 170px 170px;
  gap: 16px;
}
.nav-float-menu .menu-category .menu-category-right .menu-category-item{
  border: 1px solid #EDEDF1;
  border-radius: 8px;
  height: 192px;
  padding: 16px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid #F6F6F8;
  background-color: #FFFFFF;
  text-decoration: none;
  color: black;
  cursor: pointer;
}
.nav-float-menu .menu-category .menu-category-right .menu-category-item:hover{
  background-color: #FEE1D1;
  color: #FB6A18;
}
.nav-float-menu .menu-category .menu-category-right .menu-category-item img{
  width: 120px;
  height: 100%;
  object-fit: contain;
}
.nav-float-menu .menu-category .menu-category-right .menu-category-item span{
  text-align: center;
  font-size: 16px;
  font-weight: 500px;
}

.nav-category-menu{
  width: 855px;
  margin: auto;
}
.nav-category-menu .menu-category-wrapper {
  width:320px;
  margin-top: -4px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  position: absolute;
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px rgba(47, 43, 67, 0.1), 0px -1px 0px 0px rgba(47, 43, 67, 0.1);
  z-index: 1000;
}

.nav-category-menu .menu{
  display: none;
}

.nav-category-menu .menu-category-wrapper .btn-menu-category{
  padding: 10px 16px;
  text-align: left;
  border: none;
  background-color: transparent;
}
.nav-category-menu .menu-category-wrapper .btn-menu-category a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 500;
}
.nav-category-menu .menu-category-wrapper .btn-menu-category:hover{
  background-color: #FEE1D1;
  color: #FB6A18;
}
.nav-category-menu .menu-category-wrapper .btn-menu-category:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.nav-category-menu .menu-category-wrapper .btn-menu-category:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}


.nav-shopping-cart{
  width: 1440px;
  margin: auto;

}
.nav-shopping-cart .menu{
  background-color: red;
}
.nav-shopping-cart .menu .menu-shopping-cart-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 0; 
  width: 400px;
  background-color: #FFFFFF;
  top: -65px;
  border-radius: 16px;
  box-shadow: 0px 4px 8px 0px rgba(47, 43, 67, 0.1), 0px -1px 0px 0px rgba(47, 43, 67, 0.1);
  border: 1px solid #F6F6F8;
  z-index: 1000;
}
.menu .menu-shopping-cart-wrapper .menu-shopping-cart-title{
  width: 400px;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 10px 10px 10px;
  border-bottom: 1px solid #EDEDF1;
}
.menu .menu-shopping-cart-wrapper .menu-shopping-cart-content{
  padding: 10px 10px 10px 15px;
  border-bottom: 1px solid #EDEDF1;
}

.menu .menu-shopping-cart-wrapper .menu-shopping-cart-content .menu-shopping-cart-item{
  display: flex;
  margin-bottom: 10px;
  cursor: pointer;

}
.menu .menu-shopping-cart-wrapper .menu-shopping-cart-content .menu-shopping-cart-item img{
  width: 72px;
  border-radius: 8px;
}

.menu  .menu-shopping-cart-item .menu-shopping-cart-info{
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.menu  .menu-shopping-cart-item .menu-shopping-cart-info .menu-shopping-cart-name {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  word-wrap: break-word;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


    .menu .menu-shopping-cart-item .menu-shopping-cart-info a {
        color: black;
        text-decoration: none;
    }

.menu .menu-shopping-cart-item .menu-shopping-cart-info a:hover{
    text-decoration: underline;
}
.menu .menu-shopping-cart-item .menu-shopping-cart-info .menu-shopping-cart-notify {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  word-wrap: break-word;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.menu .menu-shopping-cart-item .menu-shopping-cart-info .menu-shopping-cart-span{
  font-size: 12px;
  font-weight: 400;
  color: #7A7493;
  overflow: hidden;
  display: -webkit-box;
  word-wrap: break-word;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.nav-notification .menu{
  display: none;
  margin: auto;
  width: 1440px;
  background-color: red;
}

.menu .menu-shopping-cart-item .menu-shopping-cart-info .menu-shopping-cart-price{
  font-size: 16px;
  font-weight: 600;
  color: #FB6A18;
}
.menu .menu-shopping-cart-item .menu-shopping-cart-info .menu-shopping-cart-price span{
  color: black;
}
.menu-shopping-cart-item .btn-menu-logo i{
  font-size: 20px;
  color: #FB6A18;
}
.menu .menu-shopping-cart-item .menu-shopping-cart-info .menu-shopping-cart-price{
  font-size: 16px;
  font-weight: 600;
  color: #FB6A18;
}
.menu .menu-shopping-cart-item .menu-shopping-cart-info .menu-shopping-cart-price span{
  color: black;
}
.menu .menu-shopping-cart-wrapper .menu-shopping-cart-footer{
  display: flex;
  padding: 10px 10px 14px 15px;
  justify-content: space-between;
  width: 400px;
  gap: 12px;
}

.cart-qty {
    position: relative;
    top: 5px;
    border-radius: 50%;
    background-color: #f00;
    font-size: 9px;
    left: -70px;
    width: 16px;
    height: 15px;
    color: white;
    padding: 2px;
    text-align: center;
}
/* menu thông báo */
.nav-notify{
  width: 1440px;
  margin: auto;
  position: relative;

}
.nav-notify .menu{
  display: none;
}
.nav-notify .menu .menu-notify-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 0; 
  top: -65px;
  width: 400px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0px 4px 8px 0px rgba(47, 43, 67, 0.1), 0px -1px 0px 0px rgba(47, 43, 67, 0.1);
  border: 1px solid #F6F6F8;
  z-index: 1000;
}
.menu .menu-notify-wrapper .menu-notify-title{
  width: 400px;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 10px 10px 16px;
  border-bottom: 1px solid #EDEDF1;
}
.menu .menu-notify-wrapper .menu-notify-content{
  padding: 10px 10px 10px 15px;
  border-bottom: 1px solid #EDEDF1;
}

.menu .menu-notify-wrapper .menu-notify-content .menu-notify-item{
  display: flex;
  margin-bottom: 10px;
  cursor: pointer;

}
.menu .menu-notify-wrapper .menu-notify-content .menu-notify-item img{
  width: 72px;
  border-radius: 8px;
}

.menu  .menu-notify-item .menu-notify-info{
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.menu  .menu-notify-item .menu-notify-info .menu-notify-name {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  word-wrap: break-word;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.menu .menu-notify-item .menu-notify-info .menu-notify-notify {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  word-wrap: break-word;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.menu .menu-notify-item .menu-notify-info .menu-notify-span{
  font-size: 12px;
  font-weight: 400;
  color: #7A7493;
  overflow: hidden;
  display: -webkit-box;
  word-wrap: break-word;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.menu-notify-item .menu-shopping-header .btn-menu-logo{
  border-radius: 99px;
  width: 50px;
  padding: 11px 0px;
  background-color: #FFF8F3;
  border: none;
}
.menu-notify-item .btn-menu-logo i{
  font-size: 20px;
  color: #FB6A18;
}
.nav-notify .menu-notify-wrapper .menu-notify-footer{
  width: 400px;
  padding: 10px 10px 10px 16px;
}

/* menu logon nokey */
.nav-login-nokey{
  width: 1440px;
  margin: auto;
  position: relative;

}
.nav-login-nokey .menu{
  display: none;
  background-color: red;
}
.nav-login-nokey .menu .menu-login-nokey-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 0; 
  top: -65px;
  width: 400px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0px 4px 8px 0px rgba(47, 43, 67, 0.1), 0px -1px 0px 0px rgba(47, 43, 67, 0.1);
  border: 1px solid #F6F6F8;
  z-index: 1000;
}
.nav-login-nokey .menu-login-nokey-wrapper .menu-login-nokey-content{
  padding: 48px 16px;
  text-align: center;
  border-bottom: 1px solid #EDEDF1;
}
.nav-login-nokey .menu-login-nokey-login-nokey{
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  word-wrap: break-word;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.menu .menu-login-nokey-span{
  font-size: 14px;
  font-weight: 400;
  color: #7A7493;
  overflow: hidden;
  display: -webkit-box;
  word-wrap: break-word;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}


.menu-login-nokey-item .btn-menu-logo i{
  font-size: 20px;
  color: #FB6A18;
}
.nav-login-nokey .menu-login-nokey-wrapper .menu-login-nokey-footer{
  width: 400px;
  padding: 10px 10px 10px 16px;
}

/* menu login-key */
/* menu logon nokey */
.nav-login-key{
  width: 1440px;
  margin: auto;
  position: relative;

}
.nav-login-key .menu{
  display: none;
  background-color: red;
}
.nav-login-key .menu .menu-login-key-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 0; 
  top: -65px;
  width: 272px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0px 4px 8px 0px rgba(47, 43, 67, 0.1), 0px -1px 0px 0px rgba(47, 43, 67, 0.1);
  border: 1px solid #F6F6F8;
  z-index: 1000;
}
.nav-login-key .menu-login-key-wrapper .menu-login-key-content{
  text-align: center;
  border-bottom: 1px solid #EDEDF1;
  padding: 8px;
}
.nav-login-key .menu-login-key-wrapper .menu-login-key-content .menu-login-key-item{
  display: flex;
  width: 256px;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  background-color: #FFFFFF;
  padding:14px 8px 0px 8px;
  cursor: pointer;

}
.nav-login-key .menu-login-key-item .icon{
  margin-right: 5px;
}
.nav-login-key .menu-login-key-wrapper .menu-login-key-content .menu-login-key-item:hover{
  background-color: #FFF8F3;
  color: #FB6A18;
}


    .nav-login-key .menu a {
        color: black;
        text-decoration: none;
    }

        .nav-login-key .menu a:hover {
            text-decoration: underline;
        }

/* end menu */

/* search */
.nav-search-nokey{
  width: 1440px;
  margin: auto;
  position: relative;
}
.nav-search-nokey .menu{
  display: none;
}
.nav-search-nokey .menu-search-nokey-wrapper{
  width: 843px;
  background-color: #FFFFFF;
  margin: auto;
  border-radius: 8px;
  padding: 8px 12px;
  position: absolute;
  top: -70px;
  left: 252px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 8px 0px rgba(47, 43, 67, 0.1), 0px -1px 0px 0px rgba(47, 43, 67, 0.1);
  border: 1px solid #F6F6F8;
  z-index: 1000;
}
.nav-search-nokey .menu-search-nokey-wrapper .menu-search-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 35px;
}
.nav-search-nokey .menu-search-nokey-wrapper .menu-search-title .menu-search-title-p{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;

}
.nav-search-nokey .menu-search-nokey-wrapper .menu-search-title-span{
  padding: 14px;
  margin-bottom: 0px;
  color: #FB6A18;
  cursor: pointer;
}
.nav-search-nokey .search-input-history{
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.nav-search-nokey .search-input-history .fa-clock{
  margin-right: 10px;
  color: black;
}
.nav-search-nokey .search-input-history p{
  margin-bottom: 10px;
  font-size: 14px;
  color: #4F4770;
  font-weight: 400;
}
.nav-search-nokey .search-list-product .menu-search-title-p{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}
.nav-search-nokey .search-list-product .list-product{
  display: grid;
  width: 801px;
  grid-template-columns: 259px 259px 259px;
  gap: 12px;
  margin: 10px 0px;
}

/* search key */
.nav-search-key{
  width: 1440px;
  margin: auto;
  position: relative;
}
.nav-search-key .menu{
  display: none;
}
.nav-search-key .menu-search-key-wrapper{
  width: 843px;
  background-color: #FFFFFF;
  margin: auto;
  border-radius: 8px;
  padding: 8px 12px;
  position: absolute;
  top: -70px;
  left: 252px;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 8px 0px rgba(47, 43, 67, 0.1), 0px -1px 0px 0px rgba(47, 43, 67, 0.1);
  border: 1px solid #F6F6F8;
  z-index: 1000;
}
.nav-search-key .search-input-history{
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.nav-search-key .search-input-history .fa-magnifying-glass{
  margin-right: 10px;
  color: black;
}
.nav-search-key .search-input-history p{
  margin-bottom: 10px;
  font-size: 14px;
  color: #4F4770;
  font-weight: 400;
}
.nav-search-key .search-list-product .menu-search-title-p{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}
.nav-search-key .search-list-product .list-product{
  display: flex;
  flex-direction: column;
  width: 801px;
}
.nav-search-key .search-list-product .list-product .list-product-item{
  display: flex;
  flex-direction: row;
  width: 801px;
  margin: 3px 0px;
}
.nav-search-key .list-product-item img{
  width: 72px;
  border-radius: 8px;
}

.nav-search-key .list-product-info{
  margin-left: 10px;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
}
.nav-search-key .list-product-name {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  word-wrap: break-word;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.nav-search-key .list-product-info a{
  color: black;
  text-decoration: none;
}
.nav-search-key .list-product-info a:hover{
  text-decoration: underline;
}
.nav-search-key .list-product-price {
  font-size: 14px;
  font-weight: 600;
  color: #FB6A18;
}

/* end search */



/* Footer */
.footer-content {
  background-color: #EDEDF1;
}

.footer-content .footer {
  color: black;
  width: 1440px;
  height: 386px;

  margin: auto;
}

.footer-content .footer-container {
  width: 1200px;
  height: 386px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
}

.footer-content .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 266px;
  gap: 24px;
}

.footer-content .footer-column {
  gap: 16px;
  width: 282px;
  height: 210px;
}

.footer-content .footer-column h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-content .footer-column p {
  font-size: 16px;
  line-height: 24px;
  color: #7A7493;
}

.footer-content .footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-content .footer-column ul li a {
  text-decoration: none;
  color: #2F2B43;
  line-height: 30px;
  gap: 16px;
  font-size: 16px;
}

.footer-content .footer-column ul li a:hover {
  color: #FB6A18;
}

.footer-content .footer-socials {
  width: 282px;
  padding-top: 16px;
  height: 80px;
}

.footer-content .footer-socials .social-icons i {
  font-size: 20px;
  margin-right: 10px;
  cursor: pointer;
}

.footer-content .footer-socials i:hover {
  color: #FB6A18;
}


.footer-content .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  width: 1200px;
  height: 80px;
  gap: 12px;
  padding: 16px 0px;
}

.footer-content .footer-bottom .language-switcher select {
  width: 195px;
}

.footer-content .footer-links {
  width: 993px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 0px 16px;
}

.footer-content .footer-bottom .footer-links a {
  text-decoration: none;
  color: #7A7493;
  font-size: 16px;
}

.footer-content .footer-bottom .footer-links a:hover {
  color: #FB6A18;
}

/* end footer */

/* breadcrumb */

.nav-breadcrumb .breadcrumb {
  height: 44px;
  display: flex;
  align-items: center;
  --bs-breadcrumb-margin-bottom: 0
}

.breadcrumb-custom a {
  text-decoration: none;
  color: #6c757d;
}

.breadcrumb-custom a:hover {
  color: #5a6268;
}

.breadcrumb-custom .active {
  color: #FB6A18;
}

/* end breadcrumb */


/* sidebar-filter */

.sidebar-filter {
  background-color: #F6F6F8;
  border-radius: 12px;
  padding: 20px 15px;
}

.sidebar-filter li {
  height: 30px;
}

.sidebar-filter .form-label {
  margin-bottom: 5px;
  font-weight: bold;
}

.sidebar-filter .input-with-icon {
/*  background: url('https://img.icons8.com/ios/20/000000/calendar.png') no-repeat right 12px center;*/
  background-size: 20px 20px;
  background-color: #ffffff;
  width: 100%;
  padding: 10px 15px 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  outline: none;
}

.sidebar-filter .input-with-icon::placeholder {
  color: #bdbdbd;
}

.sidebar-filter h5 {
  font-weight: bold;
}

input[type="checkbox"] {
  display: none;
}

.sidebar-filter .text-link {
  text-align: center;
  margin-top: 10px;
  cursor: pointer;
  text-decoration: none;
}

.sidebar-filter .text-link:hover {
  text-decoration: underline;
}

.sidebar-filter .custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #333;
  height: 40px;
}

.custom-checkbox span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
}

input[type="checkbox"]:checked+.custom-checkbox span {
  background-color: #FB6A18;
  border-color: #FB6A18;
}

input[type="checkbox"]:checked+.custom-checkbox span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox label {
  color: #333;
}

.sidebar-filter .search-container {
  position: relative;
  width: 100%;
}

.sidebar-filter .search-input {
  width: 100%;
  padding: 10px 15px 10px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  outline: none;
  font-size: 16px;
}

.sidebar-filter .search-input::placeholder {
  color: #999;
  font-weight: 500;
}

.sidebar-filter .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 18px;
}

/* end sidebar-filter */


/* product card */

.product-card {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 620px;
    overflow: hidden;
}

.product-card .product-image {
  width: 100%;
  height: auto;
  position: relative;
}

    .product-card .product-image img {
        width: 100%;
        height: auto;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        width: 286px;
        height: 164px;
        object-fit: cover;
    }

.product-card .product-image .heart {
  display: flex;
  background-color: #FFFFFFCC;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
}

.product-card .product-image .heart .gray {
  color: #2F2B431A;
}

.product-card .product-image .heart .orange {
  color: #fb6a18;
}

    .product-card .product-info {
        padding: 16px;
        position: relative;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        height: 516px;
        overflow: visible;
    }

.product-card .product-info h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  height: 40px;
}
    .product-card .product-info .product-name a {
        font-size: 16px;
        line-height: 20px;
        font-weight: bold;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 40px;
        text-decoration: none;
        color: black;
        margin-bottom: 10px;
    }

    .product-card .product-info .product-name a:hover {
        text-decoration: underline;
    }


.product-card .product-info .price {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  color: #FB6A18;
  margin-bottom: 10px;
  display: block;
  height: 30px;
}
    .product-card .product-info .old {
        font-size: 18px;
        font-weight: 500;
        color: #7A7493;
        text-decoration-line: line-through;
        margin-bottom: 5px;
        display: inline-block;
    }
    .product-card .product-info .sale-off {
        background-color: #FEE1D1;
        color: #FB6A18;
        padding: 5px 10px;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 10px;
    }

.product-card .product-info .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 25px;
  margin-bottom: 5px;
}

.product-card .product-info .info span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500px;
}

.product-card .product-info .info span.label {
  color: #7A7493;
}

.product-card .product-info .info span.text-value {
  margin-left: 10px;
  font-weight: bold;
}

    .product-card .product-info .action {
        display: grid;
        grid-template-columns: 44px auto;
        grid-gap: 10px;
        position: absolute;
        width: 92%;
        bottom: 16px;
        left: 16px;
        background-color: #fff;
        padding-top: 10px;
        z-index: 2;
        border-top: 1px solid #f0f0f0;
    }

.action-product-box {
    display: grid;
    grid-template-columns: 44px auto;
    grid-gap: 10px;
    position: absolute;
    width: 92%;
    bottom: 16px;
    left: 16px;
    background-color: #fff;
    padding-top: 10px;
    z-index: 2;
    border-top: 1px solid #f0f0f0;
}
.product-card .product-info .action .transfer {
    display: flex;
    background-color: #FFFFFFCC;
    border: 2px solid #2F2B431A;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.product-card .action-product-box .transfer .orange {
    color: #fb6a18;
}
.product-card .action-product-box .transfer {
    display: flex;
    background-color: #FFFFFFCC;
    border: 2px solid #2F2B431A;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

    .product-card .product-info .action .transfer .orange {
        color: #fb6a18;
    }

/* end product card */

/* drop down */
.drop-down {
  height: 48px;
  border-radius: 12px;
  border: 1px solid #ccc;
}

/* button */
.btn-custom {
  background-color: #ff6600;
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 0px;
  border: none;
  width: 100%;
  cursor: pointer;
}

.btn-custom:hover {
  color: #ffffff;
  background-color: #e65c00;
}
.btn-cart {
  background-color: #FFFFFF;
  border: 1px solid #2F2B431A;
  border-radius: 10px;
  padding: 10px 0px;
  width: 100%;
  cursor: pointer;
}

.btn-cart:hover {
  background-color: #ececec;
}

/* input[type='text'] */
.input-text-custom {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

a, button {
  cursor: pointer;
}

/* paging */

ul.pagination {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

ul.pagination li {
  margin: 0 5px;
}

ul.pagination li a {
  display: block;
  padding: 5px 12px;
  color: #6c757d;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}


ul.pagination li a:hover {
  color: #ff6600;
  border-color: #ff6600;
}


ul.pagination li.active a {
  background-color: #ff6600;
  color: #fff;
  border-color: #ff6600;
}

ul.pagination li.disabled a {
  color: #ccc;
  border-color: #ddd;
  pointer-events: none;
}

/* end paging */

/* product card list */

.grid-container-list {
  display: grid;
  grid-template-columns: 292px 582px;
  grid-gap: 0px;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin: 20px 0px;
}

.grid-container-list .product-image {
  width: 100%;
  height: auto;
}

.grid-container-list .product-image img {
  width: 100%;
  height: auto;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.grid-container-list .product-info {
  padding: 16px;
}
.grid-container-list .product-info .font-bold {
  font-weight: bold;
}

.grid-container-list .product-info h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
}

.grid-container-list .product-info .price {
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
  color: #FB6A18;
}

.grid-container-list .product-info .info {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 22px;
}

.grid-container-list .product-info .info span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500px;
}

.grid-container-list .product-info .info span.label {
  color: #7A7493;
}

.grid-container-list .product-info .info span.text-value {
  margin-left: 10px;
  font-weight: bold;
}

.grid-container-list .product-info .action {
  display: grid;
  grid-template-columns: 120px auto;
  grid-gap: 10px;
  margin-top: 15px;
}

.grid-container-list .product-info .action .heart {
  display: flex;
  background-color: #FFFFFFCC;
  border: 2px solid #2F2B431A;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.grid-container-list .product-info .action .heart .gray {
  color: #2F2B431A;
}

.grid-container-list .product-info .action .heart .orange {
  color: #fb6a18;
}

/* end product card list */



/* end paging */

/* Product Specifications Simple styling */
.product-specs-simple {
    margin-bottom: 25px;
    width: 100%;
    max-height: 380px;
    overflow-y: visible;
    position: relative;
    padding-right: 5px;
}

.product-specs-simple::after {
    display: none;
}

.product-specs-simple .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    margin-bottom: 8px;
    padding-right: 5px;
    border-bottom: 1px dashed #f0f0f0;
    padding-bottom: 8px;
}

.product-specs-simple .info:last-child {
    border-bottom: none;
}

.product-specs-simple .info .label {
    color: #7A7493;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.product-specs-simple .info .text-value {
    margin-left: 10px;
    font-weight: bold;
    font-size: 14px;
    line-height: 18px;
    color: #333;
}

.product-specs-simple .info:hover {
    background-color: #f9f9f9;
}

/* end product specifications simple */