@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Sarabun', sans-serif;
}

p{
  line-height: 1.8rem;
}

:root {
  --primary-color: #007fff;
    --secondary-color: #004c9b;
    --primary-gradient: linear-gradient(270deg, #007fff, #004c9b);

  --text-primary: #000;
  --text-secondary: #fff;
  --text-grey: #a3a3a3;

  --border-primary: 1px solid rgb(215, 215, 215);

  --box-shadow: 0px 2px 12px #00000017;

  --max-width: 1400px;
}
 
.text-left {
  text-align: left !important;
}

.no-padding {
  padding: 0 !important;
}

body {
  background-color: #f4f4f4;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;
}

body::-webkit-scrollbar{
  display: none;
}

a{
  text-decoration: none;
}

.sticky-wrap{
  width: 100%;
  margin: auto;
  z-index: 200;
  
}

.sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
  animation: fade-down .5s ease-out;
  box-shadow: 0 3px 10px #0000001a;
}

.sticky + .subnav{
  padding-top: 75px;
}


/* BEGIN: NEW NAV */
.navbar-new{
  width: 100%;
  background: var(--secondary-color);
}

.navbar-wrap-new{
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem .5rem;
}

.navbar-top{
  display: flex;
  justify-content: space-between;
  padding: 5px 0px;
  font-size: .8rem;
  border-bottom: 1px solid rgba(212, 212, 212, 0.233);
}

.nbt-left a{
  color: #fff;
}

.nbt-right .nbt-menu{
  display: flex;
}

.nbt-right .nbt-menu a{
  padding: 0px 10px;
  color: #fff;
}

.nbt-right .nbt-menu hr{
  background: rgba(212, 212, 212, 0.233);
  border: 1px solid rgba(212, 212, 212, 0.233);
}

.navbar-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 212, 212, 0.233);
}

.nbm-left .nbm-logo{
  width: 165px;
}

.nbm-left .nbm-logo img{
  width: 100%;
}

.nbm-logo a{
  display: flex;
  align-items: center;
  justify-content: center;
}

.nbm-middle{
  width: 100%;
  max-width: 800px;
  padding: 1rem 0;
  margin: 0rem 1rem;
}

.nbm-middle form{
  display: flex;
  position: relative;
  width: 100%;
}

.nbm-middle form input[type=text]{
  padding: 10px 15px;
  width: 100%;
  border-radius: 5px;
  border: none;
  height: 50px;
}

.nbm-middle form button[type=submit]{
  position: absolute;
  right: 5px;
  top: 5px;
  height: 40px;
  padding: 0px 25px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
}

.nbm-right{
  margin: 0rem 1rem;
}

.nbm-menu{
  display: flex;
  align-items: center;
}

.nbm-menu a{
  display: flex;
  align-items: center;
  justify-content: center;
}

.nbm-menu svg{
  width: 35px;
  height: 35px;
  margin-right: 1rem;
}

.navbar-bottom .nav-menu{
  display: flex;
  list-style: none;
  position: relative;
}

.navbar-bottom .nav-menu li{
  padding: 1.3rem 2rem 1rem 2rem;
  width: 150px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  text-align: center;
}

.navbar-bottom .nav-menu li:hover{
  background: var(--primary-color);
}

.navbar-bottom .nav-menu li span{
  position: relative;
}

.navbar-bottom .nav-menu li .menu-tag{
  position: absolute;
  padding: 0px 5px;
  text-align: center;
  top: -15px;
  right:-5px;
  font-size: .6rem;
  color: #fff;
  transform: translateX(-2px);
  background: #7e7e7e;
  border-radius: 3px;
  line-height: 1rem;
}

.navbar-bottom .nav-menu li .menu-tag::after{
  content: "";
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  bottom: -2px;
  left: 4px;
  background:  #7e7e7e;
  position: absolute;
}

.nav-menu li{
  position: relative;
}

.nav-menu li a{
  color: #fff;
}

.sub-nav-menu{
  position: absolute;
  top: 100%;
  background: var(--secondary-color);
  z-index: 11;
  left: 0;
  display: none;
}

.sub-nav-menu li{
  padding: 1.3rem 2rem 1rem 2rem; 
}

.nav-menu li:hover .sub-nav-menu{
  display: flex;
  flex-direction: column;
}

