.cart-page,
.cart-page * {
    font-family: 'Inter', sans-serif;
}

/* ===== FADE-UP ANIMATION FOR CART ITEMS ===== */
@keyframes cart-fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: cart-fade-up 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cart-page {
    max-width: 1240px;
    margin: 24px auto;
    padding: 0 16px calc(100px + env(safe-area-inset-bottom));
}

/* Base styles for new components */
.delivery-address-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
}

.delivery-address-card .delivery-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFEDF1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.delivery-address-card .delivery-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.delivery-label {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 2px;
}

.delivery-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.delivery-address-text {
    font-size: 14px;
    color: #6B7280;
    margin-top: 2px;
}

.delivery-change-btn {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: var(--primary, #FF2E63);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cart-header-wrapper {
    margin-bottom: 16px;
}

.cart-subtitle {
    font-size: 14px;
    color: #6B7280;
}

.cart-stepper {
    max-width: 400px;
    margin: 0 auto 20px auto;
}

@media (max-width: 767px) {
    .cart-stepper {
        max-width: none;
        width: 100%;
        margin: 0;
        margin-bottom: 15px;
    }
}

.savings-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #cff3db;
    border-radius: 12px;
    margin-top: 16px;
    margin-bottom: 16px;

}

.savings-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    font-size: 8px;
}

.savings-banner-text {
    font-size: 14px;
    color: #07a544;
    font-weight: 500;
}

.discount-badge {
    background: #E6F7EC;
    color: #22C55E;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
}

.stock-pill {
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stock-pill.in-stock {
    background: #ECFDF5;
    color: #059669;
}

.stock-pill.sold-out {
    background: #fee2e2;
    color: #991b1b;
}

.delivery-info-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #22C55E;
    font-weight: 500;
    margin-top: 10px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(280px, 1fr);
    gap: 20px;
}

/* When empty state is a direct child of cart-layout, span it full width */
.cart-layout>.cart-empty-state {
    grid-column: 1 / -1;
    margin: 12px auto 0;
}

.cart-items-column,
.order-summary-card,
.cart-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-main);
    border-radius: 18px;
    box-shadow: 0 18px 34px -28px rgba(0, 0, 0, 0.05);
}

.cart-items-column {
    padding: 20px;
}

.cart-title {
    margin: 0 0 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    color: var(--text-heading);
}

.cart-items-list {
    display: grid;
    gap: 14px;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    cursor: pointer;
    transition: transform 200ms cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 200ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cart-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 34px -26px rgba(0, 0, 0, 0.05);
}

.cart-item-card.is-removing {
    opacity: 0;
    transform: translateY(6px) translateX(10px);
    pointer-events: none;
}

.cart-item-image-wrap {
    width: 96px;
    height: 96px;
    border-radius: 14px;
    background: var(--bg-main);
    border: 1px solid var(--border-main);
    overflow: hidden;
}

.cart-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-content {
    min-width: 0;
}

.cart-item-name {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--text-heading);
}

