/* === SHOP PAGE PRODUCT CARD STYLING === */

/* Vertical line between nav items */
.sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1020;
  background-color: #fff;
}

.nav-vl {
  width: 1px;
  height: 24px;
  background-color: #ccc;
  margin: 0 10px;
}

.nav-link i {
  margin-right: 6px;
}

.nav-link.active{
  color: #761471;
  font-weight: bold;
  border-bottom: 2px solid #c16596;
}

.nav-link:hover {
  color: #b03060; 
  transition: color 0.3s ease;
}

.search-input {
  border-radius: 20px;
  padding-left: 15px;
}

.search-icon-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #b03060;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7c4f7c; 
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color:  #7c4f7c;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-subheading {
  font-size: 1.1rem;
  color: #3a3939;
  margin-bottom: 2rem;
  text-align: center;
}

body{
  background-image: url('birthday-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;

}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  color: #7c4f7c; 
  margin-bottom: 0.5rem;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color:  #7c4f7c;
  margin: 10px auto 0;
  border-radius: 2px;
}

.hero-banner {
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  text-decoration: none;
}

.category-card img {
  width: 350px;
  height: 450px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(70%);
  border-radius: 15px;
}

.category-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-color: rgba(0, 0, 0, 0.5); 
  padding: 10px 20px;
  border-radius: 10px;
  opacity: 1;
  pointer-events: none;
}

.category-card:hover img {
  transform: scale(1.1);
  filter: brightness(100%);
}

.category-card:hover .category-caption {
  opacity: 1;
}


.img-fluid{
    height: 450px;
    width: 400px;
}
.card {
  border: none;
  transition: transform 0.3s ease;
}

.card-img-top {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
   border-radius: 15
   px;
}
.card:hover {
  transform: translateY(-5px);
}

.icon-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-bar a {
  color: #000;
  font-size: 1.2rem;
}
