<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 538:0 Unexpected "}"

**/

/* Main Cart Container - Adding shadow and modern spacing */
.t4s-main-cart {
  margin-top: 60px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  padding: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Increase font sizes for better readability */
.t4s-main-cart {
  font-size: 16px;
  line-height: 1.5;
}

/* Header styles */
.t4s-cartPage__header {
  font-size: 16px;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 600;
  padding: 20px 0 10px;
  letter-spacing: 0.5px;
}

.t4s-cart_page_heading {
  margin-bottom: 30px;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Product Image */
.t4s-page_cart__img {
  min-width: 130px;
  max-width: 130px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Cart Item Container */
.t4s-page_cart__item {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.t4s-page_cart__item:hover {
  background-color: rgba(0, 0, 0, 0.01);
}

.t4s-cartPage__items .t4s-page_cart__item:last-child {
  border-bottom: 1px solid var(--border-color);
}

/* Product Title and Info */
.t4s-page_cart__info {
  margin-inline-start: 20px;
}

.t4s-main-cart .t4s-page_cart__title {
  font-size: 16px;
  line-height: 1.4;
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.t4s-main-cart .t4s-page_cart__title:hover {
  color: var(--accent-color);
}

/* Meta Information */
.t4s-page_cart__meta {
  font-size: 14px;
  color: var(--text-color);
}

.t4s-cart_meta_variant {
  margin-bottom: 8px;
}

.t4s-cart_meta_price {
  font-size: 16px;
  font-weight: 500;
}

/* Quantity Controls */
.t4s-main-cart .t4s-quantity-cart-item {
  min-width: 130px;
  width: 130px;
  height: 44px;
  border: 1px solid var(--secondary-color);
  text-align: center;
  border-radius: var(--btn-radius);
  display: block;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.t4s-main-cart .t4s-quantity-cart-item input[type=number] {
  -moz-appearance: textfield;
  width: 40px;
  border: 0;
  height: 42px;
  background: transparent;
  padding: 0;
  font-weight: 600;
  font-size: 18px;
  color: var(--secondary-color);
  text-align: center;
}

.t4s-main-cart .t4s-quantity-cart-item button {
  position: absolute;
  display: block;
  padding: 0;
  top: 0;
  width: 25px;
  height: 27px;
  line-height: 42px;
  border: 0;
  background: transparent;
  color: var(--secondary-color);
  transition: all 0.2s ease;
}

.t4s-main-cart .t4s-quantity-cart-item button:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

.t4s-main-cart .t4s-quantity-cart-item .is--minus {
  left: 0;
  text-align: left;
  padding-left: 15px;
}

.t4s-main-cart .t4s-quantity-cart-item .is--plus {
  right: 0;
  text-align: right;
  padding-right: 15px;
}

/* Tools and Actions */
.t4s-page_cart__tools {
  margin-top: 15px;
}

.t4s-page_cart__tools .t4s-page_cart__edit,
.t4s-page_cart__tools .t4s-page_cart__remove {
  display: inline-flex;
  margin-inline-end: 15px;
  color: var(--secondary-color);
  opacity: 0.8;
  transition: all 0.2s ease;
}

.t4s-page_cart__tools .t4s-page_cart__edit:hover,
.t4s-page_cart__tools .t4s-page_cart__remove:hover {
  opacity: 1;
  color: var(--accent-color);
}

.t4s-page_cart__tools .t4s-page_cart__edit svg,
.t4s-page_cart__tools .t4s-page_cart__remove svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

/* Cart Footer */
.t4s-cartPage__footer {
  margin-top: 60px;
  margin-bottom: 80px;
  padding: 30px;
  background-color: #fcfcfc;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.t4s-cart-total {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
}

.t4s-cart__ttprice {
  font-size: 22px;
  font-weight: 700;
}

.t4s-cart__originalPrice,
.t4s-cart__discountPrice {
  font-size: 18px;
}

/* Buttons and Form Elements */
.t4s-main-cart .t4s-btn__update,
.t4s-main-cart .t4s-btn__checkout {
  cursor: pointer;
  border: none;
  background-color: var(--accent-color);
  padding: 12px 35px;
  color: var(--t4s-light-color);
  border-radius: var(--btn-radius);
  font-size: 16px;
  font-weight: 600;
  min-height: 48px;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.t4s-main-cart .t4s-btn__update:hover,
.t4s-main-cart .t4s-btn__checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.t4s-main-cart input:not([type=submit]):not([type=checkbox]):not([type=number]),
.t4s-main-cart select,
.t4s-main-cart textarea {
  border: 1px solid var(--border-color);
  font-size: 15px;
  outline: 0;
  padding: 0 15px;
  color: var(--text-color);
  max-width: 100%;
  width: 100%;
  height: 46px;
  line-height: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  border-radius: var(--btn-radius);
}

.t4s-main-cart input:not([type="submit"]):not([type="checkbox"]):focus,
.t4s-main-cart textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Textarea for Notes */
#CartSpecialInstructions {
  min-height: 120px;
  color: var(--secondary-color);
  padding: 12px 15px;
  width: 100% !important;
  resize: none;
  font-size: 15px;
}

/* Shipping Calculator */
.t4s-shipping_calculator {
  position: relative;
  border: 1px solid var(--border-color);
  padding: 60px 35px;
  margin-bottom: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.t4s-shipping_calculator h3 {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  padding: 0 20px;
  transform: translate(-50%, -50%);
  background: #fff;
  white-space: nowrap;
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
}

/* Empty Cart */
.t4s-mini_cart__emty {
  margin: 100px 0 160px 0;
  text-align: center;
}

.t4s-mini_cart__emty svg#icon-cart-emty {
  width: 120px;
  height: auto;
  fill: currentColor;
  margin-bottom: 40px;
  opacity: 0.7;
}

.t4s-main-cart .t4s-btn-cart__emty {
  max-width: 100%;
  min-width: 220px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  min-height: 48px;
  padding: 12px 30px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.t4s-main-cart .t4s-btn-cart__emty:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
@media (min-width: 641px){
    .t4s-mini_cart__emty{
        margin: 140px 0px 200px 0;
    }
}
.t4s-mini_cart__emty svg#icon-cart-emty{
    width: 90px;
    height: auto;
    fill: currentColor;
    margin-bottom: 30px;
}
.t4s-main-cart .t4s-mini_cart__emty .t4s-cart__threshold{
    font-size: 14px;
    padding: 8px 20px;
}
.t4s-cart_page_heading{
    margin-bottom: 20px;
    font-size: 30px;
    text-transform: uppercase;
}
.t4s-cart_page_txt{
    margin-bottom: 30px;
}
.t4s-main-cart .t4s-cart__threshold{
    border-bottom: 0;
    box-shadow: none;
    padding: 10px 0px 4px 20px;
}
.t4s-main-cart .t4s-btn-cart__emty{
    max-width: 100%;
    min-width: 180px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    min-height: 40px;
    padding: 5px 25px;
    cursor: pointer;
}
.t4s-main-cart .t4s-btn-cart__emty svg.t4s-btn-icon{
    --btn-size:14px;
}

.t4s-page_cart__item.is--gift .t4s-quantity-cart-item,
.t4s-page_cart__item.is--gift .t4s-page_cart__edit {
  display: none;
}
.t4s-main-cart .t4s-cart-ld__bar[hidden] &gt;span {
    transform: scale(.4);
    opacity: 0;
    visibility: hidden;
}
.t4s-main-cart .t4s-cart-ld__bar &gt;span {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background: var(--t4s-light-color);
    color: var(--text-color);
    transition: opacity .2s ease-in-out,transform .2s ease-in-out,visibility .2s ease-in-out;
}
.t4s-main-cart .t4s-cart-ld__bar,
.t4s-main-cart .t4s-cart-ld__bar&gt;span {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.t4s-main-cart .t4s-cart-ld__bar .t4s-svg-spinner {
    width: 16px;
}
.t4s-main-cart .t4s-cart-ld__bar svg[hidden] {
    display: none !important;
}
.t4s-cartPage__form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: 4;
    background-color: var(--t4s-light-color);
    pointer-events: none;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}
.t4s-cartPage__form.is--contentUpdate:before {
    opacity: .4;
    pointer-events: auto;
}

@media (min-width:768px)
{
    .t4s-main-cart [type="submit"]{
        width: auto;
       padding: 20px;
    font-size: 0.9rem;
    }
    .t4s-main-cart .t4s-btn-group__checkout-update{
        display: inline-flex;
        align-items: end;
        flex-wrap: nowrap;
      .t4s-cart_page_heading {
    display: none;
  }
}
    }
}

@media (max-width: 1024px)
{
    .t4s-cartPage__header{
        display: none;
    }
    .t4s-cartPage__items .t4s-page_cart__item:not(:first-child){
        margin-top: 20px;
    }
    .t4s-page_cart__item {
        padding-top: 0;
        padding-bottom: 15px;
        border: 1px solid var(--border-color)
    }
    .t4s-cartPage__items .t4s-page_cart__item .t4s-row&gt;:first-child {
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 15px;
    }
    .t4s-cartPage__items .t4s-page_cart__info{
        padding: 10px 5px 10px 0;
    }
    .t4s-main-cart .t4s-cat__imgtrust .t4s-cat__imgtrust_ratio{
        width: 100%!important;
    }
}
@media (max-width: 767px){
    .t4s-cartPage__items .t4s-page_cart__item:not(:first-child){
        margin-top: 0;
        padding-top: 25px;
    }
    .t4s-cartPage__items .t4s-page_cart__item,
    .t4s-cartPage__items .t4s-page_cart__item:last-child {
        border: 0;
        border-bottom: 1px solid rgba(var(--border-color-rgb),.8);
        padding-bottom: 20px;
    }
    .t4s-cartPage__items .t4s-page_cart__item&gt;.t4s-row {
        padding-top: 5px;
        padding-inline-start: 140px;
        position: relative;
        min-height: 136px;
    }
    .t4s-cartPage__items .t4s-page_cart__item .t4s-row&gt;:first-child {
        position: static;
        border: 0;
        padding-bottom: 8px;
        margin-bottom: 8px;
        border-bottom: 1px dashed rgba(var(--border-color-rgb),.8);
    }
    .t4s-cartPage__items .t4s-page_cart__item.is--gift .t4s-row&gt;:first-child{margin-bottom: 0;}
    .t4s-page_cart__item .t4s-page_cart__infos &gt;a {
        position: absolute;
        left: 5px;
        top: 0;
    }
    .t4s-cartPage__items .t4s-page_cart__info{
        margin: 0;
        padding: 0;
    }
    .t4s-page_cart__item .t4s-cart_meta_prices_wrap,
    .t4s-page_cart__item .t4s-page_cart__actions {
        border-bottom: 1px dashed rgba(var(--border-color-rgb),.8);
        margin-bottom: 8px;
        padding-bottom: 8px;
    }
    .t4s-main-cart .t4s-quantity-cart-item {margin: 0;}
    .t4s-main-cart .t4s-cart__threshold {
        padding: 25px 0px;
    }
    .t4s-main-cart p[data-currency-jsnotify]{margin-bottom: 10px;}
    .t4s-main-cart .t4s-btn__update,
    .t4s-main-cart .t4s-btn__checkout{margin:10px 0px !important}
    .t4s-page_cart__item.is--gift .t4s-cart_meta_prices_wrap,
    .t4s-page_cart__item.is--gift .t4s-page_cart__actions {
        display: none;
    }
}
.t4s-cart_meta_propertyList {
    --li-pl: 0;
    --list-mb: 5px;
}
.t4s-key__rate {
    text-transform: uppercase;
    color: var(--secondary-color);
    display: inline-block;
}
.t4s-key__rate:after {
    content: ':';
}
ul.t4s-cart_discount_price {
    --li-pl: 0;
}
.t4s-order-discount__item svg {
    width: 14px;
}

.t4s-cart_page_heading {
    display: none;
  }
}
</pre></body></html>