

body {
  margin: 0;
  font-family: 'Karla', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  line-height: 1.6;
  color: #333;
}

h1, h2 ,h3,h4,h5 {
  font-family: 'Spectral', serif;
  line-height: 1.3;
  margin-top: 0;
}
img[src=""] {
  display: none;
}

#header {
  display: block;
  height: auto;
  width: 100%;
  background-color: #2b2b2b;
}

a {
  color: #fff;
  text-decoration: none;
  text-shadow: 1px 1px 0 rgb(0 0 0 / 13%);
}

.header-container {
  display: flex;
  justify-content: space-between;
  padding: 0 2%;
  align-items: center;
}

.header-logo a {
  display: block;
  max-width: min(350px, 80vw);
  height: auto;
  margin: auto;
  padding: 1.5% 0;
}

.header-logo a img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
}

.header-links {
  position: absolute;
  right: 2%;
  top: 0;
  display: inline-block;
  width: auto;
  margin: 0 auto;
  padding: 0;
  border-bottom: #d9d9d9 solid 2px;
}

.header-links ul {
  display: flex;
  width: auto;
  flex-direction: row;
  justify-content: flex-end;
  flex-grow: 1;
  margin: 0;
  padding: 1% 0;
}

.header-links ul li {
  list-style: none;
  padding: 0 0.2rem;
  border-right: solid 1px #d9d9d9;
  font-size: 14px;
}

.header-links ul li:hover {
  text-decoration: underline solid 2px;
  text-decoration-color: #ff6a00;
  transition: ease-in 0.5s;
  -webkit-transition: ease-in 0.5s;
  -moz-transition: ease-in 0.5s;
  -ms-transition: ease-in 0.5s;
  -o-transition: ease-in 0.5s;
}

.header-links ul li:last-child {
  border-right: none;
}

.header-content-links {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn {
  background: #ff6a00;
  background: linear-gradient(
    180deg,
    rgba(255, 143, 51, 1) 0%,
    rgba(255, 106, 0, 1) 35%,
    rgba(255, 106, 0, 1) 100%
  );
  border-radius: 5px;
  padding: 0.6rem 1rem;
  width: auto;
  margin: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  -webkit-box-shadow: 0px 10px 13px -7px #00000085,
    12px 5px 15px 5px rgb(0 0 0 / 0%);
  box-shadow: 0px 10px 13px -7px #00000085, 12px 5px 15px 5px rgb(0 0 0 / 0%);
  border: white solid 2px;
  transition: all 0.3s ease;
}

.header-content-links div:hover {
  background: #ff8f33;
  transform: translateY(-2px);
  box-shadow: 0px 12px 15px -5px #00000099;
  transition: all 0.3s ease;
  padding: 0.6rem 1rem;
  border: white solid 2px;
}

.header-content-links div:hover > i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.header-content-links i, .usp-container i, .btn i {
  color: #fff;
  font-size: 1.1rem;
}


/* menu code start */
.menu-container {
  padding: 0 2%;
  float: left;
  width: 96%;
  height: auto;
  border: 2px solid #d9d9d9;
  border-width: 2px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #2b2b2b;
  background: linear-gradient(
    180deg,
    rgba(43, 43, 43, 1) 0%,
    rgba(43, 43, 43, 1) 35%,
    rgba(60, 60, 60, 1) 100%
  );
  margin-bottom: 0;
}

#menu ul {
  margin: 0;
  padding: 0;
}

#menu .main-menu {
  display: none;
}

#tm:checked + .main-menu {
  display: block;
}

#menu input[type="checkbox"],
#menu ul span.drop-icon {
  display: none;
}

#menu li,
#toggle-menu {
  border-width: 0 0 1px;
}

#menu .sub-menu {
  background-color: #2b2b2b;
  border-width: 1px 1px 0;
  margin: 0 1em;
}

#menu .sub-menu li:last-child {
  border-width: 0;
}

#menu li,
#toggle-menu,
#menu a {
  position: relative;
  display: block;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.125);
}

#menu, #toggle-menu , #footer {
  background: #2b2b2b;
  background: linear-gradient(
    180deg,
    rgba(43, 43, 43, 1) 0%,
    rgba(43, 43, 43, 1) 35%,
    rgba(60, 60, 60, 1) 100%
  );
}

#toggle-menu,
#menu a {
  padding: 1em 0.5em;
  background: transparent;
  min-height: 44px;
  display: flex;
  align-items: center;
}

#menu a {
  transition: all 0.125s ease-in-out;
  -webkit-transition: all 0.125s ease-in-out;
font-size: 0.85em;}

#menu a:hover {
  background-color: #ff6a00;
  color: #fff;
  text-decoration: underline;
}

#menu .sub-menu {
  display: none;
}

#menu input[type="checkbox"]:checked + .sub-menu {
  display: block;
}

