/** Shopify CDN: Minification failed

Line 85:19 Expected identifier but found whitespace
Line 85:21 Unexpected "{"
Line 85:30 Expected ":"
Line 90:8 Expected identifier but found whitespace
Line 90:10 Unexpected "{"
Line 90:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-mystery-box-container {
 
  margin: 0 auto;
  text-align: center;
}

.custom-mystery-box-title {
  color: #008080;
  font-size: 2.4rem;
  margin-bottom: 5px;
}

.custom-mystery-box-subtitle {
  color: #088c85;
  font-size: 1.5rem;
  margin-bottom: 40px;
  position: relative;
}

.custom-mystery-box-subtitle::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: red;
  margin: 10px auto 0;
}

.custom-mystery-box-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.custom-mystery-box-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.5);
  width: 250px;
  padding: 18px 15px 56px 15px;

  text-align: left;
  transition: transform 0.3s;
}

.custom-mystery-box-card:hover {
  transform: translateY(-5px);
}

.custom-mystery-box-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.custom-mystery-box-card h2 {
  color: #088c85;
  font-size: 2rem;
  margin: 0px;
}

.custom-mystery-box-card p {
font-size: 1.5rem;
    line-height: 1.4;
}
.why-us-section {
  padding: 40px 20px;
  text-align: center;
  background-color: {{ section.settings.background_color }};
}
.why-us-title {
  font-size: 24px;
  font-weight: bold;
  color: {{ section.settings.title_color }};
  margin-bottom: 30px;
  position: relative;
}
.why-us-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: red;
  display: block;
  margin: 10px auto 0;
}
.why-us-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.why-us-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: calc(33.333% - 20px); /* 3 per row by default */
  max-width: 240px;
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s;
}
.why-us-card:hover {
  transform: translateY(-5px);
}
.why-us-icon {
  width: 90px;
  object-fit: cover;
  height: 70px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.why-us-card:hover .why-us-icon {
  transform: scale(1.1);
}

.why-us-heading {
  font-size: 16px;
  color: #008c8c;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.why-us-text {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-us-card {
    width: calc(50% - 20px); /* 2 per row on tablets & mobile */
  }
}

@media (max-width: 480px) {
  .why-us-card {
    width: 100%; /* 1 per row on extra small screens */
  }
}