@media screen and (max-width:1150px) {
  .navbar-wrap-new{
    padding: 0;
  }
  .sub-nav-menu{
    position: unset;
    width: 100%;
    background: var(--primary-color);
    margin-top: 1rem;
  }

  .sub-nav-menu li{
    width: 100%;
    padding: 1.3rem 0rem 1rem 0rem;
  }

  .navbar-bottom .nav-menu li:hover{
    background: none;
    padding: 1.3rem 0rem 1rem 0rem;
  }
  .nav-menu li:hover .sub-nav-menu {
    display: none;
  }
  .nav-menu li.active .sub-nav-menu{
    display: flex !important;
    flex-direction: column;
  }
  .navbar-bottom .nav-menu li.active{
    padding: 1.3rem 0rem 0rem 0rem;
  }
}

@media screen and (max-width:441px){
  

  
}
/* END: NEW NAV */



/* BEGIN: Navbar */
.navbar {
  background-color: #fff;
  display: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  align-items: center;
  max-width: var(--max-width);
  margin: auto;
  z-index: 200;
  height: 75px;
  
}

.navbar-wrap {
  box-shadow: var(--box-shadow);
  background: linear-gradient(180deg,rgba(0,96,173,1) -10%,rgba(0,96,173,1) 30%,rgba(37,220,244,1) 150%);
}

.nav a {
  text-decoration: none;
}

.headnav {
  width: 100%;
  display: flex;
  color: #000;
}
.headnav-wrap {
  width: 100%;
  justify-content: space-between;
  display: flex;
  max-width: var(--max-width);
  margin: auto;
}

.right-headnav {
  width: 30%;
  padding: 5px;
  display: flex;
  justify-content: flex-end;
  font-size: .8rem;
}

.left-headnav {
  width: 70%;
}

.right-headnav span {
  display: flex;
  justify-content: flex-end;
  padding: 2px 5px;
}

.right-headnav span a {
  text-decoration: none;
  color: #000;
  margin-right: 8px;
}

.right-headnav span a:hover {
  color: var(--primary-color);
}

.left-headnav span {
  display: flex;
}

.left-headnav marquee {
  padding: 5px;
}

.left-headnav span > div {
  display: flex;
  background: var(--primary-gradient);
  border-radius: 0px 0px 0px 10px;
  padding: 4px 5px;
  color: var(--text-secondary);
}

.left-headnav svg {
  width: 20px;
  fill: #fff;
  margin-right: 5px;
}

.wallet {
  display: flex;
  justify-content: flex-end;
}

.wallet > span {
  margin-right: 5px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 0px 10px 0px 7px;
}

.wallet img {
  height: 15px;
  object-fit: contain;
  margin-left: 5px;
}


.wallet span p{
  color: #fff;
}

.subnav {
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.subnav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-secondary);
}

.menu-list svg {
  height: 20px;
  width: 20px;
  color: #fff;
}

.subnav .menu-link a {
  display: flex;
  align-items: center;
}

.subnav .menu-link a p {
  margin-top: 5px;
}

.subnav .menu-link {
  padding: 10px 25px;
}

.subnav .menu-link {
  height: 100%;
}

.breadcrumb {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 20px 35px;
  color: rgb(111, 111, 111);
}

