/** Shopify CDN: Minification failed

Line 275:0 Unexpected "}"
Line 579:1 Expected "}" to go with "{"

**/
/* PolycarbonateX cart product cards - compact scoped v6 */

.pcx-cart-products {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pcx-cart-product {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 15px;
  padding: 9px 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.pcx-cart-product__image {
  align-self: center;
  background: #f7f7f7;
  border-radius: 12px;
  padding: 7px;
  overflow: hidden;
}

.pcx-cart-product__image img {
  width: 100%;
  height: auto;
  display: block;
}

.pcx-cart-product__body {
  min-width: 0;
}

.pcx-cart-product__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.pcx-cart-product__title {
  display: block;
  color: #111;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
}

.pcx-cart-product__price {
  text-align: right;
  white-space: nowrap;
  color: #111;
}
.pcx-cart-product__price{
    position:relative;
    padding-left:22px;
}

.pcx-cart-product__price::before{
    content:"";
    position:absolute;
    left:0;
    top:4px;
    bottom:4px;
    width:3px;
    background:#ff8a00;
    border-radius:3px;
}

.pcx-cart-product__price .price,
.pcx-cart-product__price .price * {
  color: #111;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.pcx-cart-product__price small {
  display: block;
  margin-top: 2px;
  color: #666;
  font-size: 11px;
  line-height: 1.1;
}

.pcx-cart-product__options{
    margin-top:14px;
    padding-top:12px;
    border-top:1px solid #ececec;
}

.pcx-cart-product__option,
.pcx-cart-product__selling-plan {
  margin: 1px 0 0;
  color: #666;
  font-size: 12px;
  line-height: 1.22;
  font-style: italic;
}

.pcx-cart-product__option dt,
.pcx-cart-product__option dd {
  display: inline;
  margin: 0;
}

.pcx-cart-product__cut-details {
  margin: 0;
}

.pcx-cart-product__discounts {
  margin: 5px 0 0;
}

.pcx-cart-product__configured-total {
  display: none;
}

.pcx-cart-product__footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 8px;
}

.pcx-cart-product__qty {
  display: flex;
  align-items: center;
}

.pcx-cart-product .quantity {
  min-height: 34px;
}

.pcx-cart-product .quantity__button {
  min-width: 38px;
}

.pcx-cart-product .quantity__input {
  min-width: 40px;
}

.pcx-cart-product__remove{
    border:none!important;
    background:none!important;

    padding:0!important;

    margin-left:18px;

    color:#666!important;

    font-size:13px!important;

    font-weight:600!important;

    text-decoration:none!important;

    cursor:pointer;
}

.pcx-cart-product__remove:hover{
    color:#111!important;
    text-decoration:underline!important;
}

.pcx-cart-product__locked {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 34px;
  padding: 5px 11px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f8f8f8;
  text-align: center;
  font-weight: 700;
}

@media screen and (min-width: 990px) {
  .pcx-cart-product {
    min-height: 124px;
  }
}

@media screen and (max-width: 749px) {
  .pcx-cart-products {
    gap: 9px;
  }

  .pcx-cart-product {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 9px;
    padding: 10px;
    border-radius: 14px;
  }

  .pcx-cart-product__image {
    padding: 6px;
    border-radius: 11px;
  }

  .pcx-cart-product__header {
    display: block;
  }

  .pcx-cart-product__title {
    font-size: 13.5px;
    line-height: 1.18;
  }

  .pcx-cart-product__price {
    text-align: left;
    margin-top: 5px;
  }

  .pcx-cart-product__price .price,
  .pcx-cart-product__price .price * {
    font-size: 17px;
  }

  .pcx-cart-product__option,
  .pcx-cart-product__selling-plan {
    font-size: 11.5px;
    line-height: 1.2;
  }

  .pcx-cart-product__footer {
    grid-column: 1 / -1;
    margin-top: 4px;
    gap: 8px;
  }

  .pcx-cart-product .quantity {
    min-height: 34px;
  }

  .pcx-cart-product .quantity__button {
    min-width: 36px;
  }

  .pcx-cart-product .quantity__input {
    min-width: 38px;
  }

  .pcx-cart-product__remove {
  min-width: 86px !important;
  min-height: 34px !important;
  padding: 5px 10px !important;
  font-size: 11.5px !important;
}
}

 /* Improve option readability */
.pcx-cart-product__option,
.pcx-cart-product__selling-plan {
  font-size: 12.5px;
  font-weight: 600;
}
}

