@import url(https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&display=swap);
.red {
  color: red
}
.checkout form .cart-items {
  transform: translatex(0) translatey(0)
}
.cart-items p .name {
  font-size: 15px;
  color: #fed330!important
}
.cart-items p .price {
  font-size: 18px
}
.cart-items .grand-total .price {
  font-size: 21px;
  color: #db1500!important;
  line-height: 1.5em;
  column-count: 1
}
:root {
  --yellow: #fed330;
  --red: #e74c3c;
  --white: #fff;
  --black: #222;
  --light-color: #777;
  --border: .1rem solid var(--black)
}
* {
  font-family: Rubik,sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  border: none;
  text-decoration: none
}
::selection {
  background-color: var(--yellow);
  color: var(--black)
}
::-webkit-scrollbar {
  height: .5rem;
  width: 1rem
}
::-webkit-scrollbar-track {
  background-color: transparent
}
::-webkit-scrollbar-thumb {
  background-color: var(--yellow)
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  stop-opacity: 7rem
}
section {
  margin: 0 auto;
  max-width: 1200px;
  padding: 2rem
}
.title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 4rem;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 1rem
}
.heading span {
  font-family: Rubik,sans-serif;
  font-size: 3rem;
  color: #fff
}
.heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-flow: column;
  background-color: #fe0000;
  min-height: 15rem
}
.heading h3 {
  font-size: 3rem;
  font-family: Rubik,sans-serif;
  color: var(--white);
  text-transform: capitalize
}
.heading p {
  font-size: 2.3rem;
  color: var(--light-color)
}
.heading p a {
  color: var(--yellow)
}
.heading p a:hover {
  text-decoration: underline;
  color: var(--white)
}
.btn,
.delete-btn {
  margin-top: 1rem;
  display: inline-block;
  font-size: 2rem !important;
  padding: 1rem 3rem !important;
  cursor: pointer;
  text-transform: capitalize;
  transition: .2s linear
}
.btn {
  background-color: var(--yellow) !important;
  color: var(--black) !important
} 
.delete-btn {
  background-color: var(--red);
  color: var(--white)
}
.btn:hover,
.delete-btn:hover {
  letter-spacing: .2rem
}
.disabled {
  opacity: .5;
  user-select: none;
  pointer-events: none
} 
.message {
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fe0000;
  color: #fff;
  padding: 10px 20px;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  z-index: 1000;
  white-space: nowrap;
  display: flex;
  align-items: center
}
.message span {
  font-size: 2rem;
  color: var(--black)
}
.message i {
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  margin-left: 10px
}
.message i:hover {
  color: var(--black)
}
.flex-btn {
  display: flex;
  gap: 1rem
}
.header {
  position: sticky;
  top: 23px;
  left: 0;
  right: 0;
  z-index: 49;
  background-color: #111;
  border-bottom: var(--border)
}
.header .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative
}
.header .flex .logo {
  font-size: 2.5rem;
  color: var(--white);
  text-align: center
}
.logo-phone-number {
  font-size: 19px;
  color: #fed330;
  margin-top: 5px;
  text-align: center
}
.header .flex .navbar a {
  font-size: 2.2rem;
  color: var(--white);
  margin: 0 1rem;
  text-decoration: none !important;
}
.header .flex .navbar a:hover {
  color: var(--yellow);
  text-decoration: underline !important
}
a {
  
    text-decoration: none !important;
  }
