/** Shopify CDN: Minification failed

Line 69:8 Expected identifier but found whitespace
Line 69:10 Unexpected "{"
Line 69:19 Expected ":"
Line 70:13 Expected identifier but found whitespace
Line 70:15 Unexpected "{"
Line 70:24 Expected ":"

**/


/* CSS from section stylesheet tags */
.deal-of-week {
    display: flex
;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    max-width: 1200px;
    margin: 120px auto;
  justify-content: space-around;
}

.deal-badge {
  background-color: #FF9800;
  color: white;
  transform: rotate(-10deg);
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin: 10px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.limited-time-tag {
    background-color: #F5C439;
    color: #8D4120;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    width: max-content;
}

.deal-content {
  padding: 20px;
  /* flex-grow: 1; */
}

.deal-title {
 font-size: 3rem;
    color: #A04F2C;
    margin-bottom: 10px;
    font-family: 'FRAUNCES';
}

.deal-description {
    color: #C3754C;
    margin-bottom: 20px;
    font-family: 'Quicksand';
    text-align: left;
}
.hero-with-usp {
  position: relative;
  color: {{ section.settings.text_color }};
  text-align: {{ section.settings.text_alignment }};
}

.hero-with-usp__image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-with-usp__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  padding: 20px;
}

.hero-with-usp__title {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-with-usp__description {
  font-size: 18px;
  margin-bottom: 40px;
}

.hero-with-usp__usp-heading {
  font-size: 24px;
  margin-bottom: 20px;
}

.hero-with-usp__usp-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.hero-with-usp__usp-item {
  font-size: 18px;
}

@media (max-width: 768px) {
  .hero-with-usp__title {
    font-size: 28px;
  }
  
  .hero-with-usp__description {
    font-size: 16px;
  }
  
  .hero-with-usp__usp-list {
    flex-direction: column;
    gap: 15px;
  }
}