.breadcrumb a {
  text-decoration: none;
  color: rgb(111, 111, 111);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.form-control input {
  width: 100%;
  border-radius: 5px;
  outline: #fff;
  border: var(--border-primary);
  padding: 8px 25px;
}

.logo,
.form-control,
.menu-icon {
  width: 33%;
}

.menu {
  display: flex;
  width: 100%;
}

.menu-list {
  display: flex;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
}

.menu-list li {
  list-style: none;
  padding: 0px 10px;
  color: var(--text-primary);
  display: flex;
}

.menu-link {
  padding: 10px;
  position: relative;
}

.menu-link p {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.menu-link p svg {
  transition: 0.3s ease-in-out;
  width: 20px;
  padding: 0px 5px;
}

.menu-link:hover p svg {
  transform: rotate(180deg);
  transition: 0.3s ease-in-out;
  width: 20px;
  padding: 0px 5px;
}

.menu-link p svg path {
  fill: var(--text-secondary);
}

.menu-icon {
  display: flex;
  justify-content: flex-end;
}

.icon-box {
  position: relative;
  width: 45px;
  height: 45px;
  /* border: var(--border-primary); */
  margin-left: 10px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
}

.icon-box:hover svg {
  color: var(--primary-color);
}

.profile {
  display: flex;
  align-items: center;
}

.icon-box svg {
  width: 28px;
}

.icon-box a {
  color: #000;
}

.icon-box img {
  height: 32px;
}

.icon-box .notification {
  position: absolute;
  background-color: red;
  color: var(--text-secondary);
  padding: 0px 5px;
  border-radius: 100%;
  font-size: 0.5rem;
  right: 5px;
  top: 5px;
}

.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.line {
  height: 3px;
  width: 100%;
  margin: 2px;
  background-color: #fff;
  border-radius: 2px;
}

.menu-link:hover .sub-menu-list {
  transform: translateY(10px);
  transition: 0.2s ease-out;
  opacity: 1;
  height: auto;
}

.sub-menu-list:hover {
  transform: translateY(10px);
  opacity: 1;
  height: auto;
}

.sub-menu-list {
  width: 200px;
  background-color: var(--primary-color);
  color: var(--text-primary);
  position: absolute;
  transform: translateY(50%);
  opacity: 0;
  overflow: hidden;
  transition: 0.2s ease-out;
  height: 0;
  z-index: 50;
}

.sub-menu-link {
  padding: 10px 15px !important;
}

.sub-menu-link:hover {
  background: #b94c00;
  cursor: pointer;
}

@media screen and (max-width:1150px) {
  .navbar-bottom{
    display: none;
  }

  .navbar-bottom .nav-menu{
    flex-direction: column;
    width: 100%;
  }

  .navbar-bottom .nav-menu li{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .navbar-bottom.active{
    display: flex;
    position: absolute;
    z-index: 10000;
    width: 100%;
    background: var(--secondary-color);
  }

  .navbar-bottom .nav-menu li span{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-bottom .nav-menu li .menu-tag{
    position:unset;
    padding: 0px 5px;
    text-align: center;
    font-size: .6rem;
    color: #fff;
    background: #7e7e7e;
    border-radius: 3px;
    margin-left: 5px;
  }

  .navbar-bottom .nav-menu li .menu-tag:after{
    content: "";
    width: 0; 
    height: 0;
    transform: unset;
    bottom: unset;
    left: unset;
    background: #7e7e7e;
  }

  .nbm-logo{
    width: 120px !important;
  }
  
  .burger {
    display: flex;
    justify-content: space-evenly;
  }
}

@media screen and (max-width:441px) {
  .navbar-middle .navbar-wrap-new{
    display: flex;
    flex-wrap: wrap;
    padding-top: 1rem;
  }

  .nbm-left{
    order: 1;
    width: 40%;
    margin-left: 1rem;
  }

  .nbm-menu{
    justify-content: flex-end;
  }

  .nbm-middle{
    order: 3;
    width: 100%;
  }
  .nbm-right{
    order: 2;
    width: 40%;
  }
}

.logo {
  display: flex;
  align-items: center;
  height: auto;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
}

.logo img {
  margin: auto;
}

.logo h2 {
  color: #000;
  margin: auto;
  font-size: 1.9rem !important;
  font-family: 'Kanit';
  font-weight: 500 !important;
}

@media only screen and (min-width: 600px) {
  .logo img {
    height: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .logo img {
    height: 40px;
  }
}

@media screen and (max-width: 900px) {
  
  .subnav .menu-list {
    flex-direction: column;
  }
  .toggle-subnav {
    transform: translateX(0%) !important;
    transition: 0.3s ease-in;
  }

  .toggle-subnav .subnav-overlays {
    opacity: 1;
    transition: 0.3s ease-in;
  }

  .subnav {
    width: 70%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 111;
    height: 100vh;
    transform: translateX(-150%);
    transition: 0.3s ease-in;
  }

  .subnav-overlays {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(34, 34, 34, 0.8);
    z-index: 101;
    top: 0;
    left: 0;
    transition: 0.3s ease-in;
    opacity: 0;
  }

  .subnav-overlays svg {
    width: 45px;
    height: 45px;
    top: 15px;
    right: 15px;
    position: absolute;
    z-index: 102;
  }

  .subnav-overlays svg path {
    fill: #fff;
  }

  .menu-list,
  .menu {
    width: 100%;
    z-index: 110;
  }
  .subnav ul li {
    width: 100%;
    padding: 10px;
  }

  .sub-menu-list {
    display: none;
    background-color: #142f73;
  }

  .sub-menu-link:hover {
    cursor: pointer;
    background-color: var(--primary-color);
  }

  .menu-link:hover .sub-menu-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: unset;
  }

  .right-headnav,
  .left-headnav {
    width: 50%;
  }
}

@media screen and (max-width: 440px) {
  .logo h1 {
    font-size: 16px;
  }
  .nav {
    padding: 15px;
  }

  .headnav-wrap{
    flex-direction: column;
    
  }

  .left-headnav span > div{
    border-radius: 0px ;
  }

  .right-headnav , .left-headnav{
    width: 100%;
  }

  .left-headnav marquee{
    color: #fff;
    background: #f7a019;
  }
  .mobile-none{
    display: none !important;
  }
}
/* END: Navbar */

/* BEGIN: Banner */
.banner {
  width: 100%;
  max-width: var(--max-width);
  /* max-width: var(--max-width); */
  height: 100%;
  margin: 1rem auto 1rem auto;
  /* border-radius: 10px; */
  position: relative;
  background: #355c7d;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #c06c84, #6c5b7b, #355c7d);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #c06c84, #6c5b7b, #355c7d);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  animation: fade 1s;
}
.banner .arrow {
  z-index: 10;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: auto;
  right: auto;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  color: cornsilk;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.banner .arrow:hover {
  cursor: pointer;
  opacity: 1;
}
.banner .arrow-left {
  left: 2%;
}
.banner .arrow-right {
  right: 2%;
}
.banner .dots {
  position: absolute;
  margin: auto;
  top: auto;
  bottom: 2%;
  left: 0;
  right: 0;
  width: 7rem;
  height: auto;
  z-index: 5;
	flex-wrap: nowrap;
    display: flex;
}
.banner .dots .dot {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-content: center;
  justify-content: center;
  color: cornsilk;
}

.bannerwt{
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 5rem;
  position: relative;
  overflow: hidden;
  transition: 1s ease-out;
}

.bannerwt:hover img{
  transform: scale(1.1);
  transition: 1s ease-out;
}

.bannerwt img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
  transition: 1s ease-out;
}

.bannerwt-text{
  position: inherit;
  z-index: 99;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid rgb(255, 255, 255);
  padding: 35px 15px;
  color: #fff;
}


.bannerwt-text h1{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bannerwt-text hr{
  width: 100px;
  margin: 10px 0px 20px 0px;
}

.bannerwt-text span{
  font-size: 1.2rem;
  font-weight: 600;
}

.bannerwt-text p{
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.bannerwt-text button{
  padding: 15px 30px;
  background-color: var(--primary-color);
  margin-top: 15px;
  border: none;
  outline: none;
  font-size: 1.2rem;
  color: var(--text-secondary);
  border-radius: 5px;
}

.bannerwt-text button:hover{
  cursor: pointer;
  background-color: rgb(174, 52, 0);
  transition: 0.3s ease-out;
}

.bannerwt-text button:hover svg{
  transform: translateX(5px);
  transition: .3s ease-in-out;
}

.bannerwt-readmore {
  display: flex;
  align-items: center;
}

.bannerwt-readmore svg{
  width: 20px;
  height: 20px;
  transition: .3s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 440px) {
  .banner {
    height: 17vh;
  }
  .bannerwt{
    padding: 3rem 1rem;
  }
  .bannerwt-text h1 {
    font-size: 1.5rem;
  }
  .bannerwt-text p {
    font-size: 14px;
    
  }
  .bannerwt-text{
    width: 100%;
    padding: 2rem 15px;
  }
}

/* END: Banner */

/* BEGIN: Facilities */

.facilities{
  width: 100%;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: auto;
  margin-top: 1.5rem;
}

.facilities-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
  border:var(--border-primary);
  padding: 2rem .5rem;
  border-radius: 5px;
  margin: auto;
}

.facilities-box svg{
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  fill:var(--primary-color) !important;
}

.facilities-box p{
  font-size: 1.3rem;
  font-weight:600;
}

.facilities-box span{
  font-size: 1rem;
  color: var(--text-grey);
}

@media screen and (max-width:441px) {
  .facilities{
    grid-template-columns: 1fr 1fr;
  }
  .facilities-box svg{
    width: 70px;
    height: 70px;
  }
  .facilities-box{
    margin: 10px auto;
  }
  .facilities-box span{
    font-size: 14px;
  }
}

/* END: Facilities */

/* BEGIN: Product */
.product-container {
  display: flex;
  max-width: var(--max-width);
  margin: auto;
  padding: 0px 5px 50px 5px;
}

.product-sidebar {
  width: 300px;
}

.product-sidebar h2 {
  padding: 5px 0px;
  display: flex;
  align-items: center;
}

.product-sidebar h2 svg {
  width: 20px;
  margin-right: 5px;
}

.product-sidebar h2 svg path {
  fill: rgb(113, 113, 113) !important;
}

.product-catalog {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 25px;
}

.product-catalog h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 10px 0px 10px 5px;
}

.product-filter {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
}

.product-filter p {
  display: flex;
  align-items: center;
  padding: 0px 5px;
}

#price-filter {
  padding: 5px 15px;
  width: 180px;
  border-radius: 5px;
  border: var(--border-primary);
  outline: none;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
}

.product-description {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
}

.product-item {
  width: 95%;
  margin: auto;
  background-color: #fafbfc;
  margin-bottom: 10px;
  border-radius: 5px;
  
}

.product-item:hover{
  box-shadow: 0px 0px 7px #161b1d23;
}

.product-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px 5px 0px 0px;
}

.product-price-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.product-stock{
  width: 100%;
}

.product-stock p {
  width: 100%;
  text-align: left;
  color: var(--text-grey);
  font-size: .8rem;
  font-weight: 400;
  padding-top: 5px;
}

.product-header {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 30px 20px 0px 20px;
}

.product-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0px 10px;
  text-align: center;
}

.product-header p {
  font-size: 1rem;
  font-weight: 400;
  padding: 0px 10px;
  text-align: center;
  color: var(--text-grey);
}

.product-header hr {
  border-radius: 5px;
  width: 100px;
  height: 3px;
  background: #000;
  margin: 15px auto;
}

.item-box {
  overflow: hidden;
  position: relative;
  z-index: 101;
}

.item-box a {
  text-decoration: none;
  color: var(--text-primary);
}

.icon-box img {
  position: relative;
}

.icon-box a {
  display: flex;
  align-items: center;
}

.add-to-cart {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--primary-color);
  text-align: center;
  padding: 10px;
  color: var(--text-secondary);
  transform: translateY(100%);
  z-index: 100;
  transition: 0.3s ease-in;
  border-color: transparent;
}

