      /*..........Product Detail..........*/
      
      .card-wrapper-eye {
          margin: 30px auto;
      }
      
      .img-display-eye {
          overflow: hidden;
      }
      
      .img-showcase-eye {
          display: flex;
          width: 100%;
          transition: all 0.5s ease;
      }
      
      .img-showcase-eye img {
          min-width: 100%;
          width: 100%;
          display: block;
      }
      
      .img-select-eye {
          display: flex;
      }
      
      .img-item-eye {
          margin: 0.3rem;
      }
      
      .img-item-eye a img {
          width: 100%;
          display: block;
      }
      
      .img-item-eye:nth-child(1),
      .img-item-eye:nth-child(2),
      .img-item-eye:nth-child(3) {
          margin-right: 0;
      }
      
      .img-item-eye:hover {
          opacity: 0.8;
      }
      
      .product-content-eye {
          padding: 32px 0px 32px 16px;
      }
      
      .product-title-eye {
          font-size: 32px;
          text-transform: capitalize;
          font-weight: 700;
          position: relative;
          color: #12263a;
          margin: 1rem 0;
      }
      
      .product-title-eye::after {
          content: "";
          position: absolute;
          left: 0;
          bottom: 0;
          height: 2px;
          width: 80px;
          background: #12263a;
      }
      
      .product-link-eye {
          text-decoration: none;
          text-transform: uppercase;
          font-weight: 400;
          font-size: 15px;
          display: inline-block;
          margin-bottom: 0.5rem;
          background: #256eff;
          color: #fff;
          padding: 0 0.3rem;
          transition: all 0.5s ease;
      }
      
      .product-link-eye:hover {
          opacity: 0.9;
      }
      
      .product-rating-eye {
          color: #4cb0d4;
          font-size: 16px;
      }
      
      .product-rating-eye span {
          font-weight: 600;
          color: #252525;
      }
      
      .product-price-eye {
          margin: 1rem 0;
          font-size: 16px;
          font-weight: 700;
      }
      
      .product-price-eye span {
          font-weight: 400;
      }
      
      .last-price-eye span {
          color: #f64749;
          text-decoration: line-through;
      }
      
      .new-price-eye span {
          color: #256eff;
      }
      
      .product-detail-eye h2 {
          text-transform: capitalize;
          color: #12263a;
          padding-bottom: 0.6rem;
          font-size: 24px;
      }
      
      .product-detail-eye p {
          padding: 0;
          font-size: 17px;
          color: #707070;
          letter-spacing: .4px;
      }
      
      .product-detail-eye ul {
          margin: 1rem 0;
          font-size: 0.9rem;
      }
      
      .product-detail-eye ul li {
          list-style: none;
          font-size: 17px;
          line-height: 28px;
          color: #707070;
          letter-spacing: .4px;
      }
      
      .product-detail-eye ul li i {
          color: #d73041;
          margin-right: 10px;
          font-size: 17px;
      }
      
      .product-detail-eye ul li span {
          font-weight: 400;
          color: #4cb0d4;
      }
      
      .purchase-info-eye {
          margin: 1.5rem 0;
          display: flex;
          flex-direction: row;
          flex-wrap: wrap;
      }
      
      .purchase-info-eye input,
      .purchase-info-eye .btn-eye {
          border: 1.5px solid #ddd;
          border-radius: 8px;
          text-align: center;
          padding: 0.45rem 0.8rem;
          outline: 0;
          margin-right: 0.2rem;
          margin-bottom: 1rem;
      }
      
      .purchase-info-eye input {
          width: 60px;
      }
      
      .purchase-info-eye .btn-eye {
          cursor: pointer;
          color: #fff;
          font-size: 17px;
      }
      
      .purchase-info-eye .btn-eye:first-of-type {
          background: #4cb0d4;
      }
      
      .purchase-info-eye .btn-eye:last-of-type {
          background: #f64749;
      }
      
      .purchase-info-eye .btn-eye:hover {
          opacity: 0.9;
      }
      
      .social-links-eye {
          display: flex;
          align-items: center;
          flex-wrap: wrap;
      }
      
      .social-links-eye P {
          margin-right: 15px;
          padding: 0;
          font-size: 17px;
          color: #707070;
          letter-spacing: .4px;
      }
      
      .social-links-eye a {
          display: flex;
          flex-wrap: wrap;
          margin: 0 3px;
          text-decoration: none;
          font-size: 15px;
          color: #fff;
          width: 35px;
          line-height: 35px;
          height: 35px;
          background: #4cb0d4;
          display: inline-block;
          border-radius: 50%;
          text-align: center;
          transition: 0.3s ease;
      }
      
      .social-links-eye a:hover {
          opacity: 0.9;
      }
      
      @media screen and (min-width: 992px) {
          .card-eye {
              display: grid;
              grid-template-columns: repeat(2, 1fr);
              grid-gap: 1.5rem;
          }
          .card-wrapper-eye {
              display: flex;
              justify-content: center;
              align-items: center;
          }
          .product-imgs-eye {
              display: flex;
              flex-direction: column;
              justify-content: center;
          }
          .product-content-eye {
              padding-top: 0;
          }
      }
      
      @media (max-width: 991px) {
          .product-content-eye {
              padding: 0px;
          }
      }
      
      @media (max-width: 350px) {
          .product-title-eye {
              font-size: 24px;
          }
          .product-link-eye {
              font-size: 14px;
          }
          .product-rating-eye {
              font-size: 14px;
          }
          .product-price-eye {
              font-size: 14px;
          }
          .product-detail-eye h2 {
              font-size: 20px;
          }
          .product-detail-eye p {
              font-size: 15px;
          }
          .purchase-info-eye .btn-eye {
              font-size: 15px;
          }
          .product-detail-eye ul li {
              font-size: 15px;
          }
          .purchase-info-eye input,
          .purchase-info-eye .btn-eye {
              padding: 0.45rem 0.5rem;
          }
          .social-links-eye a {
              margin: 0 2px;
              font-size: 15px;
              width: 30px;
              line-height: 30px;
              height: 30px;
          }
      }
      /*..........End Product Detail..........*/