img[style*='float: left'] {
  margin-right: 40px;
}

img[style*='float: right'] {
  margin-left: 40px;
}

.article .gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.article .gallery img {
  max-height: 250px;
  cursor: pointer;
  margin: auto;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}

.article .lightbox {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: -1;
  padding: 20px;
  display: none;
  position: fixed;
  background-color: white;
}

.article .lightbox.open {
  z-index: 10000;
  display: flex;
}

.article .lightbox img {
  margin: auto;
  max-height: 100%;
}

.article .lightbox .prev,
.article .lightbox .next,
.article .lightbox .close {
  border: none;
  font-size: 56px;
  position: absolute;
  background-color: transparent;
}

.article .lightbox .prev,
.article .lightbox .next {
  top: 50%;
  transform: translateY(-50%);
}

.article .lightbox .prev {
  left: 10px;
}

.article .lightbox .next {
  right: 10px;
}

.article .lightbox .close {
  top: 10px;
  right: 10px;
}

.articleForm input:not([type='checkbox']),
.articleForm input:not([type='radio']),
.articleForm input:not([type='hidden']),
.articleForm select,
.articleForm textarea {
  width: 100%;
  -webkit-padding: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 4px;
}

.alert {
  position: fixed;
  top: 60px;
  right: 20px;
  max-width: 300px;
  padding: 12px 15px;
  background-color: #efefef;
  color: #404040;
  border-radius: 6px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.alert > div {
  padding: 12px;
  width: 100%;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 16px;
  color: #404040;
  background: none;
  border: none;
  cursor: pointer;
}

.close-btn:hover {
  color: #202020;
}

.alert .line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  min-height: 3px;
  transition: width 3s linear;
}

.alert-success .line {
  background-color: limegreen !important;
}

.alert-warning .line {
  background-color: yellow !important;
}

.alert-danger .line,
.alert-error .line {
  background-color: red !important;
}

.alert.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

.alert-popup.show {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #ffffffee;
  color: #1f1f1f;
  padding: 18px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  width: fit-content;
  min-width: 220px;
  text-align: center;
  animation: fadeInUp 0.35s ease-out forwards;
  opacity: 0;
}

.alert-popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.popup-icon {
  font-size: 26px;
  color: #4caf50;
}

.popup-text {
  font-size: 16px;
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
  }
}

@media only screen and (max-width: 768px) {
  .article .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 576px) {
  .article .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.art_video {
  width: 100%;
  aspect-ratio: 1.77;
  border: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.formError {
  color: red;
  margin-top: 5px;
  font-weight: 600;
  grid-column: 1 / -1;
}

.lab-01 {
  visibility: hidden;
  height: 0;
}
.articleForm .formRow.lab-01 {
  margin-top: 0;
}

.rodo-02 {
  visibility: hidden;
  height: 0;
}
.articleForm .formRow.rodo-02 {
  margin-top: 0;
}

/* place */
/* place */
/* place */

.sec13 .container {
  width: 95%;
  padding: 70px 0;
  color: #262626;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.sec13 .category-title {
  text-transform: capitalize;
  font-size: var(--font-size-md);
}

.sec13 .category-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sec13 h1 {
  text-align: center;
  font-weight: 500;
  font-size: 34px;
}

.sec13 .category-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec13 h3 {
  font-weight: 500;
}

.box1300 {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-gray);
}

.box1300 .image {
  width: 100%;
  height: 50%;
}

.box1300 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box1300 .description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box1300 .ingredients {
  display: flex;
  gap: 20px;
}

.box1300 h5 {
  font-weight: 600;
  font-size: 16px;
}

.box1300 .ingredients {
  font-size: 14px;
}

.box1300 .tags {
  padding-top: 5px;
  font-size: 12px;
  opacity: 0.7;
  line-height: 1rem;
}

.box1300 .price {
  margin-top: 20px;
  font-weight: 600;
}

@media (max-width: 1210px) {
  .sec13 .category-wrap {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sec13 .category-wrap {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .sec13 .category-wrap {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .box1300 {
    width: 100%;
  }
}
