/*
Theme Name: Astra Child
Theme URI: https://example.com
Description: Child theme for Astra
Author: Your Name
Author URI: https://example.com
Template: astra
Version: 1.0
*/
* {
  box-sizing: border-box;		
}
img {
  max-width: 100%;
  height: auto;
}

.site-footer {
  background: #2b2622;
  color: #cfcac6;
  padding: 80px 0 30px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 140px;
  gap: 40px;
}

.footer-qr-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-qr-right {
  width: 110px;
  background: #fff;
  padding: 6px;
  border-radius: 6px;
  margin-top: 18px;		
}

.footer-col:last-child {
  justify-self: end;
  text-align: left;
}

.footer-col h4,
.footer-col h5 {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col p {
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cfcac6;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}
.footer-col .logo img{
	padding-bottom:10px;
}
.divider {
  display: block;
  width: 40px;
  height: 1px;
  background: #d08c3f;
  margin: 20px 0;
}

.footer-bottom {
  max-width: 1220px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #9e9a96;
}

.footer-qr-img {
    width: 90px;
    height: auto;
    border-radius: 6px;
    background: #fff;
    padding: 6px;
	left: 20px;
    position: relative;
}
.footer-qr-img:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
}
.Footer-logo {
  display: flex;
  justify-content: flex-start; /* Left align */
}

.Footer-logo img {
  width: 180px; /* Increase size */
  height: auto;
}
/* Header Layout */
header,
.site-header {
  margin-bottom: 0 !important;
}

.home .banner,
.home .hero,
.home .elementor-section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.elementor-location-header + .elementor-section {
  margin-top: 0 !important;
}

.custom-header {
  background: #fbf8f3;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.custom-header-inner {
  max-width: 1220px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-pill .menu {
  display: flex;
  gap: 30px;
  border-radius: 9999px;	
  padding: 10px 22px;
  list-style: none;
  margin: 0;
}

.nav-pill .menu li {
  padding: 5px 15px; /* keep padding always */
  border-radius: 9999px;
}

.nav-pill .menu li:hover {
  background-color: #f1ede6;
}

.nav-pill .menu a {
  text-decoration: none;
  color: #5b544d;
  font-size: 14px;
  font-weight: 500;
}
.burger-toggle {
  display: none;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: 999px;
  border: none;
  background: #EAAD53;
  color: #fff !important;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-btn:hover {
  animation: bounce 0.6s;
  color: white !important;
}

@media (max-width: 1024px) {

  /* HEADER */
  .custom-header-inner {
    padding: 0 20px;
  }

  .nav-pill .menu {
    gap: 18px;
    padding: 8px 16px;
  }

  .logo img {
    height: 55px;
    width: auto;
  }

  .cta-btn {
    padding: 12px 26px;
    font-size: 14px;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .footer-bottom {
    padding: 20px;
    flex-wrap: wrap;
    gap: 10px;
/*     text-align: center; */
  }

  /* FORM */
  .custom-contact-form {
    padding: 0 20px;
  }
	
  .footer-col:last-child {
    justify-self: start !important;
}	
}
@media (max-width: 768px) {

  /* HEADER */
  .custom-header {
    padding: 12px 0;
  }
	
  .custom-header-inner {
    flex-direction: row;
    gap: 14px;
	align-items: center;
    justify-content: space-between;
  }

  .nav-pill .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 10px; 
  }

  .nav-pill .menu li {
    padding: 6px 10px;
  }

  .cta-btn {
    width:  auto;               /* NOT full width */
    justify-content: center;	 
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* FOOTER */
  .site-footer {
    padding: 60px 0 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
/*     text-align: center; */
  }
	.footer-qr-col {
    justify-content: flex-start;
  }
  .footer-col ul li {
    margin-bottom: 8px;
  }

  .divider {
    margin: 20px auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }  
}
@media (max-width: 768px) {

  .burger-toggle {
    	display: inline-flex;
    	background: none;
     	border: none;
        font-size: 22px;
        cursor: pointer;
        color: #5b544d !important;
	  	background-color: #FFFFFF !important;
  }

  .nav-pill {
    display: none !important; /* IMPORTANT */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fbf8f3;
    padding: 20px;
    z-index: 999;
  }

  .nav-pill.active {
    display: block !important; /* THIS shows menu */
  }

  .nav-pill .menu {
    flex-direction: column;
    gap: 14px;
  }
}
.ast-container,
#primary {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .cta-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .mobile-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
html, body {
  overflow-x: hidden !important;
}
.site-name {
  font-size: 16px;
  font-weight: 500;
  color: #878380;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 1025px) {
  .site-main {
    margin-left: auto;
    margin-right: auto;
    max-width: 1220px; /* matches your header width */
  }
}

/* Remove theme padding on Products page only */
.page-products .site-content,
.page-products .content-area,
.page-products .container,
.page-products .wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}