/** Shopify CDN: Minification failed

Line 1039:19 Expected identifier but found whitespace
Line 1039:21 Unexpected "{"
Line 1039:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.alternating-materials {
  background-color: #000080;
  color: white;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.alternating-materials h2 {
  font-family: "gimlet-sans-variable", sans-serif !important;
  font-size: 6.8rem !important;
  font-weight: 400;
  color: #fcb900;
  margin-bottom: 30px !important;
}

.alternating-materials p.subheading {
  font-family: "Montserrat", "Montserrat Fallback", sans-serif !important;
  font-size: 1.5rem;
  color: #ddd;
  margin-bottom: 50px; 
  text-align: center;
}

.material-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  gap: 40px;
  position: relative;
  z-index: 0;
  overflow: visible;
}

.material-row.reverse {
  flex-direction: row-reverse;
}

.material-image {
  position: relative;
  flex: 1 1 45%;
  max-width: 500px;
  z-index: 1;
  padding: 25px;
}

.material-image img {
  width: 572px;
  height: 344px;
  object-fit: cover; 
  display: block;
  margin: 0 auto;
  
}


/* Decorative borders */
.material-image::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background-color: #fcb900;
  z-index: 0;
}

.material-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 6px;
  background-color: #fcb900;
  z-index: 0;
}

.material-image .after-bottom {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 6px;
  background-color: #fcb900;
  z-index: 0;
  
}

/* Reversed layout borders */
.material-row.reverse .material-image::before {
  left: auto;
  right: -113px;
}

.material-row.reverse .material-image::after {
  left: auto;
  right: -113px;
}

.material-row.reverse .material-image .after-bottom {
  left: auto;
  right: -113px;
}

/* Material Content Box */
.material-content {
  background-color: #FFC000;
  color: black;
  padding: 20px;
  text-align: right;
  max-width: 500px;
  width: 100%;
  height: 220px;
  flex: 0 0 auto;
 
  position: relative;
  z-index: 2;
  
}

.material-row.reverse .material-content {
   text-align: left;
  margin-left: 0;
  margin-right: -10%;
}

