@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: "Jost", serif;
    font-weight: 400;
}
/* HEADER START FROM HERE */
.top-bar {
    background-color: #F5F5F5;
    width: 100%;
    padding: 5px 15px;
}
.bar-left i {
    color: #EE1A24;
    font-size: 14px;
}
.bar-left a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
}
.bar-left span {
    font-size: 13px;
    color: #000;
}
.bar-middle a {
    text-decoration: none;
}
.bar-middle a span {
    color: #EE1A24;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 0 1px black;
    letter-spacing: 2px;
}

.bar-right span {
    font-size: 13px;
    color: #000;
}

.bar-right i {
    padding: 8px;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    transition: 0.2s all ease;
}
.bar-right i:hover {
    color: #EE1A24;
}
header {
    border-bottom: 0.5px solid rgb(194, 194, 194);
}
.containerone {
    max-width: 1300px;
    padding: 0 10px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 996px){
    .top-bar {
        display: none;
    }
}
.containertwo {
  max-width: 1300px;
  margin: auto;
  padding: 5px 18px;
}
header .containertwo .logo {
    width: 60px;
    height: 60px;
}
header .containertwo .logo img {
    width: 100%;
    height: 100%;
}
header .sticky-navbar .containertwo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .containertwo .menu .head {
  display: none;
}
header .containertwo .menu ul {
  list-style: none;
}
header .containertwo .menu > ul > li {
  display: inline-block;
}
header .containertwo .menu .dropdown {
  position: relative;
}
header .containertwo .menu > ul > li:not(:last-child){
  margin-right: 40px;
}
header .containertwo .menu a {
  text-decoration: none;
  text-transform: capitalize;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  display: block;
}
header .containertwo .menu > ul > li > a {
  padding: 26px 0;
  text-shadow: 0.2px 0 1.5px gray;
  transition: 0.2s all ease;
}
header .containertwo .menu > ul > li > a:hover {
    color: #EE1A24;
}
@media (max-width: 992px){
    header .containertwo .menu > ul > li > a:hover {
        color: #e7e6e6;
    }
}
header .containertwo .menu > ul > .dropdown > a {
  padding-right: 15px;
}
header .containertwo .menu i {
  font-size: 10px;
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: calc(50% - 5px);
}
header .containertwo .menu > ul > li > i {
  right: 0;
}
header .containertwo .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  padding: 15px 0;
  background-color: #EE1A24;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.5);
  z-index: 1;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
}
header .containertwo .menu .sub-menu-right {
  left: 100%;
  top: 0;
}
header .containertwo .menu .sub-menu-left {
  top: 0;
  left: auto;
  right: 100%;
}
header .containertwo .menu li:hover > .sub-menu {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: all 0.5s ease;
  z-index: 33;
}
header .containertwo .menu .sub-menu a {
  color: #fff;
  font-size: 14.3px;
  padding: 6px 24px;
}
header .containertwo .menu .sub-menu .dropdown > a {
  padding-right: 34px;
}
header .containertwo .menu .sub-menu span {
  background-image: linear-gradient(hsl(0, 0%, 100%),hsl(0, 0%, 100%));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.5s ease;
}
header .containertwo .menu .sub-menu li:hover > a > span {
  background-size: 100% 1px;
}
header .containertwo .menu .sub-menu i {
  transform: rotate(-90deg);
  right: 24px;
}
.header-right {
  display: flex;
  align-items: center;
}
.header-right > * {
  margin-left: 25px;
}
.header-right .icon-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.header-right .cart-btn img {
    width: 28px;
    height: 30px;
}
.header-right .open-menu-btn {
  display: none;
}