.header .flex .icons > * {
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer
}
.header .flex .icons > :hover {
  color: var(--yellow)
}
.header .flex .icons span {
  font-size: 2rem
}
.header .flex .icons span {
  font-size: 2rem;
  color: #fff
}
#menu-btn {
  display: none
}
.header .flex .profile {
  background-color: var(--white);
  border: var(--border);
  padding: 1.5rem;
  text-align: center;
  position: absolute;
  top: 125%;
  right: 2rem;
  width: 35rem;
  display: none;
  animation: fadeIn .2s linear
}
.header .flex .profile.active {
  display: inline-block
}
@keyframes fadeIn {
  0% {
    transform: translateY(1rem)
  }
}
.header .flex .profile .name {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: .5rem
}
.header .flex .profile .account {
  margin-top: 1.5rem;
  font-size: 2rem;
  color: var(--light-color)
}
.header .flex .profile .account a {
  color: var(--black)
}
.header .flex .profile .account a:hover {
  color: var(--yellow);
  text-decoration: underline
}
.hero {
  height: 500px;
  width: auto
}
.hero .slide {
  display: flex;
  align-items: center;
  flex-wrap: wrap-reverse;
  gap: 2rem;
  margin-bottom: 4rem
}
.hero .slide .image {
  flex: 1 1 40rem
}
.hero .slide .image img {
  width: 70%
}
.hero .slide .content {
  flex: 1 1 40rem;
  text-align: center
}
.hero .slide .content span {
  font-size: 2.5rem;
  color: var(--light-color)
}
.hero .slide .content h3 {
  margin: 1rem 0;
  font-size: 6rem;
  color: var(--black);
  text-transform: capitalize
}
.category .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(27rem,1fr));
  gap: 1.5rem;
  align-items: flex-start
}
.category .box-container .box {
  border: var(--border);
  padding: 2rem;
  text-align: center
}
.category .box-container .box img {
  width: 100%;
  height: 10rem;
  object-fit: contain
}
.category .box-container .box h3 {
  font-size: 2rem;
  margin-top: 1.5rem;
  color: var(--black);
  text-transform: capitalize
}
.category .box-container .box:hover {
  background-color: var(--black)
}
.category .box-container .box:hover img {
  filter: invert(1)
}
.category .box-container .box:hover h3 {
  color: var(--white)
}
.products .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(25rem,1fr));
  justify-content: center;
  align-items: flex-start;
  gap: 1.13rem
}
.products .box-container .box {
  border: var(--border);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 325px
}
.products .box-container .box img {
  height: auto;
  width: 100%;
  max-width: 350px;
  max-height: 350px;
  object-fit: cover
}
.products .box-container .box .fa-eye,
.products .box-container .box .fa-shopping-cart {
  position: absolute;
  top: 1rem;
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.3rem;
  border: var(--border);
  background-color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  color: var(--black);
  transition: .2s linear;
  text-align: center;
  z-index: 11
}
.products .box-container .box .fa-eye:hover,
.products .box-container .box .fa-shopping-cart:hover {
  background-color: var(--black);
  color: var(--white)
}
.products .box-container .box .fa-eye {
  left: 1rem
}
.products .box-container .box .fa-shopping-cart {
  right: 1rem
}
.products .box-container .box .cat {
  font-size: 1.5rem
}
.products .box-container .box .name {
  font-size: 1.5rem;
  margin: .5rem 0
}
.products .box-container .box .MoreDetails {
  font-size: 1.5rem;
  margin: .5rem 0
}
.products .box-container .box .flex .price {
  font-size: 1.8rem
}
.products .box-container .box .flex .price span {
  font-size: 1.5rem
}
.products .box-container .box .flex .qty,
.sp-cart-btn {
  height: 38px;
  padding: 4px;
  color: var(--black);
  border: var(--border)
}
.sp-cart-btn {
  background-color: var(--yellow);
  color: var(--black);
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color .2s ease
}
.sp-cart-btn:hover {
  background-color: var(--black);
  color: var(--white)
}
.products .box-container .box .flex .fa-edit {
  width: 5rem;
  background-color: var(--yellow);
  color: var(--black);
  cursor: pointer;
  font-size: 1.rem;
  height: 38px;
  border: var(--border)
}
.products .box-container .box .flex .fa-edit:hover {
  background-color: var(--black);
  color: var(--white)
}
.products .box-container .box .fa-times {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--red);
  color: var(--white);
  border: var(--border);
  line-height: 4rem;
  height: 4.3rem;
  width: 4.5rem;
  cursor: pointer;
  font-size: 2rem;
  z-index: 12
}
.products .box-container .box .fa-times:hover {
  background-color: var(--black);
  color: var(--white)
}
.products .box-container .box .sub-total {
  margin-top: 1rem;
  font-size: 1.8rem;
  color: var(--light-color)
}
.products .box-container .box .sub-total span {
  color: var(--red)
}
.products .more-btn {
  margin-top: 1rem;
  text-align: center
}
.products .cart-total {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
  border: var(--border);
  padding: 1rem
}
.products .cart-total p {
  font-size: 2.5rem;
  color: var(--light-color)
}
.products .cart-total p span {
  color: var(--red)
}
.products .cart-total .btn {
  margin-top: 0
}
.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem
}
.about .row .image {
  flex: 1 1 40rem
}
.about .row .image img {
  width: 100%
}
.about .row .content {
  flex: 1 1 40rem;
  text-align: center
}
.about .row .content h3 {
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 1rem
}
.about .row .content p {
  padding: 1rem 0;
  line-height: 2;
  font-size: 1.6rem;
  color: var(--light-color)
}
.steps .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
  gap: 1.5rem;
  align-items: flex-start
}
.steps .box-container .box {
  text-align: center;
  border: var(--border);
  padding: 2rem
}
.steps .box-container .box img {
  height: 15rem;
  width: 100%;
  object-fit: contain;
  margin-bottom: 1rem
}
.steps .box-container .box h3 {
  font-size: 2.3rem;
  margin: 1rem 0;
  color: var(--black);
  text-transform: capitalize
}
.steps .box-container .box p {
  line-height: 2;
  font-size: 1.6rem;
  color: var(--light-color)
}
.reviews {
  height: 580px
}
.reviews .slide {
  margin-bottom: 4rem;
  border: var(--border);
  padding: 2rem;
  text-align: center;
  height: 400px
}
.reviews .slide img {
  height: 10rem;
  width: 10rem;
  border-radius: 50%
}
.reviews .slide p {
  padding: 1.5rem 0;
  line-height: 2;
  font-size: 1.6rem;
  color: var(--light-color)
}
.reviews .slide .stars {
  display: inline-block;
  padding: .5rem 1.5rem;
  border: var(--border)
}
.reviews .slide .stars i {
  font-size: 1.8rem;
  color: var(--yellow)
}
.reviews .slide h3 {
  font-size: 2rem;
  margin-top: 1.5rem;
  text-transform: capitalize;
  color: var(--black)
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 85%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box
}
.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem
}
.contact .row .image {
  flex: 1 1 40rem
}
.contact .row .image img {
  width: 100%
}
.contact .row form {
  border: var(--border);
  flex: 1 1 40rem;
  padding: 2rem;
  text-align: center
}
.contact .row form h3 {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 1rem;
  text-transform: capitalize
}
.contact .row form .box {
  margin: .7rem 0;
  font-size: 1.8rem;
  color: var(--black);
  border: var(--border);
  padding: 1.4rem;
  width: 100%
}
.contact .row form textarea {
  height: 15rem;
  resize: none
}
.contact .row .map {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
  width: 100%;
  color: var(--black);
  border: var(--border)
}
.search-form form {
  display: flex;
  gap: 1.3rem
}
.search-form form .box {
  width: 100%;
  border: var(--border);
  padding: 1.4rem;
  font-size: 1.8rem;
  color: var(--black)
}
.search-form form .fa-search {
  width: 6rem;
  background-color: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 2.5rem
}
.search-form form .fa-search:hover {
  background-color: var(--yellow);
  color: var(--black)
}
.checkout form {
  max-width: 50rem;
  margin: 0 auto;
  border: var(--border);
  padding: 2rem
}
.checkout form h3 {
  font-size: 2.5rem;
  text-transform: capitalize;
  padding: 2rem 0;
  color: var(--black)
}
.checkout form .cart-items {
  background-color: var(--black);
  padding: 2rem;
  padding-top: 0
}
.checkout form .cart-items h3 {
  color: var(--white)
}
.checkout form .cart-items p {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  margin: 1rem 0;
  line-height: 1.5;
  font-size: 2rem
}
.checkout form .cart-items p .name {
  color: var(--light-color)
}
.checkout form .cart-items p .price {
  color: var(--yellow)
}
.checkout form .cart-items .grand-total {
  background-color: var(--white);
  padding: .5rem 1.5rem
}
.checkout form .cart-items .grand-total .price {
  color: var(--red)
}
.checkout form .user-info p {
  font-size: 2rem;
  line-height: 1.5;
  padding: 1rem 0
}
.checkout form .user-info p i {
  color: var(--light-color);
  margin-right: 1rem
}
.checkout form .user-info p span {
  color: var(--black)
}
.checkout form .user-info .box {
  width: 100%;
  border: var(--border);
  padding: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem
}
.orders .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start
}
.orders .box-container .box {
  padding: 1rem 2rem;
  border: var(--border);
  flex: 1 1 40rem
}
.orders .box-container .box p {
  line-height: 1.5;
  margin: 1rem 0;
  font-size: 2rem;
  color: var(--light-color)
}
.orders .box-container .box p span {
  color: var(--black)
}
.form-container form {
  border: var(--border);
  margin: 0 auto;
  max-width: 50rem;
  padding: 2rem;
  text-align: center
}
.form-container form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 1rem
}
.form-container form .box {
  margin: .7rem 0;
  width: 100%;
  border: var(--border);
  padding: 1.4rem;
  font-size: 1.8rem;
  color: var(--black)
}
.form-container form p {
  margin-top: 1.5rem;
  font-size: 2rem;
  color: var(--light-color)
}
.form-container form p a {
  color: var(--black)
}
.form-container form p a:hover {
  text-decoration: underline
}
.user-details .user {
  max-width: 60rem;
  margin: 0 auto;
  border: var(--border);
  padding: 2rem
}
.user-details .user img {
  width: 100%;
  height: 20rem;
  object-fit: contain;
  margin-bottom: 1rem
}
.user-details .user p {
  padding: 1rem 0;
  line-height: 1.5;
  font-size: 2rem
}
.user-details .user p span {
  color: var(--black)
}
.user-details .user p i {
  margin-right: 1rem;
  color: var(--light-color)
}
.user-details .user .address {
  margin-top: 1rem
}
.quick-view form {
  max-width: 40rem;
  padding: 2rem;
  border: var(--border);
  position: relative;
  margin: 0 auto
}
.quick-view form img {
  height: auto;
  width: 100%;
  object-fit: contain;
  margin-bottom: 1rem
}
.quick-view form .cat {
  font-size: 1.8rem;
  color: var(--light-color)
}
.quick-view form .cat:hover {
  color: var(--black);
  text-decoration: underline
}
.quick-view form .name {
  font-size: 2rem;
  margin: .5rem 0
}
.quick-view form .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
  flex-direction: row
}
.quick-view form .flex .price {
  font-size: 2.5rem;
  color: var(--black)
}
.quick-view form .flex .price span {
  font-size: 2rem;
  color: var(--light-color)
}
.quick-view form .flex .qty {
  border: var(--border);
  padding: 1rem;
  font-size: 1.8rem;
  color: var(--black)
}
.quick-view form .cart-btn {
  width: 50%;
  padding: 1rem 3rem;
  text-align: center;
  border: var(--border);
  font-size: 2rem;
  color: var(--black);
  cursor: pointer;
  text-transform: capitalize;
  background: 0 0;
  margin-top: 1rem
}
.quick-view form .cart-btn:hover {
  background-color: var(--black);
  color: var(--white)
}
.footer .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(27rem,1fr));
  gap: 1.5rem;
  align-items: flex-start
}
.footer .grid .box {
  border: var(--border);
  padding: 2rem;
  text-align: center;
  height: 353px
}

