.site-footer {
  background-color: #333132;
  /* dark background */
  color: #ddd;
  padding: 40px 20px;
  font-size: 18px;
}

.site-footer p {
  color: #999;
}

.site-footer a {
  color: #999;
  text-decoration: none;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 180px;
  text-align: center;
  line-height: 1.75;

}

.footer-col h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
}


.footer-col .footer-icon {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  padding: 5px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  transition: background-color 0.3s;
}

.footer-col .footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: bold;
}

.footer-col .footer-phone:hover .footer-icon {
  background-color: #BE9252;
  text-decoration: underline;
}

.footer-col .footer-phone:hover {
  color: #BE9252;
  text-decoration: underline;
}
 .footer-col a:hover{
  color: #BE9252;
  text-decoration: underline;
 }
.footer-col button {
  color: #ffffff;
  background-color: #be9252;
  border-color: #be9252;
  padding: 15px 24px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
  margin-top: 30px;
}

.footer-col button a {
  color: #ffffff;
  text-decoration: none;
}
.footer-col button a:hover{
    color:white;
}

.footer-col h1 {
  font-size: 36px;
  color: #BE9252
}

.footer-col .social-icons a {
  margin-right: 10px;
  font-size: 20px;
  color: #ddd;
  transition: color 0.3s;
}

.footer-col .social-icons a:hover {
  color: #BE9252;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #5c5a5a;
}


/* Loyalty Tab Container */
.loyalty-tab {
  position: fixed;
  bottom: 176px;
  left: 56px;
  width: 550px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 20%);
  z-index: 9999;
  display: none;
  animation: slideIn 0.5s ease forwards;
}

.loyalty-image {
  background-color: #DE0510;
  width: 100%;
  height: auto;
}

.loyalty-image img {
  margin-top: 56px;
  width: 100%;
  height: auto;
}

.loyalty-text {
  padding: 20px 30px 30px 30px;
}

.loyalty-contents {
  display: flex;
  position: relative;
  text-align: center;
}

/* Close button */
.loyalty-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.loyalty-close:hover {
  color: red;
}

/* Text and button */
.loyalty-contents h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.loyalty-contents p {
  font-size: 14px;
  margin-bottom: 16px;
  color: #555;
}

.loyalty-btn {
  display: inline-block;
  background-color: #DE0510;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.loyalty-btn:hover {
  background-color: #b0040c;
}

/* Gift Icon */
.loyalty-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #DE0510;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 10000;
  display: none; /* visible only on mobile */
  transition: transform 0.2s;
}

.loyalty-icon:hover {
  transform: scale(1.1);
}

/* Animation */
@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .loyalty-tab {
    width: 90%;
    left: 5%;
    bottom: 100px;
  }

  .loyalty-icon {
    display: block;
  }
}