.material-content h3 {
  font-family: "gimlet-sans-variable", sans-serif !important;
  font-size: 2.50rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.material-content .price {
  font-size: 1.9rem;
  color: #000080;
  font-weight: bold;
  margin: 0;
}

.material-content a.button {
  background-color: black;
  color: white;
  padding: 13px 40px;  
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px !important;
  min-width: 170px;     
  text-align: center;    
  line-height: 1.2;      
}


.material-content p {
  margin: 4px 0;
}
/* Tablets (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .alternating-materials {
    padding: 40px 15px;
  }
  
  .alternating-materials h2 {
    font-size: 4.5rem !important;
  }
  
  .subheading {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }
  
  .material-row {
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .material-image {
    flex: 1 1 50%;
    max-width: 45%;
    padding: 12px;
  }
  
  .material-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
  }
  
  .material-content {
    max-width: 45%;
    height: auto;
    padding: 30px;
    font-size: 1rem;
  }
  
  .material-content h3 {
    font-size: 1.8rem;
  }
  
  .material-content .price {
    font-size: 1.4rem;
  }
  
  .material-content a.button {
    padding: 12px 32px;
    font-size: 1.2rem;
    min-width: 140px;
  }
  
  .material-row.reverse .material-content {
    margin-right: 0;
    margin-left: -5%;
    text-align: left;
  }
}

/* Large phones (481px to 768px) */
@media (max-width: 768px) and (min-width: 481px) {
  .alternating-materials {
    padding: 30px 10px;
  }
  
  .alternating-materials h2 {
    font-size: 3.8rem !important;
  }
  
  .subheading {
    font-size: 1.2rem;
    margin-bottom: 35px;
  }
  
  .material-row {
    flex-direction: column !important;
    margin-bottom: 50px;
    gap: 25px;
  }
  
  .material-image, 
  .material-content {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 10px;
  }
  
  .material-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  .material-content {
    height: auto;
    padding: 25px 15px;
    text-align: center;
  }
  
  .material-content h3 {
    font-size: 1.6rem;
  }
  
  .material-content .price {
    font-size: 1.3rem;
  }
  
  .material-content a.button {
    padding: 11px 28px;
    font-size: 1.1rem;
    min-width: 130px;
  }
}

/* Small phones (320px to 480px) */
@media (max-width: 480px) {
  .alternating-materials {
    padding: 25px 8px;
  }
  
  .alternating-materials h2 {
    font-size: 3rem !important;
  }
  
  .subheading {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .material-row {
    flex-direction: column !important;
    margin-bottom: 40px;
    gap: 20px;
  }
  
  .material-image, 
  .material-content {
    max-width: 100%;
    padding: 8px;
  }
  
  .material-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  .material-content {
    height: auto;
    padding: 20px 10px;
    text-align: center;
  }
  
  .material-content h3 {
    font-size: 1.3rem;
  }
  
  .material-content .price {
    font-size: 1.1rem;
  }
  
  .material-content a.button {
    padding: 10px 24px;
    font-size: 1rem;
    min-width: 120px;
  }
}

/* Very small phones (under 320px) */
@media (max-width: 320px) {
  .alternating-materials {
    padding: 20px 6px;
  }
  
  .alternating-materials h2 {
    font-size: 2.5rem !important;
  }
  
  .subheading {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .material-content h3 {
    font-size: 1.1rem;
  }
  
  .material-content .price {
    font-size: 1rem;
  }
  
  .material-content a.button {
    padding: 8px 20px;
    font-size: 0.9rem;
    min-width: 100px;
  }
}
@media (max-width: 768px) {
  .material-row {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
  }

  .material-content {
    text-align: center !important;
    margin: 0 !important; 
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  /* Override right-side decorative borders for reverse blocks in mobile view */
  .material-row.reverse .material-image::before {
    right: 0 !important;
  }

  .material-row.reverse .material-image::after {
    right: 0 !important;
  }

  .material-row.reverse .material-image .after-bottom {
    right: 0 !important;
  }
}
.auth-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-box {
  width: 100%;
  max-width: 600px;
  min-height: 500px;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.auth-box h2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}

.auth-box input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.btn {
  width: auto;
  min-width: 240px;
  padding: 14px 36px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 15px auto;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #004466;
  color: #fff;
}

.btn.secondary {
  background-color: #556b6f;
  color: #fff;
}

.btn:hover {
  opacity: 0.9;
}

.separator {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin: 10px 0;
  position: relative;
}

.separator::before,
.separator::after {
  content: "";
  height: 1px;
  background: #ccc;
  display: inline-block;
  width: 40%;
  position: relative;
  top: -0.4em;
}

.separator::before { margin-right: 10px; }
.separator::after { margin-left: 10px; }

.link.forgot-password {
  display: block;
  font-size: 16px;
  text-align: right;
  margin-bottom: 15px;
  color: #010180;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 400;
}

/* Toast Popup */
.toast {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #15803d;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.toast svg { fill: white; }

.toast.show { opacity: 1; }
.toast.hidden { display: none; }
.features-section {
  background-color: #FFF4E1;
   padding: 40px 10px !important;
  text-align: center;
  margin: 20px 0 40px 0;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  /* center all items */
  gap: 80px;
  max-width: 100%;
  margin: 0 auto; /* centers inside parent */
  padding-left: 60px;   
  padding-right: 60px;
  box-sizing: border-box;
  align-items: center;
}




.feature-item {
  flex: 1 1 200px;
  min-width: 220px;
  max-width: 290px;
}

.feature-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 5px !important;
}

.feature-title {
  font-size: 20px;
  font-weight: 500;
  color: #1a056b;
  margin-bottom: 10px;
  font-family: "gimlet-sans-variable", sans-serif !important;
}

.feature-description {
  font-size: 15.5px;
  color: #000;
  line-height: 1.5;
  letter-spacing: 0.5px;
  font-family: "Montserrat", "Montserrat Fallback", sans-serif !important;
}
/* Responsive styles */
@media screen and (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 15px !important;
  }

  .feature-item {
    max-width: 100%;
    min-width: auto;
    width: 90%; 
  }

  .feature-item img {
    width: 60px;
    height: 60px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-description {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .features-section {
    padding: 40px 15px;
    margin-bottom: 50px;
  }

  .feature-item img {
    width: 50px;
    height: 50px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-description {
    font-size: 13px;
  }
}
.footer-custom {
  background-color: #070481;
  color: #fff;
  padding: 50px 20px 0;
  border-top: 3px solid #fcb900;
  font-family: 'Arial', sans-serif;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
}
.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}
.footer-column h3 {
  color: #fcb900;
  margin-bottom: 15px;
  font-weight: bold;
}
.footer-column a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin: 6px 0;
}
.footer-column a:hover {
  text-decoration: underline;
}
.footer-social-icons {
  margin-top: 10px;
}
.footer-social-icons img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
}
.footer-bottom {
  border-top: 2px solid #fcb900;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
.footer-logo {
  display: inline-block;
  margin-right: 10px;
}
.footer-logo img {
  height: 30px;
}
.footer-map iframe {
  width: 100%;
  height: 150px;
  border: 0;
  border-radius: 8px;
}
.footer-icon {
  margin-right: 8px;
}
.footer-custom {
  background-color: #070481;
  color: #fff;
  padding: 50px 10px 0;
  border-top: 3px solid #fcb900;
  font-family: 'Arial', sans-serif;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
}
.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}
.footer-column h3 {
  color: #fcb900;
  margin-bottom: 15px;
  font-weight: bold;
}
.footer-column a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin: 6px 0;
}
.footer-column a:hover {
  text-decoration: underline;
}
.footer-social-icons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.footer-social-icons a img {
  width: 32px;
  height: 32px;
  padding: 6px;
 

}
.footer-bottom {
  border-top: 2px solid #fcb900;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
.footer-logo {
  display: inline-block;
  margin-right: 10px;
}
.footer-logo img {
  height: 30px;
}
.footer-map iframe {
  width: 100%;
  height: 150px;
  border: 0;
  border-radius: 8px;
}
.footer-icon {
  margin-right: 8px;
}
.slider-fresh {
  padding: 60px 20px;
  background-color: #fdd835;
  color: #000080;
  text-align: center;
}
.slider-fresh h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.slider-fresh p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn-discover {
  background: #000080;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 40px;
  display: inline-block;
}
.secondary-title {
  font-size: 2rem;
  margin-top: 50px;
  margin-bottom: 10px;
}
.secondary-sub {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.slider-track {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px;
}
.product-card {
  background: #fff8dc;
  width: 260px;
  border-radius: 8px;
  flex: 0 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.product-card h3 {
  font-size: 1rem;
  padding: 10px;
  margin: 0;
}
.product-card a.discover {
  text-align: center;
  padding: 10px;
  color: #000080;
  font-weight: bold;
  text-decoration: none;
}
@media(max-width:768px){
  .product-card { width: 200px; }
  .slider-fresh h2 { font-size: 2.2rem; }
}
.image-text-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #ffc107;
  padding: 0 0 70px 0;
  overflow: hidden;
}

.image-text-section .left-image {
  flex: 0 0 53%;
  max-width: 53%;
  margin: 0;
  padding: 0;
  height: 540px;
  overflow: hidden;
}

.image-text-section .left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top: 10px;
  margin-bottom: 50px !important;
}

.image-text-section .right-content {
  flex: 0 0 47%;
  max-width: 47%;
  background-color: #ffd040;
  padding: 10px 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  min-height: 540px !important;
}

.image-text-section .right-content h2 {
  color: #070481;
  font-size: 6rem;
  margin: 10px 60px 1px 26px;
  font-weight: 400;
  line-height: 1.2;
  font-family: "gimlet-sans-variable", sans-serif !important;
}

.image-text-section .right-content p {
  margin: 0 30px;
}

.image-text-section .right-content p.intro {
  font-family: "Montserrat", sans-serif !important;
  color: #000;
  font-size: 16px;
  font-weight: 600 !important;
  margin: 65px 0 0 25px !important;
  line-height: 1.6;
}

.image-text-section .right-content p.description {
  color: #000;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.image-text-section .right-content a.button {
  display: block;
  background: #000;
  color: #fff;
  padding: 8px 24px;
  text-decoration: none;
  font-weight: 500;
  width: fit-content !important;
  margin-left: 36px;
  margin-bottom: 65px;
  line-height: 1.2;
}

.image-text-section .right-content a.button:hover {
  background-color: #ffd633;
  color: #000;
  border: 1px solid #000 !important;
}

/* Tablet View */
@media (max-width: 1024px) and (min-width: 769px) {
  .image-text-section .left-image,
  .image-text-section .right-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .image-text-section .right-content {
    padding: 40px 30px;
    text-align: center;
    min-height: auto;
  }

  .image-text-section .right-content h2 {
    font-size: 3.5rem;
    margin: 20px 0;
  }

  .image-text-section .right-content p.intro {
    margin-top: 40px !important;
  }

  .image-text-section .right-content a.button {
    margin-left: 0;
    margin-bottom: 40px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .image-text-section {
    flex-direction: column;
  }

  .image-text-section .left-image,
  .image-text-section .right-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .image-text-section .right-content {
    padding: 30px 20px;
    text-align: center;
    min-height: auto;
  }

  .image-text-section .right-content h2 {
    font-size: 2.2rem;
    margin: 10px 0;
  }

  .image-text-section .right-content p.intro {
    margin-top: 30px !important;
  }

 
    .image-text-section .right-content a.button {
    margin: 20px auto 30px auto; /* Center button */
    display: inline-block; /* Needed for centering with auto margins */
  }
}
.tabbed-collection-section {
  padding: 60px 20px;
  text-align: center;
}
.tabbed-collection-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tab-buttons button {
  padding: 10px 25px;
  border: 2px solid #000080;
  background: transparent;
  color: #000080;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-buttons button.active,
.tab-buttons button:hover {
  background: #000080;
  color: #fff;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.tab-card {
  width: 200px;
  text-align: center;
}
.tab-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.tab-card-title {
  margin-top: 10px;
  font-weight: 600;
}
@media(max-width: 768px) {
  .tab-card {
    width: 45%;
  }
}
.review-slider-wrapper {
  background-color: {{ section.settings.bg_color }};
  padding: 70px 70px !important; 
  text-align: center;
  overflow: hidden;
  user-select: none; 
}

.review-slider-heading h2 {
  font-family: "gimlet-sans-variable", sans-serif !important;
  font-size: 6rem !important;
  margin-bottom: 4px;
  color: #000080;
  font-weight: 400;

}

.review-slider-heading p {
  font-size: 16px;
  color: #000;
  margin-bottom: 40px;
  font-family: "Montserrat", "Montserrat Fallback", sans-serif !important;
}

.slider-track-wrapper {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.review-cards-container {
   padding: 0;
  gap: 0;
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  width: fit-content;
  padding: 0 60px;
  will-change: transform;
  /* prevent horizontal scroll on desktop */
  overflow-x: hidden;
}

.review-card {
  background: #ffc107;
  min-width: 425px;
  max-width: 425px;
  flex: 0 0 auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  
}

.image-wrapper {
  background-color: #ffc107;
  padding: 8px;
}

.review-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border: 4px solid #ffc107;
  border-radius: 0;
  display: block;
  max-width: 100%;
  height: auto;
}

/* Text Box */
.review-text-box {
  padding: 15px;
  text-align: left;
  background-color: #ffc107;
}

.review-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  color: #000;
}

.review-location {
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}

.review-content {
  font-size: 14px;
  color: #000;
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .review-slider-wrapper {
    padding: 50px 30px !important;
  }
  
  .review-card {
    min-width: 320px;
    max-width: 320px;
  }
  
  .review-card img {
    height: 350px;
  }
  
  .review-cards-container {
    padding: 0 20px;
    gap: 15px;
  }
}

/* Mobile */
@media screen and (max-width: 480px) {
  .review-slider-wrapper {
    padding: 40px 10px !important;
  }

  .review-cards-container {
     padding: 0;
  gap: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    padding: 0;
    gap: 10px;
    width: 100vw;
    scrollbar-width: none; /* Firefox */
  }
  
  /* Hide scrollbar Chrome, Safari, Opera */
  .review-cards-container::-webkit-scrollbar {
    display: none;
  }
  
  .review-card {
    flex: 0 0 100vw; /* ~90% viewport width for better preview of next card */
    scroll-snap-align: start;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffc107;
   
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }

  /* Add subtle hover/focus effect on cards for UX */
  .review-card:hover,
  .review-card:focus {
    transform: scale(1.02);
    outline: none;
  }

  .review-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 4px solid #ffc107;
  
  }

  .review-text-box {
    padding: 10px 15px;
    text-align: left;
  }

  .review-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    color: #000;
  }

  .review-location {
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
  }

  .review-content {
    font-size: 14px;
    color: #000;
  }
}
.footer-newsletter {
  background-color: #070481;
  padding: 30px 20px;
  color: white;
  font-family: 'Inter', sans-serif;
  margin-top: 40px;
}

.footer-newsletter .newsletter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-newsletter .newsletter-text {
  flex: 1;
  min-width: 250px;
  margin-right: 30px;
}

.footer-newsletter h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #fcb900;
  text-align: left;
}

.footer-newsletter p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 0;
  text-align: left;
}

