/*
  menu-heading.css
*/


.special-sticky-buttons {
  position: sticky;
  top: 60%;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 55px;
  z-index: 999;
  font-family: var(--fonts-menu);
}

.special-sticky-buttons .special-vertical-btn {
  display: flex;
  padding: 12px 8px;
  border: 2px solid #1e2e4a;
  text-decoration: none;
  color: #1e2e4a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  background-color: transparent;
  text-transform: uppercase;
  transform-origin: center center;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}

.special-vertical-btn {
  justify-content: center;
}

.special-sticky-buttons .special-vertical-btn:hover {
  background-color: #1e2e4a;
  color: #f8f1e4;
}

.special-menu-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 100px 50px 80px 50px;
}

.special-category-title {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: 4px;
  text-align: start;
}

.special-category-left {
  flex: 1 1 400px;
  max-width: 700px;
  padding-right: 40px;
  padding-bottom: 20px;
}


.special-item-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.special-category-image {
    width: 100%;
  height: auto;
  display: block;
  border-radius: 60px 0 0 60px;
  object-fit: cover;
}

.special-category-image.fading-out {
  opacity: 0;
}

.special-category-image.fading-in {
  opacity: 1;
}

.special-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: start;
  margin-bottom: 32px;
}

.special-item-text {
  max-width: 60%;
}

.special-item-name {
  font-size: 20px;
  font-weight: 600;
  color: #e56151;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.special-item-desc {
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  line-height: 1.4;
}

.special-icon-limited {
  color: #1e2e4a;
  margin-right: 4px;
  font-size: 16px;
  vertical-align: middle;
}

.special-tag-limited,
.special-tag-gf {
  font-size: 12px;
  font-weight: 600;
  color: #1e2e4a;
  margin-left: 6px;
  text-transform: uppercase;
}

.special-item-price {
  font-size: 16px;
  font-weight: 600;
  color: #1e2e4a;
  white-space: nowrap;
  margin-left: 20px;
}

.special-category-right {
  flex: 1 1 300px;
  max-width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.special-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.special-ategory-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 60px 0 0 60px;
  object-fit: cover;
}

.special-item-tags {
  display: flex;
  gap: 0.5rem;
  margin: 0.25rem 0;
}

.special-tag {
  background-color: #f0f0f0;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #666;
}

.tag-chilli {
  background-color: #fff3f3;
  color: #e56151;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tag-chilli i {
  color: #e56151;
}