.cart-item-price {
    margin: 8px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cart-item-price .current-price {
    color: var(--text-heading);
    font-weight: 600;
}

.original-price {
    color: var(--text-body);
    text-decoration: line-through;
    font-size: 0.88rem;
}

.cart-item-subtotal {
    margin: 8px 0 0;
    color: var(--primary-hover);
    font-weight: 600;
    font-size: 0.92rem;
}

.cart-item-actions {
    display: grid;
    gap: 10px;
    justify-items: end;
}

.qty-selector {
    display: inline-flex;
    align-items: center;
    height: 44px;
    border: 1px solid var(--border-main);
    border-radius: 999px;
    background: var(--bg-card);
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--text-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 120ms cubic-bezier(0.25, 0.1, 0.25, 1), background 120ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.qty-btn:hover:not(:disabled) {
    background: var(--bg-main);
}

.qty-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.qty-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    -webkit-text-fill-color: currentColor;
    color: inherit;
}

.qty-input {
    width: 44px;
    border: none;
    border-left: 1px solid var(--border-main);
    border-right: 1px solid var(--border-main);
    background: transparent;
    color: var(--text-heading);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.qty-input:focus {
    outline: none;
    background: var(--bg-main);
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.qty-input[type='number'] {
    -moz-appearance: textfield;
}

.cart-item-secondary-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.move-wishlist-btn,
.remove-item-btn {
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    font-size: 0.84rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: color 180ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 180ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.move-wishlist-btn {
    color: var(--text-body);
}

.remove-item-btn {
    color: var(--status-error);
}

.move-wishlist-btn:hover,
.move-wishlist-btn:focus-visible {
    color: var(--primary-hover);
    transform: translateY(-1px);
}

.remove-item-btn:hover,
.remove-item-btn:focus-visible {
    color: var(--status-error);
}

.order-summary-card {
    position: sticky;
    top: 96px;
    padding: 20px;
}

.order-summary-card h2 {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    color: var(--text-heading);
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    color: var(--text-body);
}

.summary-row strong {
    color: var(--text-heading);
}

.total-row {
    margin-top: 12px;
}

.total-row strong {
    color: var(--primary, #FF2E63);
    font-size: 1.16rem;
}

.summary-divider {
    height: 1px;
    border: none;
    background-color: #E5E7EB;
    margin: 12px 0;
}

.shipping-message {
    margin: 8px 0 12px;
    font-size: 14px;
    color: var(--text-body);
}

.shipping-highlight {
    font-weight: 600;
    color: var(--primary-hover);
}

.secure-payment-row {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.secure-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--border-main);
    background: var(--bg-main);
    color: var(--text-body);
    font-size: 0.76rem;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    height: 50px;
    margin-top: 12px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--bg-card);
    font-weight: 700;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 180ms cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 180ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 180ms cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 14px 22px -18px rgba(0, 0, 0, 0.05);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 24px -18px rgba(0, 0, 0, 0.05);
}

.checkout-btn:active {
    transform: scale(0.975);
    filter: brightness(0.96);
    box-shadow: 0 8px 16px -14px rgba(0, 0, 0, 0.05);
}

.checkout-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.checkout-btn:focus-visible,
.qty-btn:focus-visible,
.qty-input:focus-visible,
.remove-item-btn:focus-visible,
.move-wishlist-btn:focus-visible,
.continue-shopping-btn:focus-visible {
    outline: 2px solid var(--primary-hover);
    outline-offset: 2px;
}

.apply-coupon-btn {
    background: none;
    border: none;
    color: #FF2E63;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.apply-coupon-btn:hover {
    text-decoration: underline;
}

.cart-empty-state {
    max-width: 620px;
    margin: 56px auto;
    padding: 42px 24px;
    text-align: center;
}

.empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
    color: var(--primary-hover);
    border: 1px solid var(--border-main);
    font-size: 1.8rem;
}

.cart-empty-state h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-heading);
    line-height: 1.3;
}

.cart-empty-state p {
    margin: 8px 0 0;
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    height: 44px;
    padding: 0 20px;
    border-radius: 12px;
    border: 1px solid var(--border-main);
    background: var(--bg-card);
    color: var(--text-heading);
    font-weight: 600;
    text-decoration: none;
    transition: transform 180ms cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 180ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.continue-shopping-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -16px rgba(0, 0, 0, 0.05);
}

.mobile-checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    height: 50px;
    padding: 0 20px;
    padding-bottom: env(safe-area-inset-bottom);
    box-sizing: content-box;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    z-index: 100;
    justify-content: center;
}

.mobile-checkout-bar[hidden] {
    display: none !important;
}

.mobile-checkout-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1208px;
    gap: 16px;
    height: 100%;
}

.checkout-btn-mobile {
    height: 38px;
    margin-top: 0;
    font-size: 14px;
    border-radius: 19px;
    padding: 0 25px;
    width: auto;
}

