:root {
    color-scheme: only light;
  }

body{
    margin: 0;
    font-family: Poppins;
    width: 100%;
    height: auto;
    overflow-x: hidden;
    background-color: #000000;
    max-width: 100vw;
}
.container{
    width: 900px;
    margin: auto;
    max-width: 90vw;
    text-align: center;
    padding-top: 10px;
    transition: transform .5s;
    overflow-x: hidden;
}
.heads{
    position: relative;
    color: goldenrod;
}
.logo{
    position: relative;
    width: 70px;
    height: 70px;
}
.main{
    position: relative;
    min-height: 70vh;
}
.icon-cart svg{
    width: 30px;
    margin-right: 11px;
    color: #cccccc;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.back{
  position: relative;
  width: 100%;
  margin-top: 3px;
  display: flex;
  justify-content: flex-start;
}

.back a{
  position: relative;
  left: 0;
  padding: 3px 9px;
  color: #ffffff;
  background-color: goldenrod;
  text-decoration: none;
  border-radius: 7px;
}

.categories{
  position: relative;
  width: 100%;
  height: auto;
  padding: 3px;
  overflow-x: scroll;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.categories .cats{
  position: relative;
  width: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px 7px;
  text-decoration: none;
}

.categories .cats img{
  position: relative;
  width: 45px;
  border-radius: 50%;
  margin: 0 auto;
  border: 1px solid goldenrod;
}

.categories .cats span{
  position: relative;
  width: 100%;
  font-size: 0.7em;
  text-align: center;
  color: #ffffff;
  word-wrap: normal;
}

.icon-cart{
    position: relative;
}
.icon-cart span{
    position: absolute;
    background-color: red;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    top: 50%;
    right: -5px;
}
.title{
    display: flex;
    flex-direction: row;
    color: goldenrod;
}
.title h4{
    font-size: 1.1em;
    margin-left: 31px;
}
.listProduct .item .outer_img{
    position: relative;
    width: 100%;
    height: 150px;
    margin-bottom: 7px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }
.listProduct{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%; 
    overflow-x: hidden;
}
.heads{
  position: relative;
  /* width: 200%; */
  grid-column: 1 / 5;
  grid-auto-flow: row dense;
  color: goldenrod;
  margin-bottom: 7px;
}
.listProduct .item{
  position: relative;
    background-color: #EEEEEE;
    padding: 20px;
    border-radius: 20px;
    filter: drop-shadow(0 4px 3px #0009);
    min-width: 0; 
    box-sizing: border-box;
}
.listProduct .item h2{
    font-weight: 500;
    font-size: large;
}
.listProduct .item .price{
    font-size: 0.9em;
    font-weight: 500;
}

.tag{
    position: absolute;
    width: 70px;
    height: auto;
    top: -2px;
    left: -2px;
    border-top-left-radius: 20px;
}

.listProduct .item .actie{
    text-decoration: line-through;
}
.listProduct .item button{
    background-color: rgb(7, 177, 7);
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    margin-top: 10px;
    border-radius: 20px;
}

.listProduct .item input{
    position: relative;
    width: 90%;
    margin: 1px auto;
    border-radius: 7px;
    padding: 2px 3px;
    border: 1px solid #cccccc;
}

/* cart */
.cartTab{
    width: 400px;
    background-color: #353432;
    color: #eee;
    position: fixed;
    top: 0;
    right: -400px;
    bottom: 0;
    display: grid;
    grid-template-rows: 70px 1fr 70px;
    transition: .5s;
    z-index: 11111;
}

@media screen and (max-width: 400px) {
    .cartTab{
        width: 100%;
        background-color: #353432;
        color: #eee;
        position: fixed;
        top: 0;
        right: -100%;
    }
}
body.showCart .cartTab{
    right: 0;
}
body.showCart .container{
    transform: translateX(-250px);
}
.cartTab h1{
    padding: 20px;
    margin: 0;
    font-weight: 300;
}
.cartTab .btn{
    display: grid;
    grid-template-columns: 26% 26% 48% 1fr;
}
.cartTab button{
    background-color: #E8BC0E;
    border: none;
    font-family: Poppins;
    font-weight: 500;
    cursor: pointer;
}
.cartTab .close{
    background-color: #eee;
}
.cartTab .total{
    background-color: rgb(7, 177, 7);
    color: #ffffff;
    text-align: center;
    padding-top: 11px;
    font-weight: 600;
  }
.listCart .item img{
    width: 100%;
}
.listCart .item{
    display: grid;
    grid-template-columns: 70px 110px 70px 3fr;
    grid-template-rows: 90px 30px;
    gap: 10px;
    text-align: center;
    align-items: center;
}
.listCart .quantity{
    display: flex;
    flex-direction: row;
}
.listCart .quantity span{
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #eee;
    border-radius: 50%;
    color: #555;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.listCart .quantity span:nth-child(2){
    background-color: transparent;
    color: #eee;
    cursor: auto;
}
.listCart .item:nth-child(even){
    background-color: #eee1;
}
.listCart{
    overflow: auto;
}
.listCart::-webkit-scrollbar{
    width: 0;
}
@media only screen and (max-width: 900px) {
    .listProduct{
        grid-template-columns: repeat(3, 1fr);
    }
    .heads{
      position: relative;
      /* width: 200%; */
      grid-column: 1 / 4;
      grid-auto-flow: row dense;
      color: goldenrod;
      margin-bottom: 7px;
    }
    .listProduct .item .outer_img{
    position: relative;
    width: 100%;
    height: 130px;
    margin-bottom: 7px;
  }
  }
  
  @media only screen and (max-width: 700px) {
    .listProduct{
        grid-template-columns: repeat(2, 1fr);
    }
    .heads{
      position: relative;
      /* width: 200%; */
      grid-column: 1 / 3;
      grid-auto-flow: row dense;
      color: goldenrod;
      margin-bottom: 7px;
    }
    .listProduct .item .outer_img{
    position: relative;
    width: 100%;
    height: 150px;
    margin-bottom: 7px;
  }
  }
  
  
  /* mobile */
  @media only screen and (max-width: 600px) {
    .listProduct{
        grid-template-columns: repeat(2, 1fr);
    }
    .listProduct .item .outer_img{
    position: relative;
    width: 100%;
    height: 130px;
    margin-bottom: 7px;
  }
  }







.radio-button-container {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 11px;
    margin-top: 7px;
  }
  
  .radio-button {
    display: inline-block;
    position: relative;
    cursor: pointer;
  }
  
  .radio-button__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .radio-button__label {
    display: inline-block;
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .radio-button__custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid #555;
    transition: all 0.3s ease;
  }
  
  .radio-button__input:checked + .radio-button__label .radio-button__custom {
    background-color: rgb(7, 177, 7);
    border-color: transparent;
    transform: scale(0.9);
    box-shadow: 0 0 20px rgba(7, 177, 7, 0.267);
  }
  
  .radio-button__input:checked + .radio-button__label {
    color: rgb(7, 177, 7);
  }
  
  .radio-button__label:hover .radio-button__custom {
    transform: scale(1.2);
    border-color: rgb(7, 177, 7);
    box-shadow: 0 0 20px rgba(7, 177, 7, 0.267);
  }
  
  
  
  
  
  
  












.searchbar {
    font-size: 14px;
    font-family: arial, sans-serif;
    color: #202124;
    display: flex;
    z-index: 3;
    height: 44px;
    background: white;
    border: 1px solid #dfe1e5;
    box-shadow: none;
    border-radius: 24px;
    margin: 0 auto 17px auto;
    width: auto;
    max-width: 324px;
    box-shadow: 0 1px 6px rgb(32 33 36 / 28%)
  }
  
  .searchbar:hover {
    border-color: rgba(223,225,229,0);
  }
  
  .searchbar-wrapper {
    flex: 1;
    display: flex;
    padding: 5px 8px 0 14px;
  }
  
  .searchbar-left {
    font-size: 14px;
    font-family: arial, sans-serif;
    color: #202124;
    display: flex;
    align-items: center;
    padding-right: 13px;
    margin-top: -5px;
  }
  
  .search-icon-wrapper {
    height: 20px;
  }
  
  .search-icon {
    margin-top: 3px;
    color: #9aa0a6;
    height: 20px;
    line-height: 20px;
    width: 20px;
  }
  
  .searchbar-icon {
    display: inline-block;
    fill: currentColor;
    height: 24px;
    line-height: 24px;
    position: relative;
    width: 24px;
  }
  
  .searchbar-center {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
  }
  
  .searchbar-input-spacer {
    color: transparent;
    flex: 100%;
    white-space: pre;
    height: 34px;
    font-size: 16px;
  }
  
  .searchbar-input {
    background-color: transparent;
    border: none;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, .87);
    word-wrap: break-word;
    outline: none;
    display: flex;
    flex: 100%;
    margin-top: -37px;
    height: 34px;
    font-size: 16px;
    max-width: 100%;
    width: 100%;
  }
  
  .searchbar-clear-icon {
    margin-right: 12px
  }
















  /* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 11; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
    z-index: 100000000;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 700px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 11px;
  }
  
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  /* The Close Button */
  .modal-header .close {
      position: absolute;
    color: #222222;
    float: right;
    font-size: 28px;
    font-weight: bold;
    right: 10px;
    top: 10px;
  }
  
  .modal-header .close:hover,
  .modal-header .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-body {padding: 2px 16px;}
  
  .modal-header h2{
      width: 100%;
      text-align: center;
  }
  
  @media screen and (max-width: 750px) {
      .modal-content{
          width: 90%
      }
  }
  
  
  
  
  
  
  
  
  .date-container{
      position: relative;
      width: 100%;
      display: flex;
      justify-content: space-around;
      flex-direction: row;
      margin-bottom: 11px;
  }
  
  .date-col{
      position: relative;
      width: 49%
  }
  
  
  
  
  
  .coolinput {
      position: relative;
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 5px auto;
  }
  
  .coolinput label {
    font-size: 0.95rem;
    color: #222222;
    font-weight: 700;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    width: fit-content;
    background-color: #ffffff;
    z-index: 11;
  }
  
  .coolinput .input {
      position: relative;
    padding: 11px 10px;
    font-size: 0.95rem;
    border: 1px #cccccc solid;
    border-radius: 5px;
    width: 100%;
  }
  
  .coolinput .input:focus {
    outline: none;
  }
  
  @media (max-width: 640px) {
      .date-col{
      position: relative;
      width: 40%
  }
  
  input[type="date"], input[type="time"]
  {
      appearance: textfield;
       -webkit-appearance: textfield;
      -moz-appearance: textfield;
      min-height: 1.2em; 
  }
  }
  
  
  .submit{
      position: relative;
      width: 50%;
      background-color: #353432;
      color: #eee;
      border: none;
      padding: 11px 21px;
      margin: 7px 25%;
      border-radius: 20px;
      cursor: pointer;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  ul {
      margin: 0px;
      padding: 0px;
  }
  .footer-section {
    background: #151414;
    position: relative;
    margin-top: 21px;
  }
  .row{
      position: relative;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      margin-bottom: 11px;
  }
  .footer-cta {
    border-bottom: 1px solid #373636;
  }
  .single-cta i {
    color: goldenrod;
    font-size: 30px;
    margin-top: 8px;
  }
  .cta-text {
    padding-left: 15px;
    display: inline-block;
  }
  .cta-text h4 {
    color: goldenrod;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .cta-text span {
    color: #ffffff;
    font-size: 15px;
  }
  .footer-content {
    position: relative;
    z-index: 2;
    margin-top: 7px;
  }
  .footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
  }
  .footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
        color: #7e7e7e;
    line-height: 28px;
  }
  .footer-social-icon span {
    color: goldenrod;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
  }
  .footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
  }
  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
  }
  .facebook-bg{
    background: #3B5998;
  }
  .tiktok-bg{
    background: #000000;
  }
  .whatsapp-bg{
    background: green;
  }
  .footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
  }
  .footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #ff5e14;
  }
  .footer-widget ul li {
    float: left;
    width: 50%;
    margin-bottom: 12px;
  }
  .footer-widget ul li a:hover{
    color: #ff5e14;
  }
  .footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
  }
  .copyright-area{
    background: #202020;
    padding: 7px 0;
  }
  .copyright-text p {
    margin: 0;
    font-size: 17px;
    color: purple;
  }
  .copyright-text p a{
    color: #ff5e14;
  }
  .footer-menu li {
    display: inline-block;
    margin-left: 20px;
  }
  .footer-menu li:hover a{
    color: #ff5e14;
  }
  .footer-menu li a {
    font-size: 14px;
    color: #878787;
  }
  
  @media screen and (max-width: 800px) {
      .row{
          flex-direction: column;
      }
  }
  
  
  
  
  .features{
    position: relative;
    text-align: left;
    margin-top: 7px;
  }

h5{
    color: #ffffff;
}

.close-modal-btn {
    position: fixed;
    top: 10px;
    left: 20px;
    background-color: #E8BC0E;
    color: #000000;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10000000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    font-family: Poppins;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background-color: goldenrod;
    transform: scale(1.05);
}

.close-modal-btn:active {
    transform: scale(0.95);
}

/* Improved close button for image modal - better mobile support */
#imageModal .close-image-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1;
    padding: 5px 15px;
    border-radius: 5px;
    z-index: 9999999999999;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.3s ease;
}

#imageModal .close-image-modal:hover,
#imageModal .close-image-modal:active {
    background-color: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Increase touch target size on mobile */
@media screen and (max-width: 768px) {
    #imageModal .close-image-modal {
        top: 10px;
        right: 10px;
        font-size: 3em;
        padding: 8px 18px;
        min-width: 60px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.slider {
    position: relative;
    max-width: 500px;
    height: auto;
    margin: 0px auto 7px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #ffffff;
    z-index: 1;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 7px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.7);
}