/* Tighten mobile spacing between cards */
@media screen and (max-width: 749px) {
  .pcx-cart-products {
    gap: 8px;
  }

  .pcx-cart-product {
    margin-bottom: 0;
  }

  .pcx-cart-product__option,
  .pcx-cart-product__selling-plan {
    font-size: 12.5px;
    font-weight: 600;
  }
  /* Premium product card polish */

/* remove orange side accent if added earlier */
.pcx-cart-product {
  border-left: 1px solid #e2e2e2;
}

/* stronger price */
.pcx-cart-product__price .price,
.pcx-cart-product__price .price * {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* premium quantity pill */
.pcx-cart-product .quantity {
  border: 1px solid #d7d7d7 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
}

.pcx-cart-product .quantity__button {
  background: #f2f2f2 !important;
  border: 0 !important;
  border-radius: 9px !important;
  margin: 3px !important;
  height: 32px !important;
  min-width: 38px !important;
}

.pcx-cart-product .quantity__input {
  border: 0 !important;
  background: #fff !important;
  height: 32px !important;
  font-weight: 700 !important;
}

/* softer remove button */
.pcx-cart-product__remove {
  border-radius: 9px !important;
  border-color: #d8d8d8 !important;
  background: #fff !important;
  color: #333 !important;
}

.pcx-cart-product__remove:hover {
  border-color: #ff6b00 !important;
  color: #ff6b00 !important;
}

/* more readable product options */
.pcx-cart-product__option,
.pcx-cart-product__selling-plan {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

/* mobile tidy-up */
@media screen and (max-width: 749px) {
  .pcx-cart-product__image {
    width: 82px;
    height: 82px;
  }

  .pcx-cart-product__price .price,
  .pcx-cart-product__price .price * {
    font-size: 20px;
  }

  .pcx-cart-product__option,
  .pcx-cart-product__selling-plan {
    font-size: 12.5px;
  }
}
/* Final hierarchy + spacing polish */

/* desktop: give cards more visual structure */
@media screen and (min-width: 750px) {
  .pcx-cart-product {
    gap: 18px;
    padding: 12px 16px;
  }

  .pcx-cart-product__title {
    font-size: 16px;
    line-height: 1.22;
    font-weight: 800;
    color: #111;
  }

  .pcx-cart-product__price {
    padding-left: 18px;
  }

  .pcx-cart-product__footer {
    border-top: 1px solid #eeeeee;
    padding-top: 8px;
    margin-top: 8px;
  }

  .pcx-cart-product__image {
    background: #f4f4f4;
    border: 1px solid #eeeeee;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  }
}

/* mobile: add breathing room between image and text */
@media screen and (max-width: 749px) {
  .pcx-cart-product {
    gap: 14px;
  }

  .pcx-cart-product__title {
    font-size: 14.5px;
    line-height: 1.22;
    font-weight: 800;
  }

  .pcx-cart-product__footer {
    border-top: 1px solid #eeeeee;
    padding-top: 8px;
    margin-top: 8px;
  }
}

/* make options easier to read */
.pcx-cart-product__option,
.pcx-cart-product__selling-plan {
  font-weight: 600;
  color: #4f4f4f;
}

/* softer quantity pill */
.pcx-cart-product .quantity {
  border-radius: 14px !important;
  border-color: #d6d6d6 !important;
  background: #fff !important;
}

.pcx-cart-product .quantity__button {
  border-radius: 10px !important;
  background: #f0f0f0 !important;
}

.pcx-cart-product .quantity__button:hover {
  background: #e5e5e5 !important;
}

/* de-emphasise remove */
.pcx-cart-product__remove {
  background: #fff !important;
  color: #444 !important;
  border-color: #dddddd !important;
  font-weight: 600 !important;
}

.pcx-cart-product__remove:hover {
  color: #ff6b00 !important;
  border-color: #ff6b00 !important;
}

/* Cart sale pricing */

.pcx-cart-sale-prices {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: wrap;
}

.pcx-cart-sale-badge {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background: #d62828;
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.pcx-cart-sale-prices .price--compare,
.pcx-cart-sale-prices .price--compare * {
  color: #777 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: line-through;
}

.pcx-cart-sale-prices .price__sale,
.pcx-cart-sale-prices .price__sale * {
  color: #ff7900 !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  text-decoration: none;
}

@media screen and (max-width: 749px) {
  .pcx-cart-sale-prices {
    justify-content: flex-start;
    gap: 6px;
  }

  .pcx-cart-sale-prices .price--compare,
  .pcx-cart-sale-prices .price--compare * {
    font-size: 14px !important;
  }

  .pcx-cart-sale-prices .price__sale,
  .pcx-cart-sale-prices .price__sale * {
    font-size: 20px !important;
  }
}

/* Cart product sale display */

.pcx-cart-sale-prices {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: end;
  align-items: center;
  column-gap: 8px;
  row-gap: 2px;
}

.pcx-cart-sale-badge {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 3px 7px;
  border-radius: 4px;
  background: #d62828;
  color: #fff !important;

  font-size: 9px !important;
  line-height: 1;
  font-weight: 900 !important;
  letter-spacing: .3px;
}

.pcx-cart-sale-compare {
  grid-column: 2;
  grid-row: 1;

  color: #777 !important;
  font-size: 13px !important;
  line-height: 1;
  font-weight: 600 !important;
  text-decoration: line-through;
  text-align: right;
}

.pcx-cart-sale-current {
  grid-column: 2;
  grid-row: 2;

  color: #111 !important;
  font-size: 23px !important;
  line-height: 1;
  font-weight: 900 !important;
  text-align: right;
}

@media screen and (max-width: 749px) {
  .pcx-cart-sale-prices {
    justify-content: start;
  }

  .pcx-cart-sale-current {
    font-size: 20px !important;
  }

  .pcx-cart-sale-compare {
    font-size: 12px !important;
  }
}