:root {
    --main-text-font: 'Montserrat', sans-serif;
    --white-color: rgb(254, 253, 252);
    --back-color: #1f1f1f;
    --organe-color: #FF6400;
    --gray-color: #333;
    --light-gray-color: #ccc;
    --color-ddd: #ddd;
    --red-color: #d60f3c;
    --header-size: 1.25em;
    --text-h1: 
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--main-text-font);
}
html{
    font-size: 16px;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: var(--back-color);
}
.space-between {
    justify-content: space-between;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.current{
    color: var(--organe-color) !important;
}
.error, .success{
    font-size: 1em !important;
    text-align: left !important;
    margin-bottom: 1em !important;
}
.error{
    color: #dc3545 !important;
}
.success{
    color: green !important;
}
.button{
    display: inline-block;
    padding: 0.75em 2em;
    font-size: 1em;
    text-transform: uppercase;
    color: var(--back-color);
    background-color: var(--white-color);
    border: 1px solid var(--back-color);
    transition: all 0.3s ease;
    cursor: pointer;
}
.button:hover{
    color: var(--white-color);
    background-color: var(--back-color);
    transition: all 0.3s ease;
}
.container-item-product{
    margin-bottom: 2.5rem;
}
.container-item-product img{
    width: 100%;
    height: auto;
}
.container-item-product .product-info{
    position: relative;
    text-align: left;
}
.container-item-product .product-title{
    min-height: 4.1em;
    padding: 0.75em 0;
    font-size: 1em;
}
.container-item-product .product-price{
    font-size: 1.1em;
    font-weight: 600;
}
.container-item-product .add-to-cart a{
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--back-color);
    color: #FFF;
    width: 2em;
    height: 2em;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}
.breadcrumb__list {
    list-style-type: none;
    display: flex;
    align-items: center;
    padding: 1em 0;
    border-bottom: 1px solid #dddddd80;
}
.breadcrumb__item + .breadcrumb__item:before{
    content: "\2014";
    -webkit-font-smoothing: antialiased;
    font-size: 10px;
    margin: 0 1.25em;
    color: #6c6d70;
    vertical-align: middle;
}
.breadcrumb__item:not(:last-child) a{
    color: #6c6d70;
}
.breadcrumb__link {
    font-size: 14px;
    line-height: 24px;
}
.cart-top-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-top{
    height: 2px;
    width: 70%;
    background-color: #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3.125rem 0 5rem;
}
.cart-top-item{
    width: 3em;
    height: 3em;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.cart-top-item i{
    color: #ddd;
}
.category, .product, #cart, #payment, #delivery,#information {
    padding: 6.25rem;
}
#selection-message{
    display: block;
}
#number-product{
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #dc3545;
    text-align: center;
    line-height: 16px;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    top: 5px;
    right:0;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 3.125rem; 
    height: 4.375rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}