@media(max-width:991px){
  header {
      padding: 6px 0;
  }
  header .containertwo .menu {
      position: fixed;
      right: 0;
      top: 0;
      width: 320px;
      height: 100%;
      background-color: #EE1A24;
      color: #fff;
      padding: 15px 30px 30px;
      overflow-y: auto;
      z-index: 99;
      transform: translateX(100%);

  }
  header .containertwo .menu .head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
  }
  header .containertwo .menu.open {
      transform: none;
  }
  header .containertwo .menu .close-menu-btn {
      height: 35px;
      width: 35px;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: transparent;
      cursor: pointer;
      border: none;
  }
  header .containertwo .menu .close-menu-btn::before,
  header .containertwo .menu .close-menu-btn::after {
      content: '';
      position: absolute;
      width: 80%;
      height: 2px;
      background-color: #fff;
  }
  header .containertwo .menu .close-menu-btn::before {
      transform: rotate(45deg);
  }
  header .containertwo .menu .close-menu-btn::after {
      transform: rotate(-45deg);
  }
  header .containertwo .menu > ul > li {
      display: block;
  }
  header .containertwo .menu > ul > li:not(:last-child) {
      margin-right: 0;
  }
  header .containertwo .menu li {
      color: #fff;
      border-bottom: 1px solid #fff;
  }
  header .containertwo .menu li:first-child {
      border-top: 1px solid #fff;
  }
  header .containertwo .menu > ul > li > a {
      color: #fff;
      padding: 12px 0;
  }
  header .containertwo .menu > ul > .dropdown > a {
      padding-right: 34px;
  }
  header .containertwo .menu i {
      height: 34px;
      width: 34px;
      border: 1px solid #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      pointer-events: auto;
      cursor: pointer;
      top: 7px;
  }
  header .containertwo .menu .dropdown.active > i {
      background-color: hsla(0, 0%, 100%, 0.25);
      transform: rotate(180deg);
  }
  header .containertwo .menu .sub-menu {
      position: static;
      opacity: 1;
      transform: none;
      visibility: visible;
      padding: 0;
      transition: none;
      box-shadow: none;
      width: 100%;
      display: none;
  }
  header .containertwo .menu .dropdown.active > .sub-menu {
      display: block;
  }
  header .containertwo .menu .sub-menu li:last-child {
      border: none;
  }
  header .containertwo .menu .sub-menu a {
      padding: 12px 0 12px 15px;
  }
  header .containertwo .menu .sub-menu .sub-menu {
      padding-left: 30px;
  }
  header .containertwo .menu .sub-menu .sub-menu .sub-menu {
      padding-left: 45px;
  }
  header .containertwo .menu .sub-menu span {
      background-image: none;
  }
  header .containertwo .menu .sub-menu i {
      transform: none;
      right: 0;
  }
  .header-right .open-menu-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      width: 44px;
      cursor: pointer;
      position: relative;
      background-color: transparent;
      border: none;
  }
  .header-right .open-menu-btn .line {
      height: 2px;
      width: 30px;
      background-color: black;
      position: absolute;
  }
  .header-right .open-menu-btn .line-1 {
      transform: translateY(-8px);
  }
  .header-right .open-menu-btn .line-3 {
      transform: translateY(8px);
  }
}




/* Banner */
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
  }
 


/* Categories */
.category-section {
  margin: 60px 0 ;
}
.category-header h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    margin: 20px 0px;
    text-decoration: 3px underline #EE1A24;
    text-underline-offset: 10px;
}
.cat {
    cursor: pointer;
}
.cat img {
    width: 100%;
    height: 100%;
}
.cat-overlay {
    margin-top: -70px;
    text-align: center;
    transition: 0.5s ease;
}
.cat-overlay a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    padding: 12px 45px;
    background-color: #F3F3F3;
    transition: 0.2s ease-in;
}
.cat:hover .cat-overlay a{
    color: #fff;
    background-color: #EE1A24;
}
.cat:hover .cat-overlay {
  transform: translateY(-15px);
}
.cat:hover img {
    opacity: 0.7;
}

.category-container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media (max-width: 444px){
    .category-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .cat-overlay a{
        padding: 4px 2px;
    }
    
}





