/* General Footer Styles */
#footer-content {
 background-color: #223549; /* Dark background */
 color: #fff; /* White text */
 padding: 40px 0;
 font-family: Arial, sans-serif;
}

/* Highlight Bar */
.highlight-bar-list {
 background-color: #EBEDE4; /* Slightly lighter than footer */
 padding: 20px 0;
}

#footer-highlight-bar {
 list-style: none;
 padding: 0;
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap; /* Permite que los elementos se ajusten al espacio disponible */
}

#footer-highlight-bar li {
 display: flex;
 justify-content: center; /* Center images in container */
 align-items: center;
 text-align: center;
 flex: 1; /* Permite que los elementos tengan el mismo ancho */
 max-width: 33.33%; /* Limita el ancho máximo de cada elemento */
}

#footer-content .custom-image {
 max-width: 50px; /* Adjust image size */
 height: auto; /* Maintain aspect ratio */
 margin: 0 auto;
}

.img-responsive {
 max-width: 100%;
 height: auto;
}

/* Return Policy Icon */
.return-policy-icon {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-decoration: none;
 font-family: Arial, sans-serif;
 text-align: center;
 color: rgb(191, 144, 0); /* Gold color */
 transition: transform 0.3s ease;
}

.return-policy-icon:hover {
 transform: scale(1.1); /* Small scaling effect on hover */
}

.return-arrow {
 position: relative;
 width: 30px;
 height: 30px;
 border: 3px solid rgb(191, 144, 0);
 border-radius: 50%;
 border-top-color: transparent;
 border-left-color: transparent;
 transform: rotate(-45deg);
 margin-top: -10px;
}

.return-arrow::after {
 content: '';
 position: absolute;
 top: -10px;
 left: 12px;
 width: 6px;
 height: 6px;
 background-color: rgb(191, 144, 0);
 transform: rotate(45deg);
 clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

/* Footer Links Section */
.container-default {
 max-width: 1200px;
 margin: 0 auto;
}

.ftr-links {
 margin-bottom: 20px;
}

.ftr-links h3 {
 color: #fff;
 font-size: 18px;
 margin-bottom: 10px;
 text-transform: uppercase;
 border-bottom: 2px solid #555;
 padding-bottom: 5px;
}

.ftr-links ul {
 list-style: none;
 padding: 0;
 margin: 0;
}

.ftr-links ul li {
 margin-bottom: 10px;
}

.ftr-links ul li a {
 color: #aaa;
 text-decoration: none;
 transition: color 0.3s;
}

.ftr-links ul li a:hover {
 color: #fff;
}

/* Email Form */
.email-form {
 background-color: #444;
 padding: 20px;
 border-radius: 5px;
 text-align: center;
 margin-top: 30px;
}

.email-form h5 {
 font-size: 16px;
 margin-bottom: 10px;
 color: rgb(191, 144, 0);
}

.email-form p {
 font-size: 14px;
 margin-bottom: 10px;
 color: #ccc;
}

.specials-form input[type="text"] {
 width: 70%;
 padding: 10px;
 margin-right: 10px;
 border: none;
 border-radius: 5px;
 outline: none;
}

.specials-form input[type="button"] {
 padding: 10px 20px;
 background-color: #555;
 color: #fff;
 border: none;
 border-radius: 5px;
 cursor: pointer;
 transition: background-color 0.3s;
}

.specials-form input[type="button"]:hover {
 background-color: #777;
}

/* Social Icons */
#social-icons {
 text-align: center;
 margin-top: 20px;
}

#social-icons p {
 margin-bottom: 10px;
 font-size: 16px;
}

#social-icons a {
 margin: 0 10px;
 color: #ccc;
 transition: color 0.3s;
}

#social-icons a i {
 color: #CCBA8D;
 font-size: 24px; /* Adjust size if needed */
 transition: color 0.3s ease; /* Smooth hover animation */
}

#social-icons a:hover i {
 color: #fff; /* Change to white on hover */
}

/* Responsiveness */
@media (max-width: 768px) {
 #footer-highlight-bar {
 flex-wrap: nowrap; /* Evita que los elementos se ajusten en múltiples líneas */
 justify-content: space-around; /* Centra los elementos horizontalmente */
 }

 #footer-highlight-bar li {
 max-width: none; /* Elimina restricciones de ancho en pantallas pequeñas */
 }

 .ftr-links-content {
 display: block;
 }

 .ftr-links {
 margin-bottom: 20px;
 }

 .specials-form input[type="text"] {
 width: 100%;
 margin-bottom: 10px;
 }

 .specials-form input[type="button"] {
 width: 100%;
 }
}

/* General Map Styles */
.map-container {
 position: relative;
 margin-top: 40px; /* Empuja el mapa hacia abajo */
 padding: 0;
 display: flex;
 justify-content: flex-end; /* Alínea a la derecha */
 align-items: flex-end; /* Alínea hacia abajo dentro del contenedor */
 width: 100%;
title: "interactive map";
 height: 300px; /* Altura ajustable del mapa */
 overflow: hidden;
}

.map-container iframe {
 width: 90%; /* Ajusta el ancho al 90% del contenedor */
 height: 100%;
 border: none;
title: "interactive map";
}

/* Responsiveness */
@media (max-width: 768px) {
 .map-container {
 justify-content: center; /* Centra el mapa en pantallas pequeñas */
 align-items: center;
 height: 200px; /* Ajusta la altura en dispositivos móviles */
 }

 .map-container iframe {
 width: 100%;
title: "interactive map"; /* Asegura que ocupe todo el ancho */
 }
}

.special-word {
 text-decoration: underline;
 text-decoration-color: #555555; /* Underline color */
 color: rgb(255, 0, 0); /* Text color */
 font-family: Lato, sans-serif;
 font-size: 30px;
}