header.active, header:hover {
    background: rgba(255, 255, 255, 1);
}
.logo {
    flex: 1;
    text-align: center;
    height: 100%;
}
.logo img{
    height: 100%;
    width: auto;
    cursor: pointer;
}
nav{
    flex: 3;
    display: flex;
}
.menu {
    list-style: none;
    display: flex;
    gap: 4.25rem;
}
.menu > li {
    font-size: clamp(1rem, 1vw, 1.25rem);
    font-weight: 600;
    position: relative;
    cursor: pointer;
}
.menu > li > a {
    font-size: 1em;
    display: block;
    line-height: 1.875rem; 
    text-decoration: none;
    color: inherit;
}
.menu > li:hover > a, .menu > li:has(.sub-menu:hover) > a {
    color: var(--organe-color);
}
.sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 15vw;
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translate(-1.25rem, 2rem);
    transition: all 0.3s ease;
}
.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--gray-color);
    text-decoration: none;
    transition: all 0.2s, color 0.2s;
}
.sub-menu li a:hover {
    background-color: #f2f2f2;
    color: var(--organe-color);
}
.menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.5);
    transform: translate(-1.25rem, 0);
}
.mobile-menu {
    display: none;
    width: 22px;
    height: 1em;
    cursor: pointer;
}
.mobile-menu span {
    display: block; 
    width: 100%;
    height: 2px;
    background-color: var(--gray-color); 
    margin-bottom: 6px;
}
.mobile-menu span:last-child {
    margin-bottom: 0;
}
.sub-mobile-menu {
    display: none;
}
.others {
    flex: 1;
    display: flex;
}
.others > li {
    padding: 0 0.75rem;
    position: relative;
    line-height: 1.5em;
    height: 2.25rem;
    display: flex;
    align-items: center;
}
.others > li:first-child input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--gray-color);
  padding: 5px 0;
  padding-right: 1.875em;
  background: transparent;
  outline: none;
}
.others > li:first-child i {
  position: absolute;
  right: 1em;
  top: 5px;
}
.others > li:last-child::after {
  display: none;
}
.others > li form{
    height: 100%;
}
#Slider{
      padding-bottom: 1.875rem;
      overflow: hidden;
}
.aspect-ratio-169{
      display: block;
      position: relative;
      padding-top: 46.25%;
      transition: 0.3s;
}
.aspect-ratio-169 img{
      display: block;
      position: absolute;
      width: 100%;
      height: calc(100% + 1.875rem);
      top: 0;
      left: 0;
}
.main-container {
    display: flex;
    flex-direction: column;
    gap: 3.25rem;
    align-items: center;
    text-align: center;
    padding: 5rem 4rem;
}
.container-items{
    display: flex;
    gap: 1.875rem;
}
.container-item-header{
    text-transform: uppercase;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}
footer {
  text-align: center;
  border-top: 1px solid #D1D2D4;
  padding: 3.75rem 4.75rem;
  display: flex;
}
.footer-left {
  flex: 2;
  text-align: left;
}
.footer-left .icon {
  display: flex;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
}
.footer-left .icon img {
  width: 1.875rem;
  height: 1.875rem;
  text-align: center;
  justify-items: center;
}
.footer-left button {
  color: var(--white-color);
  background-color: var(--back-color);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
}
.footer-center {
  flex: 5;
}
.footer-center-header {
  display: flex;
  justify-content: space-around;
}
.footer-center-header li {
  font-weight: 400;
  text-align: left;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.footer-center-header li:first-child {
  margin-top: 1.25rem;
}
.footer-center-header > li {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 !important;
}
.footer-right {
  flex: 2;
  text-align: center;
}
.footer-right p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.875rem;
}
.footer-right img {
  width: calc(50% - 1.25rem);
}
.container{
    margin-top: 3.25rem;
    display: flex;
}
.category-left {
    flex: 1;
    padding: 1rem 2.5rem 0 0;
}
.list-side li{
    margin-bottom: 1.5em;
}
.list-side li .item-side-title {
    font-size: 1.1rem;
    line-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1em;
    cursor: pointer;
}
.list-side .sub-list-side{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.item-sub-list {
    display: inline-block;
}
.item-sub-list input[type="radio"] {
    display: none;
}
.item-sub-list .item-sub-title {
    display: inline-block;
    width: 3.75em;
    padding: 0.5em 1em;
    text-align: center;
    font-size: 1rem;
    border: 1px solid var(--color-ddd);
    color: var(--gray-color);
    cursor: pointer;
    transition: all 0.2s ease;
}
.item-sub-list input[type="radio"]:checked + .item-sub-title {
    border-color: var(--back-color);
}
.item-side-color .item-sub-title {
    position: relative;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    border: none;
    border-radius: 50%;
    padding: 0;
    overflow: hidden;
}
.item-side-color img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.item-side-color .item-sub-title::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.9em;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.item-side-color input[type="radio"]:checked + .item-sub-title::after {
    opacity: 1;
}
.category-left > form > .button{
    text-align: center;
    margin-top: 4rem;
    width: 100%;
    background-color: var(--back-color);
    color: var(--white-color);
}
.category-left > form > .button:hover{
    background-color: var(--white-color);
    color: var(--back-color);
}
.category-right {
    flex: 4;
}
.category-right-top-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.category-right-top-item:first-of-type {
    flex: 1;
    font-size: 1rem;
    font-weight: bold;
}
.category-right-top-item select {
    width: 16vw;
    min-width: 160px;
    padding: 10px 1em;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select-icon {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray-color);
}
.category-right-content {
    width: 100%;
    margin-top: 1.25rem;
    gap: 1.875rem;
    flex-wrap: wrap;
}
.category-right-content > .container-item-product{
    width: calc(calc(100% - 5.625rem)/4);
}
.product-content{
    margin-top: 3.25rem;
    display: flex;
}
.product-content-left {
    flex: 1;
}
.product-content-left-big-img {
    width: 80%;
    padding-right: 1.25rem;
}
.product-content-left-big-img img {
    width: 100%;
}
.product-content-left-small-img {
    width: 20%;
}
.product-content-left-small-img img {
    width: calc(100% - 0.4375rem);
    cursor: pointer;
}
.product-content-right {
    width: 50%;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
.product-content-right form{
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
.product-name{
    font-size: 2rem;
}
.product-msp{
    color: var(--light-gray-color);
    font-size: 1.25rem;
}
.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--red-color);
}
.item-side-name{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5em;
}
.product-content-right form > .item-side .sub-list-side{
    gap: 1em;
}
.quantity {
    display: flex;
    font-size: 1.25rem;
}
.quantity input {
    width: 2rem;
    padding-left: 0.1875rem;
}
.product-button {
    display: flex;
    gap: 1em;
}
.product-button button:first-child {
    display: flex;
    width: 12.5rem;
    justify-content: space-between;
    align-items: center;
}
.product-button button:last-child {
    border: 1px solid var(--organe-color);
    color: var(--organe-color);
    cursor: pointer;
}
.product-button button:last-child:hover{
    background-color: inherit;
    color: var(--organe-color);
}
.product-content-right-bottom {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-ddd);
    position: relative;
}
.product-content-right-bottom-top {
    position: absolute;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}
