/* Fixed Buttons Container (WhatsApp + Scroll To Top) */
.fixed-buttons {
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.btn-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.get-in-touch-btn {
  background-color: #6c757d;
  /* Grey */
}

.get-in-touch-btn:hover {
  background-color: #5a6268;
  transform: scale(1.1);
  color: white;
}

.phone-btn {
  background-color: #007bff;
  /* Blue */
}

.phone-btn:hover {
  background-color: #0069d9;
  transform: scale(1.1);
  color: white;
}

.whatsapp-btn {
  background-color: #25d366;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: white;
}

.scroll-top-btn1 {
  background-color: #d9251c;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top-btn1.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn1:hover {
  background-color: #b51f18;
  transform: translateY(-5px);
  color: white;
}

@media (max-width: 768px) {
  .get-in-touch-float a {
    font-size: 11px;
    padding: 10px 8px;
  }

  .fixed-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }

  .btn-circle {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .get-in-touch-float a {
    font-size: 10px;
    padding: 8px 6px;
  }

  .fixed-buttons {
    bottom: 10px;
    right: 10px;
    gap: 8px;
  }

  .btn-circle {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 0;
}

.footer-container {
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
grid-template-columns: 1.2fr 0.8fr 3fr 1.2fr;
  align-items: start;
  gap: 24px;
}

.footer-column {
  min-width: 0;
  align-self: start;
  vertical-align: top;
}

.footer-column h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
  color: #fff;
  font-family: Sans-serif;
  white-space: nowrap;
}

.footer-column hr {
  margin-bottom: 15px;
  border: none;
  border-top: 1px solid #fff;
  width: 170px;
  max-width: 100%;
}

.footer-column p,
.footer-column li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column.links {
text-align: left;
}

.footer-column.links h3 {
  text-align: left;
}

.footer-column.links hr {
  margin-left: 0;
  margin-right: auto;
}

.footer-column.links ul {
display: block;
  text-align: left;
}

.footer-column i {
  margin-right: 10px;
}

/* Products column: centered 2-column grid */
.footer-column.footer-products {
  text-align: center;
}

.footer-column.footer-products h3,
.footer-column.footer-products hr {
  margin-left: auto;
  margin-right: auto;
}

.footer-column.footer-products hr {
  width: 100%;
  max-width: 940px;
}

.footer-column.footer-products ul {
  display: grid;
grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 8px 30px;
  max-width: 940px;
  margin: 0 auto;
}

.footer-column.footer-products li {
  margin-bottom: 0;
  line-height: 1.4;
white-space: normal;
  text-align: left;
  word-break: break-word;
}

.footer-column.contact p {
  display: flex;
  align-items: flex-start;
  overflow-wrap: anywhere;
}

.footer-column.contact p i {
  margin-top: 5px;
  margin-right: 12px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}


.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
}

.social-icons i {
  font-size: 22px;
  margin-right: 15px;
  cursor: pointer;
}

.footer-column li a {
  text-decoration: none;
  color: white;
}

/* ✅ Bottom Section */
.footer-bottom {
  text-align: center;
  padding: 15px 10px 30px;
  font-family: Sans-serif;
  border-top: 1px solid #444;
  margin-top: 30px;
}

.footer-bottom p {
  color: #81c45d;
  font-weight: bold;
  font-size: 16px;
  margin: 12px 0;
}

.footer-bottom .footer_highlight {
  color: white;
  font-weight: bold;
}

/* ✅ Responsive Media Queries */

/* Tablet Layout (768px <= width < 1250px) */
@media (max-width: 1250px) {
  .footer-container {
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 24px 20px;
  }

  .footer-column.about {
    order: 1;
  }

  .footer-column.links {
    order: 2;
  }

  .footer-column.contact {
    order: 3;
  }

  .footer-column.footer-products {
    grid-column: 1 / -1;
    order: 4;
    margin-top: 10px;
  }
}

/* Mobile Layout (width < 768px) */
@media (max-width: 767px) {
  .footer {
    padding: 32px 16px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
gap: 24px;
  }

  .footer-column,
  .footer-column.links,
  .footer-column.footer-products,
  .footer-column h3,
  .footer-column ul {
    text-align: left !important;
  }

  .footer-column hr,
  .footer-column.links hr,
  .footer-column.footer-products hr {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

.footer-column.footer-products ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
  }

  .footer-column p,
  .footer-column li {
    font-size: 15px;
  }

  .whatsapp-btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .whatsapp-btn i {
    font-size: 20px;
  }

  .whatsapp-text {
    font-size: 14px;
  }
}

/* Narrow Mobile Layout (width < 480px) */
@media (max-width: 479px) {
  .footer-column.footer-products ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .whatsapp-btn {
    padding: 6px 12px;
  }

  .whatsapp-btn i {
    font-size: 18px;
  }

  .whatsapp-text {
    font-size: 12px;
  }
}

.site-breadcrumb {
  max-width: 1400px;
  margin: 14px auto 0;
  padding: 0 20px;
  font-family: 'Work Sans', Arial, sans-serif;
}

.site-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.site-breadcrumb li {
  color: #555;
}

.site-breadcrumb li+li::before {
  content: ">";
  margin-right: 8px;
  color: #999;
}

.site-breadcrumb a {
  color: #d9251c;
  text-decoration: none;
}

.site-breadcrumb a:hover {
  text-decoration: underline;
}

.seo-page-subtitle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Capitalize product names and menus */
.dropdown-content a,
.mobile-menu a,
.footer-products a,
.footer-products ul li a,
.footer-links a,
.footer-links ul li a,
.site-breadcrumb li,
.site-breadcrumb a,
h1.title,
.products .product-card h3,
.product-card h3,
.nav-left a,
.nav-right a {
    text-transform: capitalize;
}

