.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}
.hero-section {
  background: url("https://via.placeholder.com/1500x800") no-repeat center
    center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.hero-section h1 {
  font-size: 4rem;
  animation: fadeIn 2s ease-in-out;
  color: #f2df9b;
}
.hero-section p {
  font-size: 1.5rem;
  animation: fadeIn 3s ease-in-out;
  color: #f2df9b;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.card {
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  object-fit: center;
  background-position: center;
  height: 200px;
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.btn {
  border-radius: 20px;
}

.shop-header {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .shop-header {
    font-size: 2rem;
  }
}

/* shop Pgae css starts */

.product-title {
  font-size: 2rem;
  font-weight: bold;
}

.text-danger {
  font-size: 1.5rem;
  font-weight: bold;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
}

/* product card anchor tag styling */
.productCardAnchor {
  cursor: pointer;
  text-decoration: none;
  color: #333;
}
/* product card anchor tag styling */
/* shop Pgae css ends */

/* cart page css */
.cart-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.cart-summary {
  background-color: #f8f8f8;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.cart-summary h4 {
  margin-top: 0;
}

.cart-item img {
  max-width: 100%;
  height: auto;
}

/* .btn-primary {
  width: 100%;
} */

/* cart page css */

/* css for logo in header */
img.logo-img {
  height: 80px;
  background-position: center;
  background-size: cover;
}
/* css for logo in header */