.add-to-cart:hover {
  color: #fff;
  background-color: var(--secondary-color);
  transition: 0.1s;
}

.product-pic {
  position: relative;
  overflow: hidden;
}

.product-pic img {
  transition: 0.3s ease-in;
}

.product-pic:hover img {
  filter: grayscale(0.8);
  transition: 0.3s ease-in;
}

.product-pic:hover .add-to-cart {
  transform: translateY(0);
  transition: 0.3s ease-in;
}

.product-menu-icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px 10px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 7px;
  border: var(--border-primary);
  background: var(--text-secondary);
  border-radius: 50%;
  cursor: pointer;
}

.product-menu-icon svg {
  width: 22px;
  height: 22px;
}

.product-menu-icon svg path {
  fill: rgb(173, 173, 173) !important;
}

#cart:hover path {
  fill: rgb(49, 49, 49) !important;
}

#favourite:hover path {
  fill: rgb(255, 0, 0) !important;
}

.product-title {
  width: 100%;
  height: 50px;
  display: flex;
  padding: 5px 0px;
}

.product-title h2 {
  width: 70%;
}

.product-title h5 {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.product-title img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.product-price {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
}

.product-price img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
}

.product-price p {
  font-size: 1rem;
  font-weight:600;
  padding-right: 5px;
  color: var(--primary-color);
}

