/** Shopify CDN: Minification failed

Line 186:13 Expected ":"

**/
.cora-footer-section {
  position: relative;
  overflow: hidden;
}

/* --- GRID LAYOUT --- */
.cora-footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.cora-footer-menu 
{
text-transform: uppercase;
}
/* Mobile: Stacked */
@media screen and (max-width: 989px) {
  .cora-footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .cora-copyright-text{
    line-height:0;
  }
  .cora-copyright-wrapper {
    padding: 1rem; 
    background-color:#ec7109;
  }
 
}
.cora-copyright-text{
  font-size:1.6rem;
}
/* Desktop: 4 Columns */
@media screen and (min-width: 990px) {
  .cora-footer-grid {
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr; /* Logo col wider, others standard */
    gap: 2rem;
  }
}

/* --- COLUMN STYLING --- */
.cora-footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.cora-footer-logo {
  display: block;
  margin-bottom: 1rem;
}

.cora-footer-text {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 1.5rem;
}

/* Links */
.cora-footer-link {
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 2; /* Spacing between links */
  transition: color 0.2s;
  font-weight:500px;
}

/* Social Icons */
.cora-footer-socials {
  display: flex;
  gap: 0.8rem;
}

.cora-social-icon {
  background-color: #EAE3DC; /* Light beige circle */
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #322C29;
  transition: background-color 0.2s;
}
.cora-social-icon:hover {
  background-color:rgb(255, 255, 255);
  color: #EC7109;
}
.cora-social-icon svg {
  width: 16px;
  height: 16px;
}

/* Newsletter Input */
.cora-input-wrapper {
  position: relative;
  display: flex;
}

.cora-newsletter-input {
  width: 100%;
  background-color: #EEE8E2; /* Beige input bg */
  border: none;
  padding: 12px 16px;
  padding-right: 50px; /* Space for button */
  border-radius: 6px;
  color: #322C29;
  font-family: inherit;
}

.cora-newsletter-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48px;
  background-color: #EC7109; /* Orange */
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
.cora-newsletter-btn:hover {
  background-color: #D36100;
}

/* --- PAYMENT ICONS --- */
.cora-footer-payments {
  display: flex;
  justify-content: center; /* Center on mobile */
  margin-bottom: 2rem;
}
@media screen and (min-width: 990px) {
  .cora-footer-payments {
    justify-content: flex-end; /* Right align on desktop matches mockup? Actually centered is safer for footer */
    justify-content: center; 
  }
  .cora-footer-bottom{
    margin-top: -6rem;
  }
}

.list-payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* --- BOTTOM WAVE & COPYRIGHT --- */
.cora-footer-bottom {
  position: relative;
  width: 100%;
}
 
.cora-footer-wave {
      bottom: -7rem;
    position: relative;
  width: 100%;
  line-height: 0;
  margin-bottom: -1px; /* Fix sub-pixel gaps */
}
.cora-footer-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.cora-copyright-wrapper {
  text-align: center;
  color: white;
  background- color:#ec7109;
  z-index: 1;
  position: relative;
  padding: 1rem 1rem 0 1rem;
  font-size: 0.9rem;
}


@media screen and (max-width: 989px) {
 
  .cora-copyright-wrapper {
    padding: 1rem !important; 
    background-color:#ec7109 !important;
  }
   .cora-footer-wave {
      bottom: -0rem;}
}