/** Shopify CDN: Minification failed

Line 12:0 Unexpected "<"
Line 164:0 Unexpected "<"
Line 262:0 Unexpected "<"
Line 337:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
@font-face {
  font-family: 'Rozha One';
  src: url('{{ "rozha-one.woff2" | asset_url }}') format("woff2"),
       url('{{ "rozha-one.woff" | asset_url }}') format("woff");
  font-display: swap;
}

.work-process {
  position: relative;
  text-align: center;
  padding: 60px 20px 460px;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color:#0f2840);
  font-family: 'Limelight', serif;
  min-height: 700px;
  overflow: hidden;
  transition: background 0.6s ease;
}

.work-process h2 {
  font-size: 46px;
  font-family: 'Limelight', serif;
  margin-bottom: 60px;
  color: #d9b98f;
  letter-spacing: 1px;
  line-height: 1.2;
  animation: fadeInDown 1s ease-in-out;
}

/* ✅ 重新定义为flex水平居中对齐 */
.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.step-item {
  text-align: center;
  max-width: 160px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: scale(1.05);
}

.step-item::before {
  content: '';
  width: 18px;
  height: 18px;
  background-color: #b99773;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: block;
  transition: background-color 0.3s ease;
}

.step-item:hover::before {
  background-color: #e4c7a1;
}

.step-item strong {
  display: block;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 10px;
  color: #f8e3be;
  font-family: 'Rozha One', serif;
}

.step-item p {
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.6;
  color: #f8e3be;
  margin: 0 0 100px 0;
  padding: 0 5px;
}

/* 📱 手机端自适应样式 */
@media screen and (max-width: 768px) {
  .work-process {
    background-image: none !important;
    background-color: #0b1c2d !important;
    padding: 40px 20px 80px;
  }

  .work-process h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step-item {
    max-width: 90%;
    opacity: 1 !important;
    animation: none !important;
  }

  .step-item::before {
    display: none;
  }

  .step-item strong,
  .step-item p {
    text-align: center;
  }

  .step-item p {
    font-size: 15px;
    padding: 0 10px;
  }
}

/* ✨ 动效 Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
</style>
<style>
@font-face {
  font-family: 'Rozha One';
  src: url('{{ "rozha-one.woff2" | asset_url }}') format("woff2"),
       url('{{ "rozha-one.woff" | asset_url }}') format("woff");
  font-display: swap;
}

.become-looking {
  text-align: center;
  padding: 60px 20px;
  background-color: #F2EDE4;
}

.become-looking h2 {
  font-family: 'Rozha One', serif;
  font-size: 36px;
  margin-bottom: 16px;
  color: #50210b; /* 金棕色标题 */
  letter-spacing: 1px;
}

.become-looking p.subheading {
  font-family: 'Rozha One', serif;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #231815;
  line-height: 1.6;
}

.looking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.looking-item {
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  min-height: 380px;
  position: relative;
}

.looking-content {
  background-color: #0e1b2c;
  color: #EBD7B6;
  padding: 20px;
  text-align: center;
}

.looking-content h4 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  color: #EBD7B6;
}

.looking-content p {
  font-size: 14px;
  margin: 0;
  color: #EBD7B6;
}

/* ✅ 自适应样式（手机端） */
@media screen and (max-width: 749px) {
  .looking-grid {
    flex-direction: column;
  }

  .looking-item {
    flex: 1 1 100%;
    width: 100%;
    min-height: 280px;
  }

  .become-looking h2 {
    font-size: 28px;
  }

  .become-looking p.subheading {
    font-size: 15px;
    padding: 0 10px;
  }

  .looking-content h4 {
    font-size: 15px;
  }

  .looking-content p {
    font-size: 13px;
  }
}
</style>
<style>
@font-face {
  font-family: 'Rozha One';
  src: url('{{ "rozha-one.woff2" | asset_url }}') format("woff2"),
       url('{{ "rozha-one.woff" | asset_url }}') format("woff");
  font-display: swap;
}

.testimonials {
  background-color: #F2EDE4;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-family: 'Rozha One', serif;
  font-size: 36px;
  margin-bottom: 50px;
  color: #50210b; 
  letter-spacing: 1px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-item {
  max-width: 300px;
  text-align: left;
  position: relative;
  font-family: 'Rozha One', serif;
  color: #231815;
}

.testimonial-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.stars {
  color: #0e1b2c;
  margin-bottom: 12px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #231815;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #231815;
}

.testimonial-author {
  font-weight: bold;
  font-size: 14px;
  text-align: right;
  color: #231815;
}
</style>