#menu .sub-menu a:hover {
  color: #fff;
  text-decoration: underline;
}

#toggle-menu .drop-icon,
#menu li label.drop-icon {
  position: absolute;
  right: 1.5em;
  top: 1em;
}

#menu label.drop-icon,
#toggle-menu span.drop-icon {
  border-radius: 50%;
  width: 1em;
  height: 1em;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.125);
  text-shadow: 0 0 0 transparent;
  color: #fff;
}

#menu .drop-icon {
  line-height: 1;
}



#menu .sub-menu a {
  color: #fff;
}

/* menu code end */

.usp-container {
  padding: 1.5rem 2%;
  width: 96%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 0.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.usp-container div {
  border: solid 1px #d9d9d9;
  margin: 0.25rem;
  text-align: center;
  padding: clamp(0.5rem, 2vw, 1rem);
  color: #fff;
  background: #2b2b2b;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  min-width: 200px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  flex-basis: auto;
  align-items: center;
  flex-grow: 1;
  align-self: stretch;
  transition: transform 0.3s ease;
}

.usp-container div:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.usp-container p {
  margin: 0;
}


.product-title {
  width: 96%;
  padding: 2rem 2% 1rem;
  display: flex;
}

.product-title h1 {
  color: #2b2b2b;
  margin: 0;
  padding: 1rem 0;
  justify-content: center;
  align-items: center;
  flex-basis: auto;
  flex-grow: 1;
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: -0.5px;
  font-weight: 700;
}

.product-container {
  width: 96%;
  padding: 0 2%;
  max-width: 1400px;
  margin: 0 auto;
}

.product-detail-wrapper {
  display: grid;
  grid-template-columns: 2fr 3fr;
  column-gap: 2%;
  align-content: center;
  justify-items: center;
  justify-content: center;
  margin: 2rem 0;
}

/* image gallery */

.image-gallery {
  display: flex;
  flex-flow: column wrap;
  flex-wrap: wrap;
  flex-direction: row;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.image-gallery section {
  display: none;
  width: 100%;
  order: -1;
  flex: 1 0 100%;
}

.image-gallery section img {
  height: auto;
  max-width: 95%;
  border: 1px solid #d9d9d9;
  margin: 0 2.5%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.image-gallery input {
  display: none;
}

.image-gallery label {
  width: calc(20% - 1rem);
  margin: 0.5rem;
  height: fit-content;
  min-width: 60px;
}

.image-gallery label:hover {
  cursor: pointer;
}

.image-gallery label img {
  height: auto;
  border: 2px solid #d9d9d9;
  text-align: center;
  width: 100%;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.image-gallery label:hover img {
  border-color: #ff6a00;
  transform: scale(1.05);
}

.image-gallery input:checked + label img {
  border: 3px solid #ff6a00;
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
}

.image-gallery #tab1:checked ~ #content1,
.image-gallery #tab2:checked ~ #content2,
.image-gallery #tab3:checked ~ #content3,
.image-gallery #tab4:checked ~ #content4 {
  display: block;
}

.product-details-container {
  border: #d9d9d9 solid 1px;
  height: 99%;
  width: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.product-details-container .container-title {
  width: 100%;
  background-color: #2b2b2b;
  border-bottom: solid 3px #ff6a00;
  margin-bottom: 0;
  padding: 1rem 2%;
}

.product-details-container .container-title h2 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 1.5em;
  letter-spacing: 0.5px;
}

.product-price + div,
.product-price {
  margin: 0 2%;
}

.product-price {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1rem;
}

.product-price .price {
  margin-bottom: 1%;
  font-size: 0.7em;
  white-space: nowrap;
  padding: 0 2% 2% 0;
}

.product-price .price .price-title {
  font-size: 1.5rem;
  
}

.product-price .price .price-value {
  font-size: 1.5rem;
  color: #ff6a00;
  text-decoration: underline;
  margin-left: 1%;
}

.product-price .delivery {
  background-color: #2b2b2b;
  font-size: 1rem;
  color: #fff;

  padding: 0.5% 1%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: baseline;
  flex-shrink: 1;
flex-grow: 0.1;border-radius: 5px;}

.product-price .delivery i {
  font-size: 1.4rem;
  margin-right: 4%;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
  width: auto;
}

.product-details-container > div[vocab] {
  padding: 2rem;
}


.infotab-content H4 {
  margin: 1.5rem 0 0.75rem;
  color: #2b2b2b;
  font-size: 1.1rem;
}

.infotab-content p {
  margin: 0.75rem 0;
}

.infotab-content ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.infotab-content ul li {
  margin: 0.5rem 0;
}

.info-tabs {
  display: flex;
  flex-flow: column wrap;
  flex-wrap: wrap;
  flex-direction: row;
  height: auto;
  margin: 2rem auto;
  background: #2b2b2b;
  max-width: 1400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-tabs section {
  display: none;
  width: 100%;
  flex: 1 0 100%;
  order: 3;}
  

.info-tabs section div {
  height: auto;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 2rem 3%;
}

.info-tabs input {
  display: none;
}


.info-tabs label {
  height: auto;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
  border: 1px solid #d9d9d9;
  width: 25%;
  order: 1;
  cursor: pointer;
  color: #fff;
  background-color: #2b2b2b;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: color 0.2s ease;
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  min-height: 44px;
}


.info-tabs #info-tab1:checked ~ #info-content1,
.info-tabs #info-tab2:checked ~ #info-content2,
.info-tabs #info-tab3:checked ~ #info-content3,
.info-tabs #info-tab4:checked ~ #info-content4 {
  display: block;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.info-slide {
    order: 2;
    background: #ff6a00;
    width: calc(100% / 4);
    height: 5px;
    transition: margin-left 0.3s ease-out;
}

.info-tabs #info-tab1:checked ~ .info-slide {
  margin-left: calc((100% / 4) * 0);
}
.info-tabs #info-tab2:checked ~ .info-slide {
  margin-left: calc((100% / 4) * 1);
}
.info-tabs #info-tab3:checked ~ .info-slide {
  margin-left: calc((100% / 4) * 2);
}
.info-tabs #info-tab4:checked ~ .info-slide {
  margin-left: calc((100% / 4) * 3);
}

