  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Roboto', sans-serif;
      font-size: 18px;
  }

  body {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      overflow-x: hidden;
  }

  html {
      scroll-behavior: smooth;
  }

  header {
      height: auto;
      width: 80%;
      background: linear-gradient(to top, #daa520, #fabb1b);
      border-radius: 3px;
      margin: 30px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      padding: 0 15px;
  }

  header .right {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  header .left {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  nav .dropdown-menu {
      background: linear-gradient(to top, #daa520d6, #fabb1bda) !important;
  }

  nav .dropdown-item {
      background: transparent;
      width: max-content;
      color: #fff !important;
      padding-left: 10px;
      padding-right: 10px;
  }

  nav .dropdown-menu .dropdown-item {
      text-transform: capitalize;
  }

  nav .dropdown-menu li:focus,
  nav .dropdown-menu li:hover {
      background: linear-gradient(to top, #daa520, #fabb1b) !important;
  }

  nav .dropdown-menu li:focus .dropdown-item,
  nav .dropdown-menu li:hover .dropdown-item {
      background: transparent;
      color: #fff !important;
      transition: 0.3s;
      cursor: pointer;
  }

  .dropdown-item:focus {
      color: #daa520 !important;
  }

  nav .nav-item .nav-link {
      color: #fff;
  }

  nav .nav-link:focus,
  .nav-item.active {
      color: #fff !important;
      background: linear-gradient(to right, #daa520aa, #fabb1baa) !important;
      transition: 0.2s;
  }

  .search-btn,
  .close-btn {
      width: 40px;
      height: 40px;
      outline: none;
      border: none;
      background: transparent;
      color: #fff;
  }

  .search-btn i,
  .close-btn i {
      font-size: 25px;
  }

  .search-btn {
      position: relative;
      left: 30px;
      top: 2.5px;
      transition: .5s ease-in-out;
      z-index: 1;
  }

  .search-btn.active {
      left: 0;
      color: #000;
  }

  .close-btn {
      color: #ff4000;
      opacity: 0;
      visibility: hidden;
      transition: 0.5s;
      scale: 0;
      z-index: 10;
  }

  .close-btn.active {
      opacity: 1;
      visibility: visible;
      transition: .5s;
      scale: 1;
  }

  .search-box {
      position: absolute;
      right: -100%;
      width: 100%;
      height: 100%;
      display: none;
      background: #fff;
      padding: 0 30px;
      align-items: center;
      transition: 0.5s ease-in-out;
  }

  .search-box.active {
      right: 0;
      display: flex;
  }


  .search-box input {
      width: 100%;
      border: none;
      outline: none;
      height: 50px;
      font-size: 1.25rem;
      background-color: #fff;
      border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  }

  .search {
      display: flex;
      align-items: center;
  }

  @media screen and (max-width: 993px) {
      .dropend .dropdown-toggle::after {
          display: inline-block;
          margin-left: 0.255em;
          vertical-align: 0.255em;
          content: "";
          border-top: 0.3em solid transparent;
          border-right: 0;
          border-bottom: 0.3em solid transparent;
          border-left: 0.3em solid;
          transform: rotate(90deg);
      }

      .navbar-toggler {
          left: 90%;
      }
  }

  @media screen and (min-width: 993px) {



      nav .dropend:hover>.dropdown-menu {
          display: block !important;
      }

      .dropend:hover>.dropdown-menu,
      .submenu:hover>.dropend {
          top: 0;
          left: 100%;
          margin-left: .125rem;
      }

      nav .dropdown:focus>.dropdown-menu,
      nav .dropdown:focus>.dropdown-menu {
          top: 0;
          left: 100%;
          margin-left: .125em;
      }
  }


  .cart {
      display: flex;
      background-color: #fff;
      justify-content: space-between;
      align-items: center;
      height: 40px;
      border-radius: 3px;
      width: 80px;
      padding: 0 10px;
      cursor: pointer;
  }


  .cart i {
      color: #daa520;
  }

  .cart p {
      width: 22px;
      height: 22px;
      display: flex;
      margin-top: 16px;
      align-items: center;
      justify-content: center;
      border-radius: 22px;
      background: linear-gradient(to top, #daa520, #fabb1b);
      color: #fff;
  }

  .cart-item {
      transition: transform 0.3s ease-in-out;
  }

  .cart-item:hover {
      transform: scale(1.05);
  }


  .cart-item-delete {
      animation-name: cart-item-delete;
      animation-duration: 0.5s;
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
  }

  @keyframes cart-item-delete {
      0% {
          opacity: 1;
      }

      100% {
          opacity: 0;
      }
  }

  .container {
      display: flex !important;
      width: 82% !important;
      margin-bottom: 30px !important;
  }

  #root {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 20px;
  }

  .sidebar {
      width: 40%;
      border-radius: 5px;
      background-color: #eee;
      padding: 15px;
      text-align: center;
      margin-left: 20px;
      transition: .5s top;
  }

  .head {
      background: linear-gradient(to top, #daa520, #fabb1b);
      border-radius: 3px;
      height: 40px;
      padding: 10px;
      margin-bottom: 20px;
      color: #fff;
      display: flex;
      align-items: center;
      font-weight: 900;
  }

  .foot {
      display: flex;
      justify-content: space-between;
      margin: 20px;
      padding: 10px 0;
      border-top: 1px solid #333;
      color: #000;
  }

  #total,
  .foot h3 {
      color: #000;
      font-weight: bold;
      font-size: 24px;
  }

  /* product card */

  .box {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 3px solid goldenrod;
      border-radius: 5px;
      padding: 15px;
  }

  .description {
      font-size: 12px;
      text-align: left;
      margin-top: 5px;
      margin-bottom: 5px;
      height: 36px;
      top: 20px;
      line-height: 18px;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      text-align: start;
  }

  .img-box {
      width: 100%;
      height: 150px;
      color: white;
      border: none;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      margin-top: 10px;
  }

  .box .images {
      max-width: 90%;
      max-height: 90%;
      border-radius: 5px;
      object-fit: cover;
      object-position: center;
      color: #000;
  }

  .bottom {
      margin-top: 20px;
      width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
  }

  .box .title {
      color: #000;
      font-weight: 700;
      text-transform: capitalize;
      height: 45px;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
  }

  .box h2 {
      font-size: 20px;
      color: red;
      margin-bottom: 20px;
  }

  .box button {
      width: 100%;
      position: relative;
      border: none;
      border-radius: 5px;
      background: linear-gradient(to top, #daa520, #fabb1b);
      padding: 7px 25px;
      cursor: pointer;
      color: #fff;
      transition: 0.3s;
      font-weight: 500;
      z-index: 1;
  }

  .box button:hover {
      background: transparent;
      padding: 5px 25px;
      border: 2px solid goldenrod;
      color: goldenrod;
      font-weight: 500;
  }


  .cart-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px;
      background-color: #fff;
      border: 1px solid #aaa;
      border-radius: 3px;
      margin: 10px 10px;
  }

  .row-img {
      width: 50px;
      height: 50px;
      border-radius: 50px;
      border: #daa520 1px solid;
      display: flex;
      align-items: center;
      justify-content: center;
  }


  .rowimg {
      max-width: 43px;
      max-height: 45px;
      border-radius: 50%;
  }

  .fa-trash {
      color: goldenrod;
      transition: .3s;
  }

  .fa-trash:hover {
      cursor: pointer;
      color: #aaa;
  }


  .cart {
      display: flex;
  }

  .sidebar {
      display: none;
  }

  .box .rating {
      color: #daa520;
      margin-bottom: 20px;
  }

  .fa-heart-o {
      font-size: 24px;
      transition: .5s;
      z-index: 2;
  }

  .wish-icon {
      position: relative;
      padding-left: 88%;
      top: 5px;
      cursor: pointer;
      color: #abb0b8;
  }

  .wish-icon .fa-heart {
      color: #ff6161;
      font-size: 24px;
  }

  @media only screen and (max-width:1007px) {
      .box .title {
          height: 65px;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 4;
          overflow: hidden;
      }

      #root {
          width: 100%;
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          grid-gap: 20px;
      }
  }


  @media only screen and (max-width: 600px) {


      #total,
      .foot h3 {
          color: #fff;
      }

      .container {
          width: 100%;
      }

      .sidebar {
          width: 90%;
          border-radius: 5px;
          background: linear-gradient(to top, #daa520, #fabb1b);
          top: 125px;
          padding: 15px;
          position: absolute;
          right: 20px;
          z-index: 100;
      }

      #root {
          width: 100%;
          display: grid;
          grid-template-columns: repeat(1, 1fr);
          grid-gap: 20px;
      }

      .head {
          background: #fff;
          border-radius: 3px;
          height: 40px;
          color: #daa520;
          padding: 10px;
          margin-bottom: 20px;
          font-weight: 900;
          display: flex;
          align-items: center;
      }

      #cartItem {
          font-size: 15px;
          color: #fff;
      }

      p,
      h2 {
          color: #000;
      }

      .foot {
          border-top: 1px solid #ffff;
          color: #fff;
      }

      .box {
          flex-direction: column;
      }

      .box button {
          font-size: 15px;
      }
  }


  /* pop-up */
  .pop-up {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: none;
      z-index: 100;
      background: #fff;
      padding: 10px;
      border-radius: 20px;
      box-shadow: 3px 2px 13px 0px rgba(0, 0, 0, 0.68);
      -webkit-box-shadow: 3px 2px 13px 0px rgba(0, 0, 0, 0.68);
      -moz-box-shadow: 3px 2px 13px 0px rgba(0, 0, 0, 0.68);
  }

  .contentBox {
      position: relative;
      width: 600px;
      height: 400px;
      background: #fff;
      border-radius: 20px;
      display: flex;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0, 0.1);
  }

  .contentBox .imgBox {
      position: relative;
      width: 300px;
      height: auto;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .contentBox .imgBox::before {
      content: '';
      position: absolute;
      width: 250px;
      height: 300px;
      border-radius: 50%;
  }

  .contentBox .imgBox img {
      position: relative;
      max-width: 300px;
  }

  .contentBox .content {
      position: relative;
      width: 300px;
      height: 400px;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .contentBox .content h3 {
      color: #333;
      line-height: 1em;
      font-weight: 300;
      font-size: 2em;
  }

  .contentBox .content h2 {
      font-size: 4em;
      color: #daa520;
      line-height: 1em;
  }

  .contentBox .content h2 span {
      color: #333;
      font-size: 0.75em;
      text-transform: uppercase;
  }

  .contentBox .content p {
      font-weight: 300;
  }

  .contentBox .content a {
      display: inline-block;
      padding: 10px 20px;
      background: #daa520;
      color: #fff;
      margin-top: 15px;
      text-decoration: none;
      border-radius: 50rem;
      padding: 15px 40px;
  }

  .contentBox .close {
      position: absolute;
      width: 40px;
      height: 40px;
      cursor: pointer;
      background: #fff;
      border-radius: 50%;
      z-index: 100;
      left: 90%;
      padding: 20px;
  }

  .contentBox .close i {
      font-size: 30px;
      top: -5px !important;
      margin-top: -20px;
      margin-left: -15px;
  }

  .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.3);
      height: 135vh;
      backdrop-filter: blur(10px);
      z-index: 1;
  }


  @media (max-width:767px) {
      .contentBox {
          width: 300px;
          height: auto;
          flex-direction: column;
      }

      .contentBox .imgBox img {
          height: 160px;
          transform: translateY(-50px);
      }

      .contentBox .content {
          height: auto;
          text-align: center;
          padding: 20px;
          padding-top: 0;
      }

      .contentBox .close {
          position: absolute;
          top: -13%;
          width: 40px;
          height: 40px;
          cursor: pointer;
          background: #fff;
          border-radius: 50%;
          z-index: 100;
          left: 80%;
          align-items: center;
          justify-content: center;
          padding: 23px;
          padding-bottom: 35px;
          padding-left: 33px;
      }
  }

  /* --loadmore */
  .load-more {
      position: relative;
      display: inline-block;
      padding: 15px 30px;
      border: 2px solid #daa520;
      text-transform: uppercase;
      background: linear-gradient(to top, #daa520, #fabb1b);
      text-decoration: none;
      font-weight: 600;
      font-size: 20px;
      border-radius: 5px;
  }

  .load-more::before {
      content: '';
      position: absolute;
      top: 6px;
      left: -2px;
      width: calc(100% + 4px);
      height: calc(100% - 12px);
      background: #fff;
      transition: .54s ease-in-out;
      transform: scaleY(1);
  }

  .load-more:hover::before {
      transform: scaleY(0);
      color: goldenrod;
  }

  .load-more span {
      position: relative;
      z-index: 3;
      color: #daa520;
  }

  .load-more:hover span {
      color: #eee;
  }

  .load-more::after {
      content: '';
      position: absolute;
      left: 6px;
      top: -2px;
      height: calc(100% + 4px);
      width: calc(100% - 12px);
      background: #fff;
      transition: .5s ease-in-out;
      transform: scaleX(1);
  }

  .load-more:hover::after {
      transform: scaleX(0);
  }

  /* Style the button */
  #scroll-to-top-btn {
      position: fixed;
      bottom: 30px;
      right: 50px;
      border-radius: 2px;
      background: linear-gradient(to top, #daa520, #fabb1b);
      color: #fff;
      border: none;
      width: 50px;
      padding: 10px;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
  }

  /* Show the button when the user scrolls */
  #scroll-to-top-btn.show {
      opacity: 1;
  }

  #scroll-to-top-btn:hover {
      background: linear-gradient(to top, #daa520ce, #fabb1bce);
  }

  .carousel-item {
      width: 100%;
      height: 500px;
  }

  .carousel-item img {
      width: 100%;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      background: #daa520;
      border-radius: 5px 0;
      height: 3.5rem !important;
  }

  .carousel-indicators {
      bottom: 20px !important;
  }

  .carousel-indicators [data-bs-target] {
      background-color: #daa520 !important;
      opacity: .3 !important;
  }

  .carousel-indicators .active {
      opacity: 1 !important;
  }

  @media only screen and (max-width: 600px) {
      .carousel-item {
          width: 100%;
          height: 180px;
      }
  }

  @media only screen and (min-width: 601px) and (max-width: 993px) {
      .carousel-item {
          width: 100%;
          height: 320px;
      }
  }


  #preloader {
      background: linear-gradient(to top, #daa520, #fabb1b);
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
  }

  .count {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 18vw;
      font-weight: 800;
      color: #fff;
      mix-blend-mode: difference;
      width: 550px;
      text-align: center;
  }

  .loader {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: #000;
  }

  .loader-logo {
      opacity: 1;
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 111;
      width: 200px;
  }

  /* scroll-Bar */

  ::-webkit-scrollbar {
      width: 12px;
  }

  ::-webkit-scrollbar-thumb {
      background: linear-gradient(to top, #daa520, #fabb1b);
      border-radius: 8px;
  }

  ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(to top, #daa520db, #fabb1bcc);
      border-radius: 8px;
  }


  .footer .containerss {
      max-width: 100%;
      margin: auto;
      border: none;
      box-shadow: none;
  }

  .footer .row {
      display: flex;
      flex-wrap: wrap;
  }

  .footer ul {
      list-style: none;
  }

  .footer {
      background: linear-gradient(to right, #daa520, #fabb1b);
      padding: 70px 0;
      margin-top: 100px;
      width: 100%;
  }

  .footer-col {
      width: 25% !important;
      padding: 0 15px;
  }

  .footer-col h4 {
      font-size: 18px;
      color: #ffffff;
      text-transform: capitalize;
      margin-bottom: 35px;
      font-weight: 500;
      position: relative;
      left: 35px;
  }

  .footer-col h4::before {
      content: '';
      text-align: center;
      position: absolute;
      bottom: -10px;
      background-color: #fff;
      height: 3px;
      border-radius: 50rem;
      box-sizing: border-box;
      width: 50px;
  }

  .footer-col ul li:not(:last-child) {
      margin-bottom: 10px;
  }

  .footer-col ul li a {
      font-size: 16px;
      text-transform: capitalize;
      color: #fff;
      text-decoration: none;
      font-weight: 300;
      color: #fff;
      display: block;
      transition: all 0.3s ease;
  }

  .footer-col ul li a:hover {
      color: #fff;
      padding-left: 8px;
  }

  .footer-col .social-links a {
      display: inline-block;
      height: 40px;
      width: 40px;
      background: linear-gradient(90deg, #daa520cb, #fabb1bcc);
      margin: 0 10px 10px 0;
      text-align: center;
      line-height: 40px;
      border-radius: 50%;
      color: #fff;
      transition: all 0.5s ease;
  }

  .footer-col .social-links a:hover {
      color: #daa200;
      background-color: #fff;
      border: 2px solid #daa200;
  }

  /* /responsive/ */
  @media(max-width: 767px) {
      .footer-col {
          width: 50% !important;
          margin-bottom: 30px;
      }
  }

  @media(max-width: 574px) {
      .footer-col {
          width: 100% !important;
          text-align: center;
          padding-bottom: 20px;
          border-bottom: 2px solid #daa200;
      }

      .footer-col ul li a:hover {
          color: #fff;
          padding-left: 0px;
          transform: scale(1.1);
          transition: transform 0.4s;
      }
  }