.app-bar-main {
  display: none !important;
}
/* Flipkart-like CSS based on provided styles */

/* Header & Navigation */
.sh-header-main {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
  background-color: #2874F0;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Hide unwanted category headings */
.sh-categories-container > div > h2, 
.sh-categories-container > div > hr {
  display: none !important;
}

/* Hero Banner */
.sh-banner-collection-card > a > div > div > p, 
.sh-banner-collection-card > a > div > div > p > svg {
  display: none;
}

/* Product Cards */
.sh-product-card {
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
}

.sh-product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Product Image */
.pr-long-card .pr-image {
  object-fit: contain;
  margin-top: -20px;
  max-height: 200px;
}

/* Discount Tags */
.sh-product-card-discount-tag, 
.sh-product-discount-tag {
  font-weight: 500 !important;
  border-radius: 5px !important;
  background-color: #FF5722;
  color: #fff;
  padding: 3px 8px;
}

/* Hide Try Feature */
.sh-try {
  display: none;
}

/* Button Styling */
.button-primary {
  background-color: #FF9F00;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.button-primary:hover {
  background-color: #FB641B;
}
