/* ===========FONT FAMILY START================== */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
/* <uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 200 to 800 */

/* .plus-jakarta-sans-<uniquifier> {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

/* <uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 100 to 900 */

/* .raleway-<uniquifier> {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */
/* ==========FONTS FAMILY END=================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  scroll-margin-top: 2rem;
}
body {
  background-color: #f7f7f7;
}
body,
html {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 10px auto;
}

a {
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
}
ul,
li {
  list-style: none;
}

.btn {
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 5px;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 12px;
}

.btn-light {
  background-color: #ffffff;
  color: #000000;
  /* border: 1px solid #fff; */
}
.btn-dark {
  background-color: #000000;
  color: #ffffff;
  /* border: 1px solid #000; */
}
.btn-primary {
  background-color: #ed3237;
  color: #ffffff;
  /* border: 1px solid #000; */
}
header {
  padding: 1rem;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  color: #000000;
  z-index: 99;
  background-color: #ffffff;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toggle-nav {
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  display: none;
}
.scrolled {
  /* position: fixed;
  left: 0;
  right: 0;
  top: 0; */
  background-color: #ffffff;
  transition: background-color 0.3s ease-in-out;
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
nav ul li a {
  font-size: 15px;
  color: #000000;
}
nav ul li a:hover {
  color: #5c5c5c;
}
nav div {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}
nav .toggle-nav {
  color: #000000;
  display: none;
  font-size: 13px;
  font-weight: 500;
  background-color: #d1d1d1;
  padding: 5px 15px;
  border-radius: 5px;
}
/* ============================= */
#product {
  position: relative;
  transition: display 0.3s ease-in-out;
}
#product:hover div {
  transition: display 0.3s ease-in-out;
  display: block;
}
.drop-p {
  cursor: pointer;
}
#product div {
  position: absolute;
  top: 100%;
  left: 0;
  width: 120px;
  background-color: #ffffff;
  color: #000000;
  display: none;
  transition: display 0.3s ease-in-out;
}
#product div a {
  color: #000000;
  padding: 10px 8px;
  border-bottom: 1px solid #d1d1d1;
  display: block;
  font-size: 14px;
  font-weight: 500;
}
#product div a:hover {
  color: #000000;
  background-color: #c9c9c9;
}
@media (max-width: 768px) {
  #product div {
    position: relative;
    /* width: 120px; */
    background-color: transparent;
    color: #000000;
    display: block;
    margin: auto;
    margin-top: 10px;
  }
  #product div a {
    color: #ffffff;
    padding: 10px 8px;
    border-bottom: 0;
    display: block;
    font-size: 15px;
    font-weight: 500;
    /* text-align: start; */
  }
}

/* ============================================ */
.menu-container {
  z-index: 2;
  position: fixed;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 100vh;
  width: 100vw;
  pointer-events: none;
  top: 0;
  right: 0;
  left: 0;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100vh;
  width: 100vw;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(-100%);
  transition: transform 0.5s;
  transition-delay: 0.5s;
  visibility: hidden;
}
.menu ul li {
  /* font-family: "Roboto", sans-serif; */
  /* font-weight: 100; */
  font-size: 20px;
  color: white;
  min-height: 20px;
  padding: 15px;
  text-align: center;
}
.menu ul li a {
  cursor: pointer;
  font-weight: 500;
}
.menu ul li a:hover {
  color: #876666;
}

.menu-sliders {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: flex 0.45s;
}
.menu-sliders:nth-child(2) {
  flex: 1 0 100%;
  background: transparent;
}
.menu-sliders:nth-child(odd) {
  background: #000000f3;
}

body.menu-open .menu-sliders:nth-child(2) {
  flex: 0 0 0%;
}
body.menu-open .menu {
  transform: translateY(0%);
  visibility: visible;
  pointer-events: all;
}
body.menu-open .plus-btn .r1 {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
body.menu-open .plus-btn .r2 {
  transform: translateX(-50%) translateY(-50%) rotate(-135deg);
}
header .container {
  display: flex;
  min-height: 300px;
  margin: auto;
}
header .container div {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}

header h2 {
  font-size: 40px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #ffffff;
}
.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-count {
  background-color: #ed3237;
  color: white;
  border-radius: 50%;
  font-size: 80%;
  text-align: center;
  font-weight: 600;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  font-family: "Courier New", Courier, monospace;
  padding: 5px;
  height: 15px;
  top: -10px;
  right: -10px;
}
/* ======================================================= */
.container {
  max-width: 1200px;
  margin: auto;
}
/* ======================================================= */
/* ======================================================= */
.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #0000003b;
  z-index: 999;
  display: none;
  overflow-y: auto;
  padding: 10px;
}
.modal-content {
  max-width: 500px;
  margin: auto;
  margin-top: 1rem;
  background-color: #ffffff;
  padding: 2rem;
}
.close-modal {
  max-width: 500px;
  margin: auto;
  margin-top: 1rem;
  text-align: end;
}
.checkout-modal label {
  font-size: 13px;
  font-weight: 600;
}
.checkout-modal strong {
  display: block;
  font-size: 13px;
  margin-top: 5px;
}
.close-modal-btn {
  outline: none;
  border: none;
  font-size: 30px;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
}
.checkout-modal input,
.checkout-modal textarea {
  width: 100%;
  padding: 15px 10px;
  outline: none;
  border: 1px solid #a6a6a6;
  margin: 5px 0;
  /* margin-bottom: 1rem; */
  font-size: 13px;
  color: #000000;
  font-weight: 500;
}
.iti {
  width: 100%;
  position: relative;
  display: inline-block;
}
.iti ul {
  top: 100% !important;
  transform: translateY(0%) !important;
}