/* Product */
.product-header p,
.product-header h1 {
    text-align: center;
}
.product-header h1 {
    text-transform: uppercase;
    text-decoration: 3px underline #EE1A24;
    text-underline-offset: 10px;
}
.product-header p {
    color: #EE1A24;
    letter-spacing: 2
}
.sp-detail h1 {
    color: #000;
    font-size: 28px;
    font-weight: 600;
}
#art {
    color: gray;
}
.sp-detail h4 {
    color: #EE1A24;
    font-size: 20px;
    font-weight: 600;
}
.sp-detail p {
    font-size: 14px;
}
.sp-detail h5 {
    font-size: 16px;
    font-weight: bold;
}
.sp-quantity {
    width: 85px;
    margin-bottom: 6px;
}
.sp-quantity input {
    width: 100%;
    padding: 2px 5px;
    border-radius: 0;
    border: 1px solid gray;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  

   opacity: 1;

}
.sp-detail button {
    color: #fff;
    background-color: #000;
    padding: 8px 16px;
    border: none;
    transition: 0.3s ease-in;
}
.sp-detail button:hover {
    background-color: #EE1A24;
}

.rp {
    color: #fff;
    background-color: #000;
    padding: 10px 0;
    border-left: 4px solid #EE1A24;
    border-bottom: 4px solid #EE1A24;
}
.rp-container {
    margin-top: 16px;
}
.r-product-item p {
    text-align: center;
    padding-top: 5px;
}
.img-box img {
    max-width: 100%;
    border: 1px solid #CCCCCC;
}
.sp-row {
    padding: 25px 15px;
}
.rp span a{
    color: #fff;
    text-decoration: none;
    transition: 1s all ease;
}
.rp span a:hover {
    color: #EE1A24;
    transition: 0.5s all ease;
}


.product-container {
  padding: 35px 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (max-width: 444px){
    .product-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
.product-container a .box h4,
.product-container a .box p {
    text-decoration: none;
}
.product-container .box {
  margin-bottom: 20px;
  cursor: pointer;
  padding: 3px;
  outline-offset: 0.5px;
  transition: 1s;
  border: 1px solid #bbbbbbd5;
}
.product-container .box:hover {
    border: 1px solid #EE1A24;
}
.box .image-box img {
  width: 100%;
  height: 100%;
}
.image-box {
  margin-bottom: 15px;
  position: relative;
}
.overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-info {
    line-height: 0.7;
}
.add-cart-btn button {
    padding: 10px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #EE1A24;
    background-color: #fff;
    border: 2px solid #EE1A24;
    transition: 0.5s all ease;
}
.add-cart-btn button:hover {
    color: #fff;
    background-color: #EE1A24;
    border: 2px solid #EE1A24;
    transition: 0.5s all ease;
}
.add-cart-btn a {
    text-decoration: none;
}



.box .overlay .product-info h4 {
    font-size: 20px;
    padding-left: 4px;
}
.box .overlay .product-info p {
    font-size: 14px;
    padding-left: 4px;
}




/* About us */
.about {
    margin: 80px 0 80px;
}
.about-content h2 {
    color: #EE1A24;
    text-transform: uppercase;
    font-weight: 700;
}
.about-content button {
    color: #fff;
    background-color: #EE1A24;
    border: none;
    transition: 0.5s;
    padding: 5px 6px;
    float: right;
    margin-bottom: 10px;
}
.about-content button:hover {
    color: #fff;
    background-color: #000;
    border: none;
}
.about-pic {
    height: 445px;
    width: 250px;
}
.about-pic img {
    height: 100%;
    width: 100%;
    background-position: center;
    
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 55px 0;
}
@media (max-width: 630px){
    .footer {
        padding: 40px 0 55px;
    }
}
.f-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.f-logo h1 {
    color: #fff;
    font-size: 25px;
    padding-left: 10px;
    text-transform: uppercase;
}
.footer-left,
.footer-middle,
.footer-right {
    padding: 10px;
}
.footer-left img {
    height: 82px;
    width: 82px;
}
.footer-left p {
    color: #fff;
    font-size: 14px;
    margin: 10px 0 10px;
}
.icon-of-footer {
    display: flex;
}
.footer-icon {
    margin-right: 10px;
}
.footer-left .footer-icon span i {
    color: #fff;
    font-size: 22px;
    border: 1px solid gray;
    padding: 6px 8px;
    transition: 0.3s ease-in;
    cursor: pointer;
}
#fb {
    padding: 6px 10px;
}
.footer-left span i:hover {
    color: #fff;
    background-color: #EE1A24;
}

.q-links li,
.f-cat li {
    list-style: none;
    line-height: 28px;
}
.q-links li a,
.f-cat li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease-in;
}
.q-links li a:hover,
.f-cat li a:hover {
    color: #EE1A24;
    margin-left: 5px;
}