.footer .grid .box img {
  height: 6rem;
  width: 100%;
  object-fit: contain;
  margin-bottom: .5rem
}
.footer .grid .box h3 {
  margin: 1rem 0;
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize
}
.footer .grid .box a,
.footer .grid .box p {
  display: block;
  font-size: 1.3rem;
  color: var(--light-color);
  line-height: 1.8
}
.footer .grid .box a:hover {
  text-decoration: underline
}
.credit {
  padding: 3rem;
  text-align: center;
  background-color: #111;
  color: var(--white);
  font-size: 2rem;
  text-transform: capitalize
}
.credit span {
  color: var(--yellow)
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000000;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center
}
.loader img {
  height: 25rem
}
.notice {
  font-family: 'Fira Sans';
  background-color: var(--white);
  text-align: center;
  width: fit-content;
  font-size: 2rem;
  text-transform: capitalize;
  color: var(--red);
  box-shadow: var(--box-shadow);
  margin: 2px auto;
  z-index: 999
}
.empty {
  border: var(--border);
  border-radius: .5rem;
  background-color: var(--white);
  padding: 1.5rem;
  text-align: center;
  width: fit-content;
  font-size: 2rem;
  text-transform: capitalize;
  color: var(--red);
  box-shadow: var(--box-shadow);
  margin: 0 auto
}
.pagination {
  margin-top: 20px;
  text-align: center;
  justify-content: center
}
.pagination a {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  color: #333;
  background-color: var(--yellow);
  border: 1px solid #222;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color .3s
}
.pagination a:hover {
  background-color: #e9ecef
}
.pagination .active {
  background-color: red;
  color: #fff
}
.pagination .next,
.pagination .prev {
  font-weight: 700
}
.next-prev-btn {
  margin-top: 20px
}
.next-prev-btn a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color .3s ease
}
.next-prev-btn a:hover {
  background-color: #555
}
.fa-home:before,
.fa-search:before,
.fa-shopping-cart:before,
.fa-user:before {
  color: #fed330;
  transition: color .3s ease
}
.fa-home:hover:before,
.fa-search:hover:before,
.fa-shopping-cart:hover:before,
.fa-user:hover:before {
  color: #fff
}
.fa-bars:before {
  color: #fff;
  margin-left: auto;
  margin-left: 1.5rem
}
.icons i {
  font-size: 24px;
  margin: 10px
}
.icons {
  display: flex;
  flex-direction: column;
  align-items: center
}
.icon-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center
}
.loginame {
  font-size: 9px;
  text-align: center;
  white-space: nowrap
}
.login-link {
  color: #fff;
  font-size: 20px
}
.mobile-home {
  display: none
}
@media (max-width:768px) {
  .icons {
    flex-direction: column
  }
  .icon-row {
    gap: 10px
  }
  .login-link {
    font-size: 14px;
    color: #fff
  }
  .mobile-home {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    margin-right: 10px
  }
}
.full-width-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
  min-height: 21em;
  width: 100%
}
.carousel-container {
  overflow: hidden;
  width: auto;
  max-width: 1200px;
  position: relative;
  margin: 0 auto 0
}
.my-4 {
  float: none;
  text-align: center
}
.carousel-images {
  display: flex;
  transition: transform .5s ease
}
.carousel-image:hover {
  opacity: .7
}
.carousel-image.enlarged {
  max-width: 100%;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 9999
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  z-index: 3;
  display: none
}
.validity {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: #777
}
button1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: 0 0;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1
}
.prev {
  left: 0
}
.next {
  right: 0
}
.carousel-image img {
  width: 100%!important;
  height: auto!important;
  max-width: 168px!important
}
.carousel-image {
  flex: 0 0 auto;
  width: 168px;
  margin-right: 10px;
  cursor: pointer
}
.more-specials {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 168px;
  background-color: #fff;
  color: red;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700
}
.more-specials:hover {
  color: #00f
}
.swiper-wrapper1 {
  position: relative;
  width: 100%;
  height: 75%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box
}
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,.2);
  z-index: 100
}
.cookie-message {
  margin-bottom: 10px
}
#accept-cookies {
  background-color: #4caf50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color .3s ease
}
#accept-cookies:hover {
  background-color: #45a049
}
.privacy-link {
  color: #fff;
  text-decoration: underline
}
.privacy-link:hover {
  color: #bbb
}
body {
  font-family: Arial,sans-serif;
  font-size: 16px;
  line-height: 1.5
}
h1 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px
}
.ad-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  background-color: #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,.1);
  background-image: url('../images/wood_texture.jpg');
  position: relative
}
.ad {
  position: relative;
  width: calc(25% - 10px);
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,.1)
}
.ad img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer
}
.lightbox-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.7);
  z-index: 9999
}
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  cursor: pointer
}
.lightbox-image {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
}
.pin-icon {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px!important;
  height: auto!important
}
.sale-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: auto;
  z-index: 10
}
.dropdown {
  display: inline-block
}
.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: #222;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  z-index: 1;
  height: auto;
  transition: visibility 0s,opacity .5s
}
.dropdown-content a {
  color: #333;
  padding: 2px 2px;
  font-size: 2.5rem;
  display: block;
  text-decoration: none;
  text-transform: lowercase;
  width: 160px;
}
.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  background-color: #3b3b3b
}
.search-form form .clear-search-btn {
  width: 5rem;
  background-color: var(--black);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  margin-left: 1rem;
  font-size: 2.5rem
}
.search-form form .clear-search-btn:hover {
  background-color: var(--yellow);
  color: var(--black)
}
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 10px
}
.social-buttons button {
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  color: #fff
}
.facebook {
  background-color: #3b5998
}
.twitter {
  background-color: #55acee
}
.linkedin {
  background-color: #0077b5
}
.whatsapp {
  background-color: #25d366
}
.products .box-container .box .note {
  position: absolute;
  top: 240px;
  right: 10px;
  background-color: rgba(250,6,6,.7);
  color: #fff;
  padding: 5px;
  border-radius: 1px;
  z-index: 1
}
.quick-view form .note {
  position: absolute;
  top: 290px;
  right: 10px;
  background-color: rgba(250,6,6,.7);
  color: #fff;
  float: right;
  padding: 5px;
  border-radius: 1px;
  z-index: 1
}
@media (max-width:360px) {
  .full-width-section {
    background-color: transparent
  }
  .hero .slide .content h3 {
    font-size: 3rem
  }
  html {
    font-size: 50%
  }
  .title {
    font-size: 3rem
  }
  .header .flex .logo {
    font-size: 2rem
  }
  .hero .slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap-reverse;
    gap: 2rem;
    margin-bottom: 4rem;
    margin-top: 12rem
  }
  .hero .slide .content h3 {
    font-size: 5rem;
    margin-top: auto
  }
  .hero .slide .image img {
    width: 100%;
    height: 250px;
    margin-top: -100px
  }
  .products .box-container {
    display: grid;
    grid-template-columns: 1fr
  }
  .heading h3 {
    font-size: 3.5rem
  }
  .products .cart-total {
    padding: 1.5rem;
    justify-content: center
  }
  .flex-btn {
    flex-flow: column;
    gap: 0
  }
  .dropdown {
    display: inline-block;
    z-index: 1;
    margin-top: -20px
  }
  .dropdown-content a {
    color: #333;
    padding: 2px 2px;
    font-size: 2.5rem;
    display: inline-block;
    text-decoration: none;
    text-transform: lowercase
  }
  .dropdown:hover .dropdown-content {
    display: inline-block;
    position: relative
  }
  .dropdown-content {
    margin-top: 0;
    left: 30px;
    text-transform: lowercase
  }
  .swiper-slide {
    margin: 100px 0 10px 0
  }
}
@media (min-width:360px) and (max-width:762px) {
  .hero {
    height: auto;
    padding: 2rem
  }
  .hero .slide {
    align-items: center;
    text-align: center
  }
  .hero .slide .image img {
    flex: 1 1 100%;
    width: 70%;
    margin: 0 auto
  }
  .hero .slide .content h3 {
    font-size: 4rem
  }
  .dropdown:hover .dropdown-content {
    top: 0;
    left: 85px;
    visibility: visible;
    opacity: 1;
    background-color: #3b3b3b
  }
  #menu-btn {
    display: inline-block
  }
  .header .flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    flex-wrap: wrap
  }
  .header .flex .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    border-top: var(--border);
    border-bottom: var(--border);
    background-color: #222;
    transition: .2s linear;
    clip-path: polygon(0 0,100% 0,100% 0,0 0)
  }
  .header .flex .navbar a {
    display: block;
    margin: 2rem
  }
  .header .flex .navbar.active {
    clip-path: polygon(0 0,100% 0,100% 100%,0 100%)
  }
}
@media (max-width:768px) {
  .full-width-section {
    padding: 1rem 0
  }
  .logo-phone-number {
    font-size: 12px;
    color: #fed330;
    margin-top: 5px;
    text-align: center
  }
  .ad {
    width: calc(100% - 10px)
  }
  .lightbox-image {
    max-width: 80%;
    max-height: 80%
  }
  .pin-icon {
    width: 10px;
    top: 5px
  }
  .swiper-pagination {
    display: none!important
  }
  .footer .grid .box {
    border: var(--border);
    padding: 3rem;
    text-align: center;
    height: 266px
  }
}
@-webkit-keyframes fadeLeft {
  0% {
    -webkit-transform: translateX(-5rem);
    transform: translateX(-5rem);
    opacity: 0
  }
}
@keyframes fadeLeft {
  0% {
    -webkit-transform: translateX(-5rem);
    transform: translateX(-5rem);
    opacity: 0
  }
}
@-webkit-keyframes fadeUp {
  0% {
    -webkit-transform: scale(.5);
    transform: scale(.5);
    opacity: 0
  }
}
@keyframes fadeUp {
  0% {
    -webkit-transform: scale(.5);
    transform: scale(.5);
    opacity: 0
  }
}
.home-container {
  background: url('../images/home-bg.jpg') no-repeat;
  background-size: cover;
  background-position: center
}
.home-container .home {
  position: relative
}
.home-container .home .slides-container .slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
  display: none
}
.home-container .home .slides-container .slide.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}
.home-container .home .slides-container .slide .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
  -webkit-animation: fadeLeft .4s linear .4s backwards;
  animation: fadeLeft .4s linear .4s backwards
}
.home-container .home .slides-container .slide .content span {
  color: #666;
  font-size: 2.5rem
}
.home-container .home .slides-container .slide .content h3 {
  font-size: 6rem;
  color: #222;
  padding: .5rem 0
}
.home-container .home .slides-container .slide .image {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
  margin: 3rem 0
}
.home-container .home .slides-container .slide .image img {
  height: 50rem;
  object-fit: contain;
  width: 100%;
  -webkit-animation: fadeUp .4s linear;
  animation: fadeUp .4s linear
}
.home-container .home #next-slide,
.home-container .home #prev-slide {
  position: absolute;
  bottom: 2rem;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  -webkit-box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  text-align: center;
  background: #fff;
  font-size: 3rem;
  color: #222;
  cursor: pointer
}
.home-container .home #next-slide:hover,
.home-container .home #prev-slide:hover {
  background: #bac34e;
  color: #fff
}
.home-container .home #prev-slide {
  left: auto;
  right: 8rem
}
.home-container .home #next-slide {
  right: 2rem
}
@media (max-width:450px) {
  html {
    font-size: 50%
  }
  .home-container .home .slides-container .slide .content h3 {
    font-size: 5rem
  }
  .home-container .home .slides-container .slide .image img {
    height: 30rem
  }
}
.order .icons-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem,1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
  gap: 1.5rem;
  margin-bottom: 2rem
}
.order .icons-container .icons {
  border-radius: .5rem;
  padding: 2rem;
  text-align: center;
  background: #f3f3f3
}
.order .icons-container .icons img {
  height: 10rem
}
.order .icons-container .icons h3 {
  font-size: 2rem;
  color: #130f40;
  margin-top: .5rem
}
.banner .row-banner {
  background: url(../images/row-banner.png) no-repeat;
  height: 40rem;
  background-size: cover;
  background-position: center;
  position: relative
}
.banner .row-banner .content {
  position: absolute;
  top: 50%;
  left: 7%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}
