
@font-face {
  font-family: 'Untitled Sans';
  src: url('../fonts/Untitled-Sans.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}

/* ==================  grid  ================== */
.row.g-4 {
  --bs-gutter-x: 1.5rem; 
  --bs-gutter-y: 2rem;
}

.product-grid-item {
  flex: 0 0 33.333333%;       
  max-width: 33.333333%;
  padding-left: 0.75rem; 
  padding-right: 0.75rem;
    margin-top: 30px;
    

}

.product-grid-item:hover {
  text-decoration: none;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;  
  margin-right: -0.75rem;
}


@media (max-width: 991.98px) {
  .product-grid-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  .product-grid-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ==================card  ================== */
.product-card {
  background-color: #f4f6ee;
  border: 1.5px solid #1d3a24;
  border-bottom: 5px solid #3f4d3b;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;          
  overflow: hidden;
  background: #ffffff; 
      

}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit:cover;       
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}






/* content under image */
.product-content {
  padding: 16px 20px 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-grid-item {
  outline: none; 
}



.product-title {
  font-weight: 600;
  font-size: 1.15rem;
  color: #2f3b2d;
  margin-bottom: 6px;
  line-height: 1.3;
  min-height: 48px;
}

.product-brand {
  font-size: 0.85rem;
  color: #6b7b63;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.product-price {
  font-weight: 700;
  font-size: 1.25rem;
  color: #2f3b2d;
  margin-bottom: 16px;
}

.product-btn {
  border: 1.5px solid #2f3b2d;
  border-radius: 30px;
  padding: 10px 0;
  background-color: transparent;
  color: #2f3b2d;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  margin-top: auto;
}

.product-btn:hover {
  background-color: #2f3b2d;
  color: #fff;
  transform: translateY(-2px);
}


.category-title {
  margin: 40px 0 20px;
  font-size: 24px;
  font-weight: bold;
}

  /* ====================================== */

  .child-menu {
  display: none;
}

.child-menu.show {
  display: block !important;
}
/* =============================================================================== */


main h1,
#pageTitle,
.category-main-title,
.category-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;                   
  font-weight: 500;
  color: #1a2f1f;
  text-align:left;
  margin: 50px 0 35px;
  line-height: 1.1;
  letter-spacing: -0.8px;
}

#shop-all-menu > li > a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;                 
  font-weight: 300;
  color: #1a2f1f;
  text-decoration: none;
  /* padding: 10px 24px; */
  display: block;
  transition: all 0.2s ease;
}

#shop-all-menu .get-back {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 100;
  color: #1a2f1f;
  padding: 15px 24px;
  border-bottom: 2px solid #e0e6d9;
}

#shop-all-menu {
  background: #ffffff;
  border: 1px solid #d8e0d2;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
  min-width: 240px;
  padding: 10px 0;
  margin-top: 8px;
}

@media (max-width: 991px) {
  main h1,
  #pageTitle,
  .category-main-title,
  .category-title {
    font-size: 2.4rem;
    margin: 40px 0 25px;
  }

  #shop-all-menu > li > a {
    font-size: 1.1rem;
    padding: 9px 20px;
  }
}



/* ======================================================================== */