/* Ensure form is side-by-side by default */
.footer-newsletter form {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  max-width: 400px;
  width: 100%;
}

/* Input styles */
.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  font-size: 1.25rem;
  border: none;
  outline: none;
  border-radius: 4px 0 0 4px;
  background-color: #f5f5f5;
  color: #333;
  min-width: 200px;
}

/* Button styles */
.footer-newsletter button {
  background-color: #fcb900;
  color: black;
  padding: 12px 20px;
  font-size: 1.25rem;
  font-weight: 600;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
  
}

.footer-newsletter button svg {
  stroke: black;
  stroke-width: 2;
  fill: none;
  width: 18px;
  height: 18px;
}

.footer-newsletter button:hover {
  background-color: #e6b800;
}

/* ✅ Mobile layout: stack input & button */
@media (max-width: 768px) {
  .footer-newsletter .newsletter-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-newsletter .newsletter-text {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .footer-newsletter h3,
  .footer-newsletter p {
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .footer-newsletter input[type="email"],
  .footer-newsletter button {
    width: 100%;
    border-radius: 4px;
  }

  .footer-newsletter input[type="email"] {
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .footer-newsletter .newsletter-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-newsletter .newsletter-text {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .footer-newsletter h3,
  .footer-newsletter p {
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .footer-newsletter input[type="email"] {
    width: 100%;
    margin-bottom: 12px;
    border-radius: 4px;
  }

  .footer-newsletter button {
    width: auto;
    align-self: center;
    padding: 10px 16px;
    font-size: 1.1rem;
    border-radius: 4px;
  }
}