.product-content-right-bottom-content-title {
    border-bottom: 2px solid rgb(247, 247, 247);
}
.product-content-right-bottom-content-title-item {
    padding: 1em;
    cursor: pointer;
    margin-right: 5px;
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--gray-color);
}
.product-content-right-bottom-content-title-item p {
    font-family: var(--main-text-font);
    font-size: 0.875rem;
}
.product-content-right-bottom-content {
    padding-top: 1.875rem;
    font-family: var(--main-text-font);
    font-size: 0.875rem;
    line-height: 1.5rem;
}
.product-content-right-bottom-content-baoquan {
    display: none;
}
.activeBtn {
    display: none;
}
.activeInfBtn {
    border-bottom: 2px solid var(--gray-color);
}
.product-related{
    margin-bottom: 3.25rem;
    padding: 0 6.25rem;
}
.product-related-title{
    font-size: 1.2em;
    font-weight: bold;
    color: var(--gray-color);
}
.product-related > .product-content{
    gap: 1.875em;
}
.container-item-product img{
    width: calc(calc(100vw - 12.5rem - 7.5em) / 5);
}
#cart > .cart-top-wrap .cart-top-cart{
    border: 1px solid var(--organe-color);
}
#cart > .cart-top-wrap .cart-top-cart i{
    color: var(--organe-color);
}
.cart-content-left-mobile{
    display: none;
}
.cart-content-left{
    flex: 7;
    padding-right: 1em;
    margin-right: 1em;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}
