/* Store cart — Flipkart-inspired layout, store brand accents */

#mySidenav.sidenav,
.sidenav.store-cart-drawer {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

body.store-cart #container,
body.store-cart ._2dxSCm,
body.store-cart ._3CzzrP,
body.store-cart ._38U37R {
    width: 100% !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: #f1f3f6;
}

.store-cart-drawer .cart-drawer-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 10px 12px;
    background: #2874f0;
    color: #fff;
    position: relative;
    z-index: 2;
}

.store-cart-drawer .cart-drawer-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0;
    cursor: pointer;
}

.store-cart-drawer .cart-drawer-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.store-cart-drawer .cart-drawer-title .cart-count-label {
    font-weight: 500;
    opacity: 0.95;
}

.store-cart-drawer .cart-drawer-body {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 120px;
}

.store-cart-drawer .cart-banner {
    margin: 0 10px 10px;
    background: #fff;
    border-radius: 4px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #212121;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.store-cart-drawer .cart-banner svg {
    flex: 0 0 auto;
}

.store-cart-drawer .cart-banner strong {
    color: #388e3c;
}

.store-cart-drawer .cart-products-list {
    max-height: none;
    overflow: visible;
    padding: 0 10px;
}

.store-cart-drawer .cart-product {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 0;
    border-radius: 4px;
    padding: 14px 12px;
    margin-bottom: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    justify-content: flex-start;
}

.store-cart-drawer .cart-product-img {
    width: 88px;
    flex: 0 0 88px;
    height: 88px;
    background: #fafafa;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.store-cart-drawer .cart-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-cart-drawer .cart-product-details {
    width: auto;
    flex: 1;
    min-width: 0;
}

.store-cart-drawer .cart-product-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 6px;
}

.store-cart-drawer .cart-product-title p {
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    padding-right: 0;
    margin: 0;
}

.store-cart-drawer .remove-cart-item {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #878787;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.store-cart-drawer .cart-product-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.store-cart-drawer .cart-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    margin: 0;
    font-family: inherit;
}

.store-cart-drawer .cart-product-mrp {
    font-size: 13px;
    color: #878787;
    text-decoration: line-through;
}

.store-cart-drawer .cart-product-off {
    font-size: 12px;
    font-weight: 600;
    color: #388e3c;
}

.store-cart-drawer .cart-product-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.store-cart-drawer .cart-product-color {
    font-size: 12px;
    color: #878787;
    font-weight: 500;
    margin: 0;
    font-family: inherit;
}

.store-cart-drawer .cart-qty-wrapper {
    height: 32px;
    width: 96px;
    border-radius: 2px;
    border: 1px solid #e0e0e0;
    background: #fff;
    overflow: hidden;
}

.store-cart-drawer .cart-qty-wrapper span {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #2874f0;
    padding: 0;
}

.store-cart-drawer .cart-qty-wrapper span.num {
    background: #fff;
    color: #212121;
    font-size: 13px;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    padding: 0 6px;
    min-width: 34px;
}

.store-cart-drawer .cart-price-card {
    margin: 4px 10px 16px;
    background: #fff;
    border-radius: 4px;
    padding: 14px 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.store-cart-drawer .cart-price-card h4 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: #212121;
}

.store-cart-drawer .cart-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #212121;
}

.store-cart-drawer .cart-price-row .free {
    color: #388e3c;
    font-weight: 600;
}

.store-cart-drawer .cart-price-row.total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px dashed #e0e0e0;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 0;
}

.store-cart-drawer .cart-empty {
    margin: 48px 20px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 40px 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.store-cart-drawer .cart-empty-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2874f0;
}

.store-cart-drawer .cart-empty h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #212121;
}

.store-cart-drawer .cart-empty p {
    margin: 0 0 20px;
    font-size: 14px;
    color: #878787;
}

.store-cart-drawer .cart-empty-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 12px 20px;
    background: #0d9488;
    color: #fff !important;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
}

.store-cart-drawer .cart__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    padding: 0;
    z-index: 5;
    display: none;
}

.store-cart-drawer .cart__footer.is-visible {
    display: block;
}

.store-cart-drawer .cart__price__details {
    display: none;
}

.store-cart-drawer .cart__checkout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
    background: #fff;
}

.store-cart-drawer .cart__final__payment {
    min-width: 0;
}

.store-cart-drawer .cart__final__price {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #212121;
    line-height: 1.2;
}

.store-cart-drawer .cart__tax__text {
    margin: 2px 0 0;
    font-size: 11px;
    color: #878787;
}

.store-cart-drawer .cart__confirm__order {
    flex: 0 0 auto;
    min-width: 150px;
    background: #0d9488 !important;
    border: 0 !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 12px 18px !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none !important;
}

/* Full cart page — combined checkout design */
.cart-page {
    max-width: 480px;
    margin: 0 auto;
    background: #f0f0f5;
    min-height: 70vh;
    padding-bottom: 96px;
}

.cart-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 14px 16px 12px;
    border-bottom: 1px solid #eee;
}

.cart-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 52px;
}

.cart-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e8e8ed;
    color: #9e9e9e;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-step-label {
    font-size: 11px;
    color: #9e9e9e;
    font-weight: 500;
}

.cart-step.is-active .cart-step-num {
    background: #2874f0;
    color: #fff;
}

