/* FOOTER BASE */
.custom-footer {
  background: #001b06; /* deep elegant green */
  /*#001B06*/
  color: #f2f2f2;
  padding: 105px 100px 24px;
  /*font-family: "Inter", sans-serif;*/
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding-bottom: 30px;
}

/* TITLES */
.footer-title {
  font-size: 14px;
  letter-spacing: 1.6px;
  margin-bottom: 25px;
  color: #e5e5e5;
  text-transform: uppercase;
}

/* CONTACT LINES */
.footer-line {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

/*.footer-icon {*/
/*  margin-right: 12px;*/
/*  font-size: 18px;*/
/*}*/

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.icon-svg {
  width: 18px;
  height: 18px;
  fill: #ffffff; /* PURE WHITE ICONS */
}

.footer-line a {
  text-decoration: none;
  color: #e1e1e1;
  transition: 0.2s;
}

.footer-line a:hover {
  color: #ffffff;
}

/* NAV LINKS */
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: 0.2s;
  text-transform: capitalize;
}

.footer-nav a:hover {
  color: #fff;
}

/* LOCATIONS */
.footer-location h4 {
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #fff;
}

.footer-location p {
  margin: 0 0 20px;
  color: #cfcfcf;
  line-height: 1.5;
}

.custom-footer .footer-location a {
    color: #e1e1e1;
}

.custom-footer .footer-location a:hover {
    color: #fff;
}

/* NEWSLETTER */
.newsletter-wrapper {
  display: flex;
  border: 1px solid #7f7f6a;
}

.newsletter-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px;
  color: #fff;
}

.newsletter-wrapper input::placeholder {
  color: #c3c3c3;
}

.newsletter-btn {
  background: #c7b199; /* warm beige */
  border: none;
  padding: 0 25px;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 0;
}

.newsletter-btn:hover {
  background: #c69e72;
}

/* SOCIAL */
.footer-social {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #fff;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  color: #bbb;
  font-size: 14px;
  border-top: 1px solid #1c2b1e;
}
.footer-bottom a {
    color: #bbb;
}

/*POPUP CONFIRMATION*/
.newsletter-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    max-width: 400px;
    text-align: center;
    color: #001b06;
}

.newsletter-popup.show {
    display: block;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.popup-overlay.show {
    display: block;
}

.popup-close {
    margin-top: 15px;
    padding: 10px 20px;
    background: #001b06;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/*zenchef color*/
[data-panda-theme] {
  --colors-restaurant: #cb9b66 !important;
  --colors-restaurant-rgb: 203, 155, 102 !important;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .custom-footer {
    background: #001b06;
    color: #f2f2f2;
    padding: 105px 50px 24px;
   }
}



@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 500px) {
    .custom-footer {
        padding: 40px 50px 80px;
    }
}