.cart-content-left thead{
    border-bottom: 1px solid var(--color-ddd);
}
.cart-content-left th, .cart-content-left td {
    padding: 1em 0.75em;
    text-align: center;
    font-size: 1em;
    color: var(--gray-color);
    vertical-align: middle;
    border-bottom: 1px solid var(--color-ddd);
}
.cart-content-left td.product_name{
    max-width: 15vw;
}
.cart-content-left td.product_img {
    width: 10rem;
}
.cart-content-left td.product_img img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.cart-content-left input[type="number"] {
    width: 3.5em;
    text-align: center;
    padding: 6px 0;
    font-size: 1em;
    border: 1px solid var(--light-gray-color);
}
.cart-content-left i.fa-trash-can {
    color: var(--red-color);
    cursor: pointer;
    transition: color 0.2s ease;
}
.cart-content-left i.fa-trash-can:hover {
    color: #a71d2a;
}
.single-row {
    height: 210px;
}
.cart-content-title{
    display: none;
}
.cart-content-right{
    flex: 3;
    padding-left: 1em;
    border-left: 2px solid var(--color-ddd);
}
.cart-content-right table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white-color);
}
.cart-content-right th,
.cart-content-right td {
    padding: 1em;
    text-align: left;
    font-size: 1em;
}
.cart-content-right th {
    text-align: center;
    border-bottom:1px solid var(--color-ddd);
    font-size: 1em;
}
.cart-content-right th:first-child{
    font-weight: bold;
}
.cart-content-right tr:last-child td {
  border-bottom: 1px solid var(--color-ddd);
}
.cart-content-right{
    font-weight: 500;
    color: var(--gray-color);
}
.cart-content-right td:last-child {
  text-align: right;
  font-weight: 500;
}
.cart-content-right-text{
    margin: 1.25em 0;
    text-align: center;
}
.cart-content-right-text p{
    font-family: var(--main-text-font);
    line-height: 1.5em;
    font-size: 1em;
    color: var(--gray-color);
}
.cart-content-right-button{
    display: flex;
    justify-content:space-between;
    font-size: 0.875rem;
}
.cart-content-right-button > button:first-child{
    margin-right: 1em;
}
.cart-content-right-button button:last-child{
    background-color: var(--back-color);
    color: var(--white-color);
}
.cart-content-right-button button:last-child:hover{
    background-color: var(--white-color);
    color: var(--back-color);
} 
.cart-content-right-login{
    margin-top: 1.25em;
}
.cart-content-right-login p{
    font-family: var(--main-text-font);
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--gray-color);
}
#delivery > .cart-top-wrap .cart-top-address{
    border: 1px solid var(--organe-color);
}
#delivery > .cart-top-wrap .cart-top-address i{
    color: var(--organe-color);
}
.delivery-content {
    display: flex;
    gap: 2rem;
}
.delivery-content-left {
  flex: 3;
  background: var(--white-color);
  border-radius: 12px;
}
.section-title {
  font-weight: bold;
  margin-bottom: 1em;
}
.delivery-login p {
    cursor: pointer;
    margin-bottom: 1em;
    color: var(--gray-color);
}
.delivery-user-type label{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1em;
    cursor: pointer;
}
.delivery-user-type input[type="radio"] {
    margin-top: 4px;
}
.delivery-input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25em;
    margin-top: 1.25em;
}
.input-item {
  flex: 1 1 calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
.input-item label {
  margin-bottom: 6px;   
}
.input-item input {
  padding: 0.625rem;
  border: 1px solid var(--color-ddd);
  outline: none;
}
.delivery-address {
  margin-top: 1.25rem;
}
.delivery-address label {
  display: block;
  margin-bottom: 6px;
}
.delivery-address input {
  width: 100%;
  padding: 0.625rem;
  border: 1px solid var(--color-ddd);
}
.delivery-buttons {
    margin-top: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.delivery-buttons a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-color);
  font-size: 0.875rem;
}
.delivery-content-right {
    flex: 2;
    background-color: var(--white-color);
    padding: 1.5em;
    max-width: 100%;
    overflow-x: auto;
    border-left: 2px solid var(--color-ddd);
}
.summary-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--gray-color);
}
.summary-table thead th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: bold;
    border-bottom: 1px solid var(--color-ddd);
}
.summary-table td:nth-child(2),
.summary-table th:nth-child(2) {
    text-align: center;
}
.summary-table td:nth-child(3),
.summary-table th:nth-child(3) {
    width: 120px;
    text-align: right;
}
.summary-table tbody td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}
.summary-table tbody tr:last-child td {
    border-top: 1px solid var(--color-ddd);
}
.summary-total td {
    font-weight: bold;
}
#payment > .cart-top-wrap .cart-top-payment{
    border: 1px solid var(--organe-color);
}
#payment > .cart-top-wrap .cart-top-payment i{
    color: var(--organe-color);
}
.payment-content-left {
    flex: 3;
}
.payment-section {
    margin-bottom: 0.5rem;
}
.payment-section h3 {
    font-size: 1rem;
    color: var(--gray-color);
}
.payment-section p {
  margin-bottom: 16px;
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 6px 12px;
}
.payment-option input[type="radio"] {
    width: 12px;
    height: 12px;
    accent-color: #007bff;
}
.payment-option label {
    cursor: pointer;
}
.payment-logo img {
    display: block;
    width: 4rem;
    height: auto;
    margin-left: auto;
}
.payment-content-right{
    flex: 2;
    border-left: 2px solid var(--color-ddd);
    padding-left: 12px;
}
.payment-discount-group{
    display: flex;
    padding: 12px 0;
    border-bottom: 1px dashed var(--color-ddd);
}
.payment-discount-group input{
    height: 2.25rem;
    width: 12.5rem;
    min-width: 180px;
    margin-right: 0.75rem;
    padding-left: 0.75rem;
}
.payment-discount-group button{
    height: 2.25rem;
    width: 6.26rem;
    min-width: 50px;
    background-color: var(--back-color);
    color: var(--white-color);
    border: none;
    cursor: pointer;
}
.payment-mnv{
    margin-top: 20px;
}
.payment-mnv select{
    height: 2.25rem;
    width: 100%;
    color: #75758A;
    padding: 0 0.75rem;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
}
.payment-button{
    margin-top: 3.125rem;
    text-align: center;
}
.information-container {
    display: flex;
    margin-top: 2.5rem;
    gap: 5vw;
}
.info-container-left {
    flex: 2;
}
.info-container-left-item {
    border: 1px solid var(--color-ddd);
    padding: 1.25rem 2.5rem;
    display: flex;
    margin-bottom: 2.5rem;
}
.info-container-left-item-icon {
    min-width: 4.375rem;
    height: 4.375rem;
    display: grid;
    place-items: center;
}
.info-container-left-item img {
    width: 1.5rem;
    height: 1.5rem;
    line-height: 100%;
}
.info-container-left-item-info h3 {
    font-size: 1rem;
    line-height: 1.875rem;
    font-weight: 600;
}
.info-container-left-item-info p {
    color: #6C6D70;
    font-size: 1rem;
    line-height: 1.5rem;
}
.info-container-right {
    flex: 3;
    border: 1px solid var(--color-ddd);
    padding: 4.5rem 4.5rem 2.25rem 4.5rem;
    margin-right: 5vw;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.info-container-right h1 {
    line-height: 2rem;
    font-size: 1.875rem;
    font-weight: 600;
}
.info-container-right p {
  font-size: 1rem;
}
.information-location {
  padding-top: 3.75rem;
  display: flex;
}
.information-location h3 {
  flex: 1;
  font-size: 1.5rem;
}
.information-location iframe {
  flex: 3;
}
iframe {
  margin-right: 1.25rem;
}
#login{
    margin: 7.5rem 6.25rem 3rem 6.25rem;
    display: flex;
    justify-content: space-evenly;
}
.login-container-left {
    flex: 1;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    text-align: center;
}
.login-container-left h1 {
  font-size: 1.5rem;
  color: var(--gray-color);
}
.login-container-left p {
    font-size: 1em;
    color: var(--gray-color);
}
.form-group {
    margin-bottom: 1.25em;
}
.form-group label {
    display: block;
    text-align: left;
    font-size: 1em;
    margin-bottom: 0.5em;
    color: var(--color-ddd);
}
.login-input {
    width: 100%;
    padding: 1em;
    font-size: 1em;
    border: 1px solid var(--color-ddd);
}
.login-container-left-remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 14px;
}
.checkboxs {
    margin-right: 8px;
}
.login-container-left > div, .login-container-left button{
    width: 100%;
    background-color: var(--back-color);
    color: var(--white-color);
}
.login-container-left button:hover{
    color: var(--back-color);
    background-color: var(--white-color);
}
.login-container-right{
    flex: 1;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    text-align: center;
}
.login-container-right h1{
    font-size: 1.5rem;
    color: var(--gray-color);
}
.login-container-right p{
    font-size: 1em;
    color: var(--gray-color);
}
.login-container-right > button{
    width: 100%;
    background-color: var(--back-color);
    color: var(--white-color);
}
.login-container-right button:hover{
    color: var(--back-color);
    background-color: var(--white-color);
}
#regis{
    margin: 7.5rem 6.25rem 3rem 6.25rem;
}
#regis > form{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2rem;
}
.regis-content-left,
.regis-content-right {
    flex: 1 1 45%;
}
.regis-content-left-title h4,
.regis-content-right-title h4 {
    margin-bottom: 1em;
    font-size: 1.25em;
    font-weight: bold;
    color: var(--gray-color);
}
.regis-content-left-block.row,
.regis-content-left-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    margin-bottom: 1.25em;
}
.regis-content-left-form,
.regis-content-right-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}
label {
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--gray-color);
}
input.form-control,
select.form-control,
textarea.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-ddd);
    font-size: 1rem;
}
textarea.form-control {
    resize: vertical;
    min-height: 80px;
}
.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
}
.form-check-label {
    font-size: 0.875rem;
    margin-left: -1rem;
    color: var(--gray-color);
}
.regis-content-left-block > button{
    width: 100%;
    background-color: var(--back-color);
    color: var(--white-color);
}
.regis-content-left-block button:hover{
    color: var(--back-color);
    background-color: var(--white-color);
}
#regis > h1{
    display: none;
}
@media (max-width: 1440px) {
    html{
        font-size: 12px ;
    }
}
@media (max-width: 1024px) {
    html{
        font-size: 14px ;
    }
    /* CART NAVIGATION */
    .cart-top{
        width: 85%;
        margin: 5rem 0;
    }
    /* PADDING SCREENS */
    .category, .product, #cart, #payment, #delivery,#information, .product-related, #login, #regis{
        padding: 0 5vw;
        margin: 0;
        margin-top: min(16vw, 64px);
    }
    /* MENU */
    .menu{
        display: none;
    }
    .mobile-menu{
        display: block;
        margin: auto 1rem;
    }
    .logo-mb{
        text-align: center;
    }
    .logo-mb img{
        height: 50px;
        width: auto;
    }
    .sub-mobile-menu {
        position: fixed;
        left: 0;
        top: min(16vw, 64px);
        background-color: var(--white-color);
        padding: 16px;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        z-index: 100;
    }
    .menu-mb > li {
        border-bottom: 1px solid #eee;
    }
    .menu-mb > li:last-child{
        margin-bottom: 150px;
    }
    .menu-mb > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        text-decoration: none;
        color: var(--gray-color);
        font-weight: 500;
        cursor: pointer;
    }
    .menu-mb > li.has-submenu > a::after {
        content: "+";
        font-size: 18px;
    }
    .menu-mb > li.open > a::after {
        content: "-";
    }
    .sub-menu-mb {
        display: none;
        padding-left: 16px;
        text-transform: capitalize;
    }
    .sub-menu-mb li a {
        display: block;
        padding: 10px 16px;
    }
    .menu-mb li.open > .sub-menu-mb {
        display: block;
    }
    /* ---------Index------------- */
    header{
        position: fixed;
        height: 16vw;
        max-height: 64px;
        padding: 10px 15px;
        box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
        background: var(--white-color);
    }
    .logo{
        display: none;
    }
    .others form{
        display: none;
        padding: 0;
    }
    .fa:before{
        font-size: 16px;
    }
    .others > li{
        margin: auto;
    }
    #Slider{
        margin: min(16vw, 64px) 0 20px;
    }
    .main-container{
        padding: 5vw;
    }
    .container-item{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .container-item-header{
        font-size: 20px;
        text-align: left;
        line-height: 24px;
        padding-bottom: 10px;
        margin: 0;
    }
    .container-items{
        flex-wrap: wrap;
        gap: 1rem;
    }
    .container-items li{
        width: calc((100%/2) - 0.5rem);
    }
    .container-items > .container-item-product {
        display: none;
    }
    .container-item-product:nth-child(1),
    .container-item-product:nth-child(2) {
        display: block;
    }
    .container-item > button{
        width: 50vw;
        align-items: center;
    }
    footer{
        padding: 50px 5vw 70px 5vw;
        border-top: none;
        flex-direction: column;
        gap: 12px;
    }
    .footer-left{
        order: 3;
    }
    .footer-left{
        margin-top: 27.5px;
    }
    .footer-center {
        order: 2;
    }
    .footer-center-header {
        flex-direction: column;
        gap: 20px;
    }
    .footer-center-header li a{
        text-transform: capitalize;
    }
    .footer-center-header > li > a {
        font-size: 14px;
        text-transform: uppercase;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--gray-color);
        cursor: pointer;
        text-decoration: none;
    }
    .footer-center-header > li.has-subfooter > a::after {
        content: "+";
        font-size: 18px;
    }
    .footer-center-header > li.open > a::after {
        content: "-";
    }
    .sub-footer-center {
        display: none;
        list-style: none;
    }
    .sub-footer-center li {
        font-size: 14px;
    }
    .footer-center-header > li.open > .sub-footer-center {
        display: block;
    }
    .footer-right {
        order: 1; 
        text-align: left;
    }
    .footer-right img{
        height: auto;
        max-width: 160px;
        width: calc(50% - 5vw);
        margin: 5px 4vw 27px 0;
    }
    .category-left{
        display: none;
    }
    .container{
        margin: 0;
    }
    .category-right-top-item{
        width: 100%;
    }
    .category-right-top-item p{
        padding-top: 1em;
        line-height: 40px;
        font-size: 20px;
    }
    .category-right-top-item select{
        width: 100%;
        border: 1px solid #DDD;
        outline: none; 
        height: 50px;
    }
    .category-right-top-item select > option {
        background-color: #f5f5f5;
        color: var(--gray-color);
        font-size: 16px;
        padding: 10px;
    }
    .category-right-top-item select option:checked {
        background-color: var(--color-ddd);
        color: #000;
    }
    .category-right-content{
        margin-top: 30px;
        margin-bottom: 20px;
        gap: 15px;
    }
    .category-right-content > .container-item-product {
        width: calc(calc(100% - 15px) / 2);
    }
    .product > .breadcrumb{
        display: none;
    }
    .product-content{
        gap: 20px;
     }
    .product-content-left{
        flex-direction: column;
        gap: 10px;
    }
    .product-content-left-big-img{
        width: 100%;
        padding: 0;
    }
    .product-content-left-small-img{
        display: flex;
        margin-bottom: 30px;
        gap: 10px;
    }
    .product-content-left-small-img img{
        width: calc(calc(90vw - 30px) / 4);
    }
    .product-content-right{
        padding: 0;
        width: 100%;
    }
    .product-name, .product-price{
        font-size: 24px;
    }
    .product-msp, .item-side-name, p{
        font-size: 14px;
    }
    .item-size-title{
        font-size: 14px !important;
    }
    .product-related-title{
        margin: 40px 0 20px;
        font-size: 20px;
    }
    .product-related > .product-content{
        margin: 0;
        padding: 0;
        flex-direction:row;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .product-content > .container-item-product{
        flex: 0 0 auto;
        width: 40%;
        scroll-snap-align: start;
    }
    .container-item-product img{
        width: 100%;
    }
    .cart-content{
        flex-direction: column;
        gap: 15px;
    }
    .cart-content-title{
        display: block;
        font-size: 16px;
    }
    .cart-content-left {
        display: none;
    }
    .cart-content-left-mobile {
        display: table;
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
    }
    .cart-content-left-mobile tr {
        border-bottom: 1px solid var(--color-ddd);
    }
    .cart-content-left-mobile td {
        padding: 16px 0;
    }
    .cart-content-left-mobile .product_img {
        width: 34vw;
    }
    .cart-content-left-mobile .product_img img {
        width: 100%;
    }
    .cart-content-left-mobile .product_details {
        display: flex;
        flex-direction: column;
        gap: 20px; 
        margin-left: 8px;
    }
    .product_details > div{
        display: flex;
        gap: 20px;
    }
    .product_details .table_between{
        justify-content: space-between;
    }
    .product_details p{
        font-size: 14px;
    }
    .product_details .product_price{
        width: 80px;
        text-align: right;
    }
    .product_quantity{
        position: relative;
        width: 96px;
        height: 32px;
    }
    .product_quantity input{
        width: 96px;
        height: 32px;
        padding: 5px;
        text-align: center;
        border: none;
    }
    .product_quantity input[type="number"] {
        border: 1px solid var(--color-ddd);
        outline: none;
    }
    .product_quantity input[type="number"]::-webkit-outer-spin-button,
    .product_quantity input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    .product_quantity-increase, .product_quantity-decrease{
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 32px;
        width: 32px;
        font-size: 24px;
        color: #666;
        background: none;
        border: none;
    }
    .product_quantity-increase{
        right: 0;
        top: 0;
    }
    .product_quantity-decrease{
        left: 0;
        top: 0;
    } 
    .cart-content-right{
        border: none;
        padding-left: 0;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .cart-content-right table tr{
        display: none;
    }
    .cart-content-right table tr:last-child{
        display: table-row;
        border-top: 1px solid var(--color-ddd);
    }
    .cart-content-right-text{
        display: none;
    }
    .cart-content-right-button{
        flex-direction: column-reverse;
        width: 100%;
        gap: 20px;
    }
    .cart-content-right-button > button{
        margin: 0 !important;
    }
    .cart-content-right-login p{
        font-size: 14px;
        line-height: 24px;
    }
    .delivery-content{
        flex-direction: column;
        margin-top: 15px;
    }
    .delivery-user-type{
        margin-bottom: 30px;
    }
    .delivery-input-group{
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    .delivery-buttons{
        display: none;
    }
    .delivery-content-right{
        border-left: none;
        padding: 0;
    }
    .delivery-content-right .button{
        display: none;
    }
    .summary-table thead th, .summary-table tbody td{
        padding: 10px 0;
    }
    .summary-table th:nth-child(2),
    .summary-table td:nth-child(2) {
        display: none;
    }
    .summary-table td:nth-child(3),
    .summary-table th:nth-child(3) {
        width: 80px !important;
    }
    .delivery-mobile-button{
        display: block !important;
    }
    .delivery-mobile-button > button{
        width: 100%;
        margin: 10px 0 30px;
    }
    .payment-content{
        flex-direction: column;
        margin-top: 15px;
        gap: 10px;
    }
    .payment-content-left p{
        line-height: 24px;
    }
    .payment-section p{
        margin-bottom: 5px;
    }
    .payment-content-right{
        border-left: none;
        padding-left: 0;
    }
    .payment-content-right-title{
        display: block !important;
        font-weight: bold;
        line-height: 24px;
    }
    .payment-button > .button{
        width: 100%;
    }
    #regis{
        margin-top: min(calc(16vw + 30px), 64px);
        margin-bottom: 50px;
    }
    #regis > h2{
        display: block !important;
        font-size: 24px;
        font-weight: normal;
        height: 50px;
        text-align: center;
    }
    #regis form{
        flex-direction: column;
        gap: 16px;
    }
    .regis-content-left h4{
        font-size: 16px;
    }
    .regis-content-left > .regis-content-left-block{
        flex-direction: column;
    }
    #login{
        margin-top: min(calc(16vw + 30px), 64px);
        margin-bottom: 50px;
        flex-direction: column;
        gap: 50px;
    }
    .login-container-left, .login-container-right{
        max-width: 100%;
    }
    .login-container-left h1, .login-container-right h1{
        font-size: 24px;
        font-weight: normal;
        height: 50px;
    }
    .login-container-left p, .login-container-right p{
        line-height: 24px;
    }
    .information-container{
        flex-direction: column;
    }
    .info-container-right{
        border: none;
        padding: 0;
        margin: 24px 0 50px;
    }
    .information-location{
        display: none;
    }
}
@media (max-width: 767px) {
    .container-item-product .product-title{
        min-height: 6.3em;
    }
    .category-right-top-item form{
        width: 100%;
    }
    #login{
        margin-top: 100px;
    }
    .product-content-left-big-img{
        margin-top: 10px;
    }
    #regis{
        margin-top: 100px;
    }
    #regis > h1{
        display: block;
        text-align: center;
        margin-bottom: 30px;
        font-size: 24px;
        font-weight: lighter;
    }
    .product-button button:first-child{
        width: 100%;
        justify-content: space-evenly;
    }
    .product-button {
        flex-direction: column;
    }
}