.our-menu {
  width: 95%;
  margin: 12px auto 0 auto;
  padding-bottom: 80px;
}

/* hero */

.our-menu-hero {
  position: relative;
  height: 350px;
  overflow: hidden;
  margin-bottom: 40px;
}

.our-menu-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url(../images/sec-1-img-1.png);
}

.our-menu-hero-img div {
  width: 100%;
  height: 100%;
  background: #0000006e;
}

.our-menu-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.our-menu-title {
  font-size: 75px;
  font-family: var(--font-secondary);
  font-weight: 500; 
}

.our-menu-subtitle {
  font-size: 30px;
  font-family: var(--font-secondary);
  font-weight: 500;
}

/* pills */

.our-menu-categories {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.our-menu-categories::-webkit-scrollbar {
  height: 6px;
  background: transparent;
}

.our-menu-categories:hover::-webkit-scrollbar {
  background: rgba(0, 0, 0, 0.1);
}

.our-menu-categories:hover::-webkit-scrollbar-thumb {
  background: #7b3b1a;
  border-radius: 10px;
}

/* pills style */

.our-menu-pill {
    padding: 12px 22px;
    border-radius: 30px;
    border: 1px solid #7b3b1a;
    background: transparent;
    white-space: nowrap;
    cursor: pointer;
    font-size: 18px;
    color: #7b3b1a;
    font-weight: 400;
}

.our-menu-pill.active {
  background: #7b3b1a;
  color: white;
}

/* grid */

.our-menu-grid {
/*   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; */
  margin-top: 40px;
  position: relative;
}

.our-menu-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 30px 60px;
}

.our-menu-column-divider{
	position: absolute;
    background-color: #7b3b1a;
    width: 1px;
    height: 100%;
    left: calc(50% - .5px);
}

/* item */

.our-menu-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.our-menu-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.our-menu-img.placeholder {
    border: 1px solid;
    display: flex;
}

.our-menu-img.placeholder::before {
    content: 'No Image Found';
    margin: auto;
    text-align: center;
    line-height: 1.4;
    font-size: 10px;
    font-style: italic;
    padding: 4px;
}

.our-menu-item h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
/*   font-family: var(--font-secondary); */
  letter-spacing: 1px;
}

.our-menu-item p {
    margin: 12px 0;
    font-size: 14px;
    color: #666;
    max-width: 300px;
    line-height: 1.4;
}

.our-menu-item span {
  font-weight: 600;
}

/* responsive */

@media (max-width: 900px) {
	.our-menu-img {
	  width: 80px;
      height: 80px;	
	}
	
  .our-menu-grid {
/*     grid-template-columns: 1fr;
    gap: 30px; */
  }
	
  .our-menu-column {
	  grid-template-columns: 1fr;
	  gap: 30px;
	}

  .our-menu-title {
    font-size: 50px;
  }
	
  .our-menu-subtitle {
	font-size: 20px;
  }
	
  .our-menu-column-divider{
	display: none;
   }
}

@media (max-width: 600px) {
  .our-menu {
    padding-bottom: 40px;
  }

  .our-menu-hero-content {
    width: 90%;
  }

  .our-menu-pill {
    padding: 10px 16px;
    font-size: 16px;
  }
}


.our-menu-shimmer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.shimmer-item {
  display: flex;
  gap: 16px;
}

.shimmer-img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  background: #d5d5d5;
  position: relative;
  overflow: hidden;
}

.shimmer-content {
  flex: 1;
}

.shimmer-line {
  height: 14px;
  background: #d5d5d5;
  margin-bottom: 10px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.shimmer-line.title {
  width: 40%;
  height: 18px;
}

.shimmer-line.small {
  width: 30%;
}

.shimmer-img::after,
.shimmer-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  width: 150px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #f5f5f5, transparent);
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}
