* {
    padding: 0;
    margin: 0;
    font-family: 'Droid Serif';
}

/* Breadcrumb Styles */
.shop-container {
    background: url('images/top_bg_1.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 100px 20px 60px;
    color: #2b1b17;
}

.shop-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.shop a,
span {
    text-align: center;
    color: #555;
    text-decoration: none;
}

.shop a:hover {
    color: #009f3b;
}

/* Breadcrumb Styles ended */

/* Grid Section */
.card {
    border: none;
}
.card-img-top {
  object-fit: cover;
  height: 250px;
  width: 100%;
}
.card-body h5{
    display: inline;
    text-align: left;
    text-decoration: none;
    font-family: 'Droid Serif', serif;
    font-weight: bold;    
    color: #453e3c;
    cursor: pointer;
    text-decoration-color: rgb(69, 62, 60);
}
.card-body a{
    text-decoration: none;
    font-size: 30px;
    color: #2b1b17;
}
.card:hover a{
    color: #009f3b;
}
.card-text {
    font-family : 'Droid Serif';
    font-size: 1em;
    color: black;
}
.card-text span {
    text-decoration: line-through;
    color: #716262;
    font-size: 1em;
    margin-right: 10px;
}

.add-to-cart {
  color: #00aa4f;
  border: 1px solid #00aa4f;
  padding: 0.75rem 2rem;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}    
.add-to-cart:hover {
    color: #2b1b17;
    border: 1px solid #2b1b17;
    box-shadow: 2px 2px 0 rgb(69, 62, 60)
}
/*shop grid layout*/

.sidebar ul {
    padding-left: 0;
    text-align: center;
}
  
.sidebar ul li {
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
    font-family: 'Droid-Serif';
    font-size: 16px;

}
  
.sidebar ul li a {
    color: #e69959;
    text-decoration: none;
  }
  
.sidebar ul li a:hover {
    text-decoration: none;
    color: #2b1b17;
  }

.sidebar h5 {
    text-align: center;
    font-family: 'droid-serif';
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sidebar span{
    text-decoration: line-through;
    color: #716262;
    margin-right: 10px;
}

.product-title h5{
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 16px;
    font-family: 'Droid-Serif';
  }

  .product-name {
    color: #de9b57;
    font-weight: 400;
    font-size: 14px;
  }
.product-name a{
    color: #de9b57;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
}
.product-name a:hover {
    color: #2b1b17;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
}
  .product-price {
    color: #2b1b17;
    font-size: 14px;
    font-weight: 500;
  }
  
.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

  hr {
    width: 150px;
    margin: 1rem auto;
    border-top: 2px solid #716262;
  }

  .product-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }

  .product-item {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-weight: 600;
    font-family: 'Droid-Serif';
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-size: 16px;
  }

  .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #ccc;
    margin: 0.5rem auto 1rem;
  }

  .social-icons i {
    font-size: 1.5rem;
    margin: 0 10px;
    color: gray;
    cursor: pointer;
    &:hover{
    color: green;
    }
  }

  .newsletter-text {
    color: #aaa;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .subscribe-btn {
    border: 2px solid green;
    color: green;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
  }

  .subscribe-btn:hover {
    background-color: green;
    color: white;
  }

  .form-control::placeholder {
    color: #bbb;
  }

  /*pagination*/
  .pagination-rounded .page-link {
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 8px;
    font-weight: bold;
    color: #6c4c3d;
    border: 1px solid #6c4c3d;
    margin-right: 15px;
  }
  
  .pagination-rounded .page-item.active .page-link {
    background-color: #6c4c3d;
    color: #fff;
    border-color: #6c4c3d;
  }
  
  .pagination-rounded .page-link:hover {
    background-color: #6c4c3d;
    color: white;
  }
  /*header*/
  /* Header Styles */
.nav-link {
  color: #131313;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background-color: #131313;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:active,
.nav-link:focus {
  color: #131313 !important;
}

.nav-link:hover::after,
.nav-link:active::after {
  width: 100%;
}

.fa-cart-shopping {
  transform: scaleX(-1);
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover {
  display: block;
  margin-top: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f5f5f5;
  color: #6d4c41;
}

@media (max-width:992px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-toggler {
    border: none;
  }
}

/*coffee cup overlay on hover*/
.image-container {
  position: relative;
  overflow: hidden;
}

.overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 50px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.image-container:hover .overlay-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/*end of overlay icon*/