/** Shopify CDN: Minification failed

Line 11:1 Expected identifier but found "<"
Line 857:0 Unexpected "<"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
.<style>
  @import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

  :root {
    --primary-color: #a4a9dd;   /* blue */
    --button-color: #00b140;    /* green */
    --third-color: #a8daf4;
  }

  .heading-font {
    font-family: "Instrument Sans", sans-serif;
  }

  /* Custom container the theme gives you */
  .custom-css {
    margin-right: auto;
    margin-left: auto;
    width: 630px;
    height: 217px;
    background: #F1F5F6;
    border: 1px solid #E5E8EC;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
  }

  .breadcrumbs {
    background-size: contain !important;
    background-position: center;
    background-repeat: no-repeat !important;
  }

  .benefit-card h4,
  .step-card h4 {
    font-size: 24px !important;
    line-height: 50px;
  }

  .custom-border {
    background-color: var(--primary-color);
    border-radius: 10px;
    height: 4px;
    width: 25%;
    margin: 10px auto 25px auto;
  }

  /* HERO SECTION */
  .hero {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.9) 100%),
      url("https://i.ibb.co/8gVs2wG0/banner-bg.webp");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #333;
  }

  .hero .row {
    align-items: center;
  }

  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-content p {
    font-size: 18px;
  }

  /* Pulsing DTF CTA – green base, blue hover */
  .dtf-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    color: #ffffff;
    background-color: var(--button-color);   /* green */
    text-decoration: none;
    box-shadow: 0 0 0 0 rgba(0, 163, 65, 0.7);
    animation: dtf-pulse 1.4s infinite;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .dtf-cta:hover {
    background-color: var(--primary-color);  /* blue */
    color: #ffffff;
  }

  @keyframes dtf-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 163, 65, 0.7);
      transform: scale(1);
    }
    50% {
      box-shadow: 0 0 0 10px rgba(0, 163, 65, 0);
      transform: scale(1.03);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 163, 65, 0);
      transform: scale(1);
    }
  }

  /* Trust badges – pill / finger style */
  .trust-badges-row {
    margin-top: 8px;
  }

  .trust-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #333;
    font-size: 13px;
    font-weight: 600;
    margin: 4px 8px 0 0;
    border: 1px solid rgba(164, 169, 221, 0.5);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .trust-pill:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-1px);
  }

  /* HOW IT WORKS */
  .how-it-works {
    padding: 80px 0;
    background-color: #f9f9f9;
  }

  .step-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
  }

  .step-card:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .step-icon {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--third-color);
    font-size: 34px;
    color: #3FA0E2;
    transition: all 0.3s ease;
  }

  .step-card:hover .step-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }

  /* BENEFITS */
  .benefits {
    padding: 80px 0;
    background-color: white;
  }

  .benefits .custom-border {
    margin-left: 0;
  }

  .benefit-item {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
  }

  .benefit-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 24px;
  }

  /* Benefit cards with emoji */
  .benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.28);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    text-align: left;
  }

  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.28);
    background-color: var(--primary-color);
    color: #ffffff;
  }

  .benefit-card:hover h5,
  .benefit-card:hover p {
    color: #ffffff;
  }

  .benefit-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(164, 169, 221, 0.2);
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 12px;
  }

  .benifits-img img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  /* PRODUCT OPTIONS */
  .product-options {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.95) 100%),
      url("https://i.ibb.co/fVMWqvH5/product-option-bg.webp");
    background-size: cover;
    background-position: center;
    color: #333;
  }

  .product-options .row {
    flex-wrap: nowrap;
    gap: 30px;
  }

  .option-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .option-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .option-icon {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--third-color);
    font-size: 35px;
    margin-bottom: 20px;
    color: #000;
  }

  .option-card:hover .option-icon {
    background-color: var(--primary-color);
    color: #fff;
  }

  /* SHOWCASE */
  .showcase {
    padding: 80px 0;
    background-color: white;
  }

  .showcase-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }

  .showcase-item img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

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

  .showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(164, 169, 221, 0.8);
    color: white;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
  }

  .showcase-item:hover .showcase-caption {
    transform: translateY(0);
  }

  /* FAQ */
  .faq {
    padding: 80px 0;
    background-color: #f9f9f9;
  }

  .accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
  }

  .accordion-button {
    background-color: white;
    color: #333;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
  }

  /* OFFER BANNER */
  .offer-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    font-weight: bold;
    text-align: center;
  }

  /* FINAL CTA */
  .final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.9) 100%);
    color: white;
    text-align: center;
  }

  /* FOOTER */
  .footer-placeholder {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
  }

  /* DTF PRESSING INSTRUCTIONS */
  .dtf-instructions-section {
    padding: 80px 0;
    background: #ffffff;
    margin-top: -2px;
  }

  .dtf-instructions-section .section-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .dtf-instructions-section .section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
  }

  .dtf-instructions-section .process-overview {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    gap: 20px;
    flex-wrap: wrap;
  }

  .dtf-instructions-section .process-step {
    text-align: center;
    flex: 1;
    min-width: 120px;
    max-width: 150px;
  }

  .dtf-instructions-section .process-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }

  .dtf-instructions-section .process-step:hover .process-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(164, 169, 221, 0.3);
  }

  .dtf-instructions-section .process-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
  }

  .dtf-instructions-section .arrow {
    color: #dee2e6;
    font-size: 1.5rem;
    margin: 0 10px;
  }

  .dtf-instructions-section .instruction-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
  }

  .dtf-instructions-section .instruction-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(164, 169, 221, 0.15);
    transform: translateY(-2px);
  }

  .dtf-instructions-section .step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .dtf-instructions-section .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .dtf-instructions-section .step-title {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
  }

  .dtf-instructions-section .step-content {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
  }

  .dtf-instructions-section .specs-container {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
  }

  .dtf-instructions-section .spec-badge {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
  }

  .dtf-instructions-section .spec-badge i {
    color: var(--primary-color);
    margin-right: 8px;
  }

  .dtf-instructions-section .alert-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
  }

  .dtf-instructions-section .alert-box i {
    color: #856404;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .dtf-instructions-section .alert-box.info {
    background: #d1ecf1;
    border-color: #a8daf4;
    border-left-color: var(--third-color);
  }

  .dtf-instructions-section .alert-box.info i {
    color: #0c5460;
  }

  .dtf-instructions-section .care-grid {
    margin-top: 50px;
  }

  .dtf-instructions-section .care-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
  }

  .dtf-instructions-section .care-card:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .dtf-instructions-section .care-title {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
  }

  .dtf-instructions-section .care-title i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.3rem;
  }

  .dtf-instructions-section .disclaimer {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-left: 4px solid #dc3545;
    border-radius: 8px;
    padding: 25px;
    margin-top: 40px;
  }

  .dtf-instructions-section .disclaimer-title {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 15px;
  }

  .dtf-instructions-section .disclaimer-title i {
    margin-right: 10px;
  }

  .dtf-instructions-section .disclaimer p {
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .dtf-instructions-section .disclaimer p:last-child {
    margin-bottom: 0;
  }

  /* IMAGE SLIDER */
  .image-slider-section {
    padding: 50px 0;
  }

  .image-slider-section .carousel {
    border-radius: 20px;
  }

  .image-slider-section .carousel-inner {
    border-radius: 20px;
  }

  .image-slider-section .carousel-item {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 30px;
  }

  .image-slider-section .row > .col-lg-4,
  .image-slider-section .row > .col-md-6,
  .image-slider-section .row > .col-12 {
    padding: 0 10px;
  }

  .image-slider-section .carousel-item img {
    height: 400px;
    width: 400px !important;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s ease;
  }

  .image-slider-section .carousel-item img:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  }

  .image-slider-section .carousel-control-prev,
  .image-slider-section .carousel-control-next {
    width: 45px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--button-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .image-slider-section .carousel-control-prev {
    left: 30px;
  }

  .image-slider-section .carousel-control-next {
    right: 30px;
  }

  #imageCarousel:hover .carousel-control-prev {
    left: -20px;
    opacity: 1;
  }

  #imageCarousel:hover .carousel-control-next {
    right: -20px;
    opacity: 1;
  }

  .image-slider-section .carousel-control-prev:hover,
  .image-slider-section .carousel-control-next:hover {
    transform: translateY(-50%) scale(1.1);
  }

  .image-slider-section .carousel-control-prev:active,
  .image-slider-section .carousel-control-next:active {
    transform: translateY(-50%) scale(0.95);
  }

  .image-slider-section .carousel-control-prev-icon,
  .image-slider-section .carousel-control-next-icon {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }

  .image-slider-section .autoplay-indicator {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--button-color);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }

  .image-slider-section .slide-1 { transform: translateX(0%); }
  .image-slider-section .slide-2 { transform: translateX(-33.333%); }
  .image-slider-section .slide-3 { transform: translateX(-66.666%); }
  .image-slider-section .slide-4 { transform: translateX(-100%); }
  .image-slider-section .slide-5 { transform: translateX(-133.333%); }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .dtf-instructions-section {
      padding: 60px 0;
    }

    .dtf-instructions-section .instruction-card {
      padding: 20px;
    }

    .dtf-instructions-section .step-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .dtf-instructions-section .specs-container {
      flex-direction: column;
    }

    .dtf-instructions-section .process-overview {
      flex-direction: column;
      gap: 30px;
    }

    .dtf-instructions-section .arrow {
      transform: rotate(90deg);
      margin: 10px 0;
    }

    .product-options .row {
      flex-wrap: wrap;
    }

    .benifits-img img {
      height: 350px;
    }

    .benefit-item {
      flex-direction: column;
      gap: 15px;
    }

    .benefit-icon {
      width: 35px;
      height: 35px;
      font-size: 16px;
    }

    .product-options .row {
      padding: 0 10px;
    }
  }

  @media (max-width: 767px) {
    .image-slider-section {
      padding: 0;
    }

    .image-slider-section .slide-1 { transform: translateX(0%); }
    .image-slider-section .slide-2 { transform: translateX(-100%); }
    .image-slider-section .slide-3 { transform: translateX(-200%); }
    .image-slider-section .slide-4 { transform: translateX(-300%); }
    .image-slider-section .slide-5 { transform: translateX(-400%); }

    .image-slider-section .carousel-item img {
      height: 105px;
      width: 105px !important;
    }

    .image-slider-section .carousel-control-prev,
    .image-slider-section .carousel-control-next {
      width: 25px;
      height: 25px;
    }

    #imageCarousel:hover .carousel-control-prev {
      left: -10px;
      opacity: 1;
    }

    #imageCarousel:hover .carousel-control-next {
      right: -10px;
      opacity: 1;
    }

    .image-slider-section {
      padding-bottom: 0;
    }
  }

  @media (min-width: 768px) and (max-width: 991px) {
    .image-slider-section .slide-1 { transform: translateX(0%); }
    .image-slider-section .slide-2 { transform: translateX(-50%); }
    .image-slider-section .slide-3 { transform: translateX(-100%); }
    .image-slider-section .slide-4 { transform: translateX(-150%); }
    .image-slider-section .slide-5 { transform: translateX(-200%); }
  }

  @media screen and (min-width: 1281px) and (max-width: 1440px) {
    .image-slider-section .carousel-item img {
      height: 350px;
      width: 350px !important;
    }
  }
</style>

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  .custom-css{padding: 10px;}
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  .custom-css{padding: 10px;}
}
