/**
 * Copyright © 2026 Moogento. All rights reserved.
 * See LICENSE.txt for license details.
 */

.moogento-smartcart-container {
    display: none;
    margin: 24px 0 0;
    padding: 20px;
    border: 1px solid #bfd8f1;
    border-radius: 18px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(243, 249, 255, 0.98) 55%,
            rgba(231, 242, 252, 0.95) 100%);
    box-shadow: 0 18px 40px rgba(13, 67, 122, 0.08);
}

.moogento-smartcart-container.smartcart-placement-cart {
    margin: 35px 0 26px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.moogento-smartcart-container.smartcart-placement-checkout {
    margin: 16px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.moogento-smartcart-container.smartcart-placement-minicart {
    margin: 10px 0 0;
    padding: 10px 12px;
    border: 1px solid #d5e0ea;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
}

.moogento-smartcart-message {
    display: none;
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
}

.moogento-smartcart-message.message-success {
    background: #eef8f0;
    color: #0c6b2d;
}

.moogento-smartcart-message.message-error {
    background: #fff1f0;
    color: #a61b1b;
}

.moogento-smartcart-offers {
    display: grid;
    gap: 25px;
}

.smartcart-offer-tile {
    position: relative;
    border: 1px solid #c5daee;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(253, 250, 245, 0.98) 0%,
        rgba(246, 250, 254, 0.98) 100%
    );
    padding: 24px 28px;
    overflow: visible;
    text-align: left;
    box-shadow: 0 12px 28px rgba(10, 59, 111, 0.06);
}

.smartcart-inline-offers {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.smartcart-placement-cart .smartcart-offer-tile,
.smartcart-placement-checkout .smartcart-offer-tile,
.smartcart-offer-tile-inline {
    padding: 14px 16px;
    border-color: #cfdeeb;
    border-radius: 2px;
    background: linear-gradient(
        135deg,
        rgba(254, 252, 248, 0.98) 0%,
        rgba(249, 252, 255, 0.98) 100%
    );
    box-shadow: 0 8px 18px rgba(10, 59, 111, 0.05);
}

.smartcart-offer-body {
    display: grid;
    grid-template-columns: minmax(130px, 170px) minmax(0, 1fr) minmax(180px, 240px);
    gap: 24px;
    align-items: center;
}

.smartcart-offer-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.smartcart-placement-cart .smartcart-offer-body,
.smartcart-placement-checkout .smartcart-offer-body,
.smartcart-offer-tile-inline .smartcart-offer-body {
    grid-template-columns: 76px minmax(0, 1fr) minmax(132px, 170px);
    gap: 16px;
}

.smartcart-placement-checkout .smartcart-offer-body {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
}

.smartcart-offer-tile-compact .smartcart-offer-body {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.smartcart-placement-checkout .smartcart-offer-tile-compact .smartcart-offer-body {
    grid-template-columns: 56px minmax(0, 1fr);
}

button.smartcart-dismiss {
    position: absolute;
    top: -17px;
    right: -17px;
    z-index: 2;
    width: 34px;
    height: 34px;
    box-sizing: border-box;
    border: 1px solid rgba(22, 101, 182, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #1a67c4;
    font-size: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 8px 18px rgba(17, 90, 181, 0.12);
    appearance: none;
    background-image: none;
}

button.smartcart-dismiss::before {
    content: '×';
    display: block;
    font-size: 24px;
    line-height: 1;
    transform: translateY(-1px);
}

.smartcart-offer-tile button.smartcart-dismiss:hover,
.smartcart-offer-tile button.smartcart-dismiss:focus,
.smartcart-offer-tile button.smartcart-dismiss:active {
    border-color: #b8c9d9;
    background: #fff;
    background-image: none;
    color: #687482;
    outline: none;
    box-shadow: 0 8px 18px rgba(19, 47, 79, 0.14);
}

.smartcart-offer-image {
    display: block;
    width: 100%;
    max-width: 160px;
    border-radius: 14px;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 12px 28px rgba(10, 59, 111, 0.12);
}

.smartcart-placement-cart .smartcart-offer-image,
.smartcart-placement-checkout .smartcart-offer-image,
.smartcart-offer-tile-inline .smartcart-offer-image {
    max-width: 76px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(10, 59, 111, 0.08);
}

.smartcart-placement-checkout .smartcart-offer-image {
    max-width: 64px;
}

.smartcart-placement-minicart .smartcart-offer-tile {
    padding: 10px 12px;
    border-color: #d8e2eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: none;
}

.smartcart-placement-minicart .smartcart-offer-body {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.smartcart-placement-minicart .smartcart-offer-media {
    display: none;
}

.smartcart-offer-content {
    min-width: 0;
    display: grid;
    gap: 12px;
}

.smartcart-placement-cart .smartcart-offer-content,
.smartcart-placement-checkout .smartcart-offer-content,
.smartcart-offer-tile-inline .smartcart-offer-content {
    gap: 6px;
}

.smartcart-offer-name {
    display: block;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    color: #0f4d8a;
    text-decoration: none;
}

.smartcart-placement-cart .smartcart-offer-name,
.smartcart-placement-checkout .smartcart-offer-name,
.smartcart-offer-tile-inline .smartcart-offer-name {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 400;
}

.smartcart-placement-checkout .smartcart-offer-name {
    font-size: 16px;
}

.smartcart-placement-minicart .smartcart-offer-name {
    font-size: 13px;
    line-height: 1.25;
    color: #1f3f5b;
}

.smartcart-offer-name:hover {
    color: #0b3b6a;
    text-decoration: none;
}

.smartcart-offer-actions {
    display: grid;
    gap: 14px;
    align-items: center;
    justify-items: stretch;
}

.smartcart-placement-cart .smartcart-offer-actions,
.smartcart-placement-checkout .smartcart-offer-actions,
.smartcart-offer-tile-inline .smartcart-offer-actions {
    gap: 10px;
}

.smartcart-placement-checkout .smartcart-offer-actions {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.smartcart-placement-minicart .smartcart-offer-actions,
.smartcart-offer-tile-compact .smartcart-offer-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.smartcart-offer-price {
    font-size: 34px;
    font-weight: 700;
    color: #0f4d8a;
    text-align: right;
    white-space: nowrap;
}

.smartcart-placement-cart .smartcart-offer-price,
.smartcart-placement-checkout .smartcart-offer-price,
.smartcart-offer-tile-inline .smartcart-offer-price {
    font-size: 24px;
}

.smartcart-placement-checkout .smartcart-offer-price {
    font-size: 20px;
    text-align: left;
}

.smartcart-placement-minicart .smartcart-offer-price {
    font-size: 13px;
    color: #1f3f5b;
    text-align: right;
}

.smartcart-offer-price .price {
    color: inherit;
}

.smartcart-helper-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #335268;
    white-space: pre-line;
    font-style: normal;
}

.smartcart-placement-cart .smartcart-helper-text,
.smartcart-placement-checkout .smartcart-helper-text,
.smartcart-offer-tile-inline .smartcart-helper-text {
    font-size: 14px;
    line-height: 1.45;
}

.smartcart-placement-minicart .smartcart-helper-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
    color: #5d7182;
}

.smartcart-compact-heading {
    color: #506273;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.smartcart-add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid #1a67c4;
    border-radius: 999px;
    background: linear-gradient(180deg, #2f85e6 0%, #0f5ec0 100%);
    color: #fff;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(17, 90, 181, 0.22);
}

.smartcart-placement-cart .smartcart-add-to-cart,
.smartcart-placement-checkout .smartcart-add-to-cart,
.smartcart-offer-tile-inline .smartcart-add-to-cart {
    min-height: 40px;
    padding: 0 16px;
}

.smartcart-placement-checkout .smartcart-add-to-cart {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
}

.smartcart-placement-minicart .smartcart-add-to-cart {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
    box-shadow: none;
}

.smartcart-add-to-cart:hover,
.smartcart-add-to-cart:focus {
    border-color: #0a4ea6;
    background: linear-gradient(180deg, #2474d3 0%, #0b4fa5 100%);
    color: #fff;
}

@media (max-width: 1199.98px) {
    .smartcart-offer-body {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .smartcart-offer-actions {
        grid-column: 2;
    }

    .smartcart-offer-price {
        text-align: left;
    }

    .smartcart-placement-cart .smartcart-offer-body,
    .smartcart-placement-checkout .smartcart-offer-body,
    .smartcart-offer-tile-inline .smartcart-offer-body {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .smartcart-placement-cart .smartcart-offer-actions,
    .smartcart-placement-checkout .smartcart-offer-actions,
    .smartcart-offer-tile-inline .smartcart-offer-actions {
        grid-column: 2;
    }

    .smartcart-placement-checkout .smartcart-offer-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991.98px) {
    .moogento-smartcart-container {
        padding: 18px;
    }

    .smartcart-offer-tile {
        padding: 22px 20px;
    }
}

@media (max-width: 767.98px) {
    .smartcart-offer-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .smartcart-offer-media {
        justify-content: flex-start;
    }

    .smartcart-offer-actions {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .smartcart-offer-name {
        font-size: 24px;
    }

    .smartcart-offer-price {
        font-size: 28px;
    }

    .smartcart-helper-text {
        font-size: 16px;
    }

    .smartcart-add-to-cart {
        min-height: 48px;
    }
    .moogento-smartcart-offers {
        display: grid;
        gap: 25px;
        justify-items: center;
    }
    .smartcart-placement-cart .smartcart-offer-tile,
    .smartcart-placement-checkout .smartcart-offer-tile,
    .smartcart-offer-tile-inline {
        width: 75%;
    }
}

@media (max-width: 575.98px) {
    .moogento-smartcart-container {
        margin-top: 14px;
        padding: 14px;
    }

    .smartcart-offer-tile {
        padding: 18px 16px;
    }

    .smartcart-offer-name {
        font-size: 20px;
    }

    .smartcart-helper-text {
        font-size: 15px;
    }

    .smartcart-offer-price {
        font-size: 24px;
    }

    button.smartcart-dismiss {
        top: -17px;
        right: -17px;
    }

}

.smartcart-offer-tile-compact {
    padding: 16px 18px;
}

.smartcart-offer-tile-compact .smartcart-offer-body {
    grid-template-columns: 1fr;
    gap: 12px;
}

.smartcart-offer-tile-compact .smartcart-offer-actions {
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.smartcart-offer-tile-compact .smartcart-offer-price {
    font-size: 24px;
    text-align: left;
}

.smartcart-offer-tile-compact .smartcart-helper-text {
    font-size: 14px;
}

.smartcart-offer-tile-compact .smartcart-add-to-cart {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
    white-space: nowrap;
}

/* ── Smart Bundle UI ── */

.smartcart-bundle-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    padding: 4px 8px 0 0;
    cursor: pointer;
    flex-shrink: 0;
}

.smartcart-bundle-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #1a67c4;
    cursor: pointer;
    flex-shrink: 0;
}

.smartcart-bundle-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 18px;
    padding: 14px 20px;
    border: 1px solid #1a67c4;
    border-radius: 999px;
    background: linear-gradient(180deg, #e8f1fb 0%, #d4e6f9 100%);
}

.smartcart-placement-checkout.smartcart-bundle-layout .moogento-smartcart-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.smartcart-placement-checkout.smartcart-bundle-layout .smartcart-bundle-bar {
    grid-column: 1 / -1;
    justify-content: space-between;
}

.smartcart-bundle-bar.smartcart-bundle-bar-collapsed {
    display: none;
}

.smartcart-bundle-label {
    font-size: 14px;
    font-weight: 700;
    color: #0f4d8a;
    white-space: nowrap;
}

.smartcart-bundle-savings {
    display: none;
    font-size: 15px;
    font-weight: 700;
    color: #0c6b2d;
    white-space: nowrap;
}

.smartcart-bundle-cta {
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid #0a4ea6;
    border-radius: 999px;
    background: linear-gradient(180deg, #2f85e6 0%, #0f5ec0 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(17, 90, 181, 0.28);
}

.smartcart-bundle-cta:hover,
.smartcart-bundle-cta:focus {
    background: linear-gradient(180deg, #2474d3 0%, #0b4fa5 100%);
    color: #fff;
}

.smartcart-add-only {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid #8aadd4;
    border-radius: 999px;
    background: transparent;
    color: #1a67c4;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.smartcart-add-only:hover {
    border-color: #1a67c4;
    color: #0a4ea6;
}

@media (max-width: 767.98px) {
    .smartcart-placement-checkout.smartcart-bundle-layout .moogento-smartcart-offers {
        grid-template-columns: 1fr;
    }

    .smartcart-bundle-bar {
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
        gap: 10px;
        padding: 14px 16px;
        width: 75%;
    }

    .smartcart-bundle-cta {
        width: 100%;
    }
}

/* Free-shipping progress bar */
.moogento-freeshipping-bar {
    margin: 1rem 0;
    padding: 0.75rem;
    font-size: 0.875rem;
}
.moogento-freeshipping-bar__message {
    margin: 0 0 0.5rem;
    color: #333;
}
.moogento-freeshipping-bar__message--qualified {
    color: #2a7a2a;
    font-weight: 600;
}
.moogento-freeshipping-bar__track {
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}
.moogento-freeshipping-bar__fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
    background: #007bff;
}
.moogento-freeshipping-bar__fill--neutral { background: #007bff; }
.moogento-freeshipping-bar__fill--success { background: #28a745; }
.moogento-freeshipping-bar__fill--urgency { background: #ffc107; }

/* Tier-boost chips */
.moogento-tierboost { margin: 0.75rem 0; }
.moogento-tierboost__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.moogento-tierboost__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
}
.moogento-tierboost__image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 2px;
}
.moogento-tierboost__name { flex: 1; font-size: 0.8125rem; }
.moogento-tierboost__price { font-weight: 600; white-space: nowrap; }
.moogento-tierboost__add { font-size: 0.75rem; padding: 0.25rem 0.5rem; }

/* Focused checkout header */
.moogento-focused-checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}
.moogento-focused-checkout-header__logo img { height: 40px; width: auto; }
.moogento-focused-checkout-header__badge { font-size: 0.8125rem; color: #2a7a2a; font-weight: 500; }
.moogento-focused-checkout-header__sign-in { font-size: 0.875rem; }

.moo-porto-pc .moogento-smartcart-offers .smartcart-offer-name {
    color: #2a86de;
    font-weight: 400;
    font-size: 14px;
}

.moo-porto-pc .smartcart-offer-name:hover {
    color: #0b3b6a;
    text-decoration: underline;
    font-weight: 400;
}

.moo-porto-pc .opc-summary-wrapper .moogento-smartcart-offers {
    display: grid;
    gap: 25px;
    justify-items: center;
    justify-content: center;
}

.moo-porto-pc .opc-summary-wrapper .smartcart-offer-tile.smartcart-offer-tile-compact {
    width: 86%;
}

.moo-porto-pc .opc-summary-wrapper .smartcart-bundle-bar {
    width: 98%;
    align-items: center;
    justify-content: center;
}