.product-menu {
  border: none;
  border-radius: 0px 0px 10px 10px;
  background: #fff;
}

.product-menu ul {
  list-style: none;
}

.product-menu ul li {
  padding: 8px 20px;
  border-bottom: 1px solid #f7f7f7;
}

.product-menu ul li:hover {
  background-color: rgb(242, 242, 242);
  cursor: pointer;
}

.product-menu ul li a {
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.product-menu ul li a img {
  width: 30px;
  object-fit: contain;
}

.grid-big {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mobile-control-btn {
  display: flex;
  justify-content: space-between;
  padding: 15px 15px;
}

.mobile-control-btn svg {
  width: 30px;
}

#close-category {
  display: flex;
  align-items: center;
}

.atc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 0px 0px 5px 5px;
  border-top: 1px solid rgb(232 232 232);
}

.atc-btn button {
  color: var(--text-primary);
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1rem;
  transition: .2s ease-out;
}

.atc-btn button svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.atc-btn:hover {
  cursor: pointer;
  background-color: var(--primary-color);
  transition: .2s ease-out;
}

.atc-btn:hover button {
  cursor: pointer;
  color: var(--text-secondary) !important;
}

.product-atc{
  border-radius:5px;
  margin-top: 10px;
  background: #000;
}

.product-atc button{
  color: var(--text-secondary);
}


