html {
        overflow-x: hidden; 
}

body {
      background-color: #fff; 
      padding-top: 80px;
    }
 
    .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: uppercase;
    padding: 19px 10px 19px;
    font-family: Arial, Helvetica, sans-serif;
    color: #888888;
    }
    .navbar-nav .nav-link:hover {
    color: #ff4977!important;
    }

nav.navbar.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.main-navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;                 
  height: 2px;
  background-color: #ff4977;


  box-shadow:
    0 6px 10px rgba(0, 0, 0, 0.18),
    0 12px 20px rgba(0, 0, 0, 0.12);
}
.breadcrumb {
  font-size: 11px!important;
}
.breadcrumb-item a{
  color: #ff4977;
  text-decoration: none;
}
.breadcrumb-item a:hover {
  color: #111;
}
.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    padding-left: 30px;
}

.alphabet-btn {
    display: inline-block;
    padding: 10px 14px;
    background-color: #f4f4f4;
    color: #111;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}
.alphabet-btn:hover {
    background-color: #007aff;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.store-box {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.store-heading {
  background: #fe87a5;
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 22px;
  font-family: Arial, Helvetica, sans-serif;
}


.store-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  border: 2px solid #a5a3a3;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  transition: transform 0.2s ease;
  max-width: 100%;
  width: 246px;
  height: 162px;
}

.store-card:hover {
  border-color: #ff4977;
}


.store-card img {
  max-width: 100%;
  height:  116px;
  object-fit: contain;
  width: 202px;
}

.store-name {
  font-size: 14px;
  color: #ff5a85;
}