@media (max-width: 767px),
(hover: none) and (pointer: coarse) {
    body {
        background-color: #F5F6FA;
    }

    body .top-bar {
        height: 15px;
    }

    body .nav-container {
        height: 50px;
    }

    .cart-page {
        margin: 0;
        padding: 0;
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
    }

    .cart-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cart-items-column {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .cart-header-wrapper {
        height: 60px;
        margin: 0 10px 0;
        background: #FFFFFF;
        border-radius: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 10px;
    }

    .cart-title {
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 0;
        line-height: 1;
    }

    .cart-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: #6B7280;
        margin-left: 36px;
    }

    .delivery-address-card {
        height: 110px;
        margin: 10px 15px 20px 15px;
        padding: 6px 12px;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        background: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
    }

    .delivery-address-card .delivery-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }

    .delivery-address-card .delivery-label {
        font-size: 14px;
        margin-bottom: 0;
    }

    .delivery-address-card .delivery-name {
        font-size: 14px;
        line-height: 1.2;
    }

    .delivery-address-card .delivery-address-text {
        font-size: 14px;
        margin-top: 1px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 190px;
    }

    .cart-page-header {
        min-height: 55px;
        margin: 0 10px;
        background: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10px;
    }

    .cart-title-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 4px;
    }

    .cart-back-btn {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        color: #111827;
    }

    .cart-items-list {
        padding: 0;
        gap: 0;
        margin-top: 0;
    }

    .cart-item-card {
        height: 100px;
        margin: 0 10px 5px;
        padding: 10px;
        background: #FFFFFF;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        display: grid;
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        position: relative;
        overflow: hidden;
        transition: transform 200ms cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 200ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    .cart-item-card.is-removing {
        opacity: 0;
        transform: translateY(6px) translateX(10px);
        pointer-events: none;
    }

    .cart-item-image-wrap {
        width: 80px;
        height: 80px;
        border-radius: 12px;
        background: #FFFFFF;
        border: 1px solid #E5E7EB;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart-item-image-wrap img {
        max-width: 100%;
        max-height: 100%;
        mix-blend-mode: multiply;
        /* Helps blend white bg images like standard products into the lightly gray wrap */
    }

    .cart-item-content {
        display: flex;
        flex-direction: column;
        gap: 1.5px;
        padding-right: 20px;
        /* Prevent text from hitting the 'x' button */
    }

    .cart-item-brand {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #FF2E63;
        margin: 0;
        line-height: 1.2;
    }

    .cart-item-name {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: #1E293B;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        /* Match single line title */
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 0;
        font-weight: 400;
        line-height: 1.3;
    }

    .cart-item-variant {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        color: #64748B;
        margin: 0;
        line-height: 1.2;
    }

    .cart-item-price-row {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .cart-item-price .current-price,
    .cart-item-price-row .current-price {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #0F172A;
    }

    .cart-item-price .original-price,
    .cart-item-price-row .original-price {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        color: #94A3B8;
        text-decoration: line-through;
        margin-left: 2px;
    }

    .cart-item-price-row .discount-badge {
        font-family: 'Inter', sans-serif;
        background: #ECFDF5;
        color: #059669;
        font-size: 10px;
        font-weight: 600;
        padding: 2px 6px;
        border-radius: 4px;
    }

    .remove-item-btn-top {
        position: absolute;
        top: 10px;
        right: 10px;
        background: transparent;
        border: none;
        color: #9CA3AF;
        padding: 0;
        cursor: pointer;
        background-color: #F3F4F6;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .remove-item-btn-top svg {
        width: 14px;
        height: 14px;
        stroke: #4B5563;
    }

    .qty-selector {
        position: absolute;
        bottom: 12px;
        right: 12px;
        width: 84px;
        height: 30px;
        border-radius: 20px;
        border: 1px solid #E5E7EB;
        background: #FFFFFF;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        overflow: hidden;
    }

    .qty-btn {
        width: 28px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FF2E63;
        font-weight: 500;
        font-size: 16px;
        background: transparent !important;
        border: none;
        cursor: pointer;
        padding: 0;
        -webkit-appearance: none;
        appearance: none;
    }
    .qty-btn.js-minus { border-radius: 999px 0 0 999px; }
    .qty-btn.js-plus { border-radius: 0 999px 999px 0; }

    .qty-input {
        width: 28px;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #111827;
        border: none;
        text-align: center;
        padding: 0;
        background: transparent;
    }

    #savingsBannerContainer {
        padding: 0;
    }

    .savings-banner {
        height: 25px;
        margin: 5px 20px 10px;
        border-radius: 5px;
        padding: 0 10px;
    }

    .order-summary-card {
        margin: 0 15px 15px;
        padding: 20px;
        border-radius: 16px;
        background: #FFFFFF;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        position: static;
        border: none;
    }

    .order-summary-card h2 {
        font-family: inherit;
        font-size: 18px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 16px;
    }

    .summary-row {
        font-size: 14px;
        margin: 12px 0;
    }

    .summary-row span {
        color: #4B5563;
    }

    .summary-row strong {
        color: #111827;
    }

    .text-green {
        color: #22C55E !important;
    }

    .text-pink {
        color: var(--primary, #FF2E63) !important;
    }

    .total-row strong {
        font-size: 18px;
        font-weight: 700;
    }

    .mobile-checkout-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: #FFFFFF;
        height: 60px;
        padding: 0 16px;
        padding-bottom: env(safe-area-inset-bottom);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
        box-sizing: content-box;
        z-index: 180;
    }

    .mobile-checkout-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .mobile-checkout-total-block {
        display: flex;
        flex-direction: column;
    }

    .mobile-checkout-total {
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .mobile-checkout-tax {
        font-size: 12px;
        color: #6B7280;
    }

    .checkout-btn-mobile {
        flex: 1;
        height: 40px;
        margin-top: 0;
        border-radius: 19px;
        background: linear-gradient(135deg, #FF2E63, #ff6b9d);
        box-shadow: 0 4px 12px rgba(255, 46, 99, 0.14);
        color: #FFFFFF;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
}

/* ===== EMPTY STATE ===== */
/* When cart items are hidden, make the layout single-column so summary shifts up */
.cart-items-list[hidden]~.cart-empty-state {
    display: flex;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 30vh;
    padding: 24px 24px;
    text-align: center;
}

.cart-empty-state h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 5vw, 36px);
    font-weight: 500;
    font-style: italic;
    color: #6b7280;
    line-height: 1.5;
    max-width: 480px;
    margin: 0 0 12px 0;
    letter-spacing: 0.01em;
}

.cart-empty-state p {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #9ca3af;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 36px 0;
}

.continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FF2E63, #ff6b9d);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 46, 99, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.continue-shopping-btn::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.2s ease;
}

.continue-shopping-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 46, 99, 0.20);
}

.continue-shopping-btn:hover::after {
    transform: translateX(4px);
}