/* footer.css */
.site-footer{
   background-color: #fff7ee;;
}
footer {
    background-color: #ededed7a;
    color: #513d2e;
    padding: 40px 20px;
    /* margin-top: 40px; */
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
}

.footer-containers {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* max-width: 1200px; */
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
}
.logos {
  max-width: 100px;
  height: auto;
  transition: max-width 0.3s ease;
  padding: 10px;
}
.logoss {
  max-width: 160px;
  height: auto;
  transition: max-width 0.3s ease;
  padding: 10px;
}
.footer-containers > div {
    flex: 1 1 200px;
    margin: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.footer-containers h4 {
    font-size: 26px !important;
    margin-bottom: 15px;
    /* border-bottom: 2px solid #555; */
    padding-bottom: 5px;
    font-family: 'Cormorant Garamond', serif;
}

.footer-containers ul {
    list-style: none;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
}

.footer-containers ul li {
    margin-bottom: 10px;
}

.footer-containers ul li a {
    color:#513d2e;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-containers ul li a:hover {
    color: #513d2e;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-containers {
        flex-direction: column;
        align-items: center;
    }

    .footer-containers > div {
        text-align: center;
    }
}
/* Social Icons Styling */
.social-icons a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img.social-logos {
  width: 28px;
  height: 28px;
  filter: grayscale(100%) brightness(0.5);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover img.social-logos {
  transform: scale(1.2);
  filter: none;
}

* {

  text-decoration: none !important;
}




/* Floating Country Selector Button */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-button:hover {
    background-color: #45a049;
    transform: scale(1.1);
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 20px;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 999;
    padding: 10px;
}

.dropdown-content.show {
    display: block;
}

/* Individual Country Option Styling */
.country-option {
    background-color: #f9f9f9;
    color: #333;
    border: none;
    padding: 10px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.country-option:hover {
    background-color: #f1f1f1;
}

/* Currency Display */
.currency {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 18px;
}

/* Homepage Content */
.homepage-content {
    margin-top: 100px;
}




.whatsapp-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.whatsapp-icon a {
    display: inline-flex;
    align-items: center;
    background-color:#a59d8d;
    color: white !important;
    padding: 12px 16px;
    border-radius: 15px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.whatsapp-logos {
    margin-right: 8px;
    fill: white;
    width: 24px;
    height: 24px;
}

.social-icons {
  display: flex;
  gap: 15px; /* space between icons */
  align-items: center;
}

.nav-icon-link {
  display: inline-flex;
  width: 30px;
  height: 30px;
  text-decoration: none;
}

.nav-icon-link svg {
  width: 30px;
  height: 30px;
  stroke: black; /* adjust color if needed */
  transition: stroke 0.3s ease;
}

/* Optional: Hover effect */
.nav-icon-link:hover svg {
  stroke: #ff9900; /* change this color to fit your design */
}


#currency-selector {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* background: #ffffff; */
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    /* padding: 10px 14px; */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.currency-label {
    display: flex;
    align-items: center;
    gap: 12px; /* space between label and select */
}

.currency-text {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

#currency-selector select {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    font-weight: 600;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
    transition: all 0.3s ease;
}

#currency-selector select:hover {
    border-color: #007BFF;
    background-color: #fff;
}

@media screen and (max-width: 480px) {
    #currency-selector {
        bottom: 10px;
        left: 10px;
        /* padding: 8px 10px; */
        border-radius: 8px;
        font-size: 13px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .currency-label {
        gap: 8px;
        flex-direction: column; /* stack label and select on mobile */
        align-items: flex-start;
    }

    .currency-text {
        font-size: 13px;
    }

    #currency-selector select {
        font-size: 13px;
        padding: 5px 10px;
        padding-right: 10px;
        background-position: right 8px center;
        background-size: 10px;
    }
}