.footer-right {
    line-height: 15px;
    font-size: 15px;
}
.q-links h3,
.f-cat h3,
.footer-right h3 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 23px;
    text-transform: uppercase;
    text-decoration: underline #fff;
    text-underline-offset: 5px;
    transition: 0.2s ease;
    margin-bottom: 15px;
}
.footer-right p i {
    color: #EE1A24;
    margin-right: 8px;
}
.footer-right p span {
    color: #fff;
    font-size: 14px;
}
.footer-right p a {
    color: #fff;
    text-decoration: none;
}
.footer-right p a:hover {
    color: #EE1A24;
    cursor: pointer;
}

.shipping p,
.payment p,
.member p {
    color: #fff;
    text-transform: uppercase;
    margin:  10px 0 10px;
}


.bottom-footer {
    background-color: #EE1A24;
    text-align: center;
    font-size: 14px;
    padding: 13px;
}
.bottom-footer span {
    color: #fff;
}
.bottom-footer span a {
    color: #fff;
    text-decoration: none;
}
.icon-of-footer .footer-icon span i {
    font-size: 14px;
}




/* Contact US */
.contact-container {
    padding: 40px 0;
}
.contact-header {
    background-color: #000;
    border-left: 5px solid #EE1A24;
    border-bottom: 5px solid #EE1A24;
}
.contact-header a {
    text-decoration: none;
    text-transform: capitalize;
    color: #fff;
}
.small-header a,
.small-header span {
    font-size: 14px;
}
.contact-header a:hover {
    color: #EE1A24;
}
.contact-header span {
    color: #fff;
    text-transform: capitalize;
}
.message-us h2,
.contact-information h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    padding: 10px 0;
    text-decoration: 5px underline solid #EE1A24;
    outline-offset: 5px;
}
.message-us form label {
    font-weight: bold;
}
.message-us form input::-webkit-outer-spin-button,
.message-us form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} form label {
    font-size: 15px;
}
.message-us input,
.message-us textarea {
    font-size: 13px;
    width: 100%;
    border: 0.5px solid rgb(187, 187, 187);
    padding: 8px;
    margin: 4px 0;
    transition: 0.2s all ease;
}
.message-us form input:focus,
.message-us form textarea:focus {
    outline: none;
    border: 0.5px solid #EE1A24;

}
.message-us button i {
    font-size: 14px;
}
.message-us form button {
    border: none;
    padding: 8px 10px;
    font-size: 15px;
    background-color: #c5c5c5;
    transition: .5s all ease;
    margin-bottom: 15px;
    border-left: 5px solid #EE1A24;
}
.message-us form button:hover {
    color: #fff;
    background-color: #EE1A24;
}





.cont-icon i {
    padding: 14px;
    color: #fff;
    background-color: #EE1A24;
    border-radius: 50%;
}
.location,
.phone,
.email,
.web {
    display: flex;
    align-items: center;
}
.location-content h3,
.phone-content h3,
.email-content h3,
.web-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #EE1A24;
    text-transform: uppercase;
    padding-top: 10px;
}
.location-content p,
.phone-content p,
.email-content p,
.web-content p {
    font-size: 14px;
    color: #696969;
}
.location-content,
.phone-content,
.email-content,
.web-content {
    line-height: 0.6;
    padding: 10px;
    width: 100%;
}


