/** Shopify CDN: Minification failed

Line 122:25 Expected ":"

**/
.cd-main-d5 *{
    line-height: normal;
}
.cd-main-d5{
    width: 100%;
    max-width: 400px;
    position: fixed;
    max-height: 90vh;
    background: #fff;
    right: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    top: 40px;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: all .1s;
}
.cd-main-d5.active{
    height: unset;
    opacity: 1;
    transition: all .3s;
}
.cd-header-d5{
    padding: 24px 16px;
    border-bottom: 1px solid #ddd;
}
.cd-header-ctas {
    display: flex;
    gap: 14px;
    align-items: center;
    padding-top: 24px;
}
.cd-btn-d5{
    display: flex;
    width: calc(50% - 7px);
    height: 48px;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    color: #fff;
    background: #000;
    border: 2px solid #000;
    transition: all .3s;
}
.cd-btn-d5.primary-d5{
    color: #000;
    background: #fff;
    border: 2px solid #000;
}
.cd-btn-d5.primary-d5:hover{
    background: #f5f5f5;
}
.cd-btn-d5.secondary-d5:hover{
    background: #333;
}
.cd-body-d5{
    max-height: calc(90vh - 140px);
    overflow-y: auto;
    padding: 24px 16px 0;
}
.cd-item-row-d5{
    display: flex;
    gap: 14px;
}
.cd-img-d5{
    max-width: 110px;
    width: 100%;
    display: block;
}
.cd-img-d5 img{
    width: 100%;
    height: auto;
}
.cd-item-info-d5{
    width: 100%;
    max-width: calc(100% - 110px);
}
.cd-cart-item-d5{
    margin-bottom: 24px;
    position: relative;
}
.cd-cart-item-d5 .cd-spinner-d5{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 888;
    width: 20px;
    height: 20px;
}
.cd-cart-item-d5.loading::after{
    background: rgba(0,0,0,.2);
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.cd-cart-item-d5.loading .cd-spinner-d5{
    display: flex !important;
}
.cd-title-d5 a{
    text-decoration: none;
}
.cd-title-d5{
    font-size: 12px;
    color: #000;
    font-weight: 400;
    transition: all .3s;
    text-underline-offset
}
.cd-title-d5:hover{
    text-decoration: underline;
}
.cd-comp-price-d5{
    text-decoration: line-through;
    font-size: 12px;
    color: #000;
    font-weight: 100;
}
.cd-price-d5{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.cd-reg-price-d5{
    font-size: 15px;
    font-weight: 600;
    color: rgba(157, 34, 38, 1);
}
.cd-item-announcement-d5 p{
    margin: 8px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: rgba(157, 34, 38, 1);
}
.cd-dropdown-d5{
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    padding: 4px;
    cursor: pointer;
}
.cd-item-options-d5{
    display: flex;
    margin: 10px 0 8px;
}
.cd-qty-row-d5{
    width: 100%;
    max-width: 100px;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    height: 24px;
    margin-top: 10px;
}
.cd-qty-btn-d5, .cd-qty-input-d5{
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cd-qty-input-d5{
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.cd-qty-btn-d5{
    cursor: pointer;
    transition: all .3s;
}
.cd-qty-btn-d5:hover{
    background: #ddd;
}
.cd-loader-d5{
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    z-index: 6;
}
.cd-spinner-d5 {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
}
.cd-spinner-d5::before,
.cd-spinner-d5::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 1);
    border-top-color: #ce548e;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
.cd-spinner-d5::after {
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-bottom-color: #ce548e;
    animation-direction: reverse;
    animation-duration: 1.5s;
    filter: blur(1px);
}
.final-item-opener-d5{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer; 
    border: 1px solid #e6e6e6;
    height: 30px;
    border-radius: 4px;
    margin-bottom: 24px;
}
.final-item-opener-d5 span{
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #000;
    pointer-events: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.atc-loading-d5 .cd-loader-d5{
    display: flex;
}

.mp-inner-d5{
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.mp-row-d5{
    display: flex;
    position: relative;
    gap: 30px;
    align-items: start;
}
.mp-col-d5{
    width: calc(50% - 15px);
}
.mp-info-d5{
    position: sticky;
    top: 0px;
}
.mp-img-d5{
    width: 100%;
}
.mp-img-d5 img{
    width: 100%;
    height: auto;
}
.mp-header-d5{
    padding: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mp-header-d5 p{
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.mp-close-modal-d5{
    height: 32px;
    width: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mp-close-modal-d5 svg{
    width: 22px;
    height: 22px;
    pointer-events: none;
}
.mp-title-d5{
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
}
.mp-prices-d5{
    display: flex;
    align-items: center;
    gap: 10px;
}
.mp-reg-price-d5{
    font-size: 17px;
    color: rgba(157, 34, 38, 1);
}
.mp-comp-price-d5{
    font-size: 12px;
    color: #000;
    text-decoration: line-through;
}
.mp-options-d5{
    margin-top: 15px;
}
.mp-option-title-d5{
    font-size: 13px;
    font-weight: 600;
    color: #000;
}
.mp-option-values-d5{
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mp-value-d5{
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}
.mp-value-d5.active{
    border: 1px solid #000;
}
.mp-update-btn-d5{
    margin-top: 14px;
    height: 48px;
    cursor: pointer;
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}
.mp-update-btn-d5.disabled, .mp-value-d5.disabled{
    opacity: .4;
    pointer-events: none;
}
.cd-variant-update-modal-d5, .quick-add-modal-d5{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: end;
    z-index: 999;
}
.cdv-um-overlay-d5, .qa-overlay-d5{
    display: flex;
    background: rgba(0,0,0,.7);
    width: 100%;
    height: 100%;
    position: absolute;
}
.cdv-um-inner-d5, .qa-inner-d5{
    max-width: 900px;
    height: 100%;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    width: 100%;
    z-index: 999;
}
.cd-variant-update-modal-d5.active, .quick-add-modal-d5.active{
    display: flex;
}
.main-product-d5{
    width: 100%;
}
.loading-nul .cdv-um-spinner-d5, .loading-nul .cd-spinner-d5{
    display: none !important;
}
.main-product-d5{
    height: 100%;
}
.cd-reward-bar-d5{
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cd-bar-d5{
    margin-top: 5px;
    max-width: 250px;
    background: #ddd;
    width: 100%;
    height: 3px;
    position: relative;
}
.cd-bar-inner-d5{
    display: flex;
    background: rgba(46,131,44,1);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}
.cd-pre-reward-text-d5{
    font-size: 12px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.cd-pre-reward-text-d5 .cd-more-btn-d5{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #000;
    border: 1px solid #000;
    border-radius: 15px;
    height: 24px;
    padding: 0 8px;
    white-space: nowrap;
}
.cd-post-reward-text-d5{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(46,131,44,1);
    font-weight: 600;
}
.main-cart-d5 .cart-header{
    justify-items: start;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.main-cart-d5 .cart-header p{
    font-size: 12px;
    color: #000;
    font-weight: 400;
}
.main-cart-d5 .cart-header h1{
    font-size: 28px;
    color: #000;
    font-weight: 800;
}
.cp-remove-confirmation-modal-d5 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  bottom: -110px;
  left: -50px;
  background: #fff;
  box-shadow: 0px -1px 4px 0px #00000052, 0px 2px 4px 0px #00000052;
  border-radius: 6px;
  max-width: 290px;
  height: 100px;
  overflow: hidden;
}
.cp-modal-overlay-d5 {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
}
.cp-modal-box-d5 {
  position: relative;
  background: white;
  padding: 12px;
  text-align: center;
  z-index: 10000;
}
.cp-modal-actions-d5 {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.cp-confirm-remove-d5 {
  background: black;
  color: white;
  padding: 0px 16px;
  border: none;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.cp-move-wishlist-d5 {
  background: white;
  border: 1px solid #ccc;
  padding: 0px 16px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}
.cd-qty-main-d5{
  position: relative;
}
.cp-modal-box-d5 p{
    font-size: 12px;
    color: #000;
    margin-bottom: 8px;
    text-align: left;
}
.d5-checkout-btn button,.d5-checkout-btn a {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ce548e;
    color: #fff;
    font-weight: 600;
    border: 1px solid #ce548e;
    border-radius: 100px;
}
.cp-rewards-bar-d5 {
    width: 100%;
}
.cp-rewards-bar-d5 .cd-reward-bar-d5{
    max-width: 400px;
    align-items: start;
    border: none;
    margin: 0;
    padding: 0;
}
.cp-rewards-bar-d5 .cd-bar-d5{
    max-width: 100%;
}
.cp-checkout-d5{
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 16px;
    border-top: 1px solid #ddd;
    background: rgba(255,255,255,.97);
    width: 100%;
    z-index: 999;
    /* display: none; */
}
.cp-checkout-d5:empty, .empty-state-d5-field , .empty-state-d5-field + .discount-field-d5.mobile-only-d5{
    display: none !important;
}

.cp-checkout-d5.active{
    display: flex;
}
.checkout-block-d5{
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}
.discount-field-d5{
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}
.discount-form-d5{
    height: 48px;
    position: relative;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #000;
    overflow: hidden;
    padding: 1px;
}
.discount-form-d5 input{
    width: 100%;
    height: 100%;
    padding: 8px 12px;
}
.discount-form-d5 button{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 64px;
    background: rgb(37, 105, 35);
    border: 1px solid rgb(37, 105, 35);
    color: #fff;
    font-size: 12px;
}
.discount-form-d5 button.loading{
    opacity: .6;
    pointer-events: none;
}
.cart__right.desktop-only-d5{
    padding: 0;
    border: none;
}
.failed-discounts-d5{
    color: rgb(157, 34, 38);
    font-size: 12px;
    margin-top: 10px;
    text-transform: none;
    display: none;
}
.failed-discounts-d5 span{
    margin-right: 4px;
}
.failed-discounts-d5.active{
    display: block;
}
.checkout-price-block-d5{
    padding: 16px;
}
.just-bw-d5{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #000;
    margin-bottom: 8px;
    text-transform: none;
}
.just-bw-d5 span{
    display: flex;
}
.just-bw-d5 span.bold-d5{
    font-weight: 600;
}
.cart-total-price-d5{
    font-size: 17px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb
}
.cart-checkout-btn-d5{
    padding-top: 8px;
}
.cart-checkout-a-d5{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    background: #000;
    color: #fff;
    font-size: 15px;
    border-radius: 50px;
}
.main-cart-d5 *{
    text-transform: none;
}
.payment-icons-d5{
    width: auto;
    height: 35px;
    margin: 0 auto;
    margin-top: 8px;
}
.pc-img-d5{
    background: #ddd;
    width: 100%;
    aspect-ratio: var(--ratio-card-img-d5); 
}
.ct-tab-row-d5{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 1px;
}
.product-card-d5{
    padding-bottom: 10px;
    width: 100%;
    width: 100%;
}
.product-card-d5 *{
    text-transform: none;
}
.pc-img-d5{
    width: 100%;
    position: relative;
}
.pc-img-d5 img{
    width: 100%;
    display: block;
}
.pc-img-d5 button{
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: #fff;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}
.pc-img-d5 button svg{
    pointer-events: none;
}
.pc-price-d5{
    display: flex;
    align-items: center;
    gap: 0 5px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.pc-price-d5 span{
    display: flex;
    white-space: nowrap;
}
.pc-price-d5 .pc-reg-price-d5{
    font-size: 15px;
    font-weight: 600;
    color: #9d2226;
}
.pc-price-d5 .pc-comp-price-d5{
    color: #000;
    font-size: 12px;
    text-decoration: line-through;
}
.pc-announcement-d5{
    font-size: 12px;
    color: #9d2226;
    font-weight: 500;
    line-height: normal;
}
.quick-add-modal-d5 .up-text-d5{
    display: none;
}
.quick-add-modal-d5 .atc-text-d5{
    display: inline !important;
}
.ct-tab-data-d5{
    display: none;
}
.ct-tab-data-d5.active{
    display: flex;
}
.ct-tab-btn-d5{
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    width: 100%;
    margin-bottom: 20px;
}
.ct-tab-btn-d5 .ct-tab-button-d5{
    cursor: pointer;
    font-size: 15px;
    color: #000;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    padding: 5px 0;
}
.ct-tab-btn-d5 .ct-tab-button-d5.active{
    border-color: #000;
}
.just-bw-d5.discount-color-d5{
    color: #9d2226;
    font-weight: 600;
}
.applied-discounts-d5 ul{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0;
    padding: 15px 0 0;
}
.applied-discounts-d5 ul li{
    list-style: none;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    gap: 5px;
    font-size: 13px;
    color: #000;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 4px;
}
.dis-ans-d5{
    text-align: center;
    display: flex;
    gap: 5px;
    align-items: center;
    width: 100%;
    font-size: 13px;
    color: #000;
    margin-bottom: 8px;
    justify-content: center;
}
.dis-ans-d5 span{
    display: flex;
    padding: 2px 8px;
    background: rgb(157, 34, 38);
    border-radius: 10px;
    color: #fff;
}
.ct-tab-data-d5{
    position: relative;
}
.ct-tab-data-d5.active .ct-tab-row-d5:empty::after{
    position: absolute;
    content: 'No Products Found';
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}
.ct-tab-data-d5.active.loading .ct-tab-row-d5:empty::after{
    content: 'Loading Products...';
}
.fi-final-items-row-d5{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 1px;
}
.fi-inner-d5{
    max-width: 430px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    padding: 0 16px;
    overflow: hidden;
    z-index: 999;
    max-height: 75vh;
    overflow-y: auto;
}
.final-item-modal-d5 .fi-heading-d5{
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 34;
    background: #fff;
}
.fi-heading-d5 h4{
    font-size: 17px;
    color: #000;
    font-weight: 700;
    width: 100%;
    text-align: center;
}
.fi-close-icon-d5{
    width: 32px;
    height: 32px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fi-overlay-d5{
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex !important;
    background: rgba(0,0,0,.5);
    top: 0;
    left: 0;
    z-index: 99;
}
.fi-content-d5 p{
    margin-bottom: 15px;
}
.final-item-modal-d5 .pc-content-d5 p{
    margin: 0;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis;
}
.fi-close-icon-d5 svg{
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.final-item-modal-d5{
    display: none;
}
.final-item-modal-d5.active{
    display: flex !important;
}
.wishlist-count-d5::empty{
    display: none;
}
.wishlist-count-d5{
    position: absolute;
    bottom: 9px;
    right: 5px;
    background: #be2d2e;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
}
.main-cart-d5{
    padding-top: 35px;
}
.wp-grid-d5{
    display: flex;
    gap: 1px;
    flex-wrap: wrap;
}
.wp-main-d5{
    padding: 40px;
}
.quick-add-card-d5{
    width: 100%;
    max-width: calc(25% - 3px);
    position: relative;
}
.quick-add-card-d5 .product-price{
    flex-wrap: wrap;
    gap: 0 8px;
}
.wp-inner-d5[data-col="3"] .quick-add-card-d5{
    max-width: calc(33.3% - 2px);
}
.cp-move-wishlist-d5.active::after{
    content: 'Already in Wishlist';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cp-move-wishlist-d5.active{
    color: transparent;
    pointer-events: none;
}
.onhow-wishlist-toggle{
    min-width: 25px;
    max-width: 25px;
    min-height: 25px;
    max-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdp-wishlist-icon-d5{
    height: 48px;
    min-width: 48px;
    background: #fff;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}
.pdp-wishlist-icon-d5.active svg path{
    fill: #be2d2e;
    stroke: #be2d2e;
}
.pdp-wishlist-icon-d5:hover{
    background: #ddd;
}
.mp-update-d5{
    display: flex;
    gap: 10px;
    align-items: end;
}
.quick-add-card-d5:not(:has(.wishlist-button-d5.active)), #fav-products-d5 #d5-product-card-d5:not(:has(.wishlist-button-d5.active)) {
    display: none !important;
}
.wp-title-d5{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.wp-title-d5 h2{
    font-size: 20px;
    font-weight: 900;
}
.wp-title-d5 .wp-item-count-d5{
    font-size: 12px;
}
.wp-subheader-d5{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}
.wp-breadcumb-d5{
    display: flex;
    align-items: center;
    gap: 15px;
}
.wp-breadcumb-d5 span svg{
    opacity: .6;
    rotate: -90deg;
}
.wp-breadcumb-d5 a, .wp-breadcumb-d5 p{
    font-size: 12px;
    color: #000;
    text-decoration: none;
}
.wp-breadcumb-d5 a{
    text-underline-offset: 5px;
}
.wp-breadcumb-d5 a:hover{
    text-decoration: underline;
}
.wp-header-d5{
    padding-bottom: 20px;
}
.wp-grid-alignment-d5{
    display: flex;
    align-items: center;
    gap: 15px;
}
.wp-grid-set-d5{
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}
.wp-grid-set-d5 span{
    display: block !important;
    height: 12px;
    width: 4px;
    background: #ddd;
}
.wp-grid-set-d5.active span, .wp-grid-set-d5:hover span{
    background: #000;
}
.wp-grid-d5{
    position: relative;
}
.wp-grid-d5{
    min-height: 50vh;
}
.wp-grid-d5:empty{
    height: 50vh;
    background: #ddd;
}
.wp-grid-d5:empty::after{
    content: 'No Products in Wishlisht';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wp-grid-d5.loading:empty::after{
    content: 'Products Loading ...'
}

.sw-slide-d5 .product-price span, .quick-add-card-d5 .product-price span{
    font-size: 15px;
}
.sw-slide-d5{
    position: relative;
}
.product-page-wl-d5.active svg path{
    fill: #be2d2e;
    stroke: #be2d2e;
}
.cart-page-card-wl-btn-d5{
    display: none !important;
}
.empty-btn-d5{
    padding-top: 16px;
}
.empty-btn-d5 a{
    width: 100%;
}
.empty-cart-text-d5{
    text-align: center;
    font-size: 17px;
    font-weight: 600;
}
.container.empty-cart-d5{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.cp-empty-space-d5{
    width: 100%;
    padding: 20px 16px;
    background: #efefef;
    margin-bottom: 20px;
}
.cp-empty-space-d5 p{
    font-size: 17px;
    font-weight: 600;
    color: #000;
}
.cp-empty-space-d5 a{
    max-width: 200px;
    margin-top: 15px;
}
@media(min-width: 749px){
    #cart-notification-d5, .mobile-only-d5{
        display: none;
    }
    .wp-inner-d5[data-col="5"] .quick-add-card-d5{
        max-width: calc(20% - 4px);
    }
    .wp-inner-d5[data-col="4"] .quick-add-card-d5{
        max-width: calc(25% - 3px);
    }
}
@media(max-width: 750px){
    .cp-empty-space-d5 a{
        max-width: 100%;
    }
    .container.empty-cart-d5{
        padding: 0 10px;
    }
    .wp-inner-d5[data-col="2"] .quick-add-card-d5{
        max-width: calc(50% - 1px);
    }
    .wp-main-d5{
        padding: 16px;
    }
    .cn-main-d5{
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: none;
        align-items: end;
        justify-content: center;
    }
    .cn-main-d5.active{
        display: flex;
    }
    .cn-overlay-d5{
        background: rgba(0,0,0,.4);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
    }
    .cn-inner-d5{
        background: #fff;
        width: 100%;
        position: relative;
        height: 90vh;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        padding: 0 16px 16px;
        overflow-y: auto;
    }
    .cn-header-d5{
        position: sticky;
        top: 0;
        display: flex;
        align-items: center;
        padding: 16px 0;
        background: #fff;
        z-index: 9;
    }
    .cn-header-d5 p{
        font-size: 15px;
        font-weight: 600;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
    }
    .cn-header-d5 p svg{
        margin-right: 8px;
        border: 1px solid #000;
        border-radius: 50%;
    }
    .cn-close-d5{
        width: 32px;
        height: 32px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cn-close-d5 svg{
        pointer-events: none;
        width: 20px;
        height: 20px;
    }
    .cn-inner-d5 .cd-price-info-d5, .cn-inner-d5 .cd-qty-main-d5, .cn-inner-d5 .cd-item-options-d5, #cart-drawer-d5{
        display: none;
    }
    .cn-inner-d5 .cn-options-d5{
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        padding-top: 10px;
    }
    .cn-inner-d5 .cd-img-d5{
        max-width: 85px;
    }
    .cn-view-cart-btn-d5{
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 500;
        color: #000;
        background: #fff;
        border: 1px solid #000;
        border-radius: 50px;
        width: 100%;
        gap: 4px;
    }
    .cn-up-option-d5{
        display: flex !important;
        margin: 10px 0 8px;
    }
    .cn-up-title-d5{
        font-size: 15px;
        color: #000;
        font-weight: normal;
        margin: 24px 0 20px;
    }
    .quick-up-add-btn-d5{
        height: 32px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: #000;
        border-radius: 20px;
        font-weight: normal;
        font-size: 15px;
        justify-self: end;
    }
    .up-product-add-d5{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
   
    .cn-up-option-d5 .cd-dropdown-d5{
        pointer-events: none;
    }
    .quick-add-modal-d5, .cd-variant-update-modal-d5{
        position: fixed;
        display: none;
        align-items: end;
        height: 100vh;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    .quick-add-modal-d5.active, .cd-variant-update-modal-d5.active{
        display: flex;
    }
    .qa-overlay-d5, .cdv-um-overlay-d5{
        display: flex;
        background: rgba(0,0,0,.5);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .qa-inner-d5, .cdv-um-inner-d5{
        position: relative;
        background: #fff;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        height: 90vh;
        overflow-y: auto;
        width: 100%;
        padding: 0 16px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mp-header-d5{
        display: none;
    }
    .mp-row-d5{
        flex-direction: column;
    }
    .mp-media-d5{
        display: flex;
        align-items: start;
        overflow-x: auto;
        gap: 5px;
    }
    .mp-media-d5::webkit-scrollbar{
        display: none !important;
    }
    .mp-img-d5{
        min-width: 110px;
        max-width: 110px;
        height: 160px;
    }
    .mp-img-d5 img{
        height: 100%;
        object-fit: cover;
    }
    .mp-col-d5{
        width: 100%;
    }
    .qa-mp-header-d5{
        display: flex !important;
    }
    .quick-up-add-btn-d5.disabled{
        opacity: .4;
        pointer-events: none !important;
    }
    .cn-items-con-d5{
        position: relative;
    }
    .cn-items-con-d5.load .cd-spinner-d5{
        display: flex !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .cp-modal-overlay-d5 {
        background: rgba(0,0,0, 0.6);
        position: absolute;
    }
    #cp-remove-confirmation-modal-d5{
        display: flex;
        position: fixed;
        bottom: 0px;
        left: 0px;
        background: transparent;
        max-width: unset;
        height: unset;
    }
    .cp-modal-box-d5{
        width: 100%;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        position: absolute;
        bottom: 0;
        left: 0;
        padding-bottom: 30px;
    }
    .cp-modal-actions-d5{
        flex-direction: column;
    }
    .cp-modal-actions-d5 button{
        width: 100%;
        height: 48px;
        border-radius: 100px;
    }
    .desktop-only-d5{
        display: none !important;
    }
    .cp-modal-box-d5 p{
        text-align: center;
        font-size: 15px;
        font-weight: 600;
        padding-bottom: 15px;
    }
    .cp-modal-close-d5{
        position: absolute;
        top: 8px;
        right: 15px;
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cp-modal-close-d5 svg{
        width: 15px;
    }
    .cart__right.active{
        display: block !important;
        position: relative;
        z-index: 99999;
    }
    .cart__right.active .cr-modal-d5{
        position: fixed;
        bottom: 0;
        left: 0;
        background: #fff;
        z-index: 999;
        max-height: max-content;
        width: 100%;
        top: unset;
        padding: 16px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
    .cart__right.active .cr-overlay-d5{
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,.6);
        z-index: 996;
    }
    .d5-checkout-btn a{
        margin: 16px 0 0;
    }
    .cp-mob-total-d5{
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        color: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding: 16px 0;
    }
    .cp-mob-total-d5 svg, .cp-mob-total-d5 span{
        pointer-events: none;
    }
    .main-cart-d5{
        padding-top: 20px;
    }
    .cr-close-icon-d5{
        position: absolute;
        top: 10px;
        right: 10px;
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
    }
    .cr-header-d5{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }
    .cr-header-d5 p{
        font-size: 15px;
        color: #000;
        font-weight: 700;
    }
    .cr-header-d5 span svg{
        width: 12px;
        height: 12px;
        pointer-events: none;
    }
    .checkout-price-block-d5{
        padding: 0;
    }
    .checkout-block-d5{
        border: none;
    }
    .discount-field-d5{
        padding: 16px 0 30px;
    }
    .ct-tab-row-d5{
        grid-template-columns: repeat(3, 1fr);
    }
    .pc-img-d5 button{
        bottom: 0;
    }
    .final-item-opener-d5{
        margin-bottom: 10px;
    }
    .fi-inner-d5{
        transform: none;
        left: 0;
        bottom: 0;
        top: unset;
        max-height: 80vh;
        overflow-y: scroll;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
    .fi-final-items-row-d5{
        grid-template-columns: repeat(3, 1fr);
    }
    .quick-add-card-d5 .wishlist-button-d5{
        position: absolute;
        top: 0;
        right: 4px;
    }
    .wp-header-d5{
        padding: 0;
    }
    .quick-add-card-d5 .quick-btn, .sw-slide-d5 .quick-btn{
        color: transparent;
        background-image: url('/cdn/shop/files/Screenshot_2025-11-19_234241.png?v=1763577774');
        background-size: 15px !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 30px;
        height: 30px;
        box-shadow: 0px 1px 5px #0000009c;
        right: 4px !important;
        left: unset !important;

    }
    .wishlist-count-d5{
        right: -3px;
    }
}
