/*@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: 100px;
}

.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);
}

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

.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;
  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;
}