.product-atc:hover{
  
}

#category {
  display: flex;
  width: 100%;
  padding: 0px 10px;
  border-bottom: 1px solid #00000015;
  color: #fff;
  background: var(--primary-color);
  border-radius: 5px 5px 0px 0px;
}

#category h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-left: 5px;
}

#category svg {
  width: 20px;
}

#category svg:hover {
  cursor: pointer;
}



@media only screen and (max-width: 1024px) {
  .product-title h5 {
    font-size: 14px;
  }
}

@media only screen and (min-width: 821px) {
  .mobile-control-btn {
    display: none;
  }
}

@media only screen and (max-width: 850px) {
  .product-container {
    flex-direction: column;
    padding-top: 0;
  }

  .product-catalog {
    padding-left: 0;
  }

  .product-menu {
    width: 50%;
    max-width: 500px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 0;
    background: white;
    z-index: 100;
    transform: translateX(-150%);
    transition: 0.3s ease-in;
  }

  .toggle-category {
    transform: translateX(0%);
    transition: 0.3s ease-in;
    z-index: 120;
  }

  #category {
    padding: 0px 10px;
    justify-content: space-between;
  }

  .product-sidebar #category h2 {
    order: 1;
  }
  .product-sidebar #category svg {
    order: 2;
  }
  .product-sidebar {
    width: 100%;
    justify-content: space-between;
  }
  

  .product-catalog h2 {
    font-size: 1rem;
    font-weight: 500;
    margin: 15px 5px 5px 5px;
  }

  

}