input[type="tel"] {
  padding: 10px;
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-right: 0;
  border: 1px solid #e9e9e9;
  width: 100%;
  /* height: 35px; */
  border-radius: 2px;
  font-family: inherit;
  font-size: 13px;
  color: inherit;
}
.modal-btns {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
}
.modal-btns button {
  outline: none;
  border: none;
  font-weight: 600;
  font-size: 15px;
  /* background-color: transparent; */
  color: #ffffff;
  cursor: pointer;
  display: block;
  width: 50%;
  padding: 15px 10px;
  text-align: center;
  font-weight: 600;
}
.modal-btns button[type="submit"] {
  background-color: green;
}
.modal-btns button[type="button"] {
  background-color: #ed3237;
}
#loader-container {
  text-align: center;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 5%;
}
.skeleton {
  display: block;
  text-decoration: none;
  padding-bottom: 2rem;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  animation: pulse 1.5s infinite;
}
.skel-1 {
  height: 400px;
  width: 60%;
  background: #e0e0e0;
  background: url(img/products/placeholder.jpg) center no-repeat;
  background-size: cover;
}
.skel-2 {
  width: 30%;
  padding: 1rem;
}
.skel-2 p {
  padding: 14px;
  background-color: #e0e0e0;
  margin-bottom: 1rem;
}
.skel-desc {
  height: 100px;
}
.skel-btn {
  padding: 1.3rem !important;
}
@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}
/* ======================================================= */
.failed-p{
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ======================================================= */
main {
  padding: 1rem;
}
.nav-pane {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  background-color: #f2f2f2;
  padding: 1rem 2rem;
  margin-top: 5rem;
}
.nav-pane a {
  font-weight: 600;
  text-decoration: underline;
}

.row {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 5%;
  /* min-height: 300px; */
}
.col-70 {
  width: 60%;
  /* background-color: #f0f0f0; */
  margin-bottom: 2rem;
}
/* .col-70 img {
  width: 60%;
  } */
/* =========================================== */
.preview {
  padding: 0 10px;
  /* border: 1px solid #5c5c5c26; */
  border-radius: 20px;
}
#big .item {
  background: #f2f2f2;
  color: #fff;
  text-align: center;
  max-height: 500px !important;
  min-height: 200px;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}
#thumbs {
  margin-top: 3rem;
}
#thumbs .item {
  background: #f2f2f2;
  width: 100px;
  line-height: 70px;
  padding: 0px;
  margin: 10px 5px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #d6d6d6;
}

#thumbs .current .item {
  background: rgb(178 187, 187);
  border: 2px solid #ed3237;
}

.preview .owl-theme .owl-nav [class*="owl-"] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.preview .owl-theme .owl-nav [class*="owl-"].disabled:hover {
  background-color: #d6d6d6;
}

#thumbs.owl-theme .owl-next,
#thumbs.owl-theme .owl-prev {
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 20px;
  cursor: pointer;
  height: 20px;
  display: inline-block;
  z-index: 1000;
  border-radius: 50%;
  font-size: 12px;
  color: #ffffff !important;
}

#thumbs.owl-theme .owl-next:hover,
#thumbs.owl-theme .owl-prev:hover {
  background: #000000 !important;
}
/* =========================================== */
.col-30 {
  width: 30%;
}
.p-name {
  font-size: 30px;
}
.p-price {
  font-size: 20px;
  margin: 1rem 0;
}
.p-desc {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 5px 0;
}
.p-color span {
  display: block;
  width: 40px;
  height: 15px;
}
.add-to-cart,
.buy-now {
  display: block;
  text-align: center;
  padding: 10px;
  outline: none;
  border: none;
  background-color: #ed3237;
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  margin: 10px 0;
}
.buy-now {
  background-color: #000000;
}
.support {
  position: fixed;
  bottom: 10%;
  right: 0;
  display: flex;
  width: fit-content;
  justify-content: start;
  align-items: center;
  font-size: 13px;
  font-family: cursive;
  line-height: 1;
  opacity: 0.8;
}
.support:hover {
  opacity: 1;
}
footer {
  padding: 2rem 1rem;
  background-color: #000000;
  color: #ffffff;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  flex-wrap: wrap;
}
footer ul {
  display: flex;
  flex-direction: column;
}
footer ul a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
footer ul a:hover {
  color: #5c5c5c;
}
footer ul a span {
  font-size: 20px;
}

@media (max-width: 890px) {
  header nav ul {
    display: none !important;
  }
  .toggle-nav {
    display: flex;
  }
  nav .toggle-nav {
    display: block;
  }
}
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    gap: 0%;
  }
  .col-30,
  .col-70,
  .skeleton {
    width: 100%;
  }
}
@media (max-width: 600px) {
  nav {
    gap: 15px;
  }
  nav ul li a {
    font-size: 14px;
  }
  nav ul {
    gap: 10px;
  }
  .modal-btns {
    flex-direction: column;
    gap: 10px;
  }
  .modal-btns button {
    width: 100%;
    padding: 15px 10px;
  }
}

@media (max-width: 568px) {
  .product-group a {
    width: 100%;
  }
}
