/** Shopify CDN: Minification failed

Line 8:0 Unexpected "{"
Line 8:1 Unexpected "{"
Line 8:3 Expected identifier but found "'custom-stitching.css'"

**/
{{ 'custom-stitching.css' | asset_url | stylesheet_tag }}
/* custom-stitching.css */

@font-face {
  font-family: 'Futura';
  src: local('Futura'), local('Futura-Medium'), local('Futura Std');
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Futura', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fdfdfd;
  color: #222;
  line-height: 1.6;
}
/* banner code  */
.top-banner-section {
    width: 100%;
    background-color: #fff;
  }

  .top-banner-container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0;
  }

  .top-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  @media (max-width: 768px) {
    .top-banner-image {
      object-fit: contain;
    }
  }

/* custom stitching  */
.custom-stitching-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #f3f4f6, #ffffff);
}

.container {
  max-width: 1450px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
  font-size: 17px;
  color: #2ab8ff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.feature-card p {
  font-size: 14px;
  color: #444;
}
@media (max-width: 480px) {
    .section-title {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

/* What We Stitch — Made Just for You Styles */
.stitching-types-section {
  padding: 70px 20px;
  background-color: #fff;
}

.stitching-flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1450px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stitching-image {
  max-width: 500px;
  align-self: center;
}

.stitching-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
}


.section-heading {
  text-align: left;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a1a1a;
}
.stitching-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stitching-item h3 {
  font-size: 20px;
  font-weight: 500;
  color: #2a2a2a;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stitching-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  max-width: 650px;
}

/* Responsive */
@media (max-width: 768px) {
  .stitching-flex {
    flex-direction: column;
    gap: 20px;
  }

  .section-heading {
    font-size: 22px;
  }

  .stitching-item h3 {
    font-size: 16px;
    font-weight: 500;
  }

  .stitching-item p {
    font-size: 15px;
  }
}

/* How It Works — Your Outfit, Your Way section  */
.how-it-works-section {
  padding: 80px 20px;
  background-color: #fafafa;
}

.section-headings {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 60px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.how-it-works-flex {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1450px;
  margin: 0 auto;
}

/* Content Column */
/* .how-it-works-content {
  flex: 1 1 600px;
} */

/* Image Column */
.how-it-works-image {
  max-width: 500px;
  align-self: center;
}

.how-it-works-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
}

/* Steps Layout */
.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  position: relative;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1000px) {
  .how-it-works-flex {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
@media (max-width: 800px) {
  .section-headings {
    font-size: 22px;
    text-align: left;
  }

  .how-it-works-content {
    text-align: left;
  }

  .step {
    flex-direction: row;
    align-items: flex-start;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 12px;
    margin-top: 6px;
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 14px;
  }
}


/* cta button  */
/* CTA Section */
.custom-cta-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
  border-top: 1px solid #eaeaea;
}

.custom-cta-section .cta-heading {
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
}

.custom-cta-section .cta-subtext {
  font-size: 17px;
  color: #444;
  margin-bottom: 30px;
}

.custom-cta-section .cta-highlight {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.custom-cta-section .cta-detail {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

.custom-cta-section .cta-phone a {
  font-size: 16px;
  font-weight: 500;
  color: #2a85ff;
  text-decoration: none;
}

.custom-cta-section .cta-phone a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .custom-cta-section .cta-heading {
    font-size: 22px;
  }
  .custom-cta-section .cta-subtext,
  .custom-cta-section .cta-highlight,
  .custom-cta-section .cta-detail {
    font-size: 15px;
  }
}



/* Optional subtle divider */
.stitching-item:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 30px;
}