@media only screen and (max-width: 440px) {
  .grid-big {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-menu {
    width: 70%;
    z-index: 110;
  }

  .product-menu li {
    padding: 10px 15px;
  }

  .product-pic {
    height: 150px;
    padding: 5px;
  }

  .product-title h5 {
    overflow: hidden;
    line-height: 1.5rem;
  }

  .product-description {
    padding: 5px 10px;
  }

  .product-price-wrap p {
    font-size: 0.8rem;
  }

  .product-stock p {
    width: 75px;
    
  }
  
  
  .breadcrumb {
    display: none;
  }
}
/* END: Product */

/* BEGIN: Footer */
footer {
  width: 100%;
  margin-top: 50px;
  background: var(--secondary-color);
  padding-top: 10px;
}
.footer {
  width: 100%;
  max-width: var(--max-width);
  margin: 10px auto 0px auto;
  display: flex;
  flex-wrap: wrap;
}

.footer-items {
  display: flex;
  width: 25%;
  max-width: 350px;
  min-width: 280px;
  flex-direction: column;
  padding: 20px 30px;
  color: var(--text-secondary);
  border-right:1px solid rgba(212, 212, 212);
}

.footer-items > p{
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.footer-items:nth-last-child(1) {
  border-right: none;
}

.footer-items ul {
  list-style: none;
}

.footer-items ul li a {
  text-decoration: none;
  color: var(--text-secondary);
}

.sub-footer {
  display: flex;
  max-width: var(--max-width);
  margin: auto;
  justify-content: space-between;
  padding: 20px 30px;
  border-top: 1px solid rgba(212, 212, 212);
  align-items: center;
}

.sub-footer .copy-right {
  color: var(--text-secondary);
}

.sub-footer .payment img {
  height: 40px;
}

.tags{
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  justify-content: center;
  align-items: center;
  padding: 1rem 0rem 2rem 0rem;
}


.tags a{
  margin: 0rem .2rem .5rem .2rem;
}

.tags span{
  font-size: .8rem;
  padding: 2px 10px;
  background-color: #ffffff30;
  border-radius: 5px;
  color: #fff;
}

.tags span:hover{
  background-color: #ffffff50;
}

@media screen and (max-width: 1180px) {
  .footer-items {
    max-width: unset;
    border: none !important;
  }
}

@media screen and (max-width: 900px) {
  .footer-items {
    width: 50%;
    max-width: unset;
  }
}

@media screen and (max-width: 440px) {
  .footer-items {
    width: 100%;
    max-width: unset;
  }
  .sub-footer {
    flex-direction: column-reverse;
    padding: 10px 30px 70px 30px;
  }
  
}
/* END: Footer */

/* BEGIN: Mobile Nav */
@media screen and (min-width: 421px) {
  .mobile-nav {
    display: none;
  }
}
@media screen and (max-width: 440px) {
  .mobile-nav {
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: var(--text-secondary);
    z-index: 150;
    height: 56px;
    box-shadow: 0 10px 35px #00000055;
  }

  .mobile-nav .menu-icon {
    width: 100%;
    justify-content: space-evenly;
  }

  .mobile-nav .menu-icon .icon-box {
    margin: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav .menu-icon {
    display: none;
  }
}
/* BEGIN: Mobile Nav */

/* BEGIN: Slider */
.box {
  width: 260px;
  background-color: #fafbfc;
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  overflow: hidden;
  margin: 23px 5px 25px 5px;
}

.slider-header {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 30px 20px 0px 20px;
}

.slider-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0px 10px;
  text-align: center;
}

.slider-header p {
  font-size: 1rem;
  font-weight: 400;
  padding: 0px 10px;
  text-align: center;
  color: var(--text-grey);
}

.slider-header hr {
  border-radius: 5px;
  width: 100px;
  height: 3px;
  background: #000;
  margin: auto;
  margin-top: 15px;
}

.slide-img {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px 30px 0px 0px !important;
}
.slide-img a{
  width: 100%;
}
.slide-img img {
  width: 100%;
  height: 250px;
  margin: auto;
  border-radius: 5px 5px 0px 0px;
  object-fit: cover;
  box-sizing: border-box;
}
.detail-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
}
.type {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.type h4 {
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
.type a {
  text-decoration: none;
  color: #222222;
  margin: 5px 0px;
  letter-spacing: 0.5px;
  padding-right: 8px;
  font-size: 14px;
  overflow: hidden;
}
.type span {
  color: rgba(26, 26, 26, 0.5);
}
.price {
  color: #333333;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #0b1c485f;
  display: flex;
  justify-content: center;
  align-items: center;
}
.buy-btn {
  width: 160px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  color: #252525;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 20px;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
}
.buy-btn:hover {
  color: #ffffff;
  background-color: var(--primary-color);
  transition: all ease 0.3s;
}
.overlay {
  visibility: hidden;
}
.slide-img:hover .overlay {
  visibility: visible;
  animation: fade 0.5s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.slider {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* END: Slider */

/* BEGIN: Rule */

.content-rule {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  background-color: rgb(255, 255, 255);
  margin-top: 30px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.content-rule img {
  width: 100%;
  max-width: 800px;
  margin: 15px auto 0px;
}

.content-h1{
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.content-img{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rule-desc {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 10px 15px;
}

.rule-desc h1,
.rule-desc h2 {
  margin-top: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.rule-desc h1{
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.rule-desc h2{
  font-weight: 700;
  font-size: 1.3rem;
}

.rule-desc ul {
  list-style: none;
}

.rule-desc ol{
  margin-left: 1rem;
}

p.warning {
  padding: 10px 0px;
  color: red;
}
/* BEGIN: Rule */

/* BEGIN: Confetti Animation */

/* END: Confetti Animation */