/** Shopify CDN: Minification failed

Line 66:19 Expected identifier but found whitespace
Line 66:25 Unexpected ";"
Line 323:0 Expected "}" to go with "{"

**/
/* section-3d-print-order.css */

.print-order-section {
  background: var(--pj-canvas);
  color: var(--pj-text);
  padding: 80px 0;
  width: 100%;
}

.print-order-container {
  margin: 0 auto;
}


.print-order-content {
  display: flex;
  align-items: center;
}

/* Left Side Styles */
.print-order-left {
  flex: 1;
}

.print-order-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 30px 0;
  color: var(--pj-text);
  text-transform: uppercase;
  letter-spacing: -1px;
  font-family: "Stara", sans-serif !important;
}

.print-order-description {
  font-size: 16px;
  line-height: 1.2;
  color: var(--pj-text-muted);
  margin: 0 0 35px 0;
  font-weight: 300;
  font-family: "Myriad Pro", sans-serif !important;
}

.print-order-button {
   align-self:flex-start;
  display:inline-block;
  padding: 10px 15px !important;
  background: #F59F271a;
  background: transparent;
  text-decoration:none; 
  font-weight:400; 
  font-size:20px;
  color: #F59F27 !important;
  border: 1px solid #F59F27;
  line-height: normal; 
}

  background-color: #f903;
  background-color: #F59F27;
}

/* Right Side Styles */

.print-order-right-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Features/Tabs Styles (Left side of right section) */
.print-order-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 230px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  background-color: transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color var(--pj-transition), border-color var(--pj-transition), color var(--pj-transition), transform var(--pj-transition);
  border: 1px solid transparent;
  color: var(--pj-text);
}

.feature-item:hover {
  background-color: var(--pj-surface-subtle);
  border-color: var(--pj-border);
  transform: translateX(3px);
}

.feature-item.active {
  background-color: var(--pj-surface);
  color: var(--pj-text);
  border-color: var(--pj-orange);
}

.feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.feature-item.active .feature-icon svg {
  stroke: var(--pj-orange);
}

.feature-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-family: "Myriad Pro", sans-serif !important;
}

/* Image Container (Right side of right section) */
.print-order-image-wrapper {
  position: relative;
  flex: 1;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
}

.print-order-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.print-order-image.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .print-order-content {
    gap: 40px;
  }

  .print-order-left {
    flex: 1;
  }

  .print-order-title {
    font-size: 48px;
  }

  .print-order-features {
    flex: 0 0 280px;
  }

  .print-order-image-wrapper {
    min-width: 200px;
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .print-order-title {
    font-size: 42px;
  }

  .print-order-features {
    flex: 0 0 260px;
  }

  .print-order-image-wrapper {
    min-width: 200px;
    height: 350px;
  }

  .feature-item {
    padding: 15px 20px;
  }

  .feature-text {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .print-order-content {
    flex-direction: column;
    gap: 0px!important;
  }

  .print-order-left {
    flex: 1;
    max-width: 100%;
  }

  .print-order-right {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .print-order-right-inner {
    flex-direction: column;
    width: 100%;
    gap: 30px;
    display: none;
  }

  .print-order-image-wrapper {
    width: 100%;
    min-width: unset;
    height: 400px;
    flex: none;
  }

  .print-order-features {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .print-order-section {
    padding: 40px 0px;
  }

  .print-order-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .print-order-description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .print-order-image-wrapper {
    height: 200px;
  }

  .print-order-features {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .print-order-title {
    font-size: 28px;
  }

  .print-order-button {
    padding: 12px 28px;
    font-size: 13px;
  }

  .print-order-image-wrapper {
    height: 280px;
  }

  .feature-item {
    padding: 12px 15px;
  }

  .feature-text {
    font-size: 14px;
  }
}

/* Dark Mode */
body.dark-mode .print-order-section {
  background: var(--pj-canvas) !important;
  background-color: #443010;

body.dark-mode .feature-item:hover {
  background-color: var(--pj-surface-subtle);
  transform: translateX(3px);
  color: var(--pj-text);
}

body.dark-mode .feature-item.active {
  background-color: var(--pj-surface);
  color: var(--pj-text);
  border-color: var(--pj-orange) !important;
}
body.dark-mode .feature-item:hover .feature-text, body.dark-mode .feature-item.active .feature-text {
  color: var(--pj-text) !important;
}
body.dark-mode .feature-item:hover .feature-icon svg, body.dark-mode .feature-item.active .feature-icon svg {
  stroke: var(--pj-orange); 
}

body.dark-mode .print-order-button {
  background-color: var(--pj-orange);
  color: var(--pj-on-orange);
}
