/**
 * 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: 18px 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: 16px;
}

.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-row td {
    padding: 0 0 22px;
    border-top: 0;
}

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

.smartcart-placement-cart .smartcart-offer-tile,
.smartcart-placement-checkout .smartcart-offer-tile,
.smartcart-offer-tile-inline {
    padding: 14px 16px;
    border-color: #cfdeeb;
    border-radius: 12px;
    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;
}

.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;
    }

    .smartcart-inline-row td {
        padding-bottom: 16px;
    }
}

@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-bundle-bar.smartcart-bundle-bar-collapsed {
    display: none;
}

.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-bundle-bar {
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
        gap: 10px;
        padding: 14px 16px;
    }

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