
    /* RECENTLY VIEWED PRODUCTS STYLES */
    .rv-section {
      width: 100%;
      margin: 50px 0;
      padding: 30px 0;
      background-color: #f9f9f9;
      position: relative;
    }
    
    .rv-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
    }
    
    .rv-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 28px;
      color: #333;
    }
    
    .rv-products {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      padding: 20px 0;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    
    .rv-products::-webkit-scrollbar {
      display: none;
    }
    
    .rv-product {
      flex: 0 0 280px;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    
    .rv-product:hover {
      transform: translateY(-5px);
    }
    
    .rv-product-img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }
    
    .rv-product-info {
      padding: 15px;
    }
    
    .rv-product-name {
      font-size: 16px;
      margin: 5px 0;
      color: black;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      text-decoration: none !important;
      font-weight: bold;
    }
    
    .rv-product-price {
      font-weight: bold;
      color:#28a745;
      font-size: 18px;
      text-decoration: none !important;
    }
    
    .rv-product-oldprice {
      text-decoration: line-through;
      color: #999;
      font-size: 14px;
      margin-left: 5px;
    }
    
    .rv-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #333;
      color: white;
      border: none;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      cursor: pointer;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all 0.3s;
    }
    
    .rv-nav-btn:hover {
      background: #e63946;
    }
    
    #rvPrev {
      left: 0;
    }
    
    #rvNext {
      right: 0;
    }




    