/* Cart Page*/
.cart .row h4 {
    text-align: center;
    font-size: 22px;
    padding: 25px 0;
    text-transform: uppercase;
    font-weight: bold;
}
table tr {
    border: 0.2px solid rgba(202, 202, 202, 0.541);
}
table tr th {
    text-align: center;
    text-transform: capitalize;
    color: #000;
    background-color: rgba(224, 224, 224, 0.87);
    font-weight: 600;
    padding: 5px;
}
table tr td {
    text-align: center;
    padding: 15px;
}





table tr td .product-pic-cart {
    width: 100px;
    height: 100px;
    margin: auto;
    overflow: hidden;
}
table tr td .product-pic-cart img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.row table tr td input {
    width: 80px;
    padding: 5px;
    border-radius: 0;
    border: 1px solid rgb(150, 150, 150);
}
.update-btn {
    padding: 5px;
    margin: 3px;
    color: #fff;
    background-color: #EE1A24;
    border: 2px solid #EE1A24;
    text-transform: capitalize;
    border: 2px solid #EE1A24;
}
.update-btn:hover {
    color: #EE1A24;
    background-color: #fff;
}
.delete-btn {
    height: 40px;
    width: 40px;
    padding: 5px;
    border-radius: 50%;
    background-color: #dddd;
    border: none;
}
.delete-btn:hover {
    background-color: #979797dd;
}
.cart-bottom {
    display: flex;
    justify-content: end;
}
.checkout-section {
    margin-top: 5px;
    padding: 10px;
    border-top: 5px solid #EE1A24;
}
.checkout-section a,
.checkout-section a button {
    text-decoration: none;
}
.checkout-section h3 {
    text-transform: uppercase;
    text-transform: bold;
}
.checkout-section button {
    text-transform: uppercase;
    padding: 5px 8px;
    color: #fff;
    background-color: #EE1A24;
    border: 2px solid #EE1A24;
    transition: 1s all ease;
    border-radius: 4px;
}
.checkout-section button:hover {
    color: #EE1A24;
    background-color: #fff;
    border: 2px solid #EE1A24;
}





/* Other section */
.container .row .other .other-box {
    border: 1px solid gray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    user-select: none;
    transition: 0.5s all ease;
}
.container .row .other .other-box:hover {
    color: #fff;
    background-color: #EE1A24;
    transition: 0.5s all ease;
    
}


.other i {
    font-size: 35px;
    margin-bottom: 15px;
}
.other h4 {
    text-transform: capitalize;
    font-size: 18px;
}
.other p {
    text-transform: capitalize;
    font-size: 16px;
}

@media (max-width: 495px) {
    .art_disabled {
        display: none;
    }
    
}





/* Inquiry form */
.if input {
    width: 100%;
    border-radius: 0;
    padding: 6px 8px;
    transition: .5s all ease;
    border: 1px solid gray;
    margin: 4px;
}
.if input:focus {
    outline: none;
    border: 1px solid #EE1A24;
    transition: .5s all ease;
}
.if select {
    border-radius: 0;
    padding: 6px 8px;
    border: 1px solid gray;
    margin: 4px;
}
.if select:focus {
    outline: none;
    border: 1px solid #EE1A24;
}
#country {
    width: 100%;
}
.inquiry textarea {
    width: 100%;
    margin: 4px;
    border-radius: 0;
    padding: 6px 8px;
    border: 1px solid gray;

}
.inquiry textarea:focus {
    outline: none;
}
#submit_inquiry_btn {
    color: #fff;
    background-color: black;
    padding: 8px 10px;
    border: none;
    border-radius: 0;
    margin: 4px;
    text-transform: uppercase;
    transition: 0.5s all ease;
}
#submit_inquiry_btn:hover {
    color: #fff;
    background-color: #EE1A24;
    transition: 0.5s all ease;
}