/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 185:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.footer-container {
  color: #FFFFFF;
  padding: 40px 20px;
 
}
  .footer-container {
    background-color: #131f69;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.footer-left {
 margin-left: 122px;
    flex: 1 1 266px;
    max-width: 260px;
}
.footer-logo img {
  width: 160px;
  margin-bottom: 20px;
  margin-top: 50px;
}
.footer-left h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.footer-left p {
  font-size: 14px;
  margin-bottom: 20px;
}
.footer-button {
  display: inline-block;
  background-color: #FFFFFF;
  color: #000;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  margin-left: -23px;
}
.footer-columns {
  display: flex;
  flex: 2 1 600px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-column {
  flex: 1 1 160px;
  min-width: 160px;
 
}
.footer-column h4 {
  font-weight: 600;
  margin-bottom: 10px;
   color: white;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column li {
  margin-bottom: 6px;
}
.footer-column a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 14px;
}
.footer-column a:hover {
  text-decoration: underline;
}
.footer-address-column {
  flex: 1 1 260px;
  min-width: 240px;
  
}
.footer-address-column h4 {
  font-weight: 600;
  margin-bottom: 10px;
   color: white !important;
}
.footer-address-column p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
     color: white;
}
.footer-social {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
    max-width: 85%;
}
.footer-social a img {
  width: 40px;
}
.footer-bottom {
  margin-top: 20px;
  font-size: 12px;
  text-align: center;
  border-top: 1px solid #888;
  padding: 10px;
  color: white;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer-columns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    margin-left: 0;
  }

  .footer-column {
    flex: 1 1 50%;
    min-width: 50%;
    box-sizing: border-box;
    padding: 10px 15px;
  }

  .footer-address-column {
    order: 3;
    width: 100%;
    padding: 10px 15px;
  }

  .footer-social {
    justify-content: center;
    max-width: 100%;
  }
  .footer-left {
    flex: 1 1 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .footer-logo img {
    margin-top: 30px;
    margin-bottom: 16px;
  }

  .footer-button {
    background-color: #ffffff;
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    margin-right: -29px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
  }

  .footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
}

</style>
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: black;
  color: white;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 5px;
  z-index: 2;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-title {
  font-weight: bold;
  margin: 0.5rem 0;
  font-size: 1rem;
}

.product-description {
  font-size: 0.9rem;
  color: #555;
  min-height: 40px;
}

.product-rating {
  margin: 0.5rem 0;
  color: #28a745;
  font-weight: bold;
  font-size: 0.9rem;
}

.product-pricing {
  margin: 0.5rem 0;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 0.5rem;
}

.sale-price {
  color: #000;
  font-weight: bold;
}

.discount {
  color: #28a745;
  font-weight: bold;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.add-to-cart {
  background-color: #ffcc00;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
}