.banner .row-banner .content span {
  font-family: Satisfy,cursive;
  font-size: 4rem;
  color: #27ae60;
  color: #130f40
}
.banner .row-banner .content h3 {
  font-size: 6rem;
  color: red;
  text-transform: uppercase
}
.banner .row-banner .content p {
  font-size: 2rem;
  padding-bottom: 1rem
}
.banner .grid-banner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem,1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
  gap: 1.5rem
}
.banner .grid-banner .grid {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 45rem
}
.banner .grid-banner .grid img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform .3s ease-in-out
}
.banner .grid-banner .grid:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2)
}
.banner .grid-banner .grid .content {
  position: absolute;
  top: 2rem;
  padding: 0 2rem
}
.banner .grid-banner .grid .content.center {
  text-align: center;
  width: 100%
}
.banner .grid-banner .grid .content.center span {
  color: #666
}
.banner .grid-banner .grid .content.center h3 {
  color: #130f40
}
.banner .grid-banner .grid .content span {
  font-size: 2.5rem;
  color: #fff
}
.banner .grid-banner .grid .content h3 {
  font-size: 3rem;
  color: #fff;
  padding-top: .5rem
}
.menu .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem,1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
  gap: 1.5rem
}
.menu .box-container .box {
  border-radius: .5rem;
  background: #f3f3f3;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem
}
.menu .box-container .box:hover {
  background: #130f40
}
.menu .box-container .box:hover .content h3 {
  color: #fff
}
.menu .box-container .box img {
  height: 10rem
}
.menu .box-container .box .content h3 {
  font-size: 2rem;
  color: #130f40;
  padding-bottom: .5rem
}
.menu .box-container .box .content .price {
  font-size: 1.8rem;
  color: #27ae60
}
.floating {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100
}
.float-button {
  margin-top: 16px
}

.floating:hover {
    background-color: #1ebe5d;
}

.float-button {
    pointer-events: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
  pointer-events: auto;
}


.top-bar {
  position: sticky;
  top: 0;
  z-index: 50; /* Higher than .header's z-index:49 */
  background: #fff;
  padding: 0 20px;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: right;
  align-items: center;
  height: 45px;
  text-align: center;
  flex-wrap: wrap; /* important */
}
.top-contact-info {
  float: right;
}

.top-contact-info a {
  color: #000;
  margin-left: 15px;
  text-decoration: none;
}

@media (min-width: 360px) and (max-width: 762px) {
  .top-bar {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .header {
    position: sticky;
    top: 45px; /* height of .top-bar */
    z-index: 51; /* above .top-bar */
  }

 
}