.newsletter {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem 2%;
  color: #fff;
  border: 2px solid #d9d9d9;
  border-width: 2px 0;
  font-size: clamp(0.8rem, 2vw, 1rem);
  text-align: center;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 2rem auto 0;
}

  .infotab-content a {
    color: #ff6a00;
    text-decoration: underline;
    }
    
  .infotab-content a:hover {
    color: #ff8f33;
    }

@media (max-width: 1000px) {
  .header-links ul li {
    font-size: 12px;
  }
  
  .header-content-links {
    font-size: 0.9rem;
  }
  
  .usp-container div {
    min-width: 150px;
  }
}


@media (max-width: 750px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-gallery section img {
    max-width: 90%;
    border: 1px solid #2b2b2b;
    margin: 0 auto;
    display: block;
  }
  
  .image-gallery label {
    width: calc(25% - 1rem);
  }

  .product-price {
    flex-direction: column;
    padding-bottom: 2%;
    align-items: stretch;
    text-align: center;
    gap: 0.5rem;
  }
  
  .product-price .delivery {
    width: 100%;
  }
  
  .container-title h2{
    text-align: center;
  }
  
  .header-container {
    flex-direction: column;
    justify-content: center;
  }

  .header-content-links {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  
  .btn {
    padding: 0.5rem 0.9rem;
  }

  .header-links,
  .header-content {
    position: relative;
    width: 100%;
  }

  .header-links {
    right: 0;
  }

  .header-links ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-links ul li {
    font-size: 11px;
    padding: 0.2rem 0.3rem;
  }
  
  .info-tabs label {
    font-size: clamp(0.7rem, 2.5vw, 1rem);
  }
  
  #toggle-menu, #menu a {
    padding: 0.9em 0.5em;
  }
  
  .usp-container {
    padding: 1rem 2%;
  }
  
  .usp-container div {
    flex: 1 1 100%;
    min-width: unset;
  }
}

@media (max-width: 425px) {
  .image-gallery label {
    width: calc(50% - 1rem);
  }
  
  .header-links ul li {
    font-size: 10px;
    padding: 0.1rem 0.2rem;
  }
  
  .info-tabs label {
    font-size: clamp(0.6rem, 3vw, 0.9rem);
    padding: 0.75rem 0;
  }
  
  .btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    width: 100%;
    max-width: 200px;
  }
  
  .header-content-links {
    flex-direction: column;
    align-items: center;
  }
  
  .product-details-container .container-title h2 {
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 64em) and (min-width: 52.01em) {
  #menu .sub-menu li {
  width: auto;
}
}

@media only screen and (min-width: 48em) {
#menu .main-menu {
  display: block;
}

#toggle-menu,
#menu label.drop-icon {
  display: none;
}

#menu ul span.drop-icon {
  display: inline-block;
}

#menu li {
  float: left;
  border-width: 0 0 1px;
}

#menu .sub-menu li {
  float: none;
}

#menu .sub-menu {
  border-width: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 12em;
  z-index: 3000;
}

#menu .sub-menu,
#menu input[type="checkbox"]:checked + .sub-menu {
  display: none;
}

#menu .sub-menu li {
  border-width: 0 0 1px;
}

#menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

#menu li:hover > input[type="checkbox"] + .sub-menu {
  display: block;
}
}

.news.btn:hover {
  background: #ff8f33;
  transform: translateY(-2px);
  box-shadow: 0px 12px 15px -5px #00000099;
  transition: all 0.3s ease;
}

.right-col {width: 100%;}