/* banner section code */
.banner-section {
  background: url("../assets/product-page-banner.png") no-repeat center/cover;
  min-height: 80vh;
}
.banner-content {
  border-radius: 20px;
  padding: 48px 107px;
  max-width: 470px;
}
.banner-content:hover {
  transform: scale(1.2, 1.2);
  transition: 2s linear;
  cursor: pointer;
}
/* products section code */
.products-sec .search-btn {
  border-radius: 18px;
  padding: 25px 20px;
  border: 1px solid rgba(0, 0, 0, 0.204);
  margin-bottom: 27px;
}
.products-sec .search-btn:hover {
  cursor: pointer;
  box-shadow: 0 4px 44px rgba(2, 72, 25, 0.785);
}
.products-sec form {
  display: flex;
  justify-content: space-between;
}
.products-sec form input[type="search"]:focus {
  outline: none;
}
.accordion-button:focus {
  background-color: transparent !important;
  box-shadow: none !important;
  color: black !important;
}
.accordion-button {
  padding: 0;
  background: transparent !important;
}
.accordion-button:not(.collapsed) {
  color: black !important;
}
.accordion-item {
  border-width: 0 0 1px 0 !important;
  padding: 22px 0 22px;
}
.accordion-button:hover {
  box-shadow:
    0px 0px 0px 2px rgba(132, 204, 22, 1),
    0px 0px 0px 4px rgba(147, 197, 253, 0.5);
}
.accordion-item button {
  font-family: "Amiri", serif;
  font-weight: 700;
  font-size: 24px;
}
.accordion-body {
  padding: 20px 0;
}
.accordion-body input[type="checkbox"] {
  margin-right: 12px;
}
.accordion-body .category-row {
  margin-bottom: 25px;
}
.accordion-body .category-row:last-child {
  margin: 0;
}
.products-sec .top-row {
  margin-bottom: 40px;
}
.products-sec .top-row .left-text {
  text-transform: capitalize;
  font-family: "Amiri", serif;
  font-size: 20px;
  font-weight: 700;
  margin-right: 22px;
}

.products-sec .product-card {
  margin: 0 0 40px;
}

.products-sec .prod-img {
  max-width: 342px;
}
.products-sec .stars-row {
  margin: 22px 0 10px;
}
.products-sec .stars-row .stars {
  margin-right: 5px;
}
.products-desc {
  font-family: "Amiri", serif;
  font-size: 20px;
}
.products-price {
  font-family: "Gothic A1", sans-serif;
  font-size: 15px;
  margin-top: 6px;
}
.product-card .prod-img:hover {
  transform: scale(1.1);
  transition: 1s linear;
}
/* ====================================================
                media query code
==================================================== */

@media screen and (max-width: 1400px) {
  /* navbar code */
  .offcanvas {
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    backdrop-filter: blur(20px);
    padding-top: 70px;
  }
  .nav-item {
    margin: 0 0 20px !important;
  }
  .close-btn {
    position: absolute;
    right: 30px;
    top: 80px;
    border: none;
    background: none;
    padding: 0 15px;
  }
  .close-btn > span {
    display: inline-block;
    height: 2px;
    width: 100%;
    position: absolute;
    background: white;
    left: 0;
    top: 4px;
    right: 0;
    transform: rotate(45deg) translate(-5px);
  }
  .close-btn::after {
    content: "";
    height: 2px;
    background: white;
    position: absolute;
    left: 0;
    right: 0;
    top: -4px;
    transform: rotate(-45deg) translate(-5px);
  }
  .nav-icons {
    padding: 0;
    margin: 0 auto 20px;
    border: 0 !important;
  }
  .cart-section {
    padding: 0 !important;
  }
}
@media screen and (max-width: 1200px) {
  /* footer-section code */
  .footer-top .row > div:first-child .desc {
    margin: 0 auto;
  }
  .footer-top .row > div:last-child ul {
    justify-content: center;
  }
  .footer-top .row > div:last-child ul .social-links {
    margin-right: 15px;
  }
  .footer-hdr {
    display: inline-block;
  }
}
@media screen and (max-width: 992px) {
  /* banner section code */
  .banner-content {
    width: calc(0.65 * 992px);
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .title1 {
    font-size: 45px;
  }
  .primary-btn {
    padding: 20px 30px;
  }
  .title2 {
    font-size: 35px;
  }
  .title2-sub {
    font-size: 12px;
  }
  /* banner section code */
  .banner-content {
    width: calc(0.5 * 768px);
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .title1 {
    font-size: 25px;
  }
  .desc {
    font-size: 13px;
  }
  .title2 {
    font-size: 24px;
  }
  .title2-sub {
    font-size: 12px;
  }
  .title3 {
    font-size: 20px;
  }
  .primary-btn {
    font-size: 13px;
    padding: 10px !important;
  }
  .section-padding {
    padding: 50px 0;
  }
  /* navbar code */
  .nav-logo > a {
    width: 190px;
  }
  .offcanvas {
    font-size: 13px;
  }
  /* banner section code */
  .banner-content {
    width: calc(0.4 * 576px);
    padding: 15px;
  }
  /* products section code */
  .products-sec .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .products-sec .accordion-button {
    font-size: 22px;
  }
  .products-sec .top-row .left-text {
    font-size: 14px;
    margin: 0 5px 0 0;
  }
  /* footer section code */
  .footer-sec form input[type="email"] {
    padding: 5px;
  }
  .footer-sec form input[type="submit"] {
    font-size: 13px;
    padding: 10px 40px !important;
  }
  .ftr-btm-cntn {
    font-size: 13px;
  }
}
@media screen and (max-width: 320px) {
  .primary-btn {
    font-size: 10px;
  }
  /* navbar code */
  .nav-logo > a {
    width: 140px;
  }
  /* banner section code */
  .banner-content {
    width: calc(0.35 * 576px);
  }
}
