/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 212:0 Unexpected "<"

**/
<style>
/* ======= Container ======= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding:  20px;
}

.section-title{
    font-weight:600;
}
/* ======= Layout ======= */
/* .contact-winter-wrapper {
  width: 100%;
} */

.top-row {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  align-items: stretch;
}

.half-block {
  flex: 1 1 48%;
  min-width: 300px;
  display: flex;
}

.inner-box {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  height: 100%;
}

.section-title {
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* ======= Contact Info ======= */

.info-grid {
  display: flex;
  justify-content: space-between;
  gap: 2px;
  flex: 1;
}

.info-box {
  flex: 1;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.info-box .icon {
  background-color: #2b2b2b;
  padding: 6px 0;
  font-size: 24px;
  flex: 0 0 auto;
}

.location-box .text, .phone-box .text {
    background-color: #f36f21;
    padding: 24px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
}
.para{
    font-size:17px;
    font-weight:400;
}
/* ======= Winter Hours ======= */
.text:hover {
    color: #333333;
}
.time:hover {
    color: #333333;
}
.winter-hours .hours-grid {
  display: flex;
  justify-content: space-between;
  gap: 2px;
  flex: 1;
}

.hour-box {
  flex: 1;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hour-box .day-label {
  background-color: #2b2b2b;
  padding: 15px;
  font-weight: 600;
  flex: 0 0 auto;
}

.hour-box .time {
  background-color: #f36f21;
  padding: 15px;
  font-weight: 600;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======= Social Links ======= */
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-title {
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.icon-link {
  width: 40px;
  height: 40px;
  background-color: #2b2b2b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 20px;
}

.icon-link:hover {
  background-color: #f36f21;
}
.contact-winter-wrapper {
    width: 100%;
    padding: 35px;
}
/* ======= Responsive Design ======= */
@media (max-width: 1024px) {
  .top-row {
    gap: 20px;
  }
}

@media (max-width: 768px) {
    
  .top-row {
 flex-direction: column; 
    gap: 20px;
  }
  .half-block {
    width: 100%;
  }
  .info-grid,
  .winter-hours .hours-grid {
    flex-direction: column;
  }
  .info-box .icon {
    padding: 12px 0;
  }
  .hour-box .day-label,
  .hour-box .time {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 25px !important;
    text-align: center;
  }
  .info-box .icon {
    font-size: 25px;
  }
  .social-links {
    align-items: flex-start;
  }
  .social-icons {
    justify-content: flex-start;
  }
}
</style>