        .shop-area {
          background: #f3f3f3;
        }

        .shop-toolbar {
          padding: 15px 20px;
          border-radius: 8px;
          margin-bottom: 25px;
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        .product-card {
          background: #fff;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 4px 15px rgba(0,0,0,0.08);
          transition: 0.3s ease;
          position: relative;
          height: 100%;
        }

        .product-card:hover {
          transform: translateY(-5px);
        }

        .sale-badge {
          position: absolute;
          top: 8px;
          right: 8px;
          background: var(--color-primary);;
          color: #fff;
          padding: 4px 10px;
          font-size: 12px;
          border-radius: 6px;
        }

        .product-img {
          padding: 18px;
          text-align: center;
        }

        .product-img img {
          width: 100%;
          height: 220px;
          object-fit: contain;
        }

        /* INFO */
        .product-info {
          padding: 12px 15px 18px;
        }

        .product-title {
          font-weight: 600;
          min-height: 42px;
          font-size: 15px;
        }

        .product-price del {
          color: #888;
          margin-right: 5px;
        }

        .product-price span {
          color: #ff4d4d;
          font-weight: bold;
          font-size: 17px;
        }
        /* SIDEBAR CONTAINER */
        .sidebar-box {
          background: #f7f7f7;
          padding: 15px;
          border-radius: 8px;
          margin-bottom: 20px;
        }
        .sidebar-box.side-search-box.search{
          border-color:none;
        }
        .side-search-box,
        .product-widget {
          background: #fff;
          padding: 18px;
          border-radius: 8px;
          box-shadow: 0 3px 10px rgba(0,0,0,0.06);
        }
        .sidebar-title {
          font-weight: 700;
          margin-bottom: 12px;
          padding-bottom: 10px;
          border-bottom: 1px solid #eee;
        }

        .sidebar-product {
          display: flex;
          gap: 10px;
          padding: 10px 0;
          border-bottom: 1px solid #f0f0f0;
          align-items: center;
              justify-content: space-between
        }

        .sidebar-product:last-child {
          border-bottom: none;
        }

        .sidebar-product img {
          width: 45px;
          height: 55px;
          object-fit: contain;
          border-radius: 4px;
        }

        .sidebar-text p {
          font-size: 13px;
          margin: 0 0 3px;
          line-height: 1.3;
        }

        .sidebar-text span {
          color: #ac7305;
           background: #fff3cd; 
          font-weight: 600;
          font-size: 16px;
        }

        .btn-danger.search {
          border-radius: 6px;
          font-weight: 500;
        }
       .sidebar {
            position: sticky;
            top: 150px;   
            height: fit-content;
        }