.cart-step.is-active .cart-step-label {
    color: #2874f0;
    font-weight: 600;
}

.cart-step-line {
    flex: 1;
    height: 2px;
    background: #e8e8ed;
    margin: 0 4px 18px;
}

.cart-promo-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eaf9f4;
    color: #038d63;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.cart-promo-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #038d63;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 12px;
}

.cart-page-list {
    padding: 0;
}

.cp-card {
    background: #fff;
    margin-top: 8px;
    padding: 14px 12px 0;
}

.cp-card-main {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cp-thumb {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    border-radius: 4px;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid #f0f0f0;
}

.cp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cp-info {
    flex: 1;
    min-width: 0;
}

.cp-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    line-height: 1.35;
}

.cp-variant {
    font-size: 12px;
    color: #878787;
    margin-bottom: 6px;
}

.cp-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 12px;
    color: #212121;
    margin-bottom: 8px;
}

.cp-stars {
    color: #388e3c;
    letter-spacing: -1px;
    font-size: 11px;
}

.cp-reviews {
    color: #878787;
}

.cp-assured {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
    color: #2874f0;
    font-style: italic;
    font-weight: 600;
    font-size: 11px;
}

.cp-assured i {
    color: #2874f0;
    font-style: normal;
}

.cp-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.cp-off {
    color: #388e3c;
    font-weight: 700;
    font-size: 13px;
}

.cp-mrp {
    color: #878787;
    text-decoration: line-through;
    font-size: 13px;
}

.cp-price {
    font-size: 18px;
    font-weight: 700;
    color: #212121;
}

.cp-returns {
    font-size: 12px;
    color: #878787;
    margin-top: 2px;
}

.cp-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.cp-qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    padding: 4px 8px;
    background: #fff;
}

.cp-qty label {
    font-size: 12px;
    color: #212121;
    margin: 0;
    font-weight: 500;
}

.cp-qty-select {
    border: 0;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: #212121;
    outline: none;
    padding: 0;
}

.cp-size-qty {
    font-size: 12px;
    color: #878787;
}

.cp-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid #c2dbff;
    border-radius: 4px;
    background: #f5f9ff;
    font-size: 13px;
    color: #212121;
}

.cp-coupon i {
    color: #2874f0;
    margin-right: 6px;
}

.cp-coupon-apply {
    border: 0;
    background: transparent;
    color: #2874f0;
    font-weight: 700;
    font-size: 13px;
    padding: 0;
    cursor: pointer;
    white-space: nowrap;
}

.cp-coupon-apply.is-applied {
    color: #388e3c;
}

.cp-delivery {
    margin-top: 10px;
    font-size: 13px;
    color: #565656;
}

.cp-seller {
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #878787;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cp-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid #f0f0f0;
    margin: 0 -12px;
}

.cp-act {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 4px;
    border: 0;
    border-right: 1px solid #f0f0f0;
    background: #fff;
    color: #565656 !important;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none !important;
    cursor: pointer;
}

.cp-act:last-child {
    border-right: 0;
}

.cp-act i {
    font-size: 13px;
}

.cart-wishlist-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    margin-top: 8px;
    padding: 14px 16px;
    color: #212121 !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 700;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cart-wishlist-row i {
    color: #878787;
    font-size: 12px;
}

.cart-page-summary {
    margin-top: 8px;
    background: #fff;
    padding: 16px 14px 18px;
}

.cart-summary-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    color: #212121;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #212121;
}

.cart-summary-row .dotted {
    border-bottom: 1px dotted #c2c2c2;
}

.cart-summary-row.is-discount,
.cart-summary-row.is-discount span {
    color: #038d63;
}

.cart-summary-row.is-total {
    margin: 4px 0 14px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
}

.cart-discount-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eaf9f4;
    color: #038d63;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
}

.cart-discount-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #038d63;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 11px;
}

.cart-page-cta {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    z-index: 20;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
}

.cart-page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-page-cta-price strong {
    display: block;
    font-size: 18px;
    color: #212121;
    line-height: 1.2;
}

.cart-page-cta-price span {
    font-size: 11px;
    color: #878787;
}

.cart-page-cta a {
    flex: 0 0 auto;
    min-width: 150px;
    text-align: center;
    background: #0d9488;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 4px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.cart-page-empty {
    margin: 40px 16px;
    background: #fff;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
}

.cart-page-empty .cart-empty-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2874f0;
}

.cart-page-empty h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #212121;
}

.cart-page-empty p {
    margin: 0 0 16px;
    color: #878787;
    font-size: 14px;
}

.cart-page-empty a {
    display: inline-block;
    background: #0d9488;
    color: #fff !important;
    text-decoration: none !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
}

body.store-cart .site-footer {
    display: none;
}

body.store-cart .header-menu,
body.store-cart .search-bar {
    display: none !important;
}

body.store-cart ._1FWdmb {
    background: #fff;
    border-bottom: 1px solid #eee;
}

body.store-cart .header-title::after {
    content: "My Cart";
    font-size: 16px;
    font-weight: 600;
    color: #212121;
}

@media (min-width: 481px) {
    #mySidenav.sidenav,
    .sidenav.store-cart-drawer {
        left: auto;
        right: -480px;
        max-width: 480px;
    }

    .sidenav.store-cart-drawer.is-open {
        right: 0 !important